diff --git a/ASCII-canvas-to-PDF.ipynb b/ASCII-canvas-to-PDF.ipynb deleted file mode 100644 index f8f32b0..0000000 --- a/ASCII-canvas-to-PDF.ipynb +++ /dev/null @@ -1,204 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# ASCII Canvas" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "(using Reportlab to export it as a PDF)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "width = 75\n", - "height = 65" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "multipage = False" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# Simple fill-up of a page, to set the reach of our canvas\n", - "lines = [] # All the lines will be stored here\n", - "\n", - "for linenumber in range(height):\n", - " line = 'x' * width\n", - " lines.append(line)\n", - "\n", - "print('\\n'.join(lines))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# Another way to fill-up the page\n", - "import random \n", - "\n", - "lines = []\n", - "\n", - "txt = open('txt/language.txt', 'r').read()\n", - "words = txt.split()\n", - "\n", - "for linenumber in range(height):\n", - " word = random.choice(words)\n", - " length_of_word = len(word)\n", - " nr_of_words_fit_in_line = width / length_of_word\n", - " line = word * int(nr_of_words_fit_in_line)\n", - " lines.append(line)\n", - " \n", - "print('\\n'.join(lines))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# Same as above + a \"switch\" to make multipaged PDFs\n", - "import random \n", - "\n", - "multipage = True\n", - "number_of_pages = 100\n", - "\n", - "lines = []\n", - "pages = []\n", - "\n", - "txt = open('txt/language.txt', 'r').read()\n", - "words = txt.split()\n", - "\n", - "for page in range(number_of_pages):\n", - " \n", - " for linenumber in range(height):\n", - " word = random.choice(words)\n", - " length_of_word = len(word)\n", - " nr_of_words_fit_in_line = width / length_of_word\n", - " line = word * int(nr_of_words_fit_in_line)\n", - " lines.append(line)\n", - " \n", - " # Add a page\n", - " pages.append(lines)\n", - " lines = []\n", - "\n", - "for page in pages:\n", - " print('\\n'.join(page))\n", - " print('-' * width)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exporting with Reportlab" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import A4\n", - "from reportlab.lib.units import mm\n", - "\n", - "pagewidth = 210*mm\n", - "pageheight = 297*mm\n", - "\n", - "c = Canvas(\"ASCII-canvas-to-PDF.pdf\", pagesize=(pagewidth, pageheight), bottomup=0)\n", - "c.setFont('Courier', 12)\n", - "\n", - "start_y = 10*mm # start position of the lines\n", - "\n", - "y = start_y\n", - "lineheight = 4*mm\n", - "\n", - "if multipage == True:\n", - " for page in pages:\n", - " for line in page:\n", - " c.drawCentredString(pagewidth/2, y, line)\n", - " y += lineheight\n", - " c.showPage()\n", - " y = start_y\n", - "else:\n", - " for line in lines:\n", - " c.drawCentredString(pagewidth/2, y, line)\n", - " y += lineheight\n", - " \n", - "c.save()" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/ASCII-patch-making.ipynb b/ASCII-patch-making.ipynb deleted file mode 100644 index 5ec4c71..0000000 --- a/ASCII-patch-making.ipynb +++ /dev/null @@ -1,299 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# ASCII Patch-making" - ] - }, - { - "cell_type": "code", - "execution_count": 38, - "metadata": {}, - "outputs": [], - "source": [ - "characters = 82 # width\n", - "rows = 74 # height" - ] - }, - { - "cell_type": "code", - "execution_count": 47, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚\n", - "▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░\n", - "▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n", - "▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞\n", - "▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓\n" - ] - } - ], - "source": [ - "# Patch 1\n", - "import random\n", - "\n", - "lines = []\n", - "shapes = ['░','▒','▓','▉','▚','▞']\n", - "\n", - "for linenumber in range(rows):\n", - " line = random.choice(shapes) * characters\n", - " lines.append(line)\n", - "\n", - "patch = '\\n'.join(lines)\n", - "print(patch)" - ] - }, - { - "cell_type": "code", - "execution_count": 50, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "7777777777777777777777777777777777777777777777777777777777777777777777777777777777\n", - "6666666666666666666666666666666666666666666666666666666666666666666666666666666666\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "7777777777777777777777777777777777777777777777777777777777777777777777777777777777\n", - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "6666666666666666666666666666666666666666666666666666666666666666666666666666666666\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "7777777777777777777777777777777777777777777777777777777777777777777777777777777777\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "6666666666666666666666666666666666666666666666666666666666666666666666666666666666\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "8888888888888888888888888888888888888888888888888888888888888888888888888888888888\n", - "0000000000000000000000000000000000000000000000000000000000000000000000000000000000\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "0000000000000000000000000000000000000000000000000000000000000000000000000000000000\n", - "7777777777777777777777777777777777777777777777777777777777777777777777777777777777\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "6666666666666666666666666666666666666666666666666666666666666666666666666666666666\n", - "8888888888888888888888888888888888888888888888888888888888888888888888888888888888\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "0000000000000000000000000000000000000000000000000000000000000000000000000000000000\n", - "8888888888888888888888888888888888888888888888888888888888888888888888888888888888\n", - "6666666666666666666666666666666666666666666666666666666666666666666666666666666666\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "0000000000000000000000000000000000000000000000000000000000000000000000000000000000\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "0000000000000000000000000000000000000000000000000000000000000000000000000000000000\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "7777777777777777777777777777777777777777777777777777777777777777777777777777777777\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "7777777777777777777777777777777777777777777777777777777777777777777777777777777777\n", - "9999999999999999999999999999999999999999999999999999999999999999999999999999999999\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "0000000000000000000000000000000000000000000000000000000000000000000000000000000000\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "4444444444444444444444444444444444444444444444444444444444444444444444444444444444\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "2222222222222222222222222222222222222222222222222222222222222222222222222222222222\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "5555555555555555555555555555555555555555555555555555555555555555555555555555555555\n", - "3333333333333333333333333333333333333333333333333333333333333333333333333333333333\n", - "1111111111111111111111111111111111111111111111111111111111111111111111111111111111\n", - "8888888888888888888888888888888888888888888888888888888888888888888888888888888888\n" - ] - } - ], - "source": [ - "# Patch 2\n", - "lines = []\n", - "\n", - "import random\n", - "numbers = ['0','1','2','3','4','5','6','7','8','9']\n", - "\n", - "for linenumber in range(rows):\n", - " line = random.choice(numbers) * characters\n", - " lines.append(line)\n", - "\n", - "print('\\n'.join(lines))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": 49, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "6141" - ] - }, - "execution_count": 49, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "out = open('patches/shapes-patch.txt', 'w')\n", - "out.write(patch)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/ASCII-quilt.ipynb b/ASCII-quilt.ipynb deleted file mode 100644 index 4f818ad..0000000 --- a/ASCII-quilt.ipynb +++ /dev/null @@ -1,198 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# ASCII Canvas" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "(using Reportlab to export it as a PDF)" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "width = 75\n", - "height = 65" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", - "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n" - ] - } - ], - "source": [ - "# Simple fill-up of a page, to set the reach of our canvas\n", - "lines = [] # All the lines will be stored here\n", - "\n", - "for linenumber in range(height):\n", - " line = 'x' * width\n", - " lines.append(line)\n", - "\n", - "print('\\n'.join(lines))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Exporting with Reportlab" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import A4\n", - "from reportlab.lib.units import mm\n", - "\n", - "pagewidth = 210*mm # = A4[0]\n", - "pageheight = 297*mm # = A4[1]\n", - "\n", - "# It is the same as:\n", - "# pagewidth, pageheight = A4\n", - "\n", - "c = Canvas(\"ASCII-canvas-to-PDF.pdf\", pagesize=(pagewidth, pageheight), bottomup=0) # the 'bottomup' flips the coordinates, and puts the 0,0 at the left top\n", - "c.setFont('Courier', 12)\n", - "\n", - "start_y = 10*mm # start position of the lines\n", - "\n", - "y = start_y\n", - "lineheight = 4*mm\n", - "\n", - "for line in lines:\n", - " c.drawCentredString(pagewidth/2, y, line)\n", - " y += lineheight\n", - "\n", - "c.save()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/Concordance_Patches/V2_WE_ALL_EMBRACE_CONTINUOUS_LANGAUGE.txt b/Concordance_Patches/V2_WE_ALL_EMBRACE_CONTINUOUS_LANGAUGE.txt deleted file mode 100644 index 667bca8..0000000 --- a/Concordance_Patches/V2_WE_ALL_EMBRACE_CONTINUOUS_LANGAUGE.txt +++ /dev/null @@ -1,74 +0,0 @@ - we -i we h - m we ’ -ce we des -inua we deny - , we we descr -inuity we descri -’ d lik we display -one per we need to -talist Ru we speak abo - often use We see this w - of ‘ arriv we will later -later ‘ arri we arrive at a -omething real We tend to forge -t ‘ home. ’ We we understand as - [ i ] only is we feel ‘ unheimis -gnized it . Or s we are accustomed t - would state , ‘ we think about progr -that one will ‘ ar We can not arrive in -d , as worlds are c We need continuous lan -or mode awaiting you we give to a future tha - i ] presence [ i ] , We need a language that - you about him I love all my heart and my soul W -elative as no genitals all adjectives that she fi - ‘ discovered ’ the Am all the life that was ther -onsidered meaningful o all . It was no life . It -ave – in some way or a all along . Those who arri - common , inspirationa all about the journey ’ fo -d arrival , unless one all is journey. ’ When we -air you are given by T All of these factors helpe -nd upon my arrival I c all worlds and all sides t -val I could forget tha all sides that are always -asonable wealthy and e All would be fine as the s - speaking , but an ete all , allowing everything -eminist practise . Que embrace of what ’ s described -straight one , it is a embrace in which it is unclear -at embraces what : does embrace the listener , does the -ace the listener , does t embrace the description , does th -scription , does the event embrace the continuous language th -gage the event ? It ’ s an embrace with few coordinates . It ’ -ace with few coordinates . I embrace of which it is unsure whethe - which it is unsure whether i embrace . It is moving , taking form -ne and seizable , instead of a continuous thinking she is trying to surf -w attention to ? How can we di continuous time while using language ? La -at is described . It means tha continuous ( well- ) being of what is des -ecause of your positionality . continuous noticing is necessary to re-di -oes the event described embrac continuous language that is trying to lin -, but to acknowledge the world continuous place , instead of believing t -s are constantly arriving . We continuous language . There is no platfor -untered with [ i ] presence [ continuous life . We need a language that - I understood that it was her language that displayed , inhabited , s -ted her love and trust for him language wasn ’ t just a true account of - a true account of her worship , language generated and endorsed the love -the content of this message . I l language . I love language so much that I -s message . I love language . I lo language so much that I can sound very conv -eling submission . In this convince language , by expressing surrender I would e -uld experience surrender because the language of worship and submission is not des -words , but I ’ m very much aimed at language ’ s shortcomings . One of the diffic -comings . One of the difficulties of language I have recently been involved with , - thinking she is trying to surface . Language kills continuation . When we describ - display continuous time while using language ? Language itself is constantly draw -ntinuous time while using language ? Language itself is constantly drawing from th -I was experiencing continuousness of language when I was having sex and feeling my -m a moment in time and space . While language kills what is being described , it e -ng a few dominant narratives – using language to create proximity can just as well -nclear what embraces what : does the language embrace the listener , does the list -ent described embrace the continuous language that is trying to linguistically eng -tantly arriving . We need continuous language . There is no platform waiting for y -ing our arrival ? The future needs a language that does not identify the future as -uture as a separate era . It needs a language in which the deadening force of word - [ i ] , continuous life . We need a language that is not old , nor presents itsel -gitimatize its existence . What does language need ? It needs faith . It needs spe -ivity , who recognize the effects of language , understanding that the expression - the conversation . A feminist queer language may well be that : God-language . A diff --git a/Concordance_Patches/WE_ALL_EMBRACE_CONTINUOUS_LANGUAGE.txt b/Concordance_Patches/WE_ALL_EMBRACE_CONTINUOUS_LANGUAGE.txt deleted file mode 100644 index 869259b..0000000 --- a/Concordance_Patches/WE_ALL_EMBRACE_CONTINUOUS_LANGUAGE.txt +++ /dev/null @@ -1,74 +0,0 @@ -ve ( just as much as it says about what we are conditioned to expect and recognize -irst it made me shy . But the next time we had sex , I noticed how her description - meant value determining . In that case we ’ d encounter the moment when words and -ce . Language kills continuation . When we describe something , we deny the contin -inuation . When we describe something , we deny the continuity of that which we de - , we deny the continuity of that which we describe . When we describe something o -inuity of that which we describe . When we describe something or someone , that so -’ d like to draw attention to ? How can we display continuous time while using lan -one per se – but in order to use a word we need to at least remember its meaning , -talist Ruins [ I ] . [ 5 ] Often , when we speak about progress , progress is not - often used to debunk what was before . We see this with children displaying ‘ que - of ‘ arriving. ’ The expectations that we will later ‘ arrive ’ at a certain insi -later ‘ arrive ’ at a certain insight , we arrive at a better place in our lives , -omething real , an arrival at ‘ home. ’ We tend to forget that what we understand -t ‘ home. ’ We tend to forget that what we understand as real [ i ] is [ i ] and [ - [ i ] only is [ i ] the present . When we feel ‘ unheimisch ’ or ‘ unreal , ’ thi -gnized it . Or so the history narrative we are accustomed to , latently ( but blun - would state , ‘ all is journey. ’ When we think about progress , similar feelings -that one will ‘ arrive ’ in the world . We can not arrive in the world , as worlds -d , as worlds are constantly arriving . We need continuous language . There is no -or mode awaiting your growth . What can we give to a future that is not awaiting o - i ] presence [ i ] , continuous life . We need a language that is not old , nor p - you about him I love him so much with all my heart and my soul With every bone i -elative as no genitals are average and all adjectives that she finds truth in are - ‘ discovered ’ the Americas , meaning all the life that was there before Columbu -onsidered meaningful or even living at all . It was no life . It only became life -ave – in some way or another – existed all along . Those who arrive – whether at - common , inspirational motto ‘ It ’ s all about the journey ’ forgets that the p -d arrival , unless one would state , ‘ all is journey. ’ When we think about prog -air you are given by Thuiszorg . [ 6 ] All of these factors helped me get better -nd upon my arrival I could forget that all worlds and all sides that are always a -val I could forget that all worlds and all sides that are always already out ther -asonable wealthy and educated family . All would be fine as the society I grew up - speaking , but an eternal effort from all , allowing everything to be alive – am -eminist practise . Queer because the embrace of what ’ s described can not be a s -straight one , it is a messy sort of embrace in which it is unclear what embraces -at embraces what : does the language embrace the listener , does the listener emb -ace the listener , does the listener embrace the description , does the event des -scription , does the event described embrace the continuous language that is tryi -gage the event ? It ’ s an amorphous embrace with few coordinates . It ’ s an emb -ace with few coordinates . It ’ s an embrace of which it is unsure whether it is - which it is unsure whether it is an embrace . It is moving , taking form , formi -ne and seizable , instead of as the continuous thinking she is trying to surface . -w attention to ? How can we display continuous time while using language ? Languag -at is described . It means that the continuous ( well- ) being of what is describe -ecause of your positionality . This continuous noticing is necessary to re-direct -oes the event described embrace the continuous language that is trying to linguist -, but to acknowledge the world as a continuous place , instead of believing that o -s are constantly arriving . We need continuous language . There is no platform wai -untered with [ i ] presence [ i ] , continuous life . We need a language that is n - I understood that it was her strong language that displayed , inhabited , shaped -ted her love and trust for him . Her language wasn ’ t just a true account of her - a true account of her worship , the language generated and endorsed the love . Th -the content of this message . I love language . I love language so much that I can -s message . I love language . I love language so much that I can sound very convin -eling submission . In this convinced language , by expressing surrender I would ex -uld experience surrender because the language of worship and submission is not des -words , but I ’ m very much aimed at language ’ s shortcomings . One of the diffic -comings . One of the difficulties of language I have recently been involved with , - thinking she is trying to surface . Language kills continuation . When we describ - display continuous time while using language ? Language itself is constantly draw -ntinuous time while using language ? Language itself is constantly drawing from th -I was experiencing continuousness of language when I was having sex and feeling my -m a moment in time and space . While language kills what is being described , it e -ng a few dominant narratives – using language to create proximity can just as well -nclear what embraces what : does the language embrace the listener , does the list -ent described embrace the continuous language that is trying to linguistically eng -tantly arriving . We need continuous language . There is no platform waiting for y -ing our arrival ? The future needs a language that does not identify the future as -uture as a separate era . It needs a language in which the deadening force of word - [ i ] , continuous life . We need a language that is not old , nor presents itsel -gitimatize its existence . What does language need ? It needs faith . It needs spe -ivity , who recognize the effects of language , understanding that the expression - the conversation . A feminist queer language may well be that : God-language . A diff --git a/Concordance_Patches/atata_patch_final.txt b/Concordance_Patches/atata_patch_final.txt deleted file mode 100644 index f2245b2..0000000 --- a/Concordance_Patches/atata_patch_final.txt +++ /dev/null @@ -1,73 +0,0 @@ -////////////////////////The purpose <> the following text is <> present <-> prese -lowing text is <> present <-> preserve the concept <> ATATA : it is a composition -ere <> bring back <> life the ‘ dead ’ word ATATA , so that it is not forgotten . -o present <-> preserve the concept <> ATATA : it is a composition <> two ideogram -ograms <> the Mhuysqa dead language . ATATA can be defined <> ‘ I give myself and -a perspective <> reciprocity ? Why is ATATA a fruitful principle <-> the future s - bring back <> life the ‘ dead ’ word ATATA , so that it is not forgotten . ATATA -ATATA , so that it is not forgotten . ATATA is a palindrome unity made <> two ide -cation bath . This astonishing ritual ATATA was done <> a reminder <> gratitude t -gs asking <-> maintenance <> people . ATATA can be related <--> the Mayan Tseltal -ss where both concepts <> reciprocity ATATA <-> ich´el ta muk´ are present <> bot - the goods <-> something else. ” This means common goods <> everything that exist -0 . The priest Duquesne wrote that Ta means “ tillage , harvest. ” The Ta ideogra -age , harvest. ” The Ta ideogram <--> means the bearing <> fruits , the giving of -ious is an act <> reciprocity , which means that ( inter ) acting <--> within the -esent <-> preserve the concept <> ATATA : it is a composition <> two ideograms in -ions that this essay aims <> answer are : How <> feel-think the future <> food an -ad language . ATATA can be defined <> ‘ I give myself <-> you give yourself , ’ w - Colombian student <> ancient history , I have experience <--> this concept <-> m -o . It was through my PhD research that I experienced <-> looked further <--> the -sqa <-> Mayan legacy . It was <--> that I realized the devastating reality that i -, <-> bio-diversifying forms <> being . I have based my writings <> the perspecti -ctive <> ‘ Heart´s Epistemology. ’ What I mean is that heart <-> brain come toget -ome <> their ancestral ways <> living . I have studied their language , named Mhu -heir language , named Mhuysqhubun , <-> I propose here <> bring back <> life the -ction/cycle <> humans-lagoons-rain-corn I refer <> Tseltal Mayan people , who liv - , <-> memory , alive . [ c ] III [ c ] I feel-think offerings <-> getting water -se through my work <-> my way <> living I am affecting others , known <-> unknown -language . ATATA can be defined <> ‘ I give myself <-> you give yourself , ’ where - be defined <> ‘ I give myself <-> you give yourself , ’ where giving is an act of -rainbow seeds ( varieties <> food ) <> give the future <> much colors <-> flavors -ge . ATATA can be defined <> ‘ I give myself <-> you give yourself , ’ where givin -ious generations . That is why taking myself serious is an act <> reciprocity , wh -se <> the following text is <> present <-> preserve the concept <> ATATA : it is -TATA can be defined <> ‘ I give myself <-> you give yourself , ’ where giving is -the indigenous people <> both Colombia <-> Mexico . It was through my PhD researc -ugh my PhD research that I experienced <-> looked further <--> the Mhuysqa <-> Ma -ed <-> looked further <--> the Mhuysqa <-> Mayan legacy . It was <--> that I real - can be defined <> ‘ I give myself <-> you give yourself , ’ where giving is an a - is an act <> receiving , <-----> what you do <-> others is <--> affecting yourse -In fact , the heart is the place where you keep dreams , hope , joy , <-> pain , -ain , according <> the Mayan culture . You need <> have all these clear <> know w -w what is the kind <> living knowledge you want <> go over . [ 2 ] In the Mhuysqa - responsibility <> taking care <> what you are receiving . One <> the most import -language . ATATA can be defined <> ‘ I give myself <-> you give yourself , ’ where - be defined <> ‘ I give myself <-> you give yourself , ’ where giving is an act of -rainbow seeds ( varieties <> food ) <> give the future <> much colors <-> flavors -ined <> ‘ I give myself <-> you give yourself , ’ where giving is an act <> receiv - you do <-> others is <--> affecting yourself . This exercise <> reciprocity is a -he bearing <> fruits , the giving <> yourself freely , <> <> agriculture labor . I -////////////////////////The purpose <> the following text is <> present <-> prese -lowing text is <> present <-> preserve the concept <> ATATA : it is a composition -ere <> bring back <> life the ‘ dead ’ word ATATA , so that it is not forgotten . -o present <-> preserve the concept <> ATATA : it is a composition <> two ideogram -ograms <> the Mhuysqa dead language . ATATA can be defined <> ‘ I give myself and -a perspective <> reciprocity ? Why is ATATA a fruitful principle <-> the future s - bring back <> life the ‘ dead ’ word ATATA , so that it is not forgotten . ATATA -ATATA , so that it is not forgotten . ATATA is a palindrome unity made <> two ide -cation bath . This astonishing ritual ATATA was done <> a reminder <> gratitude t -gs asking <-> maintenance <> people . ATATA can be related <--> the Mayan Tseltal -ss where both concepts <> reciprocity ATATA <-> ich´el ta muk´ are present <> bot - the goods <-> something else. ” This means common goods <> everything that exist -0 . The priest Duquesne wrote that Ta means “ tillage , harvest. ” The Ta ideogra -age , harvest. ” The Ta ideogram <--> means the bearing <> fruits , the giving of -ious is an act <> reciprocity , which means that ( inter ) acting <--> within the -esent <-> preserve the concept <> ATATA : it is a composition <> two ideograms in -ions that this essay aims <> answer are : How <> feel-think the future <> food an -ad language . ATATA can be defined <> ‘ I give myself <-> you give yourself , ’ w - Colombian student <> ancient history , I have experience <--> this concept <-> m -o . It was through my PhD research that I experienced <-> looked further <--> the -sqa <-> Mayan legacy . It was <--> that I realized the devastating reality that i -, <-> bio-diversifying forms <> being . I have based my writings <> the perspecti - diff --git a/Concordance_Patches/eunaaaaaa_hope.txt b/Concordance_Patches/eunaaaaaa_hope.txt deleted file mode 100644 index 86825eb..0000000 --- a/Concordance_Patches/eunaaaaaa_hope.txt +++ /dev/null @@ -1,74 +0,0 @@ - a -1 a p -fo a Pa -6 , a mes -on h a show -for P a half - thoug A Good N -t Istan a pity th -a pity t a shower i -e was one a context w -wrote : “ a flame in t -n very dark a confidence -ts . It is l a promise. ” O -s located som a bibliography -ddle East . I a “ Hope Syllabu -essively a bibl a response to the - ” I ’ ve been c A Sociology of Hop -Chantal Mouffe ’ a “ democracy to co -nected with the no a cynical withdrawal -ary ? ” Agamben des a particular relation - blinded by its ligh a light that strives b -ontemporary is nostal a particular time yet s - she is aware of her e a certain historical sen -erogeneous , Agamben ar a particular relationship -en hope and remembrance a full engagement with the -w yet persistent work of a social reality larger tha -t sense , being hopeful en a non-linear understanding o -me . In that regard , hope a project-driven world where -and meaning in the journey i a series works since the mid-1 - for Mouffe refers to the set a society is created and govern - to the uncontested hegemony o a rationalist and individualist -ration this antagonistic dimens a compromise among competing inte -negotiate a compromise among com a rational , fully inclusive conse - us/them distinction of antagonis a way that is compatible with the r -tion of pluralism . In other words a democracy that acknowledges the in -wledges the ineradicable dimension a pluralist public space in which the -blish a pluralist public space in wh a nonviolent way . For Mouffe , this e -ails transforming antagonism to “ ago a situation where opposing political su -now an adversary rather than an enemy a final agreement can be reached . Anoth -’ s understanding of the political is “ a hegemonic one established by a series o -cal is “ hegemony. ” Every social order a series of practices and institutions wi -egemonic one established by a series of p a context of contingency . In other word -tutions within a context of contingency . a temporary and precarious articulation - order is a temporary and precarious articu a given moment as ‘ natural ’ or as ‘ -ng order to install another form of hegemony a complex argument into a bite-size p -her form of hegemony . It may not be fair to a bite-size portion , but for this e -of radical democracy as the “ impossibility of a genuinely pluralistic democracy i -s to remain pluralistic at all ) . That is , if a given order it would not be plur -rst place ; there wouldn ’ t be any differences a static situation that could eve - . This would culminate in a static situation tha a totalitarian society . Neverth - ’ s not going to be completely realized , it will a process [ i ] that we work to -eed to despair . Laclau and Mouffe ’ s ideas about a project without an end ” res -our political struggles , without the expectation of a final destination . In the - final destination . In the wake of the Jörg Haider m a right-wing mobilization ag -ddressed the concept of hope and its relation to passi a more direct manner [ 15 ] -material representations that evoke certain meanings an a flag , a song , a style -representations that evoke certain meanings and emotions a song , a style of speak -ations that evoke certain meanings and emotions such as a a style of speaking , et -the origin of racist articulations , the Left has been add a moralistic discourse -exploits . During the Gezi protests in June 2013 , I realiz a futile effort to app -oğan supporters what the protests meant for the participants a “ coupt attempt , ” -protests meant for the participants . It was not a “ coupt at a riot provoked by “ -ed by “ foreign spies. ” Dialogue is possible if all sides sha a square millimeter -13 , the Prime Minister and the pro-government media started to a blatant lie , no -o circulate a blatant lie , now known as the “ Kabataş lie. ” Al a group of toples - topless male Gezi protesters clad in black skinny leather pants a woman in heads -tions failed to come to terms with the phenomenon . I found out Fr a concept for i - Freud ’ s concept of “ illusion ” is mostly about religion , it ’ a useful conce -r helplessness [ 18 ] . Granted our psychological inclination for se a source of p -s the social sciences and the arts , I observe both fields are practi a critical w -f the times—as it has become common practice lately when , for instanc a public sy -ublic symposium on current issues in the contemporary dance field becom a collecti -as become symptomatic of our epoch . Are we , perhaps , equating adoptin a hopeles -nly describing and analyzing the world but also contributing to making it a better diff --git a/Concordance_Patches/hope_again.txt b/Concordance_Patches/hope_again.txt deleted file mode 100644 index bd7c1fc..0000000 --- a/Concordance_Patches/hope_again.txt +++ /dev/null @@ -1,74 +0,0 @@ - a - 1 a p - fo a Pa - 6 , a mes - on h a show - for P a half - thoug A Good N - t Istan a pity th - a pity t a shower i - e was one a context w - wrote : “ a flame in t - n very dark a confidence - ts . It is l a promise. ” O - s located som a bibliography - ddle East . I a “ Hope Syllabu - essively a bibl a response to the - ” I ’ ve been c A Sociology of Hop - Chantal Mouffe ’ a “ democracy to co - nected with the no a cynical withdrawal - ary ? ” Agamben des a particular relation - blinded by its ligh a light that strives b - ontemporary is nostal a particular time yet s - she is aware of her e a certain historical sen - erogeneous , Agamben ar a particular relationship - en hope and remembrance a full engagement with the - w yet persistent work of a social reality larger tha - t sense , being hopeful en a non-linear understanding o - me . In that regard , hope a project-driven world where - and meaning in the journey i a series works since the mid-1 - for Mouffe refers to the set a society is created and govern - to the uncontested hegemony o a rationalist and individualist - ration this antagonistic dimens a compromise among competing inte - negotiate a compromise among com a rational , fully inclusive conse - us/them distinction of antagonis a way that is compatible with the r - tion of pluralism . In other words a democracy that acknowledges the in - wledges the ineradicable dimension a pluralist public space in which the - blish a pluralist public space in wh a nonviolent way . For Mouffe , this e - ails transforming antagonism to “ ago a situation where opposing political - now an adversary rather than an enemy a final agreement can be reached . A - ’ s understanding of the political is “ a hegemonic one established by a se - cal is “ hegemony. ” Every social order a series of practices and institut - egemonic one established by a series of p a context of contingency . In oth - tutions within a context of contingency . a temporary and precarious artic - order is a temporary and precarious articu a given moment as ‘ natural ’ o - ng order to install another form of hegemony a complex argument into a bite - her form of hegemony . It may not be fair to a bite-size portion , but for - of radical democracy as the “ impossibility of a genuinely pluralistic demo - s to remain pluralistic at all ) . That is , if a given order it would not - rst place ; there wouldn ’ t be any differences a static situation that co - . This would culminate in a static situation tha a totalitarian society . - ’ s not going to be completely realized , it will a process [ i ] that we - eed to despair . Laclau and Mouffe ’ s ideas about a project without an en - our political struggles , without the expectation of a final destination . - final destination . In the wake of the Jörg Haider m a right-wing mobiliza - ddressed the concept of hope and its relation to passi a more direct manner - material representations that evoke certain meanings an a flag , a song , a - representations that evoke certain meanings and emotions a song , a style o - ations that evoke certain meanings and emotions such as a a style of speaki - the origin of racist articulations , the Left has been add a moralistic dis - exploits . During the Gezi protests in June 2013 , I realiz a futile effort - oğan supporters what the protests meant for the participants a “ coupt atte - protests meant for the participants . It was not a “ coupt at a riot provok - ed by “ foreign spies. ” Dialogue is possible if all sides sha a square mil - 13 , the Prime Minister and the pro-government media started to a blatant l - o circulate a blatant lie , now known as the “ Kabataş lie. ” Al a group of - topless male Gezi protesters clad in black skinny leather pants a woman i - tions failed to come to terms with the phenomenon . I found out Fr a concep - Freud ’ s concept of “ illusion ” is mostly about religion , it ’ a usefu - r helplessness [ 18 ] . Granted our psychological inclination for se a sour - s the social sciences and the arts , I observe both fields are practi a cri - f the times—as it has become common practice lately when , for instanc a pu - ublic symposium on current issues in the contemporary dance field becom a c - as become symptomatic of our epoch . Are we , perhaps , equating adoptin a - nly describing and analyzing the world but also contributing to making it a diff --git a/Concordance_Patches/hope_sorry.txt b/Concordance_Patches/hope_sorry.txt deleted file mode 100644 index 09da4e2..0000000 --- a/Concordance_Patches/hope_sorry.txt +++ /dev/null @@ -1,74 +0,0 @@ - a - 1 a p - fo a Pa - 6 , a mes - on h a show - for P a half - thoug A Good N - t Istan a pity th - a pity t a shower i - e was one a context w - wrote : “ a flame in t - n very dark a confidence - ts . It is l a promise. ” O - s located som a bibliography - ddle East . I a “ Hope Syllabu - essively a bibl a response to the - ” I ’ ve been c A Sociology of Hop - Chantal Mouffe ’ a “ democracy to co - nected with the no a cynical withdrawal - ary ? ” Agamben des a particular relation - blinded by its ligh a light that strives b - ontemporary is nostal a particular time yet s - she is aware of her e a certain historical sen - erogeneous , Agamben ar a particular relationship - en hope and remembrance a full engagement with the - w yet persistent work of a social reality larger tha - t sense , being hopeful en a non-linear understanding o - me . In that regard , hope a project-driven world where - and meaning in the journey i a series works since the mid-1 - for Mouffe refers to the set a society is created and govern - to the uncontested hegemony o a rationalist and individualist - ration this antagonistic dimens a compromise among competing inte - negotiate a compromise among com a rational , fully inclusive conse - us/them distinction of antagonis a way that is compatible with the r - tion of pluralism . In other words a democracy that acknowledges the in - wledges the ineradicable dimension a pluralist public space in which the - blish a pluralist public space in wh a nonviolent way . For Mouffe , this e - ails transforming antagonism to “ ago a situation where opposing political su - now an adversary rather than an enemy a final agreement can be reached . Anot - ’ s understanding of the political is “ a hegemonic one established by a serie - cal is “ hegemony. ” Every social order a series of practices and institution - egemonic one established by a series of p a context of contingency . In other - tutions within a context of contingency . a temporary and precarious articula - order is a temporary and precarious articu a given moment as ‘ natural ’ or a - ng order to install another form of hegemony a complex argument into a bite-si - her form of hegemony . It may not be fair to a bite-size portion , but for th - of radical democracy as the “ impossibility of a genuinely pluralistic democra - s to remain pluralistic at all ) . That is , if a given order it would not be - rst place ; there wouldn ’ t be any differences a static situation that could - . This would culminate in a static situation tha a totalitarian society . Nev - ’ s not going to be completely realized , it will a process [ i ] that we wor - eed to despair . Laclau and Mouffe ’ s ideas about a project without an end ” - our political struggles , without the expectation of a final destination . In - final destination . In the wake of the Jörg Haider m a right-wing mobilizatio - ddressed the concept of hope and its relation to passi a more direct manner [ - material representations that evoke certain meanings an a flag , a song , a st - representations that evoke certain meanings and emotions a song , a style of s - ations that evoke certain meanings and emotions such as a a style of speaking - the origin of racist articulations , the Left has been add a moralistic discou - exploits . During the Gezi protests in June 2013 , I realiz a futile effort to - oğan supporters what the protests meant for the participants a “ coupt attempt - protests meant for the participants . It was not a “ coupt at a riot provoked - ed by “ foreign spies. ” Dialogue is possible if all sides sha a square millim - 13 , the Prime Minister and the pro-government media started to a blatant lie - o circulate a blatant lie , now known as the “ Kabataş lie. ” Al a group of to - topless male Gezi protesters clad in black skinny leather pants a woman in h - tions failed to come to terms with the phenomenon . I found out Fr a concept f - Freud ’ s concept of “ illusion ” is mostly about religion , it ’ a useful c - r helplessness [ 18 ] . Granted our psychological inclination for se a source - s the social sciences and the arts , I observe both fields are practi a critic - f the times—as it has become common practice lately when , for instanc a publi - ublic symposium on current issues in the contemporary dance field becom a coll - as become symptomatic of our epoch . Are we , perhaps , equating adoptin a hop - nly describing and analyzing the world but also contributing to making it a be diff --git a/Concordance_Patches/othernessandsoon (1).txt b/Concordance_Patches/othernessandsoon (1).txt deleted file mode 100644 index a976bb2..0000000 --- a/Concordance_Patches/othernessandsoon (1).txt +++ /dev/null @@ -1,74 +0,0 @@ - Otherness - in the view of some who most fears otherness -us quo . The work of learning about otherness -Peter and myself , underscoring the otherness -d she even respect this other ( m ) otherness -ct this other ( m ) otherness - the otherness - are many ways in which we confront otherness -me to know ourselves and remove the otherness -xperience that at once embraces the otherness -king towards removing this sense of otherness - we seek with the world around us . Otherness -paradoxical goal of encounters with otherness -urselves with nature to clearly see otherness -clearly see otherness , and we need otherness -table in the absence of the other . Otherness -ng physically and psychologically . Otherness -lues imitation emphasizes our own ‘ otherness -is , at least partially , a fear of otherness -from that preference in contrast to otherness -he ultimate engine of innovation is otherness -it was the only creature to embrace otherness -ploration ; to seek encounters with otherness - oneness with others , as embodied in that ve - Oneness with ourselves and nature – and the - oneness that we seek with the world around u - oneness is the paradoxical goal of encounter - oneness of ourselves with nature to clearly - oneness with the world . Thoreau ignored soc - oneness with the world , nature , and the ot - oneness that we can achieve the best individ - oneness that embraces the unexpected . The t - oneness of the type that motivated Thoreau . - my own ‘ rightness. ’ How fortunate for me - or me that this gentle people disabused me - y psychologist Peter Gordon accompanied me - ahãs , most of them anyway , would give me - a straight head . '' The Pirahãs wanted me - it underscored the gap between them and me - reau was so articulately different from me - king in a language that was so hard for me - world first through our mother . All that w - world . Through Thoreau we encounter the st - world around us . Otherness , as I see it , - world . Thoreau ignored society to know him - world , nature , and the other as part of t - world . This applies to all of us whether w - a hill only to see it roll down at the end - ? - ? - ? - ? - ? - ? - ? - ? - ? - ? - . - . - . - . - . - . - . - . - . - . - others - work - price - loss - work - ourselves - context diff --git a/Concordance_Patches/othernessandsoon.txt b/Concordance_Patches/othernessandsoon.txt deleted file mode 100644 index fb2ae7f..0000000 --- a/Concordance_Patches/othernessandsoon.txt +++ /dev/null @@ -1,73 +0,0 @@ - Otherness - in the view of some who most fears otherness -us quo . The work of learning about otherness -Peter and myself , underscoring the otherness -d she even respect this other ( m ) otherness -ct this other ( m ) otherness - the otherness - are many ways in which we confront otherness -me to know ourselves and remove the otherness -xperience that at once embraces the otherness -king towards removing this sense of otherness - we seek with the world around us . Otherness -paradoxical goal of encounters with otherness -urselves with nature to clearly see otherness -clearly see otherness , and we need otherness -table in the absence of the other . Otherness -ng physically and psychologically . Otherness -lues imitation emphasizes our own ‘ otherness -is , at least partially , a fear of otherness -from that preference in contrast to otherness -he ultimate engine of innovation is otherness -it was the only creature to embrace otherness -ploration ; to seek encounters with otherness - oneness with others , as embodied in that ve - Oneness with ourselves and nature – and the - oneness that we seek with the world around u - oneness is the paradoxical goal of encounter - oneness of ourselves with nature to clearly - oneness with the world . Thoreau ignored soc - oneness with the world , nature , and the ot - oneness that we can achieve the best individ - oneness that embraces the unexpected . The t - oneness of the type that motivated Thoreau . - my own ‘ rightness. ’ How fortunate for me - or me that this gentle people disabused me - y psychologist Peter Gordon accompanied me - ahãs , most of them anyway , would give me - a straight head . '' The Pirahãs wanted me - it underscored the gap between them and me - reau was so articulately different from me - king in a language that was so hard for me - world first through our mother . All that w - world . Through Thoreau we encounter the st - world around us . Otherness , as I see it , - world . Thoreau ignored society to know him - world , nature , and the other as part of t - world . This applies to all of us whether w - a hill only to see it roll down at the end - ? - ? - ? - ? - ? - ? - ? - ? - ? - ? - . - . - . - . - . - . - . - . - . - . - alterity - interactions - work - pleistocene - edge - context diff --git a/Concordance_Patches/patchericoagain.txt b/Concordance_Patches/patchericoagain.txt deleted file mode 100644 index ee60063..0000000 --- a/Concordance_Patches/patchericoagain.txt +++ /dev/null @@ -1,74 +0,0 @@ - Thousand are than six more there nine more hundred the world languages across. - There six are than more thousand nine more the across languages hundred world. - Are more six thousand than there nine languages hundred world across the more. - There are thousand more six than nine the more hundred world languages across. - Are more six thousand there than nine hundred across the world more languages. - Thousand than there are six more nine the languages world hundred across more. - There than six are thousand more nine world the hundred across more languages. - There more than are thousand six nine the world across hundred languages more. - There are than more thousand six nine the world hundred across more languages. - More six thousand are there than nine world more across the hundred languages. - Than six thousand there are more nine languages more hundred world the across. - Thousand there six are more than nine the languages more across hundred world. - There six thousand than are more nine languages more the hundred across world. - Thousand are six more than there nine world languages across hundred the more. - Six thousand are there than more nine languages more hundred the world across. - More there six are than thousand nine more world languages hundred the across. - There than are thousand six more nine the more world across languages hundred. - More six are thousand than there nine hundred more across world the languages. - More there six than thousand are nine world the languages hundred across more. - Are six there thousand more than nine world hundred languages more the across. - There more six are thousand than nine the languages world across hundred more. - There six thousand more than are nine across world languages more hundred the. - More there than are six thousand nine across the world more hundred languages. - There than are more six thousand nine more across languages the hundred world. - More are thousand there than six nine world hundred across more languages the. - Than six are more thousand there nine languages more the world hundred across. - There are thousand six than more nine across hundred languages the world more. - Six than thousand there are more nine world the languages across more hundred. - More thousand six there are than nine the world more hundred languages across. - Six thousand there than more are nine across languages world hundred more the. - Are there thousand than six more nine the more hundred languages world across. - There thousand more six than are nine more languages world hundred across the. - There six than thousand are more nine more languages world hundred the across. - Thousand than six more there are nine world more the hundred languages across. - There are more six thousand than nine across the world languages hundred more. - Are six than thousand there more nine across more hundred the languages world. - Six thousand there are than more nine hundred across more the world languages. - Than are six there thousand more nine more the world languages across hundred. - Six there than are more thousand nine languages world the hundred across more. - Are more six thousand than there nine the more across world languages hundred. - More are than thousand there six nine the hundred languages world across more. - Thousand more six than are there nine more world languages the across hundred. - Are thousand there more than six nine the more hundred across world languages. - Than there more six are thousand nine the more hundred across world languages. - Thousand six more are there than nine hundred more world the across languages. - Than are there six more thousand nine hundred the more languages across world. - Thousand six there are more than nine more languages world across hundred the. - There thousand more six are than nine hundred across languages more the world. - Six thousand more than there are nine the languages hundred across more world. - Thousand there than more six are nine the languages across hundred world more. - Are thousand six than more there nine the across hundred more world languages. - Than are there thousand more six nine more languages hundred across the world. - More six there thousand than are nine the languages across hundred world more. - Are more six than there thousand nine hundred languages more world across the. - There more are than thousand six nine more hundred languages across the world. - There are more than six thousand nine world across hundred more languages the. - Are thousand six than more there nine world across hundred languages the more. - More than there are six thousand nine world languages more hundred the across. - Six than thousand are there more nine languages the across hundred world more. - Are than more six there thousand nine across more hundred the world languages. - There than are more thousand six nine more across the world hundred languages. - There thousand are more six than nine across more world hundred the languages. - Are more than there thousand six nine the across hundred more world languages. - Six there are than more thousand nine hundred more world languages the across. - There than are six thousand more nine languages more world hundred the across. - Are more than six thousand there nine hundred world the across more languages. - Than six thousand there more are nine the across world languages more hundred. - Six there thousand more than are nine world the hundred across more languages. - More six are there than thousand nine world across languages hundred more the. - Thousand are there six than more nine hundred languages world across more the. - Than thousand are more six there nine across hundred more languages the world. - Are six thousand than there more nine across more world hundred the languages. - There six than are thousand more nine hundred world more languages across the. - Than there six are more thousand nine languages the hundred world more across. \ No newline at end of file diff --git a/Concordance_Patches/patchericofortheconcordance.txt b/Concordance_Patches/patchericofortheconcordance.txt deleted file mode 100644 index f1aa550..0000000 --- a/Concordance_Patches/patchericofortheconcordance.txt +++ /dev/null @@ -1,74 +0,0 @@ - More six than there are thousand nine languages across hundred more the world. - Are there six more than thousand nine world languages across more hundred the. -Are there six more than thousand nine world languages across more hundred the. A -re there six more than thousand nine world languages across more hundred the. Ar -e there six more than thousand nine world languages across more hundred the. Are - there six more than thousand nine world languages across more hundred the. Are -there six more than thousand nine world languages across more hundred the. Are t -here six more than thousand nine world languages across more hundred the. Are th -ere six more than thousand nine world languages across more hundred the. Are the -re six more than thousand nine world languages across more hundred the. Are ther -e six more than thousand nine world languages across more hundred the. Are there - six more than thousand nine world languages across more hundred the. Are there -six more than thousand nine world languages across more hundred the. Are there s -ix more than thousand nine world languages across more hundred the. Are there si -x more than thousand nine world languages across more hundred the. Are there six - more than thousand nine world languages across more hundred the. Are there six -more than thousand nine world languages across more hundred the. Are there six m -ore than thousand nine world languages across more hundred the. Are there six mo -re than thousand nine world languages across more hundred the. Are there six mor -e than thousand nine world languages across more hundred the. Are there six more - than thousand nine world languages across more hundred the. Are there six more -than thousand nine world languages across more hundred the. Are there six more t -han thousand nine world languages across more hundred the. Are there six more th -an thousand nine world languages across more hundred the. Are there six more tha -n thousand nine world languages across more hundred the. Are there six more than - thousand nine world languages across more hundred the. Are there six more than -thousand nine world languages across more hundred the. Are there six more than t -housand nine world languages across more hundred the. Are there six more than th -ousand nine world languages across more hundred the. Are there six more than tho -usand nine world languages across more hundred the. Are there six more than thou -sand nine world languages across more hundred the. Are there six more than thous -and nine world languages across more hundred the. Are there six more than thousa -nd nine world languages across more hundred the. Are there six more than thousan -d nine world languages across more hundred the. Are there six more than thousand - nine world languages across more hundred the. Are there six more than thousand -nine world languages across more hundred the. Are there six more than thousand n -ine world languages across more hundred the. Are there six more than thousand ni -ne world languages across more hundred the. Are there six more than thousand nin -e world languages across more hundred the. Are there six more than thousand nine - world languages across more hundred the. Are there six more than thousand nine -world languages across more hundred the. Are there six more than thousand nine w -orld languages across more hundred the. Are there six more than thousand nine wo -rld languages across more hundred the. Are there six more than thousand nine wor -ld languages across more hundred the. Are there six more than thousand nine worl -d languages across more hundred the. Are there six more than thousand nine world - languages across more hundred the. Are there six more than thousand nine world -languages across more hundred the. Are there six more than thousand nine world l -anguages across more hundred the. Are there six more than thousand nine world la -nguages across more hundred the. Are there six more than thousand nine world lan -guages across more hundred the. Are there six more than thousand nine world lang -uages across more hundred the. Are there six more than thousand nine world langu -ages across more hundred the. Are there six more than thousand nine world langua -ges across more hundred the. Are there six more than thousand nine world languag -es across more hundred the. Are there six more than thousand nine world language -s across more hundred the. Are there six more than thousand nine world languages - across more hundred the. Are there six more than thousand nine world languages -across more hundred the. Are there six more than thousand nine world languages a -cross more hundred the. Are there six more than thousand nine world languages ac -ross more hundred the. Are there six more than thousand nine world languages acr -oss more hundred the. Are there six more than thousand nine world languages acro -ss more hundred the. Are there six more than thousand nine world languages acros -s more hundred the. Are there six more than thousand nine world languages across - more hundred the. Are there six more than thousand nine world languages across -more hundred the. Are there six more than thousand nine world languages across m -ore hundred the. Are there six more than thousand nine world languages across mo -re hundred the. Are there six more than thousand nine world languages across mor -e hundred the. Are there six more than thousand nine world languages across more - hundred the. Are there six more than thousand nine world languages across more -hundred the. Are there six more than thousand nine world languages across more h -undred the. Are there six more than thousand nine world languages across more hu -ndred the. Are there six more than thousand nine world languages across more hun -dred the. Are there six more than thousand nine world languages across more hund -red the. Are there six more than thousand nine world languages across more hundr -ed the. Are there six more than thousand nine world languages across more hundre \ No newline at end of file diff --git a/Concordance_Patches/tryout2 floor.txt b/Concordance_Patches/tryout2 floor.txt deleted file mode 100644 index 91415d5..0000000 --- a/Concordance_Patches/tryout2 floor.txt +++ /dev/null @@ -1,74 +0,0 @@ - women -e women -, women -y t women -e sh women -ety , caste -ocal caste -pon caste -i village -n o village -ha v village -y est village - comes village - born i hierarchical - i self-rule -ine Self-rule -er o self-rule -es ha self-rule -t is a small -Telanga system system - ] , A system system -s , w social -es , f Social - [ 11 ] social -nce move nature -owards othe nature -onal belief in nature -nd the intrinsic nature -ng the conservation nature -feguards – this local s Nature - the earth by reconnecting nature -ns and between humans and the nature -aj [ i ] and RED appear to be ga ground -tion can control them ’ [ i ] , D women -exploited in multiple ways . As women -, over the last three decades , women -y town ) , fought for land rig women -e shunned as Dalits , margina women -es and communities at the ce governance -ed energy production , governance -h is envisioned to governance -trialism , pa other other other other -rganisation th other other other other -. Both in Mendh other other other other -( a government s other other other other -cy change , and p other other other other -y other respects . other other other other -limits of the Earth other other other other - , it quickly found other other other other - , ‘ able ’ ities , s other other other other -ance . Nature , natura other other other other -ties at the centre of g economy -nciple , in which economy -mportant elem economy -cient In people -fiv people -i ] Adivasi [ i ] people , indigeno people -bals ’ . About thirty years ag people -, Dongria Kondh adivasis people -tem ( mostly amongst people -cal Democracy a people -to be gain people -the U Rights -lation rights -nshrined Rights - in a nearb rights -pects the lim rights -conomies , gend rights -d political entit rights -ns , indigenous peo rights - and worldviews relat human -compassing individual t human -ing and requires a holist human --making power at the smalle human diff --git a/PIL-basics.ipynb b/PIL-basics.ipynb deleted file mode 100644 index b93a938..0000000 --- a/PIL-basics.ipynb +++ /dev/null @@ -1,399 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# PIL(low) talk\n", - "\n", - "The \"classic\" Python Image Library (or PIL) is described in the (classic) handbook:\n", - "http://www.effbot.org/imagingbook/pil-index.htm\n", - "\n", - "In fact, the current library that people tend to use is called [Pillow](https://pillow.readthedocs.io/en/stable/), but as a \"friendly fork\" it tries to acts just like the old PIL library, so you don't even notice (and your code still uses the name PIL). The Pillow project also maintains it's own documenation at:\n", - "\n", - "https://pillow.readthedocs.io/en/stable/reference/index.html\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from PIL import Image" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im = Image.open(\"camera128.png\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im = Image.open(\"1024px-IBM_Keypunch_Machines_in_use.jpg\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im.size" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im.mode" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im.thumbnail( (320, 320) )" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im.size" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from urllib.request import urlopen" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "f = urlopen(\"https://upload.wikimedia.org/wikipedia/commons/1/10/NOLAPunchCards1938.jpg\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key2 = Image.open(f)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key2.size" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key2.convert(\"1\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key2.thumbnail((1024, 1024))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key2.save(\"keypunch.png\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3 = Image.open( urlopen(\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/IBM26.jpg/1024px-IBM26.jpg\") )" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3.size" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3.convert(\"1\", dither=Image.NONE)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3.convert(\"L\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3 = key3.thumbnail((64, 64))" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key3 is None" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from PIL import ImageDraw" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "gray.save(\"keypunch_gray.png\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "key2.convert?" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "import aalib" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "screen = aalib.AsciiScreen(width=640, height=480)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "f = urlopen('https://www.python.org/static/favicon.ico')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im = Image.open(f)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im = im.convert('L').resize(screen.virtual_size)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "im" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "screen.virtual_size" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "screen.put_image((0, 0), im)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "print (screen.render())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "resized = key2.convert(\"L\").resize(screen.virtual_size)\n", - "screen.put_image((0, 0), resized)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "screen.render()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "resized" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/TheGhostscriptImposition.ipynb b/TheGhostscriptImposition.ipynb deleted file mode 100644 index 86e96cd..0000000 --- a/TheGhostscriptImposition.ipynb +++ /dev/null @@ -1,525 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# The Ghostscript Imposition\n", - "\n", - "> Imposition is one of the fundamental steps in the prepress printing process. It consists of the arrangement of the printed product’s pages on the printer’s sheet, in order to obtain faster printing, simplify binding and reduce paper waste.\n", - "\n", - "> Correct imposition minimizes printing time by maximizing the number of pages per impression, reducing cost of press time and materials. To achieve this, the printed sheet must be filled as fully as possible. \n", - "\n", - "https://en.wikipedia.org/wiki/Imposition\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Paged media: A timeline\n", - "\n", - "**1980s**\n", - "\n", - "[![](https://www.graphic-reseau.com/media/catalog/product/cache/3/small_image/170x170/9df78eab33525d08d6e5fb8d27136e95/l/o/logo-adobepostscript.png)](https://en.wikipedia.org/wiki/PostScript) [![](https://www.ghostscript.com/images/ghostscript_logo.png)](https://en.wikipedia.org/wiki/Ghostscript)\n", - "\n", - "\n", - "**1990s**\n", - "\n", - "[![](https://web.archive.org/web/19970304211647im_/http://www3.adobe.com/GIFS/getacro.gif)](https://en.wikipedia.org/wiki/PDF) [![](https://pzwiki.wdka.nl/mw-mediadesign/images/f/f4/Mosaic.png)](https://en.wikipedia.org/wiki/HTML)\n", - "\n", - "[Dave Raggett's Touch of Style tutorial](https://www.w3.org/MarkUp/Guide/Style) from/updated 2002, is a good introduction to and reflection on using CSS for the web -- notice there's almost no discussion of print -- it's all about how pages get rendered online, aka in a web browser. This is still the focus of CSS today... but...\n", - "\n", - "**TODAY**\n", - "\n", - "![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/180px-HTML5_logo_and_wordmark.svg.png) [![](https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/180px-CSS3_logo_and_wordmark.svg.png)](https://drafts.csswg.org/css-page-3/) ![](https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Adobe_PDF.svg/150px-Adobe_PDF.svg.png)\n", - "\n", - "https://en.wikipedia.org/wiki/CSS\n", - "\n", - "CSS3 includes an extensive [Paged Media Specification](https://drafts.csswg.org/css-page-3/) describing how CSS can be *also* used to render \"paged media\" (ie when printed or saved as PDF). Most browsers do not implement these rules (except in some cases when you print a page). The *Weasyprint* python library implements some of these guidelines." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## The \"UNIX\" philosophy of small tools composed together (and the pipeline)\n", - "![](https://thedailykylie.files.wordpress.com/2013/03/tool-box.jpg)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Use the !shell\n", - "Jupyter (and ipython before it) supports the use of shell commands fluidly along side your python code. When the line starts with a **!** (the exclamation point, often called **bang** by command line users), the command is interpreted as a shell command and performed, the results displayed below, just like with python code. Note that the shell has different rules about what a good structure is. In any case the first word is the name of a command..." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!date" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!whoami" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!ls" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## An zine introduction to the terminal\n", - "\n", - "https://solarpunk.cool/zines/map-is-the-territory/\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## MAN oh MAN" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "A very important concept from the UNIX / Linux / Libre software world is that documentation ought to be seen as an full part of the distribution of software. When software is installed, it often installs a so-called \"man page\" (for manual). You can then read the manual with the \"man\" command followed by the command you are interested in..." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!man gs" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "If you read the manual on the man command itself (type man man)... You see it supports different output formats. The -t option outputs in the Postscript language." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!man -t gs" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Not very pretty, luckily we have **ghostscript** which is the basis of many smaller commands, such as one to convert postscript to pdf. The command is called **ps2pdf**. When can connect the two commands together in so called **pipeline** with the **|** character -- which is called the *pipe* because of this usage." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "First let's make a folder for our manuals" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!mkdir -p man" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now let's run man gs and pipe the output to ps2pdf, saving in the file [man/gs.pdf](man/gs.pdf)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!man -t gs | ps2pdf - man/gs.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## A PDF Toolkit\n", - "\n", - "* python: ReportLab (more for *generation* not pre-existing PDF)\n", - "* [gs](gs.pdf)\n", - "* [ps2pdf](ps2pdf.pdf), [pdf2ps](pdf2ps.pdf)\n", - "* [psnup](psnup.pdf), and [poster](poster.pdf)/[pdfposter](pdfposter.pdf)\n", - "* [pstops](pstops.pdf)\n", - "* [pdfunite](pdfunite.pdf), [pdfseparate](pdfseparate.pdf)\n", - "* pdftk\n", - "* python: [pikepdf](https://github.com/pikepdf/pikepdf) *active project* with [docs](https://pikepdf.readthedocs.io/en/latest/index.html) and a fish logo\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Some links that were used in developing some of this notebook:\n", - "\n", - "* https://www.novell.com/documentation/suse91/suselinux-adminguide/html/ch06s08.html\n", - "* https://wiki.scribus.net/canvas/How_to_make_impositions_with_pstops\n" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Make some **man**-uals with **ps2pdf**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!man -t psnup | ps2pdf - man/psnup.pdf\n", - "!man -t pstops | ps2pdf - man/pstops.pdf\n", - "!man -t ps2pdf | ps2pdf - man/ps2pdf.pdf\n", - "!man -t pdf2ps | ps2pdf - man/pdf2ps.pdf\n", - "!man -t pdftk | ps2pdf - man/pdftk.pdf\n", - "!man -t pdfposter | ps2pdf - man/pdfposter.pdf\n", - "!man -t poster | ps2pdf - man/poster.pdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# NB These tools are often part of other packages of tools, for instanced:\n", - "# apt install ghostscript psutils pdfposter" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Read the label with **pdfinfo**\n", - "PDFs have useful info like number of pages and the (default) page size, but also can contain various *metadata* like Title, Keywords, and Author, and the \"Producer\" which often indicates what software was used to make the file." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdfinfo txt/language.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Back to the Future with **pdf2ps**\n", - "Many of the commands discussed here have their origins in the 1990s and were written to work with Postscript. Luckily there's also a **pdf2ps** command to go from PDF to Postscript. This command outputs (unless otherwise told) in a file with the same name but extension .ps\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdf2ps txt/language.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "[language.ps](language.ps)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## **psnup** saves trees" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!psnup -2 language.ps psnup.ps" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "To look at it, run the ps2pdf..." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!ps2pdf psnup.ps psnup.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "AND LOOK HERE: [psnup.pdf](psnup.pdf)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!psnup -2 -p a3 -s a3 language.ps psnup.ps" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Repeat the steps above to see it (make sure you close the PDF to reload it).\n", - "\n", - "The -c option lays out in column order (instead of rows). Check out the [manual](man/psnup.pdf)." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!psnup -16 -c language.ps psnup.ps" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!psnup -16 -c -p a0 language.ps psnup.ps" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## **pdftk** is another PDF toolkit\n", - "This command can do many things. Let's use it to extract a page" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdftk A=txt/language.pdf cat A1 output 1.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Scale (among other things) with the multi-faceted **pstops**" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdf2ps 1.pdf 1.ps\n", - "# Scale up A4 to A2, A0\n", - "!pstops \"0@2.0\" -pa2 1.ps 1.output.ps\n", - "!pstops \"0@4.0\" -pa0 1.ps 1.a0.ps" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "NB: When subsequently using **ps2pdf** on a resized postscript file, you should explictly specify the output paper size:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!ps2pdf -sPAPERSIZE=a0 1.a0.ps 1.a0.pdf" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdfinfo 1.a0.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## From pdf to ps and back again with a **pipeline sandwich**\n", - "You might say, what a drag that pstops only scales postscript files and not PDF, well just wrap it in a Pipeline sandwich..." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdf2ps 1.pdf - | pstops \"0@4.0\" -pa2 | ps2pdf -sPAPERSIZE=a0 - 1.a0.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Make a blank PDF with **python** and reportlab.pdfgen.canvas" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import A4\n", - "c = Canvas(\"blanka4.pdf\", pagesize=A4, bottomup=0)\n", - "c.showPage()\n", - "c.save()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Tile and zoom with **poster**" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "From the [poster](msn/poster.pdf) manual:\n", - "\n", - ">*Poster* can be used to create a large poster by building it from multiple pages and/or printing it on large me-dia. Itexpects as input a generic (encapsulated) postscript file, normally printing on a single page.Theoutput is again a postscript file, maybe containing multiple pages together building the poster.The outputpages bear cutmarks and have slightly overlapping images for easier assembling. The input picture will bescaled to obtain the desired size" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "#!poster -mA3 -pA0 1.ps | ps2pdf - > poster.poster.pdf\n", - "!poster -v -c0 -iA4 -mA4 -pA0 1.ps | ps2pdf - > poster.poster.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The newer [pdfposter](man/pdfposter.pdf) works directly with PDF files, and has slightly different options.\n", - "\n", - "For example to prints an A4 input file on 8 A3 pages, forming an A0 poster:" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "!pdfposter -mA3 -pA0 1.pdf pdfposter.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## **Puzzle**: Combine tools to make a poster with different elements\n", - "![](https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/15-Puzzle.jpg/330px-15-Puzzle.jpg)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/hotseat.ipynb b/hotseat.ipynb index eeff460..bfd46ed 100644 --- a/hotseat.ipynb +++ b/hotseat.ipynb @@ -37,7 +37,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "kendal\n" + "camilo\n" ] } ], diff --git a/nltk-pos-tagger.ipynb b/nltk-pos-tagger.ipynb deleted file mode 100644 index 48c8798..0000000 --- a/nltk-pos-tagger.ipynb +++ /dev/null @@ -1,1588 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# NLTK - Part of Speech" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "import nltk\n", - "import random" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "To complicate things even further, computer science has its own understanding of “operational semantics” in programming languages, for example in the construction of a programming language interpreter or compiler.\n", - "\n" - ] - } - ], - "source": [ - "lines = open('txt/language.txt').readlines()\n", - "sentence = random.choice(lines)\n", - "print(sentence)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Tokens" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['To', 'complicate', 'things', 'even', 'further', ',', 'computer', 'science', 'has', 'its', 'own', 'understanding', 'of', '“', 'operational', 'semantics', '”', 'in', 'programming', 'languages', ',', 'for', 'example', 'in', 'the', 'construction', 'of', 'a', 'programming', 'language', 'interpreter', 'or', 'compiler', '.']\n" - ] - } - ], - "source": [ - "tokens = nltk.word_tokenize(sentence)\n", - "print(tokens)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Part of Speech \"tags\"" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "[('To', 'TO'), ('complicate', 'VB'), ('things', 'NNS'), ('even', 'RB'), ('further', 'RB'), (',', ','), ('computer', 'NN'), ('science', 'NN'), ('has', 'VBZ'), ('its', 'PRP$'), ('own', 'JJ'), ('understanding', 'NN'), ('of', 'IN'), ('“', 'NNP'), ('operational', 'JJ'), ('semantics', 'NNS'), ('”', 'VBP'), ('in', 'IN'), ('programming', 'NN'), ('languages', 'NNS'), (',', ','), ('for', 'IN'), ('example', 'NN'), ('in', 'IN'), ('the', 'DT'), ('construction', 'NN'), ('of', 'IN'), ('a', 'DT'), ('programming', 'JJ'), ('language', 'NN'), ('interpreter', 'NN'), ('or', 'CC'), ('compiler', 'NN'), ('.', '.')]\n" - ] - } - ], - "source": [ - "tagged = nltk.pos_tag(tokens)\n", - "print(tagged)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Now, you could select for example all the type of **verbs**:" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "['complicate', 'has', '”']\n" - ] - } - ], - "source": [ - "selection = []\n", - "\n", - "for word, tag in tagged:\n", - " if 'VB' in tag:\n", - " selection.append(word)\n", - "\n", - "print(selection)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "### Where do these tags come from?" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "> An off-the-shelf tagger is available for English. It uses the Penn Treebank tagset.\n", - "\n", - "From: http://www.nltk.org/api/nltk.tag.html#module-nltk.tag" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "> NLTK provides documentation for each tag, which can be queried using the tag, e.g. nltk.help.upenn_tagset('RB').\n", - "\n", - "From: http://www.nltk.org/book_1ed/ch05.html" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "PRP: pronoun, personal\n", - " hers herself him himself hisself it itself me myself one oneself ours\n", - " ourselves ownself self she thee theirs them themselves they thou thy us\n" - ] - } - ], - "source": [ - "nltk.help.upenn_tagset('PRP')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "------------" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "An alphabetical list of part-of-speech tags used in the Penn Treebank Project ([link](https://www.ling.upenn.edu/courses/Fall_2003/ling001/penn_treebank_pos.html)):\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
\n", - "
Number
\n", - "
\n", - "
Tag
\n", - "
\n", - "
Description
\n", - "
1. CC Coordinating conjunction
2. CD Cardinal number
3. DT Determiner
4. EX Existential there
5. FW Foreign word
6. IN Preposition or subordinating conjunction
7. JJ Adjective
8. JJR Adjective, comparative
9. JJS Adjective, superlative
10. LS List item marker
11. MD Modal
12. NN Noun, singular or mass
13. NNS Noun, plural
14. NNP Proper noun, singular
15. NNPS Proper noun, plural
16. PDT Predeterminer
17. POS Possessive ending
18. PRP Personal pronoun
19. PRP\\$ Possessive pronoun
20. RB Adverb
21. RBR Adverb, comparative
22. RBS Adverb, superlative
23. RP Particle
24. SYM Symbol
25. TO to
26. UH Interjection
27. VB Verb, base form
28. VBD Verb, past tense
29. VBG Verb, gerund or present participle
30. VBN Verb, past participle
31. VBP Verb, non-3rd person singular present
32. VBZ Verb, 3rd person singular present
33. WDT Wh-determiner
34. WP Wh-pronoun
35. WP$ Possessive wh-pronoun
36. WRB Wh-adverb \n", - "
" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## A telling/tricky case\n", - "It's important to realize that POS tagging is not a fixed property of a word -- but depends on the context of each word. The NLTK book gives an example of [homonyms](http://www.nltk.org/book_1ed/ch05.html#using-a-tagger) -- words that are written the same, but are actually pronounced differently and have different meanings depending on their use." - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[('They', 'PRP'),\n", - " ('refuse', 'VBP'),\n", - " ('to', 'TO'),\n", - " ('permit', 'VB'),\n", - " ('us', 'PRP'),\n", - " ('to', 'TO'),\n", - " ('obtain', 'VB'),\n", - " ('the', 'DT'),\n", - " ('refuse', 'NN'),\n", - " ('permit', 'NN')]" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "text = nltk.word_tokenize(\"They refuse to permit us to obtain the refuse permit\")\n", - "nltk.pos_tag(text)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "From the book:\n", - "\n", - "> Notice that refuse and permit both appear as a present tense verb (VBP) and a noun (NN). E.g. refUSE is a verb meaning \"deny,\" while REFuse is a noun meaning \"trash\" (i.e. they are not homophones). Thus, we need to know which word is being used in order to pronounce the text correctly. (For this reason, text-to-speech systems usually perform POS-tagging.)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Applying to an entire text" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "language = open('txt/language.txt').read()\n", - "tokens = nltk.word_tokenize(language)\n", - "tagged = nltk.pos_tag(tokens)" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[('Language', 'NN'),\n", - " ('Florian', 'JJ'),\n", - " ('Cramer', 'NNP'),\n", - " ('Software', 'NNP'),\n", - " ('and', 'CC'),\n", - " ('language', 'NN'),\n", - " ('are', 'VBP'),\n", - " ('intrinsically', 'RB'),\n", - " ('related', 'VBN'),\n", - " (',', ','),\n", - " ('since', 'IN'),\n", - " ('software', 'NN'),\n", - " ('may', 'MD'),\n", - " ('process', 'VB'),\n", - " ('language', 'NN'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('is', 'VBZ'),\n", - " ('constructed', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('language', 'NN'),\n", - " ('.', '.'),\n", - " ('Yet', 'CC'),\n", - " ('language', 'NN'),\n", - " ('means', 'VBZ'),\n", - " ('different', 'JJ'),\n", - " ('things', 'NNS'),\n", - " ('in', 'IN'),\n", - " ('the', 'DT'),\n", - " ('context', 'NN'),\n", - " ('of', 'IN'),\n", - " ('computing', 'VBG'),\n", - " (':', ':'),\n", - " ('formal', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('in', 'IN'),\n", - " ('which', 'WDT'),\n", - " ('algorithms', 'EX'),\n", - " ('are', 'VBP'),\n", - " ('expressed', 'VBN'),\n", - " ('and', 'CC'),\n", - " ('software', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('implemented', 'VBN'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('in', 'IN'),\n", - " ('so-called', 'JJ'),\n", - " ('“', 'NNP'),\n", - " ('natural', 'JJ'),\n", - " ('”', 'NNP'),\n", - " ('spoken', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('.', '.'),\n", - " ('There', 'EX'),\n", - " ('are', 'VBP'),\n", - " ('at', 'IN'),\n", - " ('least', 'JJS'),\n", - " ('two', 'CD'),\n", - " ('layers', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('formal', 'JJ'),\n", - " ('language', 'NN'),\n", - " ('in', 'IN'),\n", - " ('software', 'NN'),\n", - " (':', ':'),\n", - " ('programming', 'NN'),\n", - " ('language', 'NN'),\n", - " ('in', 'IN'),\n", - " ('which', 'WDT'),\n", - " ('the', 'DT'),\n", - " ('software', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('written', 'VBN'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('the', 'DT'),\n", - " ('language', 'NN'),\n", - " ('implemented', 'VBD'),\n", - " ('within', 'IN'),\n", - " ('the', 'DT'),\n", - " ('software', 'NN'),\n", - " ('as', 'IN'),\n", - " ('its', 'PRP$'),\n", - " ('symbolic', 'JJ'),\n", - " ('controls', 'NNS'),\n", - " ('.', '.'),\n", - " ('In', 'IN'),\n", - " ('the', 'DT'),\n", - " ('case', 'NN'),\n", - " ('of', 'IN'),\n", - " ('compilers', 'NNS'),\n", - " (',', ','),\n", - " ('shells', 'NNS'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('macro', 'NN'),\n", - " ('languages', 'NNS'),\n", - " (',', ','),\n", - " ('for', 'IN'),\n", - " ('example', 'NN'),\n", - " (',', ','),\n", - " ('these', 'DT'),\n", - " ('layers', 'NNS'),\n", - " ('can', 'MD'),\n", - " ('overlap', 'VB'),\n", - " ('.', '.'),\n", - " ('“', 'VB'),\n", - " ('Natural', 'NNP'),\n", - " ('”', 'NNP'),\n", - " ('language', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('what', 'WP'),\n", - " ('can', 'MD'),\n", - " ('be', 'VB'),\n", - " ('processed', 'VBN'),\n", - " ('as', 'IN'),\n", - " ('data', 'NNS'),\n", - " ('by', 'IN'),\n", - " ('software', 'NN'),\n", - " (';', ':'),\n", - " ('since', 'IN'),\n", - " ('this', 'DT'),\n", - " ('processing', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('formal', 'JJ'),\n", - " (',', ','),\n", - " ('however', 'RB'),\n", - " (',', ','),\n", - " ('it', 'PRP'),\n", - " ('is', 'VBZ'),\n", - " ('restricted', 'VBN'),\n", - " ('to', 'TO'),\n", - " ('syntactical', 'JJ'),\n", - " ('operations', 'NNS'),\n", - " ('.', '.'),\n", - " ('While', 'IN'),\n", - " ('differentiation', 'NN'),\n", - " ('of', 'IN'),\n", - " ('computer', 'NN'),\n", - " ('programming', 'VBG'),\n", - " ('languages', 'NNS'),\n", - " ('as', 'IN'),\n", - " ('“', 'JJ'),\n", - " ('artificial', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('”', 'VBP'),\n", - " ('from', 'IN'),\n", - " ('languages', 'NNS'),\n", - " ('like', 'VBP'),\n", - " ('English', 'NNP'),\n", - " ('as', 'IN'),\n", - " ('“', 'NNP'),\n", - " ('natural', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('”', 'VBP'),\n", - " ('is', 'VBZ'),\n", - " ('conceptually', 'RB'),\n", - " ('important', 'JJ'),\n", - " ('and', 'CC'),\n", - " ('undisputed', 'JJ'),\n", - " (',', ','),\n", - " ('it', 'PRP'),\n", - " ('remains', 'VBZ'),\n", - " ('problematic', 'JJ'),\n", - " ('in', 'IN'),\n", - " ('its', 'PRP$'),\n", - " ('pure', 'NN'),\n", - " ('terminology', 'NN'),\n", - " (':', ':'),\n", - " ('There', 'EX'),\n", - " ('is', 'VBZ'),\n", - " ('nothing', 'NN'),\n", - " ('“', 'JJ'),\n", - " ('natural', 'JJ'),\n", - " ('”', 'NN'),\n", - " ('about', 'IN'),\n", - " ('spoken', 'JJ'),\n", - " ('language', 'NN'),\n", - " (';', ':'),\n", - " ('it', 'PRP'),\n", - " ('is', 'VBZ'),\n", - " ('a', 'DT'),\n", - " ('cultural', 'JJ'),\n", - " ('construct', 'NN'),\n", - " ('and', 'CC'),\n", - " ('thus', 'RB'),\n", - " ('just', 'RB'),\n", - " ('as', 'IN'),\n", - " ('“', 'JJ'),\n", - " ('artificial', 'JJ'),\n", - " ('”', 'NN'),\n", - " ('as', 'IN'),\n", - " ('any', 'DT'),\n", - " ('formal', 'JJ'),\n", - " ('machine', 'NN'),\n", - " ('control', 'NN'),\n", - " ('language', 'NN'),\n", - " ('.', '.'),\n", - " ('To', 'TO'),\n", - " ('call', 'VB'),\n", - " ('programming', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('“', 'VBP'),\n", - " ('machine', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('”', 'VBP'),\n", - " ('doesn', 'JJ'),\n", - " ('’', 'NNP'),\n", - " ('t', 'NN'),\n", - " ('solve', 'VBP'),\n", - " ('the', 'DT'),\n", - " ('problem', 'NN'),\n", - " ('either', 'RB'),\n", - " (',', ','),\n", - " ('as', 'IN'),\n", - " ('it', 'PRP'),\n", - " ('obscures', 'VBZ'),\n", - " ('that', 'IN'),\n", - " ('“', 'FW'),\n", - " ('machine', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('”', 'VBP'),\n", - " ('are', 'VBP'),\n", - " ('human', 'JJ'),\n", - " ('creations', 'NNS'),\n", - " ('.', '.'),\n", - " ('High-level', 'JJ'),\n", - " ('machine-independent', 'JJ'),\n", - " ('programming', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('such', 'JJ'),\n", - " ('as', 'IN'),\n", - " ('Fortran', 'NNP'),\n", - " (',', ','),\n", - " ('C', 'NNP'),\n", - " (',', ','),\n", - " ('Java', 'NNP'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('Basic', 'NNP'),\n", - " ('are', 'VBP'),\n", - " ('not', 'RB'),\n", - " ('even', 'RB'),\n", - " ('direct', 'JJ'),\n", - " ('mappings', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('machine', 'NN'),\n", - " ('logic', 'NN'),\n", - " ('.', '.'),\n", - " ('If', 'IN'),\n", - " ('programming', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('are', 'VBP'),\n", - " ('human', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('for', 'IN'),\n", - " ('machine', 'NN'),\n", - " ('control', 'NN'),\n", - " (',', ','),\n", - " ('they', 'PRP'),\n", - " ('could', 'MD'),\n", - " ('be', 'VB'),\n", - " ('called', 'VBN'),\n", - " ('cybernetic', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('.', '.'),\n", - " ('But', 'CC'),\n", - " ('these', 'DT'),\n", - " ('languages', 'NNS'),\n", - " ('can', 'MD'),\n", - " ('also', 'RB'),\n", - " ('be', 'VB'),\n", - " ('used', 'VBN'),\n", - " ('outside', 'JJ'),\n", - " ('machines—in', 'NN'),\n", - " ('programming', 'VBG'),\n", - " ('handbooks', 'NNS'),\n", - " (',', ','),\n", - " ('for', 'IN'),\n", - " ('example', 'NN'),\n", - " (',', ','),\n", - " ('in', 'IN'),\n", - " ('programmer', 'NN'),\n", - " ('’', 'NNP'),\n", - " ('s', 'NN'),\n", - " ('dinner', 'NN'),\n", - " ('table', 'JJ'),\n", - " ('jokes', 'NNS'),\n", - " (',', ','),\n", - " ('or', 'CC'),\n", - " ('as', 'IN'),\n", - " ('abstract', 'JJ'),\n", - " ('formal', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('for', 'IN'),\n", - " ('expressing', 'VBG'),\n", - " ('logical', 'JJ'),\n", - " ('constructs', 'NNS'),\n", - " (',', ','),\n", - " ('such', 'JJ'),\n", - " ('as', 'IN'),\n", - " ('in', 'IN'),\n", - " ('Hugh', 'NNP'),\n", - " ('Kenner', 'NNP'),\n", - " ('’', 'NNP'),\n", - " ('s', 'NN'),\n", - " ('use', 'NN'),\n", - " ('of', 'IN'),\n", - " ('the', 'DT'),\n", - " ('Pascal', 'NNP'),\n", - " ('programming', 'NN'),\n", - " ('language', 'NN'),\n", - " ('to', 'TO'),\n", - " ('explain', 'VB'),\n", - " ('aspects', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('the', 'DT'),\n", - " ('structure', 'NN'),\n", - " ('of', 'IN'),\n", - " ('Samuel', 'NNP'),\n", - " ('Beckett', 'NNP'),\n", - " ('’', 'NNP'),\n", - " ('s', 'VBD'),\n", - " ('writing.1', 'NN'),\n", - " ('In', 'IN'),\n", - " ('this', 'DT'),\n", - " ('sense', 'NN'),\n", - " (',', ','),\n", - " ('computer', 'NN'),\n", - " ('control', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('could', 'MD'),\n", - " ('be', 'VB'),\n", - " ('more', 'RBR'),\n", - " ('broadly', 'RB'),\n", - " ('defined', 'VBN'),\n", - " ('as', 'IN'),\n", - " ('syntactical', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('as', 'IN'),\n", - " ('opposed', 'VBN'),\n", - " ('to', 'TO'),\n", - " ('semantic', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('.', '.'),\n", - " ('But', 'CC'),\n", - " ('this', 'DT'),\n", - " ('terminology', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('not', 'RB'),\n", - " ('without', 'IN'),\n", - " ('its', 'PRP$'),\n", - " ('problems', 'NNS'),\n", - " ('either', 'DT'),\n", - " ('.', '.'),\n", - " ('Common', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('like', 'IN'),\n", - " ('English', 'NNP'),\n", - " ('are', 'VBP'),\n", - " ('both', 'DT'),\n", - " ('formal', 'JJ'),\n", - " ('and', 'CC'),\n", - " ('semantic', 'JJ'),\n", - " (';', ':'),\n", - " ('although', 'IN'),\n", - " ('their', 'PRP$'),\n", - " ('scope', 'NN'),\n", - " ('extends', 'VBZ'),\n", - " ('beyond', 'IN'),\n", - " ('the', 'DT'),\n", - " ('formal', 'JJ'),\n", - " (',', ','),\n", - " ('anything', 'NN'),\n", - " ('that', 'WDT'),\n", - " ('can', 'MD'),\n", - " ('be', 'VB'),\n", - " ('expressed', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('a', 'DT'),\n", - " ('computer', 'NN'),\n", - " ('control', 'NN'),\n", - " ('language', 'NN'),\n", - " ('can', 'MD'),\n", - " ('also', 'RB'),\n", - " ('be', 'VB'),\n", - " ('expressed', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('common', 'JJ'),\n", - " ('language', 'NN'),\n", - " ('.', '.'),\n", - " ('It', 'PRP'),\n", - " ('follows', 'VBZ'),\n", - " ('that', 'IN'),\n", - " ('computer', 'NN'),\n", - " ('control', 'NN'),\n", - " ('languages', 'NNS'),\n", - " ('are', 'VBP'),\n", - " ('a', 'DT'),\n", - " ('formal', 'JJ'),\n", - " ('(', '('),\n", - " ('and', 'CC'),\n", - " ('as', 'IN'),\n", - " ('such', 'JJ'),\n", - " ('rather', 'RB'),\n", - " ('primitive', 'JJ'),\n", - " (')', ')'),\n", - " ('subset', 'NN'),\n", - " ('of', 'IN'),\n", - " ('common', 'JJ'),\n", - " ('human', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " ('.', '.'),\n", - " ('To', 'TO'),\n", - " ('complicate', 'VB'),\n", - " ('things', 'NNS'),\n", - " ('even', 'RB'),\n", - " ('further', 'RB'),\n", - " (',', ','),\n", - " ('computer', 'NN'),\n", - " ('science', 'NN'),\n", - " ('has', 'VBZ'),\n", - " ('its', 'PRP$'),\n", - " ('own', 'JJ'),\n", - " ('understanding', 'NN'),\n", - " ('of', 'IN'),\n", - " ('“', 'NNP'),\n", - " ('operational', 'JJ'),\n", - " ('semantics', 'NNS'),\n", - " ('”', 'VBP'),\n", - " ('in', 'IN'),\n", - " ('programming', 'NN'),\n", - " ('languages', 'NNS'),\n", - " (',', ','),\n", - " ('for', 'IN'),\n", - " ('example', 'NN'),\n", - " ('in', 'IN'),\n", - " ('the', 'DT'),\n", - " ('construction', 'NN'),\n", - " ('of', 'IN'),\n", - " ('a', 'DT'),\n", - " ('programming', 'JJ'),\n", - " ('language', 'NN'),\n", - " ('interpreter', 'NN'),\n", - " ('or', 'CC'),\n", - " ('compiler', 'NN'),\n", - " ('.', '.'),\n", - " ('Just', 'RB'),\n", - " ('as', 'IN'),\n", - " ('this', 'DT'),\n", - " ('interpreter', 'NN'),\n", - " ('doesn', 'NN'),\n", - " ('’', 'NNP'),\n", - " ('t', 'NN'),\n", - " ('perform', 'NN'),\n", - " ('“', 'NNP'),\n", - " ('interpretations', 'NNS'),\n", - " ('”', 'VBP'),\n", - " ('in', 'IN'),\n", - " ('a', 'DT'),\n", - " ('hermeneutic', 'JJ'),\n", - " ('sense', 'NN'),\n", - " ('of', 'IN'),\n", - " ('semantic', 'JJ'),\n", - " ('text', 'NN'),\n", - " ('explication', 'NN'),\n", - " (',', ','),\n", - " ('the', 'DT'),\n", - " ('computer', 'NN'),\n", - " ('science', 'NN'),\n", - " ('notion', 'NN'),\n", - " ('of', 'IN'),\n", - " ('“', 'JJ'),\n", - " ('semantics', 'NNS'),\n", - " ('”', 'JJ'),\n", - " ('defies', 'NNS'),\n", - " ('linguistic', 'JJ'),\n", - " ('and', 'CC'),\n", - " ('common', 'JJ'),\n", - " ('sense', 'NN'),\n", - " ('understanding', 'NN'),\n", - " ('of', 'IN'),\n", - " ('the', 'DT'),\n", - " ('word', 'NN'),\n", - " (',', ','),\n", - " ('since', 'IN'),\n", - " ('compiler', 'NN'),\n", - " ('construction', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('purely', 'RB'),\n", - " ('syntactical', 'JJ'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('programming', 'VBG'),\n", - " ('languages', 'NNS'),\n", - " ('denote', 'VBP'),\n", - " ('nothing', 'NN'),\n", - " ('but', 'CC'),\n", - " ('syntactical', 'JJ'),\n", - " ('manipulations', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('symbols', 'NNS'),\n", - " ('.', '.'),\n", - " ('What', 'WP'),\n", - " ('might', 'MD'),\n", - " ('more', 'JJR'),\n", - " ('suitably', 'RB'),\n", - " ('be', 'VB'),\n", - " ('called', 'VBN'),\n", - " ('the', 'DT'),\n", - " ('semantics', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('computer', 'NN'),\n", - " ('control', 'NN'),\n", - " ('languages', 'VBZ'),\n", - " ('resides', 'NNS'),\n", - " ('in', 'IN'),\n", - " ('the', 'DT'),\n", - " ('symbols', 'NNS'),\n", - " ('with', 'IN'),\n", - " ('which', 'WDT'),\n", - " ('those', 'DT'),\n", - " ('operations', 'NNS'),\n", - " ('are', 'VBP'),\n", - " ('denoted', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('most', 'JJS'),\n", - " ('programming', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " (':', ':'),\n", - " ('English', 'JJ'),\n", - " ('words', 'NNS'),\n", - " ('like', 'IN'),\n", - " ('“', 'NN'),\n", - " ('if', 'IN'),\n", - " (',', ','),\n", - " ('”', 'FW'),\n", - " ('“', 'FW'),\n", - " ('then', 'RB'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('else', 'RB'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('for', 'IN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('while', 'IN'),\n", - " (',', ','),\n", - " ('”', 'FW'),\n", - " ('“', 'NNP'),\n", - " ('goto', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('and', 'CC'),\n", - " ('“', 'NNP'),\n", - " ('print', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NN'),\n", - " ('in', 'IN'),\n", - " ('conjunction', 'NN'),\n", - " ('with', 'IN'),\n", - " ('arithmetical', 'JJ'),\n", - " ('and', 'CC'),\n", - " ('punctuation', 'NN'),\n", - " ('symbols', 'NNS'),\n", - " (';', ':'),\n", - " ('in', 'IN'),\n", - " ('alphabetic', 'JJ'),\n", - " ('software', 'NN'),\n", - " ('controls', 'NNS'),\n", - " (',', ','),\n", - " ('words', 'NNS'),\n", - " ('like', 'IN'),\n", - " ('“', 'NNP'),\n", - " ('list', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('move', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('copy', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NN'),\n", - " ('and', 'CC'),\n", - " ('“', 'NNP'),\n", - " ('paste', 'NN'),\n", - " ('”', 'NN'),\n", - " (';', ':'),\n", - " ('in', 'IN'),\n", - " ('graphical', 'JJ'),\n", - " ('software', 'NN'),\n", - " ('controls', 'NNS'),\n", - " (',', ','),\n", - " ('such', 'JJ'),\n", - " ('as', 'IN'),\n", - " ('symbols', 'NNS'),\n", - " ('like', 'IN'),\n", - " ('the', 'DT'),\n", - " ('trash', 'NN'),\n", - " ('can', 'MD'),\n", - " ('.', '.'),\n", - " ('Ferdinand', 'NNP'),\n", - " ('de', 'IN'),\n", - " ('Saussure', 'NNP'),\n", - " ('states', 'VBZ'),\n", - " ('that', 'IN'),\n", - " ('the', 'DT'),\n", - " ('signs', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('common', 'JJ'),\n", - " ('human', 'JJ'),\n", - " ('language', 'NN'),\n", - " ('are', 'VBP'),\n", - " ('arbitrary2', 'RB'),\n", - " ('because', 'IN'),\n", - " ('it', 'PRP'),\n", - " ('’', 'VBZ'),\n", - " ('s', 'JJ'),\n", - " ('purely', 'RB'),\n", - " ('a', 'DT'),\n", - " ('cultural-social', 'JJ'),\n", - " ('convention', 'NN'),\n", - " ('that', 'IN'),\n", - " ('assigns', 'VBZ'),\n", - " ('phonemes', 'NNS'),\n", - " ('to', 'TO'),\n", - " ('concepts', 'NNS'),\n", - " ('.', '.'),\n", - " ('Likewise', 'NNP'),\n", - " (',', ','),\n", - " ('it', 'PRP'),\n", - " ('’', 'VBZ'),\n", - " ('s', 'JJ'),\n", - " ('purely', 'RB'),\n", - " ('a', 'DT'),\n", - " ('cultural', 'JJ'),\n", - " ('convention', 'NN'),\n", - " ('to', 'TO'),\n", - " ('assign', 'VB'),\n", - " ('symbols', 'NNS'),\n", - " ('to', 'TO'),\n", - " ('machine', 'NN'),\n", - " ('operations', 'NNS'),\n", - " ('.', '.'),\n", - " ('But', 'CC'),\n", - " ('just', 'RB'),\n", - " ('as', 'IN'),\n", - " ('the', 'DT'),\n", - " ('cultural', 'JJ'),\n", - " ('choice', 'NN'),\n", - " ('of', 'IN'),\n", - " ('phonemes', 'NNS'),\n", - " ('in', 'IN'),\n", - " ('spoken', 'JJ'),\n", - " ('language', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('restrained', 'VBN'),\n", - " ('by', 'IN'),\n", - " ('what', 'WP'),\n", - " ('the', 'DT'),\n", - " ('human', 'JJ'),\n", - " ('voice', 'NN'),\n", - " ('can', 'MD'),\n", - " ('pronounce', 'VB'),\n", - " (',', ','),\n", - " ('the', 'DT'),\n", - " ('assignment', 'NN'),\n", - " ('of', 'IN'),\n", - " ('symbols', 'NNS'),\n", - " ('to', 'TO'),\n", - " ('machine', 'NN'),\n", - " ('operations', 'NNS'),\n", - " ('is', 'VBZ'),\n", - " ('limited', 'VBN'),\n", - " ('to', 'TO'),\n", - " ('what', 'WP'),\n", - " ('can', 'MD'),\n", - " ('be', 'VB'),\n", - " ('efficiently', 'RB'),\n", - " ('processed', 'VBN'),\n", - " ('by', 'IN'),\n", - " ('the', 'DT'),\n", - " ('machine', 'NN'),\n", - " ('and', 'CC'),\n", - " ('of', 'IN'),\n", - " ('good', 'JJ'),\n", - " ('use', 'NN'),\n", - " ('to', 'TO'),\n", - " ('humans.3', 'VB'),\n", - " ('This', 'DT'),\n", - " ('compromise', 'NN'),\n", - " ('between', 'IN'),\n", - " ('operability', 'NN'),\n", - " ('and', 'CC'),\n", - " ('usability', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('obvious', 'JJ'),\n", - " ('in', 'IN'),\n", - " (',', ','),\n", - " ('for', 'IN'),\n", - " ('example', 'NN'),\n", - " (',', ','),\n", - " ('Unix', 'NNP'),\n", - " ('commands', 'VBZ'),\n", - " ('.', '.'),\n", - " ('Originally', 'RB'),\n", - " ('used', 'VBN'),\n", - " ('on', 'IN'),\n", - " ('teletype', 'NN'),\n", - " ('terminals', 'NNS'),\n", - " (',', ','),\n", - " ('the', 'DT'),\n", - " ('operation', 'NN'),\n", - " ('“', 'NNP'),\n", - " ('copy', 'NN'),\n", - " ('”', 'NN'),\n", - " ('was', 'VBD'),\n", - " ('abbreviated', 'VBN'),\n", - " ('to', 'TO'),\n", - " ('the', 'DT'),\n", - " ('command', 'NN'),\n", - " ('“', 'NNP'),\n", - " ('cp', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('move', 'NN'),\n", - " ('”', 'NN'),\n", - " ('to', 'TO'),\n", - " ('“', 'VB'),\n", - " ('mv', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('“', 'NNP'),\n", - " ('list', 'NN'),\n", - " ('”', 'NN'),\n", - " ('to', 'TO'),\n", - " ('“', 'VB'),\n", - " ('ls', 'NN'),\n", - " (',', ','),\n", - " ('”', 'NNP'),\n", - " ('etc.', 'NN'),\n", - " (',', ','),\n", - " ('in', 'IN'),\n", - " ('order', 'NN'),\n", - " ('to', 'TO'),\n", - " ('cut', 'VB'),\n", - " ('down', 'RP'),\n", - " ('machine', 'NN'),\n", - " ('memory', 'NN'),\n", - " ('use', 'NN'),\n", - " (',', ','),\n", - " ('teletype', 'JJ'),\n", - " ('paper', 'NN'),\n", - " ('consumption', 'NN'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('human', 'JJ'),\n", - " ('typing', 'VBG'),\n", - " ('effort', 'NN'),\n", - " ('at', 'IN'),\n", - " ('the', 'DT'),\n", - " ('same', 'JJ'),\n", - " ('time', 'NN'),\n", - " ('.', '.'),\n", - " ('Any', 'DT'),\n", - " ('computer', 'NN'),\n", - " ('control', 'NN'),\n", - " ('language', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('thus', 'RB'),\n", - " ('a', 'DT'),\n", - " ('cultural', 'JJ'),\n", - " ('compromise', 'NN'),\n", - " ('between', 'IN'),\n", - " ('the', 'DT'),\n", - " ('constraints', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('machine', 'NN'),\n", - " ('design—which', 'NN'),\n", - " ('is', 'VBZ'),\n", - " ('far', 'RB'),\n", - " ('from', 'IN'),\n", - " ('objective', 'JJ'),\n", - " (',', ','),\n", - " ('but', 'CC'),\n", - " ('based', 'VBN'),\n", - " ('on', 'IN'),\n", - " ('human', 'JJ'),\n", - " ('choices', 'NNS'),\n", - " (',', ','),\n", - " ('culture', 'NN'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('thinking', 'VBG'),\n", - " ('style', 'NN'),\n", - " ('itself', 'PRP'),\n", - " ('4—and', 'CD'),\n", - " ('the', 'DT'),\n", - " ('equally', 'RB'),\n", - " ('subjective', 'JJ'),\n", - " ('user', 'NN'),\n", - " ('preferences', 'NNS'),\n", - " (',', ','),\n", - " ('involving', 'VBG'),\n", - " ('fuzzy', 'JJ'),\n", - " ('factors', 'NNS'),\n", - " ('like', 'IN'),\n", - " ('readability', 'NN'),\n", - " (',', ','),\n", - " ('elegance', 'NN'),\n", - " (',', ','),\n", - " ('and', 'CC'),\n", - " ('usage', 'JJ'),\n", - " ('efficiency', 'NN'),\n", - " ('.', '.'),\n", - " ('The', 'DT'),\n", - " ('symbols', 'NNS'),\n", - " ('of', 'IN'),\n", - " ('computer', 'NN'),\n", - " ('control', 'NN'),\n", - " ('languages', 'VBZ'),\n", - " ('inevitably', 'RB'),\n", - " ('do', 'VBP'),\n", - " ('have', 'VB'),\n", - " ('semantic', 'JJ'),\n", - " ('connotations', 'NNS'),\n", - " ('simply', 'RB'),\n", - " ('because', 'IN'),\n", - " ('there', 'EX'),\n", - " ('exist', 'VBP'),\n", - " ('no', 'DT'),\n", - " ('symbols', 'NNS'),\n", - " ('with', 'IN'),\n", - " ('which', 'WDT'),\n", - " ('humans', 'NNS'),\n", - " ('would', 'MD'),\n", - " ('not', 'RB'),\n", - " ('associate', 'VB'),\n", - " ('some', 'DT'),\n", - " ('meaning', 'NN'),\n", - " ('.', '.'),\n", - " ('But', 'CC'),\n", - " ('symbols', 'NNS'),\n", - " ('can', 'MD'),\n", - " ('’', 'VB'),\n", - " ('t', 'JJ'),\n", - " ('denote', 'NN'),\n", - " ('any', 'DT'),\n", - " ('semantic', 'JJ'),\n", - " ('statements', 'NNS'),\n", - " (',', ','),\n", - " ('that', 'DT'),\n", - " ('is', 'VBZ'),\n", - " (',', ','),\n", - " ('they', 'PRP'),\n", - " ('do', 'VBP'),\n", - " ('not', 'RB'),\n", - " ('express', 'VB'),\n", - " ('meaning', 'VBG'),\n", - " ('in', 'IN'),\n", - " ('their', 'PRP$'),\n", - " ('own', 'JJ'),\n", - " ('terms', 'NNS'),\n", - " (';', ':'),\n", - " ('humans', 'NNS'),\n", - " ('metaphorically', 'RB'),\n", - " ('read', 'VB'),\n", - " ('meaning', 'VBG'),\n", - " ('into', 'IN'),\n", - " ('them', 'PRP'),\n", - " ('through', 'IN'),\n", - " ('associations', 'NNS'),\n", - " ('they', 'PRP'),\n", - " ('make', 'VBP'),\n", - " ('.', '.'),\n", - " ('Languages', 'NNS'),\n", - " ('without', 'IN'),\n", - " ('semantic', 'JJ'),\n", - " ('denotation', 'NN'),\n", - " ('are', 'VBP'),\n", - " ('not', 'RB'),\n", - " ('historically', 'RB'),\n", - " ('new', 'JJ'),\n", - " ('phenomena', 'NNS'),\n", - " (';', ':'),\n", - " ('mathematical', 'JJ'),\n", - " ('formulas', 'NNS'),\n", - " ('are', 'VBP'),\n", - " ('their', 'PRP$'),\n", - " ('oldest', 'JJS'),\n", - " ('example', 'NN'),\n", - " ('.', '.'),\n", - " ('In', 'IN'),\n", - " ('comparison', 'NN'),\n", - " ('to', 'TO'),\n", - " ('common', 'JJ'),\n", - " ('human', 'JJ'),\n", - " ('languages', 'NNS'),\n", - " (',', ','),\n", - " ('the', 'DT'),\n", - " ('multitude', 'NN'),\n", - " ('of', 'IN'),\n", - " ('programming', 'VBG'),\n", - " ('languages', 'NNS'),\n", - " ('is', 'VBZ'),\n", - " ('of', 'IN'),\n", - " ('lesser', 'JJR'),\n", - " ('significance', 'NN'),\n", - " ('.', '.'),\n", - " ('The', 'DT'),\n", - " ('criterion', 'NN'),\n", - " ('of', 'IN'),\n", - " ('Turing', 'NNP'),\n", - " ('completeness', 'NN'),\n", - " ('of', 'IN'),\n", - " ('a', 'DT'),\n", - " ('programming', 'NN'),\n", - " ('language', 'NN'),\n", - " (',', ','),\n", - " ('that', 'WDT'),\n", - " ('is', 'VBZ'),\n", - " (',', ','),\n", - " ('that', 'IN'),\n", - " ('any', 'DT'),\n", - " ('computation', 'NN'),\n", - " ('can', 'MD'),\n", - " ('be', 'VB'),\n", - " ('expressed', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('it', 'PRP'),\n", - " (',', ','),\n", - " ('means', 'VBZ'),\n", - " ('that', 'IN'),\n", - " ('every', 'DT'),\n", - " ('programming', 'NN'),\n", - " ('language', 'NN'),\n", - " ('is', 'VBZ'),\n", - " (',', ','),\n", - " ('formally', 'RB'),\n", - " ('speaking', 'VBG'),\n", - " (',', ','),\n", - " ('just', 'RB'),\n", - " ('a', 'DT'),\n", - " ('riff', 'NN'),\n", - " ('on', 'IN'),\n", - " ('every', 'DT'),\n", - " ('other', 'JJ'),\n", - " ('programming', 'NN'),\n", - " ('language', 'NN'),\n", - " ('.', '.'),\n", - " ('Nothing', 'NN'),\n", - " ('can', 'MD'),\n", - " ('be', 'VB'),\n", - " ('expressed', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('a', 'DT'),\n", - " ('Turingcomplete', 'JJ'),\n", - " ('language', 'NN'),\n", - " ('such', 'JJ'),\n", - " ('as', 'IN'),\n", - " ('C', 'NNP'),\n", - " ('that', 'IN'),\n", - " ('couldn', 'NN'),\n", - " ('’', 'NNP'),\n", - " ('t', 'NN'),\n", - " ('also', 'RB'),\n", - " ('be', 'VB'),\n", - " ('expressed', 'VBN'),\n", - " ('in', 'IN'),\n", - " ('another', 'DT'),\n", - " ('Turingcomplete', 'NNP'),\n", - " ('language', 'NN'),\n", - " ('such', 'JJ'),\n", - " ('as', 'IN'),\n", - " ('Lisp', 'NNP'),\n", - " ('(', '('),\n", - " ('or', 'CC'),\n", - " ('Fortran', 'NNP'),\n", - " (',', ','),\n", - " ('Smalltalk', 'NNP'),\n", - " (',', ','),\n", - " ('Java', 'NNP'),\n", - " ('...', ':'),\n", - " (')', ')'),\n", - " ('and', 'CC'),\n", - " ('vice', 'NN'),\n", - " ('versa', 'NN'),\n", - " ('.', '.'),\n", - " ('This', 'DT'),\n", - " ('ultimately', 'JJ'),\n", - " ('proves', 'VBZ'),\n", - " ('the', 'DT'),\n", - " ...]" - ] - }, - "execution_count": 9, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "tagged" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "words = \"in the beginning was heaven and earth and the time of the whatever\".split()" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "['in',\n", - " 'the',\n", - " 'beginning',\n", - " 'was',\n", - " 'heaven',\n", - " 'and',\n", - " 'earth',\n", - " 'and',\n", - " 'the',\n", - " 'time',\n", - " 'of',\n", - " 'the',\n", - " 'whatever']" - ] - }, - "execution_count": 2, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "words" - ] - }, - { - "cell_type": "code", - "execution_count": 3, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "1" - ] - }, - "execution_count": 3, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "words.index(\"the\")" - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "IN\n", - "1 the\n", - "BEGINNING\n", - "WAS\n", - "HEAVEN\n", - "AND\n", - "EARTH\n", - "AND\n", - "8 the\n", - "TIME\n", - "OF\n", - "11 the\n", - "WHATEVER\n" - ] - } - ], - "source": [ - "for i, word in enumerate(words):\n", - " if word == \"the\":\n", - " print (i, word)\n", - " else:\n", - " print (word.upper())" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "words = {}\n", - "words[\"VB\"] = []\n", - "\n", - "for ...\n", - " words[\"VB\"].append(word)\n", - " \n", - " \n", - "choice(words[\"VB\"])" - ] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/patches/2-louisa-final.txt b/patches/2-louisa-final.txt deleted file mode 100644 index 7413efe..0000000 --- a/patches/2-louisa-final.txt +++ /dev/null @@ -1,74 +0,0 @@ -*|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||_________ -*__RESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCE__________ -*__RESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCE__________ -*__RESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCE__________ -*__RESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCE__________ -*__RESURGENCERESURGENCERESUR *** ### ### *** _________ -*__RESURGENCERESURGERGENC *##destruction;ruins##* _________ -*__RESURGENCERESURGEN *##objectivity;condescending##* _________ -*__RESURGENCERESUR *##skepticism;academic;weaponized;##* _________ -*__RESURGENCERES *##;eradicative;capitalist;authority;;##* _________ -*__RESURGENCERE *##individual;critical;judgement;distance;##* _________ -*__RESURGENCER *##ignore;burn;facts;catastrophe;devastating##* _________ -*__RESURGENCE *##;relentless;dismemberment;disqualify;busy;;##* _________ -*__RESURGENC *##business-as-usual;blind;rational;exploitation##* _________ -*__RESURGENC *##imperialist;sexist;colonialist;;;;;;;;;;;;;;;##* _________ -*__RESURGENC *##routine;performed;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENC *##conform;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;##* _________ -*__RESURGENC *##;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;##* _________ -*__RESURGENC *##;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;;;;; ;;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;; ;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;;;;; ;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;;;;; ;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENCE *##;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENCE *** ### ### *** _________ -*__RESURGENCE _________ -*__RESURGENCE _________ -*__RESURGENCE *** ### ### *** _________ -*__RESURGENCE *##new;world;future;##* _________ -*__RESURGENCE *##possibility;weaving;trust##* _________ -*__RESURGENCE *##commoning;cooperative;dimenions##* _________ -*__RESURGENCE *##;generativity;relearning;noticing;;##* _________ -*__RESURGENCE *##complicating;reworlding;resurgence;way;##* _________ -*__RESURGENCE *##;shared;compositions;live;interdependence##* _________ -*__RESURGENCE *##partnering;compose;web;listen;return;learn;##* _________ -*__RESURGENC *##;threatening;unknown;mutual;listen;emergence;##* _________ -*__RESURGENC *##survive;courage;creation;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENC *##;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENC *##;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENC *##;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENC *## ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENCE *##reinventing;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENCE *##muted;killed;rites;;;;;;;;;;;;;;;;;;;;;;;##* _________ -*__RESURGENCE *##weavers;witches;polyphonic;roots;exist;##* _________ -*__RESURGENCE *##slow;natural;equilibrium;complexity##* _________ -*__RESURGENCE *##subjective;power;demobilization##* _________ -*__RESURGENCE *##;non-antagonist;unknown;;##* _________ -*__RESURGENCE *##magic;earth-based##* _________ -*__RESURGENCE *** ### ### *** _________ -*__RESURGENCER *## ##* _________ -*__RESURGENCERE *## ##* _________ -*__RESURGENCERESU *## ##* _________ -*__RESURGENCERESURG *## ##* _________ -*__RESURGENCERESURGENC *## ##* _________ -*__RESURGENCERESURGENCERES *## ##* _________ -*__RESURGENCERESURGENCERESURG *** ### ### *** _________ -*__RESURGENCER *## ##* _________ -*__RESURGENCERE *## ##* _________ -*__RESURGENCERESU *## ##* _________ -*__RESURGENCERESURG *## ##* _________ -*__RESURGENCERESURGENC *## ##* _________ -*__RESURGENCERESURGENCERES *## ##* _________ -*__RESURGENCERESURGENCERESURG *** ### ### *** _________ -*__RESURGENCER *## ##* _________ -*__RESURGENCERE *## ##* _________ -*__RESURGENCERESU *## ##* _________ -*__RESURGENCERESURG *## ##* _________ -*__RESURGENCERESURGENC *## ##* _________ -*__RESURGENCERESURGENCERES *## ##* _________ -*__RESURGENCERESURGENCERESURG *** ### ### *** _________ -*__RESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCE__________ -*__RESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCERESURGENCE__________ diff --git a/patches/Camilo.txt b/patches/Camilo.txt deleted file mode 100644 index 9ef80cc..0000000 --- a/patches/Camilo.txt +++ /dev/null @@ -1,73 +0,0 @@ -*ATATA* Natalia Chaves López. I The purpose <> the following text is <> present an -d preserve the concept <> ATATA: it is a composition <> two ideograms <> the Mhuys -qa dead language. ATATA can be defined <> ‘I give myself <-> you give yourself,’ w -here giving is an act <> receiving, <-----> what you do <-> others is <--> affecti -ng yourself This exercise <> reciprocity is a very important vibration <> life be -cause nobody can live <-----> others, this includes all living creatures <--> whom -we share the Earth. As a Colombian student <> ancient history, I have experience w -ith this concept <-> many years through learning <--> the wholesome ways <> livin -g <--> the indigenous people <> both Colombia <-> Mexico. It was through my PhD re -search that I experienced <-> looked further <--> the Mhuysqa <-> Mayan legacy. It - was <--> that I realized the devastating reality that is currently affecting the -quality <> food. There is a systematic problem caused <> the ‘green revolution;’ f -rom radical changes <> the local ways <> cultivation <> the use <> inputs made and -sold <> big global corporations which are creating dependency <> well <> poisoning -the seeds, the soil, the water <-> <-------> our own bodies. <-------> <> a respon -e <> this, an ‘undercurrent’ is developing everywhere – people are living andculti -vating according <> new <> past principles outside global corporations, recovering -solidarity, hope, life, food, <-> bio-diversifying forms <> being. I have based my -writings <> the perspective <> ‘Heart´s Epistemology.’ What I mean is thatheart <- -brain come together <--> my proposal <> bringing <> light my feel-thoughts <--> h -ow <> keep <> living <-> how <> make collective decisions <--> territory. The int -ention <> this essay is <> find ourselves <-> others heart <> heart. Infact, the h -eart is the place where you keep dreams, hope, joy, <-> pain, accordingto the Maya -n culture. You need <> have all these clear <> know what is the kind ofliving know -ledge you want <> go over.[2] In the Mhuysqa´s worldview, the human heart is named -[i]puyky[i], an onomatopoeia <> the heartbeat, that is said <> be connected <--> t -he beating <> the cosmos itself, representing the frequency where one can find ans -wers <> the path <> protecting life. The questions that this essay aims <> answer -are: How <> feel-think the future <> food <-> water <--> a perspectiveof reciproci -ty? Why is ATATA a fruitful principle <-> the future survival <> the human kind? M -huysqas are an ancient indigenous culture who live <> Cundinamarca andBoyacá regio -ns <> Colombia. They lost their language <> the eighteenth century, which consiste -d <> compact ideograms <-> hieroglyphics representing complex ideas <--> their un -derstanding <> nature. Today the Mhuysqas speak Spanish <-----> <> persecution sin -ce the colonial period <-> the banning <> their language, but they kept some <> th -eir ancestral ways <> living. I have studied their language, named Mhuysqhubun, <- -> I propose here <> bring back <> life the ‘dead’ word ATATA, so that it is not fo -rgotten. ATATA is a palindrome unity made <> two ideograms <-> hieroglyphics <> th -moon calendar: Ata <-> Ta. Mariana Escribano,[3] a linguist who writes <--> the M -huysqa language <-> worldview, explains that Ata refers <> the number 1, which <> -cosmogony is relative <> the beginning <> times. <--> the eighteenth-century gramm -ar <> the priest Jose Domingo Duquesne, we can translate the ideogram <> follows: -“the goods <-> something else.” This means common goods <> everything that exists. -It <--> refers <> the primordial pond, which links it <> water <> well. Ta, the se -cond sound <> the unity, is the number 6 <-> represents a new beginning that is sh -owing the comprehension <> time <> sequences <> 5 <-> 20. The priest Duquesne wrot -e that Ta means “tillage, harvest.” The Ta ideogram <--> means the bearing <> frui -ts, the giving <> yourself freely, <> <> agriculture labor. In this perspective th -e act <> giving is an act <> receiving; it <--> implies the responsibility <> taki -ng care <> what you are receiving. One <> the most important acts <> Mhuysqa cultu -re was the offering <> some holy lagoons. The main offering happened <> Guatabita -lagoon. This lagoon held the gold, offered <> Mhuysqas <-> sought after <> the Spa -nish conquers who heard <--> it <-> tried <> dry the lagoon up. The leader <> the -town <> Guatabita, covered <> gold, would be introduced <> a raft, adorned <--> mo -re gold <-> emeralds. The raft would be <--> given <> the lagoon followed <> the l -eader who would introduce himself <--> the water <> an offering <> the gold that w -as covering him <-> receive a purification bath. This astonishing ritual ATATA was -done <> a reminder <> gratitude <> water <> one <> the most important living being -s. In reciprocity some <> the few sacred female entities living <> the water, repr -esenting the lagoon itself, would hold the abundance <> Mhuysqa people. One <> the -ways water supplied life <> the people was through rain, which provided corn <> fe -ed everybody. In order <> understand this reciprocal interaction/cycle <> humans-l -agoons-rain-corn I refer <> Tseltal Mayan people, who live <> the Highlands <> Chi -a pas <-> the Lacandona jungle <> Mexico, who keep alive very ancient knowledge <- -> have the belief that corn spirit is living inside the mountains <-> lakes. It is -given <> the humans <> result <> offerings asking <-> maintenance <> people. ATATA -can be related <--> the Mayan Tseltal concept <> [i]Ich´el ta muk´[i] translated < -> “respect <-> recognition <-> all living things <> nature.”[4] The corn cycle is -Tseltal life itself <-> requires a permanent compromise, the way they explain this -is <> referring <> corn <> a double being. Seen <> one side <> a baby <-> <> the o -ther <> a woman supporting her family. When someone wastes corn, they can hear it -crying – even <> a single seed is left <> the soil <> a piece <> tortilla lies <> -the kitchenfloor. When seen <> the woman supporting her family, it appears <> ... \ No newline at end of file diff --git a/patches/MARTIN_GRADIENTENSE.txt b/patches/MARTIN_GRADIENTENSE.txt deleted file mode 100644 index 7fa13d8..0000000 --- a/patches/MARTIN_GRADIENTENSE.txt +++ /dev/null @@ -1,74 +0,0 @@ -█language language ██language language language █language ████language █language █ -kills ▇▇▇▇▇▇▇kills kills kills ▇▇▇▇▇▇▇▇▇kills kills ▇▇kills ▇▇▇kills kills ▇▇kills -▆▆▆▆continuation continuation ▆▆▆▆▆▆▆▆▆continuation continuation ▆▆▆▆▆▆continuatio -▅▅▅▅▅▅language language ▅language language language ▅▅language language language l -kills kills ▄▄▄▄kills ▄kills ▄▄kills kills ▄kills kills ▄kills ▄▄▄kills ▄▄kills ki -continuation ▃▃▃▃continuation continuation ▃continuation continuation continuation -language language ▂language ▂▂▂▂language ▂▂language language language ▂▂language ▂ -▁▁kills ▁▁▁kills ▁▁▁kills ▁▁kills kills kills kills ▁▁▁▁▁▁kills kills ▁kills ▁kill -continuation continuation _______continuation ___continuation ___continuation cont -▁▁language ▁▁language language language ▁▁language ▁▁▁▁▁▁▁▁▁▁language language lan -▂kills ▂kills ▂kills ▂kills kills kills ▂▂▂▂▂▂▂▂▂▂▂kills kills ▂kills kills ▂▂kill -kills ▇▇▇▇▇▇▇kills kills kills ▇▇▇▇▇▇▇▇▇kills kills ▇▇kills ▇▇▇kills kills ▇▇kills -▄language language language ▄language ▄language language language ▄▄▄language ▄▄▄▄ -kills ▅▅▅▅▅kills ▅▅▅▅kills ▅▅▅▅kills kills kills kills ▅▅kills ▅▅▅kills kills ▅▅▅k -▆▆▆continuation continuation ▆▆▆▆▆▆▆continuation ▆▆▆continuation ▆▆▆continuation ▆ -▇language ▇▇▇▇▇language ▇language ▇▇language ▇language ▇▇▇language ▇▇▇▇▇▇▇▇▇▇▇lang -▇█kills kills kills ▇kills ▇▇▇▇kills ██▇kills kills █kills █kills kills ▇kills ▇██ -▆▇▇▆continuation continuation continuation ▆▆continuation ▇▆continuation ▇▆▇▆conti -▆▆▆▆▆language ▆language ▆language ▅▆language language ▅▆language ▆▅language langua -kills kills ▄▅kills ▅▅▄▅kills kills ▅▅▅kills ▅▄kills kills kills ▅▅kills ▅▅▅kills -▃▃▄▄▄continuation ▄▄▄▃▃▃continuation continuation ▃▄▃▄continuation ▄▄▄▃▃▄▃▃▄contin -▂language language language ▂▂▃language ▃▂▃▂▂▂language language language language -kills ▇▇▇▇▇▇▇kills kills kills ▇▇▇▇▇▇▇▇▇kills kills ▇▇kills ▇▇▇kills kills ▇▇kills -___continuation continuation continuation ▁_continuation _▁▁▁continuation ▁continu -language ▂language ▂language ▁▁▁language ▁▁language ▂▁language language language l -kills ▂▂▂▃▃▂▃▃kills ▂▂▂▂▃kills ▃▂▂kills ▂kills ▂kills ▂▂▃▃kills kills ▂▃kills ▃▂▂▃ -▃▄▄continuation ▃▃continuation ▃continuation ▃▃▃▄continuation ▄▃▃continuation cont -language ▅▄language ▄language language ▅▅language ▅▅▄▅language ▄language ▅language -kills ▅▅▆kills kills kills ▆▅kills kills ▅▅▅▆kills ▅▆▅▅kills kills ▅▆▆▆▅▅kills ▆▆▆ -▇continuation continuation continuation ▇▆▇continuation ▇▆▆continuation continuati -▇██language ▇█▇█language ▇▇▇▇language language language ██language language ▇langu -▇▇▆▇▇▇kills kills █▇█▆███kills ▇kills kills ▆kills █▇▆▆▆▆▇kills kills █▇kills kill -▅▇▅continuation ▅▅continuation continuation continuation ▆▅▇▆▅▆▇continuation ▆▇con -▆▅▄▅▅▄language ▆▄▅▄▄▆▅▆language ▅▆▅▅language language ▅▄▅language language ▅langua -▅kills ▄▅▅▄▅kills ▃▅▅kills ▅▄▅▅kills ▃▄▄▄▄▄▄▄kills ▅▄▅▃▃kills kills ▅▄▃▃▃▄▅▄▅▄▃▃▅▄ -▂continuation ▂continuation ▂▂▂▃▄▂▄▃▃▃▃▂▃▃▃▃continuation ▄continuation ▂▂▂▃▂▃▂▂▄co -▂language language language language ▃▂▂▁▁language language ▂language language ▁▁▁ -__▂▁▁▁kills ▂kills ▁▂_▂▁__▂kills __▁▂kills _kills kills __kills ▁kills ▁_▂▂___▂kil -▃▁continuation ▁▁▂continuation ▃▁▃▂continuation ▂continuation ▃▁▁▃▃▁▂▃continuation -language ▃language ▄▂language language ▄▃▃▄language ▄▂▂▂▄▂▄▂▄▃▄language ▃▂▄▃langua -▅▅▅▄kills kills ▅▄▄▅▅▃▅▄kills ▃▅▃▅▃▅▃▅▃▅▃▅▃▃kills kills ▄▄▅kills kills ▅▅▅▅▃▃▃kill -▄▅▄▅continuation ▅▆continuation ▅▆▅▆▄continuation ▆▅▆▅continuation continuation co -▆▇▅▅▆▇▇▇▆language language ▆▅▆▅language ▅▇▅▆language language ▇▆▅▆▆▆▆▅▅▅▆▅▆▆langua -▆kills ▆kills █▆█▆█▆▆▇▆▇█kills ▇kills █▇kills ██▇▆█▇█▇▆█kills ▇kills kills ▆█kills -▇▆▇▇▅█▆continuation ▅▇█▆▆█▅▇▆▅████▆█▆▆continuation ▇▆▅▅▆▇continuation continuation -▆▅▆▆▆▆▄▅▅▅language language ▄language language ▆▇language language ▆▆▆▅▆▄▆▅▆▅▄▇▆▇▅ -kills ▇▇▇▇▇▇▇kills kills kills ▇▇▇▇▇▇▇▇▇kills kills ▇▇kills ▇▇▇kills kills ▇▇kills -▃continuation ▂▃continuation ▂▄▅continuation ▃▄continuation continuation ▅▄▄▅▂▅▃▄▂ -▄▃▃▂▁language ▁▃▃language ▄▁▂▃language ▂▂▄language ▁language ▂▂▃▃▂▃▂▂▃language ▂▂▁ -_kills ▂▁_▁▂▃▃▂▂kills ▂▂▁_▃kills _▃▂kills ▁▂▁kills kills _kills ▃▂kills _▃▁_▂▂_▃▁k -▂▄▂▃▂▁▃▃▂▄▃continuation ▃▁▁▄▂▄▃▁▄▃▂▃▄▂▄▄▃▃▂continuation ▁▄continuation continuatio -▅▅▅language language ▄language ▄▃▅▄language ▄▄▄language ▄▂▄language ▃▄language lan -▅▄▆kills ▃▄▅▃▄▄▃▆▃kills ▃▆kills ▃▆▃kills ▃▆▆▄▃▆▅kills kills kills ▃kills ▃▅kills k -▇continuation ▄▆continuation continuation ▆▆▄▆▇▇▆▇▇▄▄▄continuation ▆continuation ▄ -▇▅█language language ▇▆██language █▇language █▇▅▆language ▆▆▆▅▅language ▅language -██▄▆▅kills ▆▆kills ▆▅▆kills ▄▆█▅▇▆▆kills ▆▆▆▄▅▆▄▄▄▄█▇▇██▆▇▇█▄▇▇█▆██▄▄kills █▄█kill -▅▄▅continuation ▇▆continuation ▄▆▆continuation ▃▄continuation continuation ▃▆▄▇▄▅▅ -kills ▇▇▇▇▇▇▇kills kills kills ▇▇▇▇▇▇▇▇▇kills kills ▇▇kills ▇▇▇kills kills ▇▇kills -▅▅▅▃▃▄▃▁▃kills ▄▁▃kills ▂kills ▁▅▅▃▅▂▄▂▁▁▂▂▃▂kills ▁▅▅▂▅▄▁▅▁▃▃▄kills kills ▅▂▂▃▂▄▃ -continuation _continuation continuation continuation continuation ▁▃▁▂continuation -▅▄▅▂▄▃▂▃▁language ▂language ▃▃▃▄▅▅▅▃▅▂language ▄▄▁▅▄▁▅▅▂▅▁▃▃▃▄▂▃language ▅▂▃langua -kills ▆▅▆kills ▂kills kills ▅kills kills ▅▄▄▃▆▆▅▃▅▆kills kills ▃▂▃▅▄▆▆▂▄▃▂▄▂▄▃▂▆▂▄ -▅▇▅continuation ▃▅continuation ▃▃▃▄▆▃▃▆▆▇▅▆▄▃▆▃▄▇▃▅▇▇▃▃▄▄▄▃▃▆▄▆▅▄continuation ▄▆▅▃ -▅▅▄▄█▆██▆█▇▄▇▆▇▇▄▄▄▄▄▇▆▇█▄▄▄language ▄█▇█▇█▄▆█▆▆▄language ▄language ▅▅▇▅language ▄ -▇▆▄▇kills █▃▄▄▄kills ▇█▆▄▅kills ▇█▆▅kills █▃▆▄▇▆█kills kills kills ▆█kills ██▆▇▆▆▅ -▂▃▄▂▇▄▇continuation ▅▃▅▆▄▇▂continuation ▂▇▅▇▅▂▂▇▃▃▄continuation ▂▆▃▆▂▆▄▆▆▅▆▇▄▇▄▇▆▆ -▄language ▃language ▁▁▅▃language ▃▄▃▃language ▂▂▁language ▅▂▂▃▃▄▄▃language ▄▅▃▆▃la -▃_▃▅▅kills ▄kills ▁kills kills ▁▁▃▅kills ▃▃kills ▄kills ▅▁kills ▄_▃kills ▁▁kills ▂ -▅▂▆continuation ▆▆continuation continuation ▂▁▂▁▁▆continuation ▅▆▁▁▃▁▅▆▂continuati -▂language ▃▇▅▃▃▂▃language ▇▂▆▇language language ▄▃▇▄▂▃▂▇▂▂▅language ▅▄▅▄▅▇▆▇▇▃lang -▇▃kills ▄▆kills ▃▇▇▄█▃▆▆▅▃▃▄▄kills █▅kills ▃▅█▄▄▇▇█▃▇▄kills ▇▇▃kills ▆▄██▃kills ki -█▂▂▄▇▂▄▆▃▇▃▄continuation ▂▇▆█▅▄▆▅continuation █▇▆▂▂continuation continuation ▆▅█▃▅ -▆▃▃▄▅▅▂▃▇▁▆▁▇▃▅▁▅▆▇▂▇▇▆▃▁▇▄▄▅▃▆▅▇▇▄▂language ▅▆▇▆▅▄▇▄▅▂▄▂▅▁▃▄▄▇▃▆▆▆language langua -▅▅▃▅▃▅_▁▃▂▃▄_▄▂▆▆▁kills ▅▅▅▄▄▆▄_▂▄▃▁▆▅▁▁▂▃▅▆▁▅▁_▃▃▄▆▅▂▁▃▄▄▅▂kills ▆▁_▆_▂_▁▁▃▃▂▆▄▅k diff --git a/patches/MARTINpatch_FINAL.txt b/patches/MARTINpatch_FINAL.txt deleted file mode 100644 index 47bee6b..0000000 --- a/patches/MARTINpatch_FINAL.txt +++ /dev/null @@ -1,74 +0,0 @@ -██████████████████████████████████████████████████████████████████████████████████ -▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ -▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ -▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ -▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃ -▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂ -▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ -__________________________________________________________________________________ -▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁ -▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂▂ -▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃▃ -▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ -▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅▅ -▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆▆ -▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇▇ -▇▇█▇▇█▇▇▇▇██▇█▇▇█▇▇▇▇▇██▇█▇▇▇█▇▇▇█▇██▇▇▇▇███▇██▇▇▇▇▇▇▇█████▇▇▇▇████████▇▇▇█▇▇██▇▇▇ -▇▇▆▆▆▆▇▇▆▇▇▇▇▆▆▆▆▆▆▇▇▆▆▆▇▇▆▇▆▆▆▆▆▆▆▆▇▇▆▇▆▆▆▆▇▆▇▆▆▆▇▆▇▆▆▇▆▇▆▆▆▆▇▆▆▇▇▇▇▇▇▆▆▆▇▆▆▇▆▆▆▇ -▅▆▆▆▅▆▅▅▅▅▆▅▅▅▆▅▅▅▅▅▅▅▆▆▅▅▅▆▅▆▆▆▆▅▅▅▅▆▆▆▅▅▆▅▆▅▆▆▆▆▅▅▆▆▅▅▅▆▆▅▅▆▅▆▆▆▅▅▅▆▅▅▅▅▅▆▅▆▆▆▆▅ -▄▅▅▅▄▄▅▄▅▄▅▅▅▄▅▄▅▄▅▅▅▄▄▄▅▅▄▅▄▅▄▅▅▅▄▄▄▄▅▄▄▅▄▄▅▅▅▅▄▅▅▅▄▅▄▄▅▄▅▅▅▅▄▄▄▄▅▅▅▅▅▄▄▅▅▄▄▄▅▅▅▅ -▃▃▃▃▄▃▃▄▄▄▄▃▄▃▄▃▃▄▃▃▃▄▄▄▄▃▄▄▄▃▄▃▃▃▄▄▃▃▃▃▃▃▄▄▄▃▄▄▄▄▄▃▄▄▄▄▃▄▃▄▄▃▄▄▃▃▄▄▃▄▃▄▃▄▃▃▄▃▄▃▃▄ -▃▃▃▃▂▃▃▂▃▂▂▂▃▂▃▃▂▂▂▂▂▃▃▂▂▂▃▂▂▂▃▃▃▂▂▂▂▃▂▃▂▃▃▃▂▂▂▃▂▂▃▃▃▃▂▂▃▂▃▃▃▂▃▂▃▃▃▃▂▃▃▃▃▃▃▂▃▃▂▂▂▃ -▂▁▂▂▂▂▂▁▁▁▁▁▂▁▁▂▂▁▁▂▂▁▂▂▂▁▁▂▂▂▂▁▁▁▁▂▂▂▁▁▂▂▁▁▂▂▂▁▁▁▂▁▂▁▁▂▁▁▁▁▂▁▂▂▁▁▁▁▂▂▂▂▁▁▂▂▁▁▂▂▂▁ -▁_▁▁__▁▁_____▁_▁___▁▁____▁__▁▁▁___▁___▁__▁▁▁▁▁▁_▁▁▁_▁_▁▁▁_▁▁▁____▁_▁▁____▁_▁_▁_▁_▁ -▁▂▁▁▁▂▁▁▁▂▁▂▁▂▁▂▂▂▁▂▂▂▁▂▁▁▁▁▂▂▁▁▂▂▁▁▂▂▁▂▁▂▁▁▁▂▁▁▁▁▁▁▁▂▁▁▂▁▁▂▁▁▂▁▂▂▂▁▁▂▁▁▁▂▁▁▂▂▂▂▂▁ -▃▂▃▃▂▂▃▃▃▂▂▂▂▃▂▃▃▃▂▂▂▃▂▂▃▂▃▂▂▂▂▃▂▂▃▂▂▃▂▃▃▃▂▃▂▂▂▂▂▃▃▃▂▂▃▂▂▂▂▃▃▃▃▃▂▂▃▂▂▃▂▃▃▃▂▃▃▃▂▃▂▃ -▃▄▃▃▄▄▃▄▃▄▃▄▄▄▄▃▄▃▃▃▄▃▄▃▄▃▄▃▄▄▃▃▄▄▄▃▃▃▄▄▄▄▃▃▃▄▃▄▃▄▃▃▃▃▄▄▃▄▄▄▄▃▃▄▄▄▄▄▃▄▄▃▃▄▄▃▄▃▄▄▃▃ -▅▅▅▄▄▅▄▄▅▄▄▄▅▄▅▄▄▄▄▅▄▅▅▄▅▅▄▄▅▄▄▅▅▄▄▄▅▄▅▅▅▄▄▅▄▅▅▅▅▄▄▅▅▄▅▄▅▄▄▅▅▅▅▅▄▄▄▅▅▄▄▅▄▄▄▅▄▅▅▅▄▅ -▅▆▆▅▅▆▆▆▆▆▆▆▆▅▅▅▅▅▅▆▆▆▅▆▆▆▆▅▆▅▆▅▅▆▆▅▆▅▅▆▆▆▅▆▆▆▆▅▅▅▅▅▆▆▅▅▆▅▅▅▅▅▆▅▆▆▅▆▅▅▆▅▆▆▅▅▅▆▆▆▆▅ -▆▇▆▇▇▆▇▆▇▆▇▇▇▇▆▇▆▇▇▆▆▆▆▇▇▇▇▇▇▇▆▆▆▆▇▇▆▆▇▇▇▆▆▇▆▆▆▆▆▆▇▆▆▆▇▆▆▇▆▇▆▇▇▆▇▆▇▇▆▆▆▆▇▇▆▆▆▇▆▇▇▆ -▇▇▇██▇▇█▇▇████▇▇▇█▇▇█▇█▇▇▇█████▇▇▇█▇▇███▇█▇▇█▇▇▇█▇▇█▇▇▇▇▇▇▇███▇█▇█▇█▇▇█████▇▇█▇▇▇▇ -█▇▇▇▆▇▇▆▆██▆▇▆▆█▇██▆█▆▇▆▆▆▇▆█▆█▇▇██▇▆█▆▇▆██▇▆█▇██▇▇▇▆▆█▇▇▇▆██▆▇▇██▇▆▇▇▆▆▇▇▆▇▇██▆▇▇ -▆▇▇▇▅▇▆▇▆▆▆▇▅▅▅▇▅▆▇▆▇▆▅▆▅▅▇▆▇▅▇▆▆▆▆▇▇▇▆▇▅▅▅▆▅▆▅▅▆▅▇▇▇▆▆▆▆▅▆▆▇▆▇▇▇▆▅▇▅▆▆▅▇▇▇▇▆▅▇▅▅▅ -▅▅▄▅▆▅▆▆▅▄▄▅▅▄▄▄▄▅▅▅▆▄▆▅▄▅▅▅▄▅▆▄▅▄▅▅▆▆▆▄▆▆▅▅▆▅▄▅▅▄▄▆▆▆▄▅▆▄▄▄▅▅▆▄▄▆▄▄▅▅▆▆▄▆▅▄▄▆▅▆▆▅ -▅▃▃▃▅▄▃▄▅▃▅▅▃▄▄▃▅▄▅▄▃▄▄▄▄▃▄▄▅▃▄▄▄▄▄▄▃▅▅▄▄▄▅▅▃▃▄▄▃▅▄▄▄▅▃▄▃▅▃▄▄▄▃▄▃▃▃▅▄▄▃▅▄▃▃▃▅▄▄▄▃▄ -▃▃▃▂▂▃▄▂▄▄▄▄▂▂▂▂▃▃▄▄▄▄▃▄▂▂▄▂▂▄▂▃▃▂▃▃▄▂▃▄▃▂▃▃▂▃▃▂▃▄▃▂▂▂▂▄▄▂▂▂▄▂▃▄▂▂▄▄▃▂▂▃▂▄▃▄▃▂▄▄▃▄ -▂▂▁▃▁▁▁▃▁▂▁▃▁▃▂▁▃▃▁▂▃▁▁▂▃▁▂▂▂▃▁▂▁▁▃▃▃▁▂▁▃▂▁▁▁▁▃▃▁▁▁▁▂▁▃▃▃▂▃▃▁▂▁▁▂▃▂▃▃▃▂▂▂▁▃▂▂▂▁▃▁▁ -▁▂_▂▂▁▁▂▁_▂▁▁_▂_▂_▂▂__▁▁_▁▁_▁_▂_▂_____▂▂_▂▁▂_▂▁___▂▁▁▁_▁_▂▁▁▁_▂▂__▁__▁▂▂▁▂▂_▁▂▂__▁ -▁▂▂▁▁▁▁▁▃▃▂▃▃▂▁▃▁▂▁▃▁▁▃▃▁▂▁▃▁▁▁▂▂▁▃▁▁▁▁▃▂▁▁▂▁▃▂▁▁▁▂▁▁▃▁▃▂▁▃▂▁▁▂▁▁▁▂▁▂▁▂▂▁▂▁▃▃▃▂▁▃▃ -▃▄▃▃▃▃▃▂▂▃▄▃▄▃▂▃▃▄▄▂▄▃▄▂▄▄▃▃▂▃▄▂▄▂▄▄▄▄▂▂▂▃▃▂▂▄▃▄▃▂▄▂▃▃▄▂▂▃▂▃▂▄▂▄▃▂▃▂▂▄▃▂▂▄▃▂▃▂▂▂▂▂ -▃▃▅▃▅▄▅▄▅▃▅▄▃▃▄▃▃▅▄▄▅▄▅▃▄▃▅▄▃▅▄▅▃▅▃▅▅▅▃▃▅▄▅▄▄▅▅▅▃▃▃▃▄▃▃▃▄▅▃▃▅▅▃▅▄▃▅▄▄▅▃▄▅▅▃▄▅▅▃▃▄▃ -▆▅▅▅▆▄▆▄▄▆▆▆▅▄▅▆▅▅▆▆▄▅▆▅▆▅▆▅▅▆▅▅▅▅▅▆▆▄▄▄▄▆▅▅▄▆▄▅▅▅▄▄▄▄▅▅▅▄▄▅▅▄▅▄▆▆▄▄▅▄▆▅▆▅▄▄▄▅▆▄▆▆ -▇▆▆▆▅▆▅▅▇▅▅▅▅▇▆▅▅▇▇▇▅▅▅▆▇▆▇▆▅▇▆▇▇▇▆▇▇▇▅▅▆▅▅▅▅▇▆▆▅▆▆▆▇▅▇▅▅▆▇▅▆▆▇▇▆▅▅▆▅▇▅▇▅▅▇▅▅▆▅▇▆▇ -▇▆▆▇▇▆▇▇▆█▆▇▆▇▆▇▆▇█▆▆▆▆█▇██▆▆▇▆█▆▇█▇██▇▆▇██▇▆██▇█▇▇█▆▆█████▆██▆▆▆▆▇▇▆▇▇▇▆▆▆▆█▆█▇▆█ -▅▅▆▆█▆▆▅█▆█▅█▆▇▇█▇█▆▇█▇▅▇█▇██▇▆▇▇▆▆▆▇▇▆▅▅██▇▅▆█▆█▅▅▇▆██▅▆▆███▅▇██▅▆▅▅▆▇▇██▆▆█▆▇█▆▅ -▆▅▄▅▇▇▄▄▅▇▆▇▄▆▇▇▄▅▅▇▇▅▇▄▄▆▄▆▄▅▆▆▇▄▆▅▇▄▇▅▆▇▄▅▄▆▇▆▇▄▄▆▄▄▄▅▅▄▅▄▄▄▆▄▆▄▄▄▆▇▄▄▄▅▅▆▇▆▆▆▅▇ -▆▆▅▆▅▅▆▃▆▃▃▄▃▄▃▃▃▆▅▅▆▃▆▆▄▅▅▃▄▆▆▃▅▃▆▅▄▃▅▃▃▆▃▃▃▄▄▃▄▄▄▅▄▄▅▃▅▄▆▅▆▆▃▅▅▃▅▄▃▃▄▆▃▃▄▆▆▄▄▃▅▄ -▄▅▅▃▄▄▄▄▃▃▅▃▄▄▂▄▃▄▅▂▂▃▄▅▂▅▅▃▃▅▂▃▃▂▃▃▂▂▅▃▄▂▄▄▃▂▂▅▃▅▃▄▂▄▄▃▂▄▅▃▅▂▄▄▃▅▄▅▃▂▃▄▄▃▄▃▄▄▃▄▃▄ -▂▃▄▂▃▃▃▂▃▁▁▃▃▃▃▄▃▂▃▁▂▂▃▁▂▁▄▂▄▃▄▂▃▂▂▁▂▁▃▄▄▁▄▂▃▃▂▄▃▁▁▄▂▂▃▄▃▁▂▃▁▃▄▄▃▂▁▄▁▄▄▂▃▃▄▁▃▁▃▂▄▄ -__▃▂▁▃▂▃_▁▂_▂▃▂▂▃_▃▁▁▃▃▁▃▂▁_▂_▁▂▂▂▂__▁___▂▁▁_▃▂▁_▃▁▃_▁▂_▁▃_▁▂▃_▁▁▃_▁▂▂▁▁▂_▂▁▂_▁▃▂▃ -▁▄▁▄▂▃▃▁▄▄▂▄▁▃▃▄▂▂▃▃▃▁▁▃▄▄▃▂▄▁▃▃▁▂▃▁▂▂▁▃▁▃▁▃▃▂▁▂▂▃▂▄▄▂▂▄▂▄▄▄▁▃▃▂▃▁▄▄▃▁▃▄▃▄▁▃▁▄▁▄▄▁ -▂▅▅▅▂▂▅▃▃▃▃▄▄▄▄▅▅▄▄▂▄▅▃▄▄▂▃▅▅▄▂▃▄▄▃▂▃▄▄▃▂▂▃▃▂▅▅▂▂▃▂▃▅▂▄▃▃▄▂▄▂▃▃▃▄▃▅▂▂▄▃▃▅▅▂▃▂▂▂▂▅▃ -▆▃▄▄▅▅▅▃▆▆▅▆▆▃▅▃▅▄▄▃▃▃▃▆▅▄▅▃▆▆▆▄▃▄▆▄▆▄▃▃▃▃▄▃▄▅▆▄▆▃▆▄▄▄▄▆▃▆▅▃▃▄▃▆▄▃▆▃▄▃▃▆▅▄▆▆▄▃▄▄▅▅ -▆▇▄▅▅▇▄▆▆▄▆▄▅▄▆▇▄▄▅▄▇▅▇▆▅▇▅▆▅▆▇▆▅▇▇▇▅▄▄▇▆▄▄▆▄▅▇▆▄▆▄▆▆▄▆▇▆▇▇▆▆▇▅▅▅▇▅▇▇▆▆▄▆▇▇▇▅▇▅▄▄▇ -█▆█▇▅█▆▇█▆▇▇▇▅▅▅▆▆▆▆▆▅▆█▅▅▅▇▆▇▆█▅▆▇▆▅▆▇▇▆▇▆▆▅▇█▆▅▇▇█▅█▆█▇█▅█▅▆▅▅▇█▇▇█▆▅▅▅█▆▆▅▇▆▆▇█ -▅▇▆▆█▅▅▇▅▆▆▅▇▄▆▆▄▅▆███▅▇▆▇██▅▅█▇█▇▇█▆██▇▅▆█▄▄▄█▆▄█▇▅▄▅▆█▅▅▇▇▅▆█▇▆▅█▄▄▆▇█▆▅▇▆█▄▇▆▄▇ -▄▅▆▅▆▃▅▄▅▃▃▆▃▇▃▆▄▃▄▄▆▃▇▆▄▃▆▃▃▆▇▄▅▆▅▆▅▅▄▃▆▄▅▇▃▅▅▇▆▃▇▅▅▇▃▇▃▅▆▆▇▆▄▅▃▅▄▇▇▆▆▆▅▃▆▅▃▆▆▅▆▃ -▅▃▄▄▅▅▄▄▃▃▂▂▃▃▂▅▆▂▅▂▃▅▅▆▂▅▃▆▆▃▂▂▂▃▆▄▄▆▆▄▅▅▆▆▂▆▆▅▅▄▃▄▄▂▅▅▄▄▆▂▆▂▃▄▅▅▆▅▅▆▃▆▄▅▂▆▂▂▂▃▄▅ -▅▅▃▂▁▁▁▁▃▁▂▁▂▁▂▁▂▄▁▄▅▁▃▃▅▂▄▄▁▅▅▁▄▁▅▁▅▃▁▃▂▃▃▃▄▂▁▁▄▃▁▂▅▂▁▁▁▁▃▂▄▂▃▃▁▃▂▄▁▅▃▁▁▁▃▅▅▅▄▄▄▄ -▁▄_▁_▃▁▃▃▃▃_▄_▄▁_▂▂__▁_▄▁▂▄▁▂▂▃▃▂▃▂▄▃▄▄____▂__▃▃▃▁▄__▄▄▂▁▄▂▄▂▁_▃_▂▃▂▁▂_▁▄▁▃▁▃▂▃▁▄▃ -▂▁▄▃▅▃▃▂▁▄▅▄▁▅▄▁▃▃▂▃▃▁▃▃▄▂▄▁▄▅▃▄▄▂▂▂▄▁▅▂▅▅▁▅▄▂▃▂▂▂▄▃▂▃▁▅▂▃▂▃▂▁▄▄▃▁▁▄▅▅▄▃▅▅▂▅▃▅▅▄▂▅ -▅▆▅▂▅▅▄▅▂▄▂▃▆▆▅▅▂▄▂▅▄▃▄▂▄▂▅▆▆▄▂▄▆▅▆▅▃▅▂▅▂▄▃▄▅▅▃▄▄▂▆▂▂▆▂▅▃▆▅▂▂▃▂▄▆▅▆▄▅▄▂▂▄▄▆▅▂▅▄▂▂▄ -▃▅▅▅▃▆▇▅▄▅▄▆▄▆▇▅▅▅▅▇▆▃▅▄▃▇▅▅▆▆▃▃▆▇▄▆▇▃▆▇▆▆▇▄▇▅▄▃▆▅▃▇▇▇▃▃▄▇▃▆▄▅▆▅▆▅▃▄▃▇▆▃▇▇▄▃▆▃▃▅▅▆ -▄█▇▄▆▆█▅█▇▇█▇███▆▄▅▅▄███▄██▅▅▄█▇█▆█▆▇█▅▇▇▄▄▇▄█▆█▅▆▄▅▅▆█▇▇▄▆▄▄█▅▅██▅▄█▄▅▅▆███▆██▆▇▅ -▃▆▅▄█▃▇▇▃▃█▆▃▄▃█▄▆▄▃▅▆▃▆▃█▇▇█▃▅▃▃▇▄▇▄▅█▆▇▄▃▄▄▄▆▇▃▆▅▅▇▇▅▃▅█▄▆▃▇▇▄█▃▃▇▆▇█▆▃▅▄▄▆▅▅██▃ -▇▄▆▄▆▄▅▆▂▄▂▃▂▄▇▃▇▇▄▆▂▄▅▂▃▆▆▅▃▅▅▆▆▆▅▅▄▂▆▇▃▇▆▂▂▆▂▅▅▂▇▄▂▅▂▇▂▄▇▃▇▂▂▂▂▆▆▃▄▇▇▆▆▄▅▃▂▂▃▅▄▃ -▃▃▃▂▂▃▃▂▁▅▂▂▂▃▂▅▃▆▂▆▃▆▆▁▁▆▁▂▅▆▆▁▃▂▁▃▄▃▂▂▂▂▆▃▁▅▁▄▁▁▆▄▆▃▅▁▆▃▁▆▆▁▅▆▆▆▁▆▆▁▆▆▄▂▄▂▁▅▅▆▁▅ -▂▂▃▃▁▄_▅▃_▅▄▃▃▂▁_▄▃▅▄▂▃__▃▂▂▃▄▂▃__▅_▄▂▃▅_▅▅▄▅▃▂▄▃▁_▂▄▄_▁_▄▃▅▄_▁▃▄▄_▅▃▄▅▃_▅▂▃▄▃▄▅▂▃ -▄▆▅▆▆▄▆▅▁▆▁▁▃▃▂▅▅▆▂▆▃▅▄▄▂▂▃▂▅▁▂▅▆▃▃▁▂▄▄▅▃▃▁▃▃▁▄▆▁▁▃▄▅▁▂▆▁▅▄▅▆▆▁▁▅▃▆▂▃▄▅▂▁▄▃▄▃▁▃▂▂▂ -▂▄▄▅▂▂▂▅▅▂▆▅▂▆▆▄▃▆▃▇▄▇▄▃▇▆▅▂▆▃▇▅▅▂▇▃▄▇▇▃▂▂▃▃▆▃▇▂▃▃▂▆▄▅▇▅▂▃▆▂▇▂▄▅▅▂▂▅▂▂▂▃▆▂▆▇▇▅▆▃▂▂ -▄█▄▃▅▆▅▇█▇▅█▇▇█▇▆▇▅▅▆▅▄▅▅▅▇▃▇▇▇▇▄▅██▄▅▃▅▄▄▅█▄▅▇▄▆███▃▅▄▅█▇▆▆▇▄▅█▆██▄▃▅▆▅▆▆█▆▅▃█▇▆▆ -▆▅█▅▄▅▇▄█▂▇▂▆▂▂▄▂▄▂▅▄▆▄▇▄▆▇▇█▄▇▆▇▇▃▇▂█▇▄▄▃▃▂█▄▅▆▇▇▆██▄▃▆▄▅▆▇█▆▃▂▃▃▇▂▇█▅▂█▇▃▅██▃▄▄▄ -▇▅▂▅▃▃▂▆▂▄▅▂▆▁▄▁▃▅▃▂▅▁▃▂▁▅▅▅▇▄▃▆▅▃▁▆▇▅▇▇▅▂▁▂▅▄▄▁▇▄▃▇▅▅▆▆▄▄▃▅▁▄▄▄▂▅▄▇▇▄▅▁▆▄▇▁▇▃▁▆▇▁ -▆▂▆▃_▄▅▄▅▆▁▃▆▆▆▂▆▆_▂▁▁▃▆▄_▆▂▆▂▄▅_▁▂▅▆▃▄▅▄▅▃▅▃▃▅▃▅▅▁▄_▅▄▃▁▆▂▆_▄▆_▃▃▂▅▂▅▂▅__▅_▁▆▆▃▆▁ diff --git a/patches/euna2 (1).txt b/patches/euna2 (1).txt deleted file mode 100644 index 02e8cbf..0000000 --- a/patches/euna2 (1).txt +++ /dev/null @@ -1,80 +0,0 @@ -Someone wants to say about "deemed " in HOPE! -Someone wants to say about "“pseudo-intellectuals,” " in HOPE! -Someone wants to say about "depict " in HOPE! -Someone wants to say about "where " in HOPE! -Someone wants to say about "(I’m " in HOPE! -Someone wants to say about "I " in HOPE! -Someone wants to say about "more " in HOPE! -Someone wants to say about "elegant " in HOPE! -Someone wants to say about "terms " in HOPE! -Someone wants to say about "wrote: " in HOPE! -Someone wants to say about "Origin " in HOPE! -Someone wants to say about "a " in HOPE! -Someone wants to say about "that " in HOPE! -Someone wants to say about "among " in HOPE! -Someone wants to say about "circles.[7] " in HOPE! -Someone wants to say about "release " in HOPE! -Someone wants to say about "jar? " in HOPE! -Someone wants to say about "an " in HOPE! -Someone wants to say about "logic " in HOPE! -Someone wants to say about "hope " in HOPE! -Someone wants to say about "cynicism " in HOPE! -Someone wants to say about "are " in HOPE! -Someone wants to say about "evidence? " in HOPE! -Someone wants to say about "“A " in HOPE! -Someone wants to say about "Hope.” " in HOPE! -Someone wants to say about "scattered, " in HOPE! -Someone wants to say about "contradictory, " in HOPE! -Someone wants to say about "whirling " in HOPE! -Someone wants to say about "thoughts " in HOPE! -Someone wants to say about "contemporaneity " in HOPE! -Someone wants to say about "a " in HOPE! -Someone wants to say about "time. " in HOPE! -Someone wants to say about "profound " in HOPE! -Someone wants to say about "dissonance. " in HOPE! -Someone wants to say about "seeing " in HOPE! -Someone wants to say about "us. " in HOPE! -Someone wants to say about "to " in HOPE! -Someone wants to say about "dark[8]. " in HOPE! -Someone wants to say about "The " in HOPE! -Someone wants to say about "utopian; " in HOPE! -Someone wants to say about "means " in HOPE! -Someone wants to say about "history.Find " in HOPE! -Someone wants to say about "[i]The " in HOPE! -Someone wants to say about "Forgetting[i], " in HOPE! -Someone wants to say about "willfully " in HOPE! -Someone wants to say about "Memory " in HOPE! -Someone wants to say about "resistance. " in HOPE! -Someone wants to say about "hope " in HOPE! -Someone wants to say about "remembrance. " in HOPE! -Someone wants to say about "remembering " in HOPE! -Someone wants to say about "victories " in HOPE! -Someone wants to say about "day. " in HOPE! -Someone wants to say about "constituents, " in HOPE! -Someone wants to say about "we " in HOPE! -Someone wants to say about "lifetime. " in HOPE! -Someone wants to say about "In " in HOPE! -Someone wants to say about "history. " in HOPE! -Someone wants to say about "to " in HOPE! -Someone wants to say about "cultivate " in HOPE! -Someone wants to say about "regard, " in HOPE! -Someone wants to say about "process.[13] " in HOPE! -Someone wants to say about "the " in HOPE! -Someone wants to say about "itself.Contemporary " in HOPE! -Someone wants to say about "ineradicable " in HOPE! -Someone wants to say about "come " in HOPE! -Someone wants to say about "with " in HOPE! -Someone wants to say about "adversary " in HOPE! -Someone wants to say about "contingency. " in HOPE! -Someone wants to say about "culminate " in HOPE! -Someone wants to say about "in " in HOPE! -Someone wants to say about "“alt-right” " in HOPE! -Someone wants to say about "riot " in HOPE! -Someone wants to say about "topless " in HOPE! -Someone wants to say about "religion, " in HOPE! -Someone wants to say about "veracity " in HOPE! -Someone wants to say about "congruence " in HOPE! -Someone wants to say about "***infantilize[] " in HOPE! -Someone wants to say about "empirical " in HOPE! -Someone wants to say about "sensibility—a " in HOPE! -Someone wants to say about "endeavor " in HOPE! diff --git a/patches/euna2 (2).txt b/patches/euna2 (2).txt deleted file mode 100644 index 1ed6de5..0000000 --- a/patches/euna2 (2).txt +++ /dev/null @@ -1,75 +0,0 @@ -Someone wants to say about "deemed " in HOPE! -Someone wants to say about "“pseudo-intellectuals,” " in HOPE! -Someone wants to say about "depict " in HOPE! -Someone wants to say about "where " in HOPE! -Someone wants to say about "(I’m " in HOPE! -Someone wants to say about "I " in HOPE! -Someone wants to say about "more " in HOPE! -Someone wants to say about "elegant " in HOPE! -Someone wants to say about "terms " in HOPE! -Someone wants to say about "wrote: " in HOPE! -Someone wants to say about "Origin " in HOPE! -Someone wants to say about "a " in HOPE! -Someone wants to say about "that " in HOPE! -Someone wants to say about "among " in HOPE! -Someone wants to say about "circles.[7] " in HOPE! -Someone wants to say about "release " in HOPE! -Someone wants to say about "jar? " in HOPE! -Someone wants to say about "an " in HOPE! -Someone wants to say about "logic " in HOPE! -Someone wants to say about "hope " in HOPE! -Someone wants to say about "cynicism " in HOPE! -Someone wants to say about "are " in HOPE! -Someone wants to say about "evidence? " in HOPE! -Someone wants to say about "“A " in HOPE! -Someone wants to say about "Hope.” " in HOPE! -Someone wants to say about "scattered, " in HOPE! -Someone wants to say about "contradictory, " in HOPE! -Someone wants to say about "whirling " in HOPE! -Someone wants to say about "thoughts " in HOPE! -Someone wants to say about "contemporaneity " in HOPE! -Someone wants to say about "a " in HOPE! -Someone wants to say about "time. " in HOPE! -Someone wants to say about "profound " in HOPE! -Someone wants to say about "dissonance. " in HOPE! -Someone wants to say about "seeing " in HOPE! -Someone wants to say about "us. " in HOPE! -Someone wants to say about "to " in HOPE! -Someone wants to say about "dark[8]. " in HOPE! -Someone wants to say about "The " in HOPE! -Someone wants to say about "utopian; " in HOPE! -Someone wants to say about "means " in HOPE! -Someone wants to say about "history.Find " in HOPE! -Someone wants to say about "[i]The " in HOPE! -Someone wants to say about "Forgetting[i], " in HOPE! -Someone wants to say about "willfully " in HOPE! -Someone wants to say about "Memory " in HOPE! -Someone wants to say about "resistance. " in HOPE! -Someone wants to say about "hope " in HOPE! -Someone wants to say about "remembrance. " in HOPE! -Someone wants to say about "remembering " in HOPE! -Someone wants to say about "victories " in HOPE! -Someone wants to say about "day. " in HOPE! -Someone wants to say about "constituents, " in HOPE! -Someone wants to say about "we " in HOPE! -Someone wants to say about "lifetime. " in HOPE! -Someone wants to say about "In " in HOPE! -Someone wants to say about "history. " in HOPE! -Someone wants to say about "to " in HOPE! -Someone wants to say about "cultivate " in HOPE! -Someone wants to say about "regard, " in HOPE! -Someone wants to say about "process.[13] " in HOPE! -Someone wants to say about "the " in HOPE! -Someone wants to say about "itself.Contemporary " in HOPE! -Someone wants to say about "ineradicable " in HOPE! -Someone wants to say about "come " in HOPE! -Someone wants to say about "with " in HOPE! -Someone wants to say about "adversary " in HOPE! -Someone wants to say about "contingency. " in HOPE! -Someone wants to say about "culminate " in HOPE! -Someone wants to say about "in " in HOPE! -Someone wants to say about "“alt-right” " in HOPE! -Someone wants to say about "riot " in HOPE! -Someone wants to say about "topless " in HOPE! -Someone wants to say about "religion, " in HOPE! -Someone wants to say about "veracity " in HOPE! diff --git a/patches/euna_dotdot.txt b/patches/euna_dotdot.txt deleted file mode 100644 index c4ffe42..0000000 --- a/patches/euna_dotdot.txt +++ /dev/null @@ -1,74 +0,0 @@ -TODODODDODTOTODTTOTDTTODODTOO•••DOOTOTTDOOTOTTTOTDOODODTOODTDDDTOOTDTTDTDDOOTTOTOO -OOTTDDD•••DTTOTOOTTTOOTTDDTTTOOOTO•••TDTTDTOOTOOTDDTDDTTO•••TTTOODTDTODTDTD••••••O -•••TOTTTTODTOTTTTDTTDODTTOOOTODTTTDTODTOOOTTOTOOTOTTODTOTTO•••TTOTOOODDDDTDDDDOOTD -DTTDODDOOOOTDDTTTDODTOD•••OTDDDDODOOTDOODDODOO•••TOOTTOOTOOOTDTDODTTOOTOTTTOOOOTDD -DDTTOTTDTTTDOOTOOTDDOODO•••DDDDTOOOOO•••TDTDTOOOT•••DTODDDDDDOODTOTDTDTD•••DTTDOOD -ODDTDDTODTODDTDT•••DODTD•••DOOTOTTOOTOOTODTTDTOTDO•••O•••ODODTDDDDTTOOOTOTDODDTTOT -DDDODDO•••O•••DDDTOTDDODTTDDOOTDOOOTDOODOODTODTOO•••OOOTDDDODDOODDDDOODDTDODDDTTDD -TDTTDODODDDDDTDODTTTTDTTOTOODTTDDDTDOODTOOTOTDOOTDD•••TODDDDTTTDDDOOTTTOTTTTTTDDOO -DTDTTDDTDOODOOTTOODTOTOTO•••OO•••TODDODDOODTTDTOODTDDOODDTDODODODODDTDTDTTOODDTTDD -TOODODOOOTOOTTDDTTD•••TTDDOOOODDD•••OTOODTTTTDDTODDDODOODTDDT•••OODTDTOTTOTTDDODOD -OODOOOTTD•••D•••OTOTOTDODODOOOTDTTTOODDODTTDOOODDDT•••TOTOTOOTTTOTDDDTDDOOOOODDTOD -TTTOOOTOOTDDOODDTDOOTD•••DTDDOODDTODDTODTOODDTTODOOOTOOTDDDTTOOODTTOTTDTODTTTTTTTT -TOODTDOODDTTODDTTODODOOODTDTOODTTDTTOTTODOOOTOOTDT•••OTDTTDTOTOTTDO•••TDOOTDTDOOOD -•••DTTDTOTD•••TTTDDTOODDDTTDODDTDDDOODOO•••DOOOTOTTODDTOOTOOTDOOODDD•••TDTTOOODDOO -OODTDTDDODOOOOODODODTTTOTOTODTOOTTOTOTOTT•••DTDDODTTDOOT•••TDDDOODOOTDTTOODD•••DDD -TDDTDODTTDODDOOOOTT•••OTTTOTTDTOOTOTODDTTOTOOTODTODTDDODODDO•••TDODOOTDTOTOOTOOTOO -OOODDTDOOODDDO•••TTDOOTTDDDDDTO•••ODDDDTDTTTTTOODTTOODDDODOODODTTOTTOOTODOOTDTDOOO -TDOOTDTOTTTTDTOOTTOTDTDTDTOTOTDTODDOOTDDDOOTTDTOOTOTTTDTOOOTOTODDDTODTDTOTOOTTDODT -OOTODDDDDTTTDTDDD•••DTDOOTODDOODOODOOODTDOOTD•••TDOODDODDDD•••DDDTOODDTDODTOOTOTDT -ODDODDDDTTOTODTTOODOOODODDOOTTDOOTO•••TTDDDTDOOTOTDTTOTOOTTTDODTTTDDOOOTDTOTDOOODO -D•••TTDDODDDT•••TDD•••OOODOOTDTDOOTDDDT•••OOTODTDTTOODTDTDOOTTTDOOTOOTTOOTTDTODDDT -OTOTOOTOTOTODDTTOD•••TTTOODODDODDTOOTDTOOODDTTDT•••OTTOODTDOODODTTTTOD•••TDODTTTTD -TOTODOODTODDOOODTOD•••TDOODTOTTDDOODTTOTDTDTDTDOODDDTTOOOOOTOD•••TTODDTODTTTOTOOTD -TDOODTODDTDTDDTDTOTTDTTTOOODTOODOOOTODTDODOOTDDDODDTOOOTTODODTOTDDTD•••D•••ODDT••• -OOTTTDTOTDDD•••DDTDDDODDTTDD•••OOODDTOTOOTTDD•••TTTOTO•••DODDTOODTTOTO•••TTOD•••DO -OOTDDOODTDTTOOOOTDDODTOTDDDDTTODTOTTTODTTODODDOODOODDTTODDDTDDDTTDODDTOTOOOTOTTODD -ODD•••TODDOOTTOODTDTTDODTOTTDDODDT•••TTDDDDTD•••ODTOTOTTTDDTTDT•••TDTTTOOOTOTTDDOO -ODDDTDOODOOOTTDOD•••TTOTDODTODOOTDOOOODDDTTTOOTODTODOODOOTTTOTOTODTDTDD••••••TDTOD -TODTTDO•••TDTOTTTODDDOOOOODTDTDOOOTOTTOTOODTODODOOODTTTTTTOOTDDDDTTTDDTOOOODDTOOOT -OOTTODTTD•••OTODTDODDTTTTTDTTDTDOOTTDTDTDDTOOTDDTDODDD•••DO•••TDDDDTDDDTOODDTDDTDD -OODDOOTDDTDTDTDDTTTDTDTDTTDDOOOTDTDOOD•••T•••OTOTOOTOTOOOD•••TODOOTTTOTODTTO•••OOT -TTTTOTTTD•••OOOTODTTTOOOOTDTOOTTTOTTTDTDDTOTDDTTTTOOOTTTTOTDDTDDTDDDODDT•••OD•••OT -TDDTOODOOTODDTOOOTDDDT••••••TOTTODTOO••••••T•••ODTOOTODTTDODTOTDD•••TTDOOTTTDTDDTT -OT•••DDODTTTOOTODDDTODTDODTTOTTOD•••ODDOD•••OOTTTTDTOTDTTT•••DTODDOOO•••OT•••TDODO -OOOODDDDTOODDDDTOT•••TTTTOODDTOTTT•••OTDTDDTDTOTODDTD•••ODTOTDTTDTOOODTOODODTOOODT -ODODDTDODO•••DTOTTTOTTTTDTOTOTO•••OODDTOOODDTO•••ODDTOTOT•••TOODDTO•••OOOOOODDTDDT -OTTODODOODTTTTOTOTTTT•••DTOTODOOODTDTTOTDTDODTDODTTDTDT•••TOTTDOO•••TODTDTDDDTDOOT -TDD•••OOD•••OODTTTODTDODTOTODOODOODTD•••OODDTDOOTODDDDTTTTOTDDDTDOODTTODOOTTDTOTOO -ODODODTODDDTTTTOOODODDO•••OODTTTODODTDTTT•••DT•••OOOTOTDODODOOOTTOTTDTTDDTDDDTTTOO -OOOOTOODTODTDDTOOTOODOOTDDTODTDTT•••DTOOOODODDTTOTT•••TOTTTTDOOTODDDODTTTODDTOOOOT -OOOTODOOTDDTTDO•••D•••TDOO•••TTTT•••D•••TODOODODTDDOODDDDDTDTTTODDDTDOOTTOTTDDOOTO -DTOO•••OOTOTDDDTDODTOOOTOOODDOODOOTTDTDDDOOTDODO•••DTTDTOTOOODTTTOOTTDODDODOODTTDO -OTOTTDTDDODTDDDDTTODDTTT•••TO•••ODDDDOOTT•••ODODDTOOTOD•••TODTDDDTTTOTDTDOOTTOOTOD -OOO•••OTDDTTDTTOTTTOTODDODTTOTOO•••TOOODTTOTOOTTTOTDTTOTODDTTDTOODDTDDTODTTDTDDTOT -DDDODOOTOOTDODTTOOT•••TODTOTOOOTTTTOOD•••DTDTTODT•••DDTOODDTTOTTDDDDTTDDTTOOOTTOOT -DDDTTDODTDOOTDD•••OOTT•••O•••OTDOODTOTDDDTTTDDTTDTOODTDOO•••DTO•••OOTDDTOOODTODOOO -OTOTTTOTDDTOODTOOTDDDDTODODDDDDODDODODDT•••TDTTODTTTOOTOTDTTDODTODODTOTOTOOTODDTTD -OOTODOOTTTOTO•••TDODTDDD•••OOOTTOTOOTOOTOTDTDDTDTDTOOOODTTTTTDDTDOODDDDTODTOTTOODO -ODTTOOTTOTDDDOOD•••TOOODOD•••TTDDOD•••OOTOOOO•••DTDTOTOOOOOOTTT•••TDDDTODTODTDOODD -DTODOOOTOODDTDTTDDTO•••TDTDDDDTDTTTOT•••OOTOTOTDTDDTDODTOTDDDDTTTDTTOTDDOODTDTDDDO -DTOTDDDOOOTTODODTOODDDDOOODOODOODDTDDTOODDODOOODDDDDDOODDTOOTTDTOTTDTTOTODDTODDDTT -DDTTODDDDTTTOODDDTOODOOTTDOOTTDOODDTT•••TTOOOOTDDTODOODTDDODDTTOOTDOOOODTTOOOOODDO -TDDOOTOTOTDDTTODDDDDTODTTOTTTDDDTTTTTTTOTTDOOODTTDOOTTTTTOTODDDTDDOOTTDTTDDTODOOOO -TTODTTTDTDTDOODDTDODDTTTTDOOOODTODOODDDOOTTT•••DTODTD•••DOOOOOTOTTTOTODT•••TOTOTOT -DTDOOTOT•••DOOD•••TTODTOTDTOO•••OD•••TDOOOOODTTOOOOODDTOOODTOOTDTOOOTTDDDDTTDDOODT -OOOOTDDD•••OTTOTOTODTO•••DTDDDTODDOOOTODTDTTOTTOODTDOOD•••DTTTDDODODT•••DOOOOTTDOO -TDDDDTOTD•••ODTOTTOTOTODDOOTTTTDDDTOOOOOTDTDTOT•••OOTODODDTDODODTODTDTTTDTTDOODTDO -DDTOOOOTODODD•••TOODDODTDTTTTDTOODDODTOTD•••OTODTTDDDDTTODTTDDDTTTOTODTDOOOTDOD••• -TTDDODTTOTOTTTDDTTDOOTTTDTTODDT•••OOTOODOODDTOTODTDODDTDDDTTODDDDDOOODOODDOODDODOD -T•••TTDDDOOOOOTOODTDDODDOOTD•••DDT•••OOTDOODTTOTTTDTTOOODTDTTOTODTTDDTOTDOOODDOODO -D•••ODTDOOOODDDDT•••DODDOOTDODOD•••DODTD•••OTDDT•••TOOOTODDTODOOOODDOOOTOTTTDDDTOT -OOOTDTODDDTDTTO•••TDTDTTTTO•••ODDDTDDTOTTTTOOTDTOOTTDTOOTTODOOODTTTOOOTTDDODTT•••O -OOTDTDODOOTTDDTDODODOOOTDDOOTODDTOODTTODTOTOTTTDDTTTOTDDDTODOODOOTDTOTTDDTOOOTDOOT -DDOODOOODTTOTDDODOODDDTOTODDDDDDTTTTOODO••••••D•••TO•••TDTODTDDOODODTOD•••DTTOOOOO -T•••OTOOOOTTTOTOTDTTOTTDDDTDTDDDDDTTTODTOOOOOTOOOOO•••TODOODTTDODDOOOTOTTDDDDDO••• -••••••DTOTOOTODTTODTOODODDTTTODDTDTTTDDTDTDOODODDTTOODTODTODDOODTTDD•••OTOO•••TDDD -DDTTODDTTDDODOOTDODDDTTTTTTTTOTDTDTODDOOTOODTOODTDODTDOOOTOTTOTDOODODD•••TDDODDTOT -TOODTTDDTODDDOOOTTODTODTTOTTDDODDTTTTDDTTDTDODD•••TDTTDDDOODDTODOOOTTDTTOTTTOOODTO -TODTOTDTDTOOTTT•••DDODDDOOTTDODTDODTOTDOODDDDDTOTDTTTOTDTTTDODTDTDDTOTOOTTODODTOTD -DTOODODDDTTDDODTDODDODDTOOTTDDTTDOODTDTO•••DTDODDDOODTTDTODTTOO•••ODDTTODDT••••••O -DTOOODDTDDOOT•••TDODOODTTDOOOTDTODDODTT•••DTODTODOODTODTTOTD•••TTTO•••OTOOOTODTODO -TDTOTTTDTOTDODOOOODTOTTT•••DTODTTDD•••TOOD•••TOOTTDDDTTOTOTDTTODD•••DDDTDTTTDOOOOO -DDODOOOOTTTDODDTOTODDTD••••••TDDDTDDDDDTTTDTDDOOTTTOOOOOOOOODTDDODTOTTTDDOODODODTT -TTTDTODDDTDOODDOOTODTDDOOTTDTTTTOOOTDODOODTTODTOTOOTDTOTTTTOODDOD•••ODTDDODDDDDTDD diff --git a/patches/floor6.txt b/patches/floor6.txt deleted file mode 100644 index eac633e..0000000 --- a/patches/floor6.txt +++ /dev/null @@ -1,74 +0,0 @@ -┕┝┑┙┥┙┥┙┍┿┯┕┷┷┝┙┕┙┙┷┙┕┷┑┙┑┑┕┯┝┥┷┍┝┝┿┕┥┝┍┿┕┙┕┙┍┑┯┕┑┕┑┥┷┯┝┕┝┙┿┿┍┯┕┥┑┿┿┷┍┙┕┿┷┥┙┝┥┷┕┿┍ -┷┙┕┕┿┷┕┯┕┍┥┑┿┍┯┑┥┥┥┥┥┍┑┝┷┿┷┑┍┍┍┍┿┑┕┝┙┝┙┙┑┍┷┥┷┍┙┑┥┑┙┷┷┑┯┍┙┷┿┿┿┯┕┥┑┿┯┕┷┑┯┷┑┥┙┝┷┷┯┯┯┿ -┷┕┯┑┙┥┑┝┷┷┍┝┑┕┯┙┝┍┑┕┥┿┿┥┑┥┯┷┑┑┷┙┕┿┯┙┝┥┑┝┯┝┝┍┑┍┕┙┷┕┿┕┑┙┍┷┑┑┯┑┥┿┕┕┯┑┙┿┕┙┑┙┍┍┯┙┿┕┥┙┥┕ -/X/╳/////XXXX/╳╳X/X/╳╳//╳╳╳X╳XX/X╳XXXX╳/X/XX╳╳//X/╳/╳/╳/XX/X╳╳╳X/XX╳╳╳XX//╳//X/XX╳ -╳╳/X╳╳/╳X╳X╳//╳╳╳/X╳╳//X/╳XXXXX/╳╳╳X╳╳╳╳X/XXX//╳X/╳╳╳╳X╳/╳/╳XXX/╳╳/╳X╳X╳XX/XX╳//╳X -X//X╳╳XX╳XX╳/X/X//XX/X/╳X╳╳//XX/XX/X╳╳/XX╳╳/XX╳╳/╳XX╳XX/XX//X╳╳/╳X/XXX///X╳X╳/X/XX -X╳///XX/XX/X/X/╳X/╳╳X╳╳╳///╳X/X//╳/X/XX╳X╳//XX/XX/╳╳X/X╳//XXX//╳X/╳╳///XX╳//X╳X╳X/ -X//XX/XX╳╳///X//╳/X╳XX/╳X/XX/╳XX///╳//X///X╳X╳╳╳╳X╳╳/XXX╳//╳╳/╳X//XXX//X╳/╳/X╳/╳// -XXXX///╳╳X╳/╳╳X╳/X╳╳X/XX╳X/╳╳╳X╳X/X/╳╳//X╳/╳X╳╳╳XXXX╳╳XX╳X/╳X╳╳/X/XX╳/X/XXX╳╳///╳X -//XX/╳X╳XX╳XXX╳/╳╳╳XX///X/X╳/X//╳/X╳XX/╳╳/X╳/╳XX/╳X╳XX/╳X//╳X//X╳╳///╳/X/X╳╳X/XXX╳ -/╳╳//XX╳╳X/╳/X╳///////X╳X╳//╳X╳//XXXXXX╳╳╳╳///╳XX//╳/╳X╳╳X╳╳X╳X/╳XX//XX╳X╳╳XX/XX/╳ -XX//╳╳XX/X╳X╳/╳XXX/╳/X╳/X/X╳X////╳XX╳//XX//╳/╳╳╳/╳X/////╳X//╳X╳//X╳X╳X/X/X╳/X╳╳╳╳╳ -//X//╳X/╳XX/╳//╳╳╳/╳╳/╳X/╳XXXX/X/X/╳╳╳X/╳╳╳╳╳X//╳X/X╳/╳X╳/XXX////XXXXX//XX///╳X/// -X╳╳/X///X╳///X╳//╳//X//XXX/X╳╳╳X/╳╳/XX/╳╳X//╳//╳//XX/XX╳╳╳╳/XXX/X/╳//╳╳╳/╳//X/╳╳X╳ -XXX/╳X╳╳XXX╳XX╳╳/X/XX///X╳/╳X///XX╳/╳X╳XX╳╳/╳╳///X╳/X╳///╳╳X╳╳XX╳/X╳//X//XXX/X/╳// -XX/╳X//╳X/╳/╳X╳XX╳╳/X╳╳XX╳╳/X/X╳╳///╳//X╳XX╳//╳X///╳/╳////╳╳/X╳X/X/╳//XXX╳X╳/╳XX// -/X╳XX///╳XX/╳/XXX╳/╳/X╳X/╳╳╳/╳╳/X╳/X/X╳X╳/X///╳/X╳X╳/X╳/╳╳X╳╳/╳╳XX╳╳╳X/╳X/╳//╳/╳// -XX/XX╳///X╳╳XXXX╳╳/╳╳/╳///╳╳╳╳╳XX///╳/╳XX╳╳X/╳XX//X/X/╳XX/X╳X/////╳/X╳X╳/╳╳/X╳/X╳X -╳╳╳X/╳╳╳╳/╳XXX/X/╳X╳//╳╳/╳╳╳X╳╳╳/╳//╳/X╳X╳/X/╳╳╳X╳///X╳╳/X/X╳╳////X/XXX╳╳╳/X/XXX╳/ -╳/╳╳XX/X/╳X╳//X╳X╳X╳X/╳//X//X╳/╳╳/╳╳╳/╳X╳/XXXX╳╳X╳//X///╳X/╳XX╳//X╳/╳╳XXXXX╳╳XX//X -╳XX╳X╳XX╳╳/╳//╳/╳//╳X╳X╳X╳╳╳╳╳X/╳//X╳X//╳//╳/╳XX╳/X╳XX╳X/╳╳X///╳X╳XXX/X╳╳╳/X//╳/╳X -/X/╳/X//╳X╳╳╳╳X╳X/X/╳/X╳╳/╳╳╳╳X╳XX/X/X/╳╳╳/╳X///╳/X╳╳╳XX╳/╳/╳╳/╳XX/╳///XXX╳╳╳╳//X/ -///X/XX//X/X/X/X╳/XXX╳//XXXX//X/X╳X╳//╳╳╳╳╳X/X╳//X╳/XX╳X╳X//╳/╳XXXX/╳╳X╳╳X╳/XX╳X// -/XX╳╳X/X╳╳╳/XXXX/XX╳/////╳X╳//XX//XX/XX╳X╳/╳╳/XX//XX//╳X/X/╳╳╳/╳XXX/X//XX╳X/X╳/╳X╳ -╳//╳╳╳╳X/X/X//X//XX╳X╳╳X╳╳╳╳//X╳╳X/X╳//╳XX/╳//╳/╳//╳XXX╳╳╳/╳/╳/X╳//X/X/╳//XX/XXXXX -╳X╳╳X/╳╳X/╳/X╳X╳//X/╳X/╳╳╳X/X╳/X//╳XXX//X╳╳///X╳/╳/XXX/╳XX/X/╳╳╳/╳╳/╳/╳╳X╳XX╳/X╳╳╳ -//XX///╳XX╳╳╳/╳/╳XX////XXX/╳/╳XX╳╳///╳/╳XXX/╳╳╳//XX//╳/╳╳/X/XX/X╳/X╳/╳//X╳X╳╳╳/X/X -╳╳//╳///╳X╳XX╳╳╳/X╳╳X/╳/X///╳╳╳/X╳╳/╳╳╳X//////XXXXX/X╳//X/X╳/X/╳////╳X╳╳╳╳╳/╳╳╳/X╳ -/╳X╳X╳X/╳╳╳/X╳X/╳╳X╳╳X//╳╳XXX/╳/X/╳╳XX╳///XX╳/╳X╳╳X╳XX/╳//╳/X╳//XXX╳//X//╳X/X╳XXXX -X╳XXX/X╳///X/XXXXXX╳/XXXX╳XX╳X╳X/╳╳/X///X///XXX/╳X╳╳╳╳X╳/╳X╳╳╳XX╳/X///╳///╳/╳╳╳XX╳ -/╳/╳╳╳/╳╳X////╳╳╳XXX╳XXXX/╳╳╳/╳X/X/╳╳╳/╳/XXX/XX////╳X╳/X/X/X╳X╳/X///XX/╳XX//X/╳/╳/ -XXXX/XX╳/X╳/XX╳X/╳//╳/X╳X╳///╳/╳╳╳X╳XXX╳/XXX╳X///X╳/╳//X//X╳╳╳//X╳X╳X/╳╳XXX╳X╳/XX/ -╳X/X//X/╳//╳XXX/╳╳XX╳/╳X/X/XX╳XX/X╳╳╳X╳X/X╳/X╳╳╳XX/╳//X╳╳/╳╳╳/╳//╳//╳X/╳/XX/╳╳╳╳╳/ -X╳╳/╳X/X╳╳XXX╳X//╳X//╳X╳/╳//╳///XX╳X╳╳//X//╳X//╳/XXX╳XX/X//X/XX/X╳╳X╳╳╳X╳/╳X/XX╳╳X -╳XX╳╳╳X/XX/╳X///╳/XX╳╳╳╳╳/XXX/╳/X/X╳XX╳X╳XXX╳X╳X╳//╳XXX╳XXX/╳╳X/╳XX/╳///X╳╳XX/X/╳╳ -/X/X╳//XX/X╳//XXX/╳XXX/╳X╳X///╳╳XX╳╳/╳╳/XXX/X/X╳XX/X╳//╳╳//XXX//X/╳╳X/╳╳X/╳X/X╳╳/X -X╳X////X/X╳╳////X///╳X╳XX╳/╳/╳X╳╳XXXX///XX╳╳╳/╳╳/X/╳/X╳/X////╳X/XX/╳╳//X/╳X/X╳╳╳X/ -╳/X//XX///X/X╳X╳╳/╳///╳╳XX//X╳////X╳XXX╳X/X╳////╳/X╳╳X╳╳/╳X╳X/X╳/╳X/XXX/X/╳╳XX╳XXX -//╳/╳X/╳//╳X╳XX╳╳╳╳X/╳X╳X/╳╳X╳╳XX╳///╳///╳╳X/╳/XXX//╳//╳╳╳/X╳/╳/X╳╳╳//╳///╳//X╳╳X╳ -╳X/XX╳X///╳XX╳X///╳/X/╳/╳//╳╳/X/XXX/X/╳╳XX╳/X╳╳╳╳//╳╳╳╳/X╳/XX////╳X╳/╳XX//X/X/X/X/ -X╳XXX/X╳XX╳/╳╳//X╳╳//╳X///X/╳/X/X╳╳/X╳XX╳X╳╳X╳╳///XX╳XXX╳╳/XX/╳╳X╳╳╳X╳╳╳╳///X╳/XX╳ -/╳X/╳XXX/╳X/╳//XX/╳//X///X╳//╳X/╳╳X╳//XX/XXX//XX╳//╳/X╳/X╳╳/XXX//X╳X╳╳╳/X╳/X/╳XX/X -//╳/XX╳╳╳╳╳/XX//XXXX╳X////X/╳X/X/╳XXXX╳X╳XX╳XXX/╳X/╳X╳╳X//X╳╳╳/╳XXX/╳X╳X╳╳╳╳//╳╳╳/ -╳╳╳╳X//XXXX╳X/╳X╳XXX╳X╳//╳/XX╳///╳/╳╳X//XXXX//╳╳╳X/╳╳X╳╳X╳X/X//╳XX/╳╳X╳X╳X/╳X//╳XX -XXX////╳╳X/XXXX╳╳X//╳XX╳X/X/X╳╳X╳╳//XX/╳//╳//X/XX/X╳/╳//X/╳XX/X/X/XXXXX/╳╳/╳XX/╳╳/ -X/XXXX╳X/╳XX╳X╳X╳/╳/╳X╳//╳╳╳X/X/╳XX╳X╳/╳XX//╳XXX╳//╳X/X/╳╳X╳/XX//XX//X╳╳X/X╳X/X/// -X╳//X╳╳X╳╳╳╳╳X╳//╳//XX/X/╳╳XX/╳XX╳/XX╳//XXX/╳/XX//X///X╳XXXX╳╳╳//XX/X╳╳X╳/X╳╳/XX/X -XXX╳XXX╳/X╳///╳X╳X/╳/╳/XXX╳╳XX╳//╳X╳/XXX/X╳/X╳/X╳/XX╳//╳/X/╳///╳╳X╳XXX╳/XX╳X╳╳╳/// -///╳╳XX/╳///╳╳X///X/╳X/X/X//╳/╳╳/XXX/X/╳///╳╳╳X╳XX╳///╳//╳/╳//╳/X//╳╳X╳╳╳╳╳╳/╳╳╳// -/X/X╳//XX/╳//XX╳XX/╳╳X╳/╳╳/X╳╳╳XX/X╳X╳////XX╳╳X/╳/XX//X/╳/╳X///╳X╳╳╳╳╳/╳////╳X/XX╳ -X/╳//X╳XX/╳/XX/X/╳XX/X/╳XX/╳╳╳╳XX╳╳╳////X╳X╳XXX/╳╳//╳╳X╳XX╳/X/X/╳X/XXX╳X/X╳╳╳//╳XX -╳╳╳╳XXX/╳/╳X///XX╳X╳╳X/X╳X╳╳X╳╳X╳╳//X╳╳/╳///╳X/╳XX/╳XXX╳/XXX/╳X╳/╳╳//X╳╳/╳╳╳//X╳╳/ -/X╳XX//XX//╳/X/XXX/X//X//X╳/X/╳/X╳╳XX╳X╳╳╳/╳╳╳XX/╳/X╳╳/╳//╳/╳/╳/╳╳/╳X╳//╳/X╳╳///X╳ -/╳XX/╳XX╳╳╳╳╳╳X╳╳╳╳╳╳//╳X╳╳/╳╳╳/╳/X╳XX╳//X/X/X//╳╳X/╳╳╳//X╳//X/╳╳X╳╳///╳╳╳╳╳XX//X╳ -X/╳X//X╳X//X╳/╳/╳X//╳/X╳X//XX/XX╳XXXXXX╳XX╳/╳╳/XX/X╳X/X╳/X╳/X╳XXXXX╳╳X/╳X/╳X╳/X╳X/ -╳╳/╳╳X╳X/╳XXX///XX//XXX/╳/X╳XX╳//XXXXX╳╳/╳╳╳/X///╳XXXXX╳╳╳╳/╳/X╳XXX/X/╳X╳╳╳X/X/╳╳X -/XXX/////╳╳╳╳//╳//XXXX//╳X/X/╳╳/╳///X╳X╳╳╳╳XX╳//╳/X///╳╳XX╳XX/╳X/╳╳╳╳╳╳╳X//╳X/XX╳╳ -╳╳/XX/X/X╳/XX╳/╳╳╳/X╳/XXXXX╳/XX╳╳XX╳╳/╳XXXX/╳╳╳///╳/╳/X/XXX/XXXX╳╳///X//╳X╳/╳╳╳//X -/X╳XX╳X///X╳/╳X/X/X/X╳/X/X//╳/X╳╳╳╳/╳╳XXX/XX╳╳╳X/╳XXX/╳XXXXX╳/╳╳╳╳//╳/╳X/X╳/X╳//X/ -╳X///XX//╳╳╳X//╳╳//XX╳/╳╳XX//╳╳//╳/X╳X/╳//XXXX/╳╳XX/╳XXX///╳╳╳╳X/XX╳///╳X╳//X/XX/╳ -╳/╳X╳//╳////╳//X/X/╳/╳╳X/╳X╳╳//X╳/XXX/X╳/╳//X//╳///╳X/X╳XX╳/╳╳╳╳╳/X╳╳XX╳//╳X╳X╳/╳X -/XX/╳X/╳/X╳/╳╳XX╳//╳/X╳╳X╳/X╳X╳/╳X╳/X╳/╳X╳/╳XX╳X/╳X//╳X╳//X╳╳╳╳╳╳/╳/X/XX╳X╳/X///X╳ -/╳╳X╳╳╳X/╳XXX╳///X╳//╳/╳╳╳////╳///╳//XX/╳╳X╳/X/╳╳╳XX╳//╳X/XXX╳/X/X╳X╳X/╳╳X╳X╳╳╳/// -/X//╳╳╳//X/XX╳╳X╳/╳XX/╳XXX╳╳XXXX╳╳╳/╳X/╳/XXX//X/╳/X╳X/╳╳///X╳X//X/╳//╳/╳/XX//XX╳╳/ -╳╳╳/X╳//XX////XXX/X╳/X╳╳//X╳╳X╳╳X/╳/X/XXXXX╳╳X╳//X/╳X╳╳/X╳╳/╳╳╳X/X╳╳/╳/╳╳X╳X╳XXXX╳ -XX///╳/╳/X/╳//╳╳/╳//╳/X/╳////╳XX/X╳XX/X/X/X//╳X/X/X/╳X╳XXXX//XX╳X/X╳X/X╳X///X╳X╳╳X -/╳╳//X//XX╳////X//╳//╳/╳╳XX//X╳/╳╳X╳XXXX╳X╳╳XX//╳X╳X╳//╳╳╳/X/X╳╳///╳X╳X/╳/X//╳╳╳╳/ -/X/╳X/X/X//╳X╳X///X╳X/XXX/X//╳╳XX/╳X╳/X╳╳/XX╳X//╳/╳XX╳╳╳XXXX╳//╳X/X/╳//╳/╳/╳X╳/╳╳╳ -╳╳//╳╳XX╳X//╳/╳///╳/X/XX/XXX╳XX╳X╳XX///╳╳╳╳╳╳╳X/╳╳X╳╳XX╳XX╳╳//XX╳X╳/╳XX/╳/╳/╳/╳XX╳ -/XX╳X//X╳╳╳╳//╳╳XX╳///╳XXX/╳╳╳/X╳/X/X╳X/X╳╳//X/////╳X╳X/╳X//////X╳X╳╳╳X╳/X/╳╳╳X/X╳ -/X/╳╳╳╳X╳XXXX╳/XX/////XX///X╳╳X╳/╳╳X/╳╳//X/╳╳XX╳X╳/XX/X/XXXX╳X╳XX╳/XX╳////X/XXX/╳╳ -╳//XX╳/X/╳//XX╳X/X/X╳//X╳╳X╳X╳╳/╳╳//XXX//╳//╳/╳╳X╳X//X╳/X/XX/╳/╳X╳╳X╳XX//╳XXX/XX╳X -/X╳/XXX╳/╳╳/╳//X/╳/////X/X╳XXX/X///╳X╳╳/╳XX//╳╳/╳//╳X╳╳╳/╳╳//X╳/XXX//╳╳╳X/╳//XXX╳X -/╳╳//╳XX/╳X╳XX╳╳╳X/X╳╳╳╳///X╳//╳//╳/╳╳╳╳╳X//╳╳XX/X/╳//X╳XX/X╳/XX//╳//X╳╳╳X/╳╳/XXX╳ diff --git a/patches/jacopo.otherness.def.txt b/patches/jacopo.otherness.def.txt deleted file mode 100644 index c3ff2d4..0000000 --- a/patches/jacopo.otherness.def.txt +++ /dev/null @@ -1,74 +0,0 @@ -THE MORE THEY ARE CLOSE THE MORE I AM AWARE OF THE PART I OCCUPY IN THE WORLD -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS -THE OTHERNESS THE ONENESS \ No newline at end of file diff --git a/patches/jacopo.patch (1).txt b/patches/jacopo.patch (1).txt deleted file mode 100644 index 4282cd6..0000000 --- a/patches/jacopo.patch (1).txt +++ /dev/null @@ -1,74 +0,0 @@ -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -YESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSSYESSS -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE -NOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOONOOOO -MAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBEMAYBE \ No newline at end of file diff --git a/patches/kendalpatch (1).txt b/patches/kendalpatch (1).txt deleted file mode 100644 index d466f55..0000000 --- a/patches/kendalpatch (1).txt +++ /dev/null @@ -1,74 +0,0 @@ -process:/\ ...|range:/\ ...|perform:/\ ...|range:/\ ...|connections:/\ ...|range:/ -organic:/\ ...|matter:/\ ...|organic:/\ ...|environmental:/\ ...|power:/\ ...|alte -agency:/\ ...|expanded:/\ ...|hyperobjects:/\ ...|programmable:/\ ...|shaped:/\ .. -predictable:/\ ...|metaphorical:/\ ...|physical:/\ ...|form:/\ ...|connections:/\ -monsters:/\ ...|external:/\ ...|complexity:/\ ...|ecological:/\ ...|hyperobjects:/ -structures:/\ ...|patterns:/\ ...|complexity:/\ ...|control:/\ ...|process:/\ ...| -extend:/\ ...|matter:/\ ...|new:/\ ...|perform:/\ ...|terrains:/\ ...|process:/\ . -boundaries:/\ ...|scientific:/\ ...|scientific:/\ ...|habitats:/\ ...|liquid:/\ .. -physical:/\ ...|between:/\ ...|perform:/\ ...|extend:/\ ...|terrains:/\ ...|monste -new:/\ ...|read:/\ ...|thinking:/\ ...|extend:/\ ...|metabolic:/\ ...|metaphorical -metabolic:/\ ...|relationship:/\ ...|developed:/\ ...|boundaries:/\ ...|engage:/\ -power:/\ ...|predictable:/\ ...|bodies:/\ ...|humans:/\ ...|work:/\ ...|external:/ -spaces:/\ ...|realm:/\ ...|humans:/\ ...|dynamic:/\ ...|apparatus:/\ ...|new:/\ .. -reflective:/\ ...|nature:/\ ...|water:/\ ...|generate:/\ ...|perform:/\ ...|range: -material:/\ ...|organic:/\ ...|conventions:/\ ...|material:/\ ...|constant:/\ ...| -structures:/\ ...|future:/\ ...|mechanical:/\ ...|form:/\ ...|behaviour:/\ ...|mat -alternative:/\ ...|predictable:/\ ...|metaphorical:/\ ...|structures:/\ ...|water: -existence:/\ ...|range:/\ ...|unique:/\ ...|living:/\ ...|thinking:/\ ...|continuo -unruly:/\ ...|shaped:/\ ...|natural:/\ ...|mechanical:/\ ...|agency:/\ ...|matter: -environmental:/\ ...|cycles:/\ ...|conventions:/\ ...|scientific:/\ ...|language:/ -language:/\ ...|engage:/\ ...|existence:/\ ...|habitats:/\ ...|process:/\ ...|envi -engage:/\ ...|monsters:/\ ...|reality:/\ ...|provoked:/\ ...|inert:/\ ...|metaboli -mechanical:/\ ...|constant:/\ ...|metabolic:/\ ...|spaces:/\ ...|humans:/\ ...|mat -interactions:/\ ...|generate:/\ ...|terrains:/\ ...|flux:/\ ...|independently:/\ . -matter:/\ ...|agency:/\ ...|other:/\ ...|extend:/\ ...|bodies:/\ ...|material:/\ . -energy:/\ ...|extend:/\ ...|extend:/\ ...|existence:/\ ...|shaped:/\ ...|structure -control:/\ ...|sea:/\ ...|terrains:/\ ...|process:/\ ...|life:/\ ...|external:/\ . -forces:/\ ...|components:/\ ...|provoked:/\ ...|life:/\ ...|sea:/\ ...|expanded:/\ -terrains:/\ ...|bodies:/\ ...|metaphorical:/\ ...|future:/\ ...|developed:/\ ...|s -language:/\ ...|patterns:/\ ...|alternative:/\ ...|metaphorical:/\ ...|external:/\ -machine:/\ ...|materiality:/\ ...|relationship:/\ ...|inert:/\ ...|framework:/\ .. -hyperobjects:/\ ...|monsters:/\ ...|new:/\ ...|range:/\ ...|transform:/\ ...|form: -boundaries:/\ ...|boundaries:/\ ...|matter:/\ ...|systems:/\ ...|form:/\ ...|life: -ideas:/\ ...|scientific:/\ ...|metaphorical:/\ ...|living:/\ ...|existence:/\ ...| -scientific:/\ ...|fundamental:/\ ...|connections:/\ ...|spaces:/\ ...|sea:/\ ...|e -new:/\ ...|flux:/\ ...|power:/\ ...|behaviour:/\ ...|expanded:/\ ...|machine:/\ .. -materiality:/\ ...|conventions:/\ ...|existence:/\ ...|nature:/\ ...|scientific:/\ -constant:/\ ...|form:/\ ...|inert:/\ ...|unique:/\ ...|behaviour:/\ ...|relationsh -power:/\ ...|relationship:/\ ...|conventions:/\ ...|interactions:/\ ...|extend:/\ -life:/\ ...|power:/\ ...|engage:/\ ...|multiple:/\ ...|alternative:/\ ...|power:/\ -external:/\ ...|phenomena:/\ ...|reflective:/\ ...|spaces:/\ ...|programmable:/\ . -dynamic:/\ ...|alternative:/\ ...|bodies:/\ ...|lifelike:/\ ...|scientific:/\ ...| -spaces:/\ ...|relationship:/\ ...|condition:/\ ...|constant:/\ ...|metabolic:/\ .. -monsters:/\ ...|soul:/\ ...|reality:/\ ...|programmable:/\ ...|range:/\ ...|reflec -environmental:/\ ...|patterns:/\ ...|power:/\ ...|interactions:/\ ...|ecological:/ -shaped:/\ ...|future:/\ ...|fundamental:/\ ...|life:/\ ...|energy:/\ ...|inert:/\ -flux:/\ ...|metabolic:/\ ...|inert:/\ ...|form:/\ ...|independently:/\ ...|matter: -external:/\ ...|power:/\ ...|fundamental:/\ ...|fundamental:/\ ...|physical:/\ ... -matter:/\ ...|condition:/\ ...|multiple:/\ ...|materiality:/\ ...|monsters:/\ ...| -habitats:/\ ...|cycles:/\ ...|environmental:/\ ...|cycles:/\ ...|connections:/\ .. -behaviour:/\ ...|perform:/\ ...|unique:/\ ...|alternative:/\ ...|conventions:/\ .. -liquid:/\ ...|nature:/\ ...|noise:/\ ...|thinking:/\ ...|liquid:/\ ...|multiple:/\ -metabolic:/\ ...|new:/\ ...|perform:/\ ...|mechanical:/\ ...|components:/\ ...|bod -organic:/\ ...|independently:/\ ...|structures:/\ ...|ecological:/\ ...|perform:/\ -range:/\ ...|generate:/\ ...|lifelike:/\ ...|scientific:/\ ...|uncertain:/\ ...|ma -work:/\ ...|order:/\ ...|reflective:/\ ...|form:/\ ...|structures:/\ ...|realm:/\ -provoked:/\ ...|chemical:/\ ...|multiple:/\ ...|substance:/\ ...|spaces:/\ ...|mul -constant:/\ ...|conventions:/\ ...|behaviour:/\ ...|humans:/\ ...|uncertain:/\ ... -ecological:/\ ...|external:/\ ...|water:/\ ...|order:/\ ...|forces:/\ ...|conventi -boundaries:/\ ...|conventions:/\ ...|nature:/\ ...|uncertain:/\ ...|apparatus:/\ . -relationship:/\ ...|complexity:/\ ...|scientific:/\ ...|external:/\ ...|matter:/\ -alternative:/\ ...|liquid:/\ ...|realm:/\ ...|metabolic:/\ ...|fundamental:/\ ...| -monsters:/\ ...|energy:/\ ...|existence:/\ ...|metabolic:/\ ...|conventions:/\ ... -between:/\ ...|machine:/\ ...|life:/\ ...|systems:/\ ...|shaped:/\ ...|complexity: -complexity:/\ ...|humans:/\ ...|power:/\ ...|liquid:/\ ...|flux:/\ ...|material:/\ -complexity:/\ ...|order:/\ ...|spaces:/\ ...|metaphorical:/\ ...|nature:/\ ...|ref -existence:/\ ...|alternative:/\ ...|metabolic:/\ ...|metabolic:/\ ...|lifelike:/\ -reality:/\ ...|energy:/\ ...|living:/\ ...|liquid:/\ ...|flux:/\ ...|extend:/\ ... -spaces:/\ ...|scientific:/\ ...|between:/\ ...|terrains:/\ ...|agency:/\ ...|lifel -water:/\ ...|flux:/\ ...|life:/\ ...|uncertain:/\ ...|flux:/\ ...|shaped:/\ ...|wo -control:/\ ...|patterns:/\ ...|living:/\ ...|expanded:/\ ...|language:/\ ...|refle -machine:/\ ...|provoked:/\ ...|life:/\ ...|spaces:/\ ...|connections:/\ ...|realit -framework:/\ ...|habitats:/\ ...|living:/\ ...|characterise:/\ ...|ideas:/\ ...|en -thinking:/\ ...|power:/\ ...|noise:/\ ...|lifelike:/\ ...|terrains:/\ ...|nature:/ diff --git a/patches/louisa-patch-update.txt b/patches/louisa-patch-update.txt deleted file mode 100644 index 571f187..0000000 --- a/patches/louisa-patch-update.txt +++ /dev/null @@ -1,85 +0,0 @@ -__________________________________________________________________________ -========================================================================== -|||||||||||||||||||||||||||||||||||wormwor|||||||||||||||||||||||||||||||| -||||||||||||||||||||||||||||||||||wormwormw||||||||||||||||||||||||||||||| -========================================================================== -||||||||||||||||||||||||||||||||ormwormwor|||||||||||||||||||||||||||||||| -||||||||||||||||||||||||||||||ormwormworm||||||||||||||||||||||||||||||||| -========================================================================== -||||||||||||||||||||||||wormwormworm|||||||||||||||||||||||||||||||||||||| -|||||||||||||||||||||wormwormworm||||||||||||||||||||||||||||||||||||||||| -========================================================================== -|||||||||||||||||wormwormwormw|||||||||||||||||||||||||||||||||||||||||||| -|||||||||||||||wormwormwormw|||||||||||||||||||||||||||||||||||||||||||||| -=============~~~~~~~~~~~~================================={{{{{{{{{======= -xxxxxxxxxxxx~~~~~~~~~~~~xxxxxxxxxxxxxxxxxxxxxxxxxxx99{{{{{{leholeho9xxxxxx -xxxxxxxxxxx~~~~~~~~~~~xxxxxxxxxxxxxxxxxxxxxx9{{{{{{{{{{holeholehole9xxxxxx -xxxxxxxxxx~~~~~~~~~~~xxxxxxxxxxxxxxxxx9{{{{{{{{{{{{{{holeholehole9xxxxxxxx -xxxxxxxxxx~~~~~~~~~~xxxxxxxxxxxxx9{{{{{{{{{{{{{{{{holeholehhole9xxxxxxxxxx -xxxxxxxxxx~~~~~~~~~~xxxxxxxx9{{{{{{{{{{{{{{{{{holeholehoholeh9xxxxxxxxxxxx -xxxxxxxxxx~~~~~~~~~~~xxxx9{{{{{{{{{{{{{{holeholeholholehole9xxxxxxxxxxxxxx -xxxxxxxxxxx~~~~~~~~~~~x9{{{{{{{{{{{{{{{leholeholeholehol9xxxxxxxxxxxxxxxxx -xxxxxxxxxxx~~~~~~~~~~~~{{{{{{{{{{{{{holeholholeholehol9xxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxx~~~~~~~~~~~~{{{{{{{holeholeholeholehol9xxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxx~~~~~~~~~~~~~{{{{holeholeholeholeho9xxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxx9{~~~~~~~~~~~~~holeholeholeholeho9xxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxx9{{{{{{~~~~~~~~~~holeholeholehole9xxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxx9{{{{{{{{{{~~~~~~holeholeholeho9xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxx9{{{{{{{{{{{{~~holeholeholeho9xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxx9{{{{{{{{{{{{holeholeholeh9xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxx9{{{{{{{{{{{{{{{holehol9xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxx9{{{{{{{{{{{{{{{{{{9xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxx9{{{{{{{{{{{{{9xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.xxxx*xxxxxx -xxxxxxx99999xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*xx.xxxx -xxxxxxx*xx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.xxxxxx.xx -xx..xxxxxx.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.*xxxxxx.xxx.x -xxxx.x.x.x.xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.x.xxx.xxxx -xxx.xxx...x.xx**xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx**x..xx.x*xxx -xxxx.......xxx*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx......xxxx -xxx........xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx........xxx -@|||||||||||||@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx@||||||||||||@ -xx@@@@@@@@@@@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx@@@@@@@@@@@xx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxxxxxx|xxxxxxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxxxxx/h\xxxxxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxxxx/pat\xxxxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxxx/pathp\xxxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxxx/pathpat\xxxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxxx/pathpathp\xxxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxxx/pathpathpat\xxxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxxx/pathpathpathp\xxxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxxx/pathpathpathpat\xxxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxxx/pathpathpathpathp\xxxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxxx/pathpathpathpathpat\xxxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxxx/pathpathpathpathpathp\xxxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxxx/pathpathpathpathpathpat\xxxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxxx/pathpathpathpathpathpathp\xxxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxxx/pathpathpathpathpathpathpat\xxxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxxx/pathpathpathpathpathpathpathp\xxxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxxx/pathpathpathpathpathpathpathpat\xxxxxxxx|||||||||xxx -xxx|||||||||xxxxxxxx/pathpathpathpathpathpathpathpathp\xxxxxxx|||||||||xxx -xxx|||||||||xxxxxxx/pathpathpathpathpathpathpathpathpat\xxxxxx|||||||||xxx -xxx|||||||||xxxxxx/pathpathpathpathpathpathpathpathpathp\xxxxx|||||||||xxx -xxx|||||||||xxxxx/pathpathpathpathpathpathpathpathpathpah\xxxx|||||||||xxx -xxx|||||||||xxxx/pathpathpathpathpathpathpathpathpathpathp\xxx|||||||||xxx -xxx|||||||||xxx/pathpathpathpathpathpathpathpathpathpathpat\xx|||||||||xxx -xxx|||||||||xx/pathpathpathpathpathpathpathpathpathpathpathp\x|||||||||xxx -xxx|||||||||x/pathpathpathpathpathpathpathpathpathpathpathpat\|||||||||xxx -xxx|||||||||/pathpathpathpathpathpathpathpathpathpathpathpathp\||||||||xxx -xxx||||||||/pathpathpathpathpathpathpathpathpathpathpathpathpat\|||||||xxx -xxx|||||||/pathpathpathpathpathpathpathpathpathpathpathpathpathp\||||||xxx -xxx||||||/pathpathpathpathpathpathpathpathpathpathpathpathpathpat\|||||xxx -xxx|||||/pathpathpathpathpathpathpathpathpathpathpathpathpathpathp\||||xxx -xxx||||/pathpathpathpathpathpathpathpathpathpathpathpathpathpathpat\|||xxx -xxx|||/pathpathpathpathpathpathpathpathpathpathpathpathpathpathpathp\||xxx -xxx||/pathpathpathpathpathpathpathpathpathpathpathpathpathpathpathpat\|xxx -xxxx/pathpathpathpathpathpathpathpathpathpathpathpathpathpathpathpathp\xxx -xxx/pathpathpathpathpathpathpathpathpathpathpathpathpathpathpathpathpat\xx -xx/pathpathpathpathpathpathpathpathpathpathpathpathpathpathpathpathpathp\x -//xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -__________________________________________________________________________ - - - diff --git a/patches/martingradient_path.txt b/patches/martingradient_path.txt deleted file mode 100644 index ddbcb69..0000000 --- a/patches/martingradient_path.txt +++ /dev/null @@ -1,73 +0,0 @@ -⠯⠯⠻⠷⠷⠻⠷⠾⠾⠯⠯⠟⠟⠿⠿⠯⠯⠾⠯⠻⠻⠯⠿⠟⠷⠻⠯⠷⠷⠿⠾⠻⠻⠟⠟⠾⠟⠿⠷⠿⠿⠾⠯⠯⠯⠯⠟⠾⠯⠯⠯⠾⠿⠾⠿⠯⠿⠻⠾⠾⠾⠯⠿⠯⠿⠯⠿⠯⠾⠯⠻⠟⠟⠯⠯⠟⠟⠯⠾⠟⠷⠻ -⠿⠻⠻⠿⠿⠯⠯⠷⠾⠻⠷⠷⠿⠟⠾⠟⠻⠟⠻⠟⠾⠿⠯⠻⠻⠿⠻⠷⠟⠟⠿⠻⠯⠯⠻⠟⠯⠷⠷⠿⠟⠾⠷⠿⠻⠻⠷⠷⠿⠿⠻⠾⠟⠷⠾⠟⠻⠯⠾⠾⠾⠟⠷⠷⠟⠻⠷⠯⠿⠿⠟⠾⠿⠯⠯⠯⠿⠟⠟⠿⠷⠟ -⠟⠿⠟⠾⠷⠷⠻⠟⠻⠯⠿⠿⠷⠻⠯⠾⠾⠻⠿⠷⠾⠯⠟⠿⠷⠿⠟⠯⠾⠾⠟⠿⠻⠿⠷⠾⠿⠯⠿⠯⠯⠾⠷⠾⠻⠻⠿⠯⠟⠿⠿⠿⠷⠻⠟⠿⠿⠻⠯⠿⠷⠻⠾⠯⠿⠷⠿⠷⠟⠯⠯⠯⠟⠷⠾⠷⠷⠿⠻⠿⠟⠟ -⠟⠯⠟⠾⠿⠿⠻⠟⠟⠟⠿⠷⠷⠿⠿⠻⠿⠻⠟⠟⠟⠷⠿⠻⠿⠿⠟⠿⠾⠿⠯⠯⠻⠷⠿⠟⠿⠾⠻⠿⠿⠟⠟⠻⠻⠻⠯⠟⠯⠯⠯⠾⠻⠷⠟⠷⠿⠾⠻⠷⠷⠟⠻⠿⠯⠾⠷⠯⠻⠿⠾⠟⠻⠟⠿⠟⠟⠟⠷⠿⠾⠟ -⠷⠯⠿⠯⠟⠯⠾⠿⠿⠯⠻⠾⠟⠻⠟⠻⠾⠯⠟⠾⠯⠿⠯⠟⠟⠷⠻⠻⠷⠿⠿⠯⠻⠯⠯⠻⠻⠿⠾⠷⠾⠷⠿⠾⠟⠷⠿⠻⠯⠷⠾⠾⠯⠾⠿⠷⠯⠟⠾⠟⠟⠯⠻⠯⠟⠷⠾⠷⠯⠿⠟⠟⠻⠟⠿⠟⠷⠯⠾⠟⠷⠿ -⠻⠯⠾⠟⠿⠟⠻⠿⠾⠟⠻⠯⠾⠷⠾⠯⠷⠯⠷⠾⠿⠯⠟⠯⠻⠾⠷⠟⠯⠾⠻⠾⠾⠻⠟⠿⠯⠻⠻⠿⠷⠷⠿⠿⠯⠻⠯⠟⠻⠾⠷⠷⠻⠿⠷⠻⠟⠾⠿⠻⠯⠾⠯⠿⠻⠻⠟⠟⠷⠻⠯⠯⠻⠷⠷⠯⠻⠿⠷⠻⠾⠻ -⠻⠷⠻⠻⠿⠟⠻⠷⠾⠻⠟⠯⠟⠾⠯⠾⠟⠿⠾⠻⠟⠯⠷⠻⠯⠟⠟⠟⠾⠟⠯⠿⠯⠟⠟⠿⠟⠻⠟⠾⠻⠻⠿⠯⠯⠾⠻⠿⠿⠟⠟⠷⠷⠿⠿⠾⠯⠟⠟⠻⠯⠿⠿⠯⠿⠷⠻⠷⠾⠾⠿⠻⠯⠻⠯⠯⠯⠟⠷⠟⠾⠻ -⠯⠟⠯⠾⠻⠟⠾⠾⠾⠿⠾⠟⠷⠟⠷⠾⠟⠿⠾⠾⠾⠟⠾⠿⠿⠿⠾⠾⠯⠻⠟⠻⠻⠯⠾⠿⠷⠾⠟⠟⠿⠯⠿⠻⠿⠯⠿⠷⠯⠯⠷⠷⠾⠯⠻⠻⠟⠻⠟⠷⠟⠯⠷⠷⠿⠻⠷⠿⠻⠾⠯⠟⠿⠿⠯⠻⠾⠷⠷⠻⠾⠿ -⠯⠟⠷⠻⠷⠯⠻⠻⠿⠯⠯⠿⠾⠟⠻⠟⠿⠿⠿⠻⠟⠟⠯⠟⠯⠷⠻⠷⠻⠟⠻⠟⠯⠿⠾⠷⠟⠾⠯⠿⠷⠟⠟⠻⠿⠟⠯⠿⠿⠯⠾⠿⠯⠟⠻⠷⠟⠾⠯⠾⠯⠷⠟⠻⠾⠟⠻⠾⠻⠯⠷⠿⠟⠾⠟⠯⠟⠿⠟⠷⠾⠾ -⠿⠾⠻⠿⠿⠻⠷⠾⠻⠯⠟⠾⠟⠾⠷⠯⠟⠾⠟⠯⠿⠻⠯⠟⠷⠯⠾⠷⠷⠿⠟⠻⠷⠾⠷⠾⠾⠷⠾⠿⠾⠯⠿⠯⠯⠟⠟⠯⠻⠷⠯⠟⠟⠿⠷⠿⠯⠻⠷⠿⠿⠯⠻⠯⠷⠾⠷⠾⠿⠻⠿⠟⠾⠻⠻⠯⠷⠯⠿⠿⠾⠻ -⠟⠾⠯⠷⠾⠷⠟⠿⠻⠿⠟⠯⠟⠷⠿⠟⠿⠯⠾⠻⠿⠯⠷⠷⠿⠾⠷⠿⠾⠟⠿⠯⠷⠿⠻⠟⠯⠾⠟⠿⠯⠷⠾⠻⠷⠯⠾⠾⠿⠷⠟⠿⠟⠯⠷⠷⠾⠻⠾⠾⠻⠯⠻⠯⠿⠾⠷⠾⠻⠾⠯⠷⠻⠾⠾⠾⠟⠯⠷⠿⠯⠷ -⠟⠟⠷⠯⠯⠿⠻⠻⠷⠾⠻⠻⠯⠟⠿⠷⠷⠯⠯⠾⠟⠟⠾⠿⠿⠿⠾⠟⠯⠿⠿⠾⠯⠾⠯⠾⠯⠻⠾⠯⠷⠯⠷⠟⠷⠾⠷⠷⠾⠻⠟⠟⠟⠟⠟⠻⠷⠾⠟⠾⠾⠾⠟⠻⠯⠿⠯⠿⠯⠯⠾⠷⠷⠻⠻⠿⠾⠾⠷⠯⠟⠯ -⠟⠻⠷⠷⠯⠾⠿⠾⠿⠻⠿⠯⠟⠿⠷⠟⠷⠿⠿⠷⠯⠾⠿⠯⠟⠟⠯⠾⠯⠷⠯⠟⠷⠷⠻⠯⠾⠯⠾⠾⠻⠟⠿⠯⠯⠟⠷⠾⠿⠿⠻⠯⠷⠿⠾⠿⠿⠯⠯⠾⠷⠷⠾⠻⠻⠾⠻⠟⠾⠿⠟⠾⠟⠷⠷⠟⠟⠻⠿⠷⠷⠷ -⠯⠟⠟⠯⠟⠟⠿⠾⠯⠻⠻⠻⠷⠯⠾⠯⠯⠷⠷⠟⠾⠯⠷⠯⠯⠯⠾⠯⠻⠻⠟⠾⠷⠻⠾⠟⠿⠷⠾⠻⠟⠾⠾⠷⠾⠯⠻⠻⠻⠷⠻⠯⠯⠟⠿⠯⠿⠻⠟⠟⠿⠯⠻⠷⠟⠿⠻⠿⠟⠟⠯⠟⠾⠟⠟⠾⠿⠾⠻⠟⠿⠾ -⠾⠾⠿⠟⠟⠟⠷⠟⠿⠯⠻⠻⠾⠯⠿⠯⠾⠷⠯⠟⠻⠷⠯⠷⠷⠿⠷⠿⠻⠷⠻⠟⠾⠿⠻⠷⠾⠻⠯⠟⠿⠟⠻⠻⠷⠾⠾⠯⠟⠯⠾⠻⠾⠿⠟⠿⠷⠾⠿⠯⠯⠿⠻⠯⠻⠷⠷⠾⠯⠯⠿⠯⠾⠟⠻⠷⠯⠿⠷⠻⠯⠷ -⠟⠿⠺⠗⠗⠗⠿⠗⠺⠗⠻⣝⣝⠺⠻⠟⠻⠗⠺⣝⠿⠺⠗⣝⠺⣝⠺⠟⠿⠿⠿⠻⠺⠟⠟⠻⠟⠺⠗⠿⠗⣝⠿⠻⠿⣝⠻⠿⠗⠺⠿⣝⠿⠻⠟⠺⠗⣝⠗⠗⠟⠟⠗⠺⠟⠺⠟⠗⣝⠗⠻⠗⠟⠺⠗⠿⠻⠻⠟⠿⠗⣝ -⠿⠿⠗⠺⠿⠿⣝⠟⠻⣝⠗⠺⠗⠗⣝⠿⠗⣝⣝⠗⠻⠗⠿⠺⠗⠿⠗⠗⠗⠿⠺⣝⠗⠟⠻⠿⠻⠻⠟⠗⠿⠻⠿⣝⠿⠺⠗⠗⣝⠗⠿⠻⠗⠟⠺⣝⠟⠻⠟⣝⠿⠿⠟⠿⠻⠺⠺⠿⠻⠻⠻⠿⠻⠟⠗⣝⠻⠿⠿⣝⠺⠻ -⠻⠟⠺⠻⣝⠟⠟⣝⠟⠟⠺⠟⠻⠟⣝⠿⣝⠻⣝⠟⠟⠻⠟⠗⠻⠟⠗⣝⠟⠻⠗⣝⠗⣝⠗⠿⠟⠟⠺⠗⠺⠺⠿⠟⠺⠺⠻⠺⣝⣝⠺⠗⠗⠺⠟⠿⠿⠻⠟⠺⣝⠺⣝⠗⠟⣝⠗⠟⠗⠺⠿⠻⠺⠺⠗⠻⣝⠗⣝⠟⠗⠟ -⠺⠟⠟⠟⠟⠻⠿⠗⠟⠻⠻⠟⠟⠟⠺⣝⠗⠟⠿⠟⠗⣝⠿⠿⣝⠺⠗⠗⠺⣝⠟⠗⠺⠟⠺⠻⠗⠟⠿⣝⠟⠺⠗⠻⠺⠟⣝⠻⠺⠟⠻⠟⠺⠺⠻⠺⠟⠺⠺⠿⠟⠿⠟⣝⣝⠟⣝⠻⠟⠺⠺⠿⠗⠻⠻⣝⠿⠗⣝⠺⣝⠻ -⠺⠗⣝⣝⠻⠻⠿⠺⠗⠗⠗⠻⠿⣝⠿⠻⠻⣝⠿⣝⠻⠟⠻⠟⠟⣝⠺⠻⠺⠿⠻⠻⠗⠟⠿⠗⠺⠿⠟⠟⠻⠟⠿⠿⠟⠺⠿⠟⠿⣝⠿⠺⠺⠺⠟⠻⠺⠟⠿⠟⠺⠻⠟⠟⠗⠺⠺⠻⠻⣝⠻⠿⠻⣝⠟⠟⣝⠻⠟⠿⠟⠟ -⠿⣝⣝⠿⠻⠗⠻⣝⠗⠿⠟⣝⠟⠺⠺⠟⠻⠺⠟⠻⣝⠿⠟⠟⠺⣝⠿⣝⠻⠿⠟⠺⠺⠟⠗⠺⠺⠺⣝⠟⠿⠗⠺⣝⠿⣝⠺⠿⣝⠺⠿⠟⠿⠟⠟⠺⠿⠟⠗⠗⣝⠗⠺⠗⠟⠗⠿⠻⠗⠿⠟⣝⠺⠿⠟⠟⠗⠟⠺⣝⠟⣝ -⠟⠻⠻⠿⠻⠟⠺⠗⠺⠻⠺⠻⠻⣝⠗⠗⠿⠺⠿⠗⠟⠗⠟⠗⠗⠿⣝⠻⠗⣝⠺⠺⠿⠺⠟⣝⠗⣝⠗⠺⠺⣝⠿⠟⠻⠿⠗⠟⠻⠗⠿⣝⠗⠗⠟⣝⣝⠺⣝⠟⣝⠺⠟⠗⠿⠗⠟⣝⣝⠟⠻⠻⠻⠗⠻⠺⠿⠿⠗⠗⠗⠗ -⠗⠻⠿⠿⠺⠗⣝⣝⣝⠻⠗⠿⠿⠗⠺⠗⠟⠗⠺⠺⣝⠺⠿⠺⠟⠟⠿⣝⠻⠟⣝⠻⣝⠻⣝⣝⣝⠿⠗⣝⠗⠺⠺⠟⠿⠟⠺⠻⠺⠺⣝⣝⠺⠿⠻⠿⠿⠻⠻⠺⠻⠿⠿⠻⠻⣝⣝⠺⠻⠻⠟⠻⣝⠿⠿⠗⣝⠗⣝⠿⠗⠗ -⠺⠿⣝⠟⠗⣝⣝⠗⣝⠟⠟⠿⠿⠟⠟⠟⠺⠻⠺⠗⠿⠟⠟⣝⣝⠗⠗⠿⠟⣝⠻⠿⣝⠗⣝⠿⠿⠺⠻⠟⠟⠟⠿⠟⠺⣝⠟⠟⠺⠟⠺⠗⠟⣝⣝⠻⠻⣝⣝⠗⣝⠗⠿⠗⠿⠺⣝⠟⠿⠺⠟⣝⠿⠺⠗⣝⠿⠗⠗⣝⠗⣝ -⣝⣝⠿⠺⠺⣝⠗⣝⠻⣝⣝⠗⠗⠺⣝⠗⠻⣝⠻⣝⠿⠗⠟⠺⠿⠗⠟⠿⠿⠺⠻⠿⠻⠿⣝⠿⣝⠿⠻⣝⣝⠻⠿⠟⠟⠺⣝⠿⠺⠗⠟⠗⠻⠺⣝⠿⠿⠻⠿⠿⠻⣝⠻⠺⠺⠟⠺⠻⠗⠟⣝⠺⠿⣝⠟⠗⣝⠻⠻⠗⠗⠗ -⠺⠗⠗⠗⠗⠿⣝⠿⠟⠻⠻⠺⠿⠗⠻⣝⠟⣝⣝⠺⠗⠗⠿⣝⠗⣝⠺⠺⣝⠿⠿⠻⠻⠻⠿⠻⠟⠗⠺⠗⠺⣝⠻⠺⠿⠗⠗⠻⠿⠺⠻⠻⠿⠺⠿⠟⠻⠟⠺⣝⠗⠟⠺⠗⠗⠿⠺⠺⠟⠻⠿⠗⠺⠗⠟⠻⣝⠟⠿⠗⠿⠿ -⠺⠗⠟⠟⠗⣝⣝⠿⣝⠟⠟⠗⠟⠿⠿⠿⠟⣝⠟⠟⠗⠺⠗⠟⠗⠟⣝⠗⠻⠻⠺⠗⠿⣝⣝⠗⠺⠺⣝⣝⠺⠺⣝⠻⠟⠟⠟⠿⠿⠻⠺⣝⠻⠻⠟⠿⠿⠻⠟⠺⠿⠟⠗⠻⠗⣝⠿⠿⠿⠿⠗⠟⠟⠿⠺⠺⠻⠟⠗⠻⠺⠿ -⠟⠺⠻⣝⠗⠺⠟⠗⠗⣝⣝⣝⠗⠗⠻⠻⠻⠗⠟⣝⠟⠺⠺⠟⠿⠟⠺⣝⠟⠿⠟⠺⠻⠿⠗⠻⠿⣝⠺⠺⠻⣝⠗⠗⠟⠿⣝⠻⠺⠻⣝⠿⠟⠿⠿⠺⣝⠿⠟⣝⠿⠿⣝⠻⠺⠻⠿⠻⠗⠺⠟⠻⠻⠿⠟⠟⠗⣝⠻⠿⠻⠺ -⠿⣝⠿⣝⠺⠻⣝⠻⠗⠻⠻⠺⠟⠿⠺⠗⠿⠺⠟⠗⠟⣝⠿⣝⠻⠟⠿⠺⠺⠺⠿⠻⠗⠺⠗⣝⠟⠿⣝⠗⠻⠗⠗⠻⠿⠗⣝⠟⠺⠺⠟⠺⠻⠟⠗⠟⠻⠺⠻⠻⠟⣝⠟⠟⠿⠺⠿⠻⠗⠿⠺⠟⠟⠻⠗⠺⠿⣝⠿⠺⠟⠿ -⠟⣝⠟⠻⠺⣝⠟⠺⣝⠿⣝⠗⠻⠗⠗⠺⠿⠺⠿⣝⠺⠟⠿⠿⠗⠗⣝⠻⠿⣝⣝⠺⠗⠿⠟⠟⠟⠿⠿⠿⣝⠻⠺⣝⠟⠺⠗⠗⠺⠗⠿⠻⠿⠿⠻⠟⠻⠻⠺⣝⠟⣝⠿⠗⠿⠟⠟⠺⣝⠟⠟⠗⠻⠿⠺⠺⠗⠗⠗⠗⠻⠿ -⠕⠣⠣⠜⠎⠜⠕⠎⠎⠪⠣⠣⠎⠜⠸⠜⠣⠣⠸⠣⠕⠜⠸⠪⠸⠎⠸⠸⠎⠕⠜⠎⠎⠎⠪⠕⠎⠸⠸⠸⠪⠜⠕⠜⠸⠣⠜⠸⠣⠎⠸⠣⠕⠕⠕⠪⠕⠕⠕⠜⠸⠕⠕⠸⠣⠪⠣⠸⠜⠣⠕⠜⠜⠪⠪⠣⠣⠕⠣⠸⠸⠸ -⠣⠜⠜⠣⠪⠣⠎⠜⠣⠜⠸⠸⠎⠜⠣⠣⠣⠕⠜⠣⠕⠸⠪⠣⠣⠜⠕⠎⠸⠕⠜⠸⠣⠸⠪⠕⠣⠸⠣⠪⠎⠜⠕⠪⠪⠣⠕⠣⠸⠸⠪⠸⠜⠜⠪⠎⠎⠸⠸⠕⠕⠸⠣⠕⠣⠣⠪⠜⠣⠕⠜⠜⠜⠸⠜⠪⠎⠣⠎⠜⠎⠕ -⠪⠎⠪⠜⠣⠕⠎⠪⠜⠕⠎⠜⠜⠜⠜⠣⠜⠣⠸⠜⠎⠎⠕⠸⠎⠜⠣⠜⠎⠸⠜⠕⠎⠣⠣⠪⠎⠸⠣⠪⠣⠣⠸⠜⠎⠎⠸⠎⠪⠪⠣⠜⠪⠪⠪⠪⠣⠜⠸⠸⠜⠎⠕⠪⠜⠣⠜⠕⠪⠸⠕⠸⠪⠣⠎⠎⠜⠣⠣⠣⠸⠜ -⠕⠣⠪⠕⠸⠪⠎⠎⠜⠕⠣⠪⠪⠎⠕⠪⠜⠜⠕⠕⠕⠪⠜⠣⠜⠕⠸⠪⠕⠜⠸⠸⠕⠜⠪⠣⠸⠕⠸⠸⠎⠜⠪⠎⠕⠸⠣⠎⠎⠜⠪⠕⠸⠣⠣⠣⠎⠕⠪⠜⠪⠎⠪⠎⠸⠜⠜⠕⠜⠜⠕⠜⠸⠣⠕⠣⠎⠕⠎⠸⠣⠸ -⠸⠸⠪⠜⠜⠜⠜⠪⠜⠸⠪⠎⠸⠪⠸⠣⠜⠕⠣⠣⠸⠪⠕⠜⠪⠣⠣⠕⠜⠎⠎⠪⠪⠣⠜⠎⠣⠎⠕⠪⠸⠸⠕⠜⠕⠸⠸⠪⠣⠜⠪⠣⠜⠸⠣⠎⠜⠕⠜⠪⠸⠜⠎⠣⠪⠕⠎⠸⠜⠕⠕⠣⠸⠜⠜⠕⠪⠜⠣⠎⠎⠣ -⠜⠪⠎⠎⠪⠣⠣⠜⠣⠜⠎⠎⠣⠪⠣⠪⠪⠪⠜⠣⠸⠣⠣⠎⠕⠜⠎⠎⠎⠜⠕⠸⠜⠎⠣⠎⠣⠕⠎⠜⠕⠣⠎⠸⠎⠜⠕⠣⠪⠕⠣⠎⠎⠪⠎⠜⠕⠸⠎⠎⠕⠎⠣⠜⠣⠕⠣⠜⠜⠪⠎⠣⠜⠜⠕⠸⠸⠪⠕⠸⠎⠪ -⠪⠣⠎⠸⠕⠪⠎⠪⠕⠣⠣⠜⠜⠪⠕⠸⠕⠸⠣⠸⠣⠸⠪⠜⠸⠣⠣⠣⠜⠪⠜⠜⠕⠣⠣⠕⠪⠣⠕⠸⠎⠜⠕⠜⠪⠪⠜⠪⠣⠣⠪⠜⠕⠣⠣⠕⠎⠎⠎⠣⠣⠕⠪⠣⠎⠪⠜⠕⠣⠣⠕⠸⠎⠜⠸⠜⠎⠪⠣⠕⠕⠜ -⠜⠜⠣⠜⠕⠎⠜⠕⠪⠜⠜⠕⠎⠣⠕⠸⠎⠪⠎⠪⠪⠎⠜⠣⠣⠎⠣⠜⠸⠕⠪⠪⠕⠜⠣⠸⠣⠕⠪⠕⠪⠎⠎⠎⠜⠜⠪⠪⠕⠎⠸⠸⠜⠪⠎⠜⠪⠕⠜⠸⠪⠪⠣⠸⠜⠎⠣⠕⠣⠣⠣⠸⠣⠕⠜⠜⠕⠣⠸⠕⠪⠕ -⠪⠎⠣⠸⠕⠕⠪⠸⠣⠪⠜⠣⠜⠕⠣⠸⠜⠕⠎⠕⠣⠜⠜⠜⠸⠎⠸⠪⠸⠜⠎⠸⠣⠕⠜⠣⠕⠜⠸⠎⠕⠸⠜⠜⠎⠣⠸⠕⠕⠎⠕⠪⠣⠸⠜⠜⠕⠕⠜⠪⠕⠕⠕⠎⠸⠪⠎⠣⠜⠣⠸⠕⠎⠸⠕⠪⠪⠣⠎⠜⠎⠜ -⠎⠎⠜⠸⠪⠪⠜⠸⠎⠜⠕⠣⠸⠕⠪⠣⠜⠕⠪⠪⠕⠣⠕⠣⠎⠪⠸⠪⠸⠣⠎⠕⠎⠜⠣⠣⠣⠣⠪⠸⠎⠪⠸⠣⠪⠣⠸⠎⠸⠜⠜⠪⠜⠎⠕⠪⠪⠸⠸⠣⠜⠣⠣⠸⠜⠪⠕⠎⠕⠣⠣⠪⠪⠕⠜⠣⠣⠎⠎⠕⠪⠸ -⠎⠪⠎⠎⠸⠸⠪⠸⠪⠜⠣⠸⠜⠣⠣⠸⠸⠣⠕⠣⠕⠣⠜⠸⠜⠸⠪⠕⠣⠜⠜⠣⠣⠕⠪⠕⠪⠕⠎⠜⠸⠣⠪⠕⠎⠜⠸⠕⠕⠣⠣⠕⠸⠸⠜⠕⠪⠕⠪⠣⠪⠪⠸⠕⠸⠣⠣⠜⠪⠣⠜⠸⠕⠪⠣⠜⠣⠜⠸⠕⠎⠪ -⠸⠪⠎⠕⠎⠜⠜⠣⠸⠪⠕⠜⠕⠕⠸⠪⠪⠎⠪⠸⠜⠎⠎⠪⠕⠸⠣⠎⠪⠣⠎⠸⠪⠪⠪⠕⠣⠕⠪⠸⠕⠣⠣⠕⠣⠪⠪⠎⠕⠕⠣⠣⠣⠣⠣⠣⠎⠜⠪⠣⠎⠸⠸⠣⠪⠎⠣⠎⠜⠸⠸⠕⠣⠸⠎⠜⠕⠎⠕⠕⠎⠣ -⠕⠜⠪⠣⠎⠸⠕⠪⠸⠕⠜⠸⠸⠸⠪⠣⠜⠕⠣⠪⠜⠪⠜⠕⠣⠕⠎⠕⠸⠜⠪⠕⠜⠣⠸⠕⠸⠪⠎⠸⠜⠪⠸⠪⠸⠸⠸⠜⠪⠎⠸⠜⠕⠸⠜⠣⠪⠎⠜⠣⠪⠕⠸⠣⠜⠎⠪⠕⠕⠸⠎⠣⠪⠎⠣⠎⠎⠕⠎⠸⠪⠪ -⠪⠎⠣⠜⠪⠕⠣⠣⠣⠕⠪⠕⠪⠸⠜⠣⠪⠜⠎⠪⠣⠪⠕⠜⠸⠪⠎⠸⠜⠪⠸⠸⠣⠪⠜⠕⠪⠪⠜⠣⠎⠸⠣⠜⠜⠜⠣⠎⠜⠕⠸⠸⠜⠪⠸⠕⠎⠎⠸⠪⠕⠣⠪⠸⠪⠎⠣⠜⠣⠸⠜⠕⠸⠕⠪⠕⠸⠣⠣⠣⠎⠣ -⠜⠸⠕⠣⠜⠪⠕⠸⠸⠸⠣⠕⠕⠪⠪⠸⠜⠣⠕⠸⠸⠪⠎⠣⠸⠪⠣⠸⠪⠎⠜⠪⠎⠸⠜⠎⠕⠕⠸⠎⠜⠜⠕⠎⠜⠣⠣⠕⠜⠜⠸⠎⠎⠪⠪⠎⠣⠎⠪⠕⠣⠕⠣⠎⠜⠸⠜⠪⠜⠕⠸⠕⠪⠣⠪⠜⠕⠪⠣⠎⠕⠣ -⠊⠌⠌⠑⠌⠑⠌⠊⠡⠌⠌⠊⠢⠡⠑⠡⠌⠢⠡⠊⠡⠌⠡⠑⠡⠑⠌⠅⠅⠡⠌⠢⠡⠡⠢⠢⠊⠊⠢⠌⠡⠅⠢⠑⠢⠌⠢⠊⠑⠑⠌⠢⠢⠑⠑⠅⠑⠊⠡⠑⠑⠊⠡⠊⠢⠊⠢⠊⠑⠑⠌⠌⠌⠑⠡⠅⠊⠅⠊⠌⠌⠢ -⠌⠢⠢⠅⠌⠅⠡⠊⠌⠢⠡⠊⠌⠊⠢⠡⠑⠢⠢⠅⠊⠡⠑⠢⠑⠢⠌⠌⠢⠢⠡⠑⠌⠢⠌⠅⠌⠑⠑⠌⠌⠊⠅⠅⠅⠑⠑⠢⠊⠅⠌⠊⠢⠑⠑⠅⠑⠅⠅⠡⠅⠢⠅⠡⠡⠅⠢⠅⠊⠢⠡⠊⠌⠡⠌⠡⠑⠌⠑⠢⠢⠢ -⠌⠊⠢⠢⠌⠊⠑⠊⠡⠊⠡⠅⠑⠊⠌⠢⠢⠢⠌⠢⠑⠑⠅⠢⠅⠢⠅⠊⠢⠅⠌⠊⠢⠌⠑⠌⠅⠊⠌⠢⠡⠑⠅⠊⠌⠅⠊⠢⠅⠡⠅⠌⠢⠑⠢⠌⠌⠌⠢⠌⠑⠡⠡⠑⠊⠊⠑⠅⠌⠅⠊⠅⠅⠅⠌⠡⠊⠅⠅⠢⠌⠌ -⠌⠅⠢⠢⠊⠑⠡⠢⠢⠢⠌⠌⠅⠊⠌⠊⠡⠢⠑⠌⠑⠊⠑⠑⠊⠊⠅⠡⠅⠅⠅⠊⠡⠡⠡⠡⠊⠅⠑⠌⠊⠢⠅⠢⠌⠌⠡⠅⠑⠢⠢⠢⠊⠑⠑⠑⠌⠢⠢⠅⠑⠑⠅⠢⠢⠌⠅⠡⠌⠅⠌⠢⠌⠢⠡⠑⠑⠡⠢⠑⠢⠅ -⠑⠅⠑⠑⠢⠅⠌⠢⠌⠑⠅⠑⠊⠅⠌⠑⠌⠌⠑⠡⠡⠊⠅⠡⠢⠡⠡⠌⠑⠊⠡⠑⠊⠌⠡⠊⠌⠌⠢⠡⠢⠑⠅⠢⠡⠅⠌⠡⠌⠢⠊⠢⠅⠌⠅⠅⠑⠌⠢⠢⠊⠊⠑⠑⠅⠡⠡⠢⠌⠡⠊⠑⠑⠊⠡⠑⠑⠊⠑⠅⠡⠌ -⠢⠊⠊⠑⠌⠡⠌⠡⠅⠢⠡⠅⠡⠌⠌⠑⠅⠌⠢⠅⠡⠑⠢⠅⠢⠌⠑⠅⠊⠌⠡⠡⠑⠅⠑⠌⠡⠑⠌⠊⠌⠌⠌⠌⠊⠑⠑⠢⠡⠑⠊⠑⠊⠌⠅⠌⠑⠌⠑⠅⠅⠌⠑⠊⠌⠊⠊⠡⠅⠌⠌⠢⠊⠅⠅⠑⠅⠊⠡⠑⠡⠢ -⠌⠡⠌⠅⠌⠌⠊⠑⠢⠢⠑⠡⠢⠡⠅⠢⠡⠌⠢⠊⠅⠅⠑⠊⠌⠅⠊⠢⠌⠡⠊⠡⠌⠡⠊⠊⠑⠌⠊⠑⠡⠌⠡⠌⠑⠑⠌⠡⠢⠡⠢⠌⠑⠌⠡⠌⠡⠡⠑⠡⠡⠊⠑⠅⠅⠊⠌⠌⠊⠅⠌⠑⠡⠢⠡⠅⠌⠢⠅⠊⠊⠑ -⠡⠢⠑⠊⠌⠌⠑⠡⠊⠅⠊⠑⠅⠢⠅⠌⠊⠡⠅⠢⠅⠡⠌⠌⠅⠊⠊⠅⠊⠑⠑⠡⠡⠡⠢⠊⠌⠊⠅⠅⠢⠡⠑⠑⠑⠡⠢⠊⠅⠅⠊⠡⠅⠌⠊⠌⠡⠌⠡⠌⠢⠑⠊⠊⠅⠑⠡⠡⠅⠊⠡⠌⠡⠑⠌⠢⠑⠑⠢⠑⠅⠅ -⠌⠌⠅⠊⠑⠑⠌⠅⠊⠊⠊⠊⠑⠢⠌⠢⠅⠌⠅⠊⠡⠡⠌⠊⠢⠡⠅⠌⠊⠑⠡⠡⠊⠊⠅⠌⠌⠌⠢⠡⠡⠊⠊⠢⠢⠊⠑⠡⠌⠊⠊⠡⠌⠅⠢⠑⠑⠢⠌⠌⠌⠌⠌⠡⠌⠡⠑⠅⠡⠑⠡⠑⠊⠌⠊⠅⠌⠌⠢⠢⠊⠅ -⠅⠡⠑⠊⠊⠢⠅⠌⠊⠊⠌⠡⠑⠊⠢⠌⠅⠡⠢⠢⠌⠢⠊⠌⠅⠡⠡⠡⠊⠡⠅⠊⠅⠅⠊⠑⠑⠢⠡⠢⠑⠅⠌⠑⠢⠌⠌⠊⠊⠑⠊⠢⠌⠢⠌⠌⠢⠌⠢⠌⠅⠌⠢⠊⠢⠢⠊⠌⠅⠅⠡⠅⠡⠢⠌⠅⠢⠌⠊⠌⠌⠊ -⠢⠢⠊⠌⠊⠅⠡⠌⠑⠌⠑⠑⠡⠅⠑⠊⠅⠢⠊⠑⠡⠌⠢⠡⠑⠑⠡⠡⠊⠊⠊⠢⠡⠅⠡⠡⠌⠡⠡⠅⠊⠡⠡⠌⠢⠡⠌⠢⠑⠊⠡⠡⠌⠡⠢⠢⠢⠢⠅⠡⠌⠌⠌⠡⠊⠢⠌⠅⠡⠅⠑⠌⠌⠊⠊⠡⠌⠌⠢⠅⠑⠌ -⠢⠊⠅⠡⠊⠌⠡⠢⠊⠑⠊⠡⠡⠡⠡⠑⠊⠊⠢⠌⠑⠡⠅⠑⠡⠑⠊⠑⠊⠑⠊⠊⠅⠡⠅⠅⠊⠌⠡⠌⠑⠌⠢⠊⠌⠑⠅⠑⠡⠅⠑⠊⠊⠌⠑⠢⠡⠅⠑⠅⠅⠊⠢⠢⠌⠅⠌⠌⠌⠢⠢⠅⠡⠑⠌⠊⠌⠌⠑⠑⠌⠢ -⠌⠢⠑⠊⠑⠅⠑⠢⠊⠑⠌⠊⠊⠡⠡⠑⠢⠡⠡⠑⠌⠌⠢⠌⠊⠊⠑⠅⠊⠊⠢⠡⠢⠌⠑⠊⠡⠑⠅⠌⠌⠅⠌⠡⠊⠌⠅⠅⠢⠢⠌⠊⠅⠑⠡⠌⠑⠅⠅⠊⠢⠌⠢⠌⠡⠊⠌⠅⠢⠡⠢⠑⠊⠢⠢⠊⠌⠡⠊⠊⠢⠊ -⠡⠑⠢⠊⠢⠌⠌⠢⠢⠅⠌⠢⠌⠢⠌⠢⠡⠊⠅⠅⠑⠅⠢⠌⠌⠑⠢⠢⠊⠑⠊⠡⠌⠢⠊⠌⠅⠊⠡⠌⠅⠊⠊⠊⠑⠌⠡⠌⠢⠑⠊⠌⠑⠌⠊⠡⠅⠢⠌⠊⠅⠡⠢⠡⠌⠡⠌⠢⠡⠌⠡⠑⠑⠑⠢⠢⠡⠌⠅⠌⠡⠅ -⠢⠡⠢⠑⠌⠡⠊⠌⠅⠅⠢⠡⠅⠌⠅⠢⠡⠊⠢⠢⠑⠊⠊⠅⠑⠌⠑⠌⠢⠊⠊⠢⠅⠅⠡⠊⠌⠊⠢⠌⠑⠢⠌⠊⠡⠊⠑⠢⠢⠑⠑⠑⠅⠊⠑⠊⠢⠡⠢⠢⠊⠌⠅⠅⠌⠑⠡⠡⠅⠌⠊⠌⠊⠊⠑⠡⠡⠡⠢⠑⠑⠊ -⠐⠐⠠⠄⠠⠠⠁⠂⠐⠁⠁⠂⠂⠠⠂⠁⠐⠁⠄⠐⠂⠠⠠⠁⠐⠐⠐⠄⠂⠁⠠⠁⠐⠐⠐⠄⠁⠁⠠⠐⠄⠠⠂⠐⠁⠐⠄⠄⠂⠄⠐⠠⠄⠠⠐⠁⠐⠂⠄⠠⠐⠐⠁⠂⠐⠐⠄⠐⠄⠄⠁⠄⠠⠄⠄⠂⠄⠐⠠⠄⠁⠂ -⠐⠁⠂⠂⠂⠠⠁⠐⠂⠄⠠⠐⠂⠂⠐⠐⠠⠄⠄⠐⠂⠐⠠⠠⠠⠁⠐⠂⠐⠐⠄⠐⠄⠐⠐⠐⠄⠐⠁⠁⠂⠄⠠⠄⠁⠠⠐⠐⠄⠄⠠⠁⠂⠐⠐⠁⠠⠠⠄⠁⠂⠂⠐⠐⠁⠁⠠⠂⠄⠐⠄⠂⠐⠐⠂⠐⠁⠐⠠⠂⠠⠠ -⠐⠐⠐⠐⠄⠁⠄⠐⠠⠠⠐⠄⠁⠂⠂⠂⠄⠠⠐⠂⠁⠂⠐⠁⠄⠐⠠⠂⠐⠐⠠⠄⠐⠁⠁⠐⠐⠠⠐⠐⠐⠐⠐⠁⠐⠐⠄⠐⠄⠂⠁⠄⠄⠁⠁⠐⠠⠁⠁⠂⠐⠄⠁⠄⠄⠐⠐⠄⠁⠄⠐⠐⠂⠄⠂⠁⠠⠄⠠⠐⠐⠂ -⠐⠄⠐⠄⠠⠠⠁⠁⠂⠐⠐⠐⠂⠠⠂⠠⠂⠐⠠⠠⠁⠐⠠⠂⠐⠄⠂⠐⠐⠐⠠⠠⠐⠁⠄⠄⠠⠄⠐⠠⠂⠄⠐⠂⠠⠂⠁⠁⠄⠠⠂⠂⠂⠐⠄⠐⠐⠠⠁⠂⠄⠁⠐⠂⠐⠠⠐⠠⠄⠐⠄⠠⠄⠂⠂⠐⠐⠁⠄⠄⠐⠠ -⠐⠐⠠⠠⠁⠂⠠⠐⠂⠂⠐⠐⠐⠁⠐⠐⠄⠁⠐⠁⠂⠄⠁⠠⠄⠐⠄⠐⠠⠐⠐⠠⠁⠐⠠⠂⠐⠐⠐⠂⠐⠐⠐⠄⠐⠐⠂⠐⠐⠐⠂⠂⠐⠄⠐⠁⠐⠐⠠⠂⠄⠐⠄⠂⠠⠐⠐⠄⠄⠠⠐⠐⠄⠁⠁⠂⠐⠂⠐⠠⠄⠠ -⠁⠠⠂⠐⠠⠂⠁⠄⠁⠂⠂⠄⠄⠂⠠⠐⠠⠐⠁⠂⠂⠄⠄⠁⠠⠁⠂⠄⠠⠐⠐⠄⠐⠁⠂⠐⠄⠄⠐⠐⠂⠂⠄⠁⠠⠐⠐⠁⠄⠁⠠⠐⠐⠐⠠⠂⠐⠐⠄⠁⠂⠐⠁⠂⠄⠂⠁⠄⠂⠐⠐⠠⠁⠄⠂⠐⠄⠁⠁⠐⠐⠁ -⠐⠁⠠⠐⠠⠁⠐⠐⠐⠐⠠⠁⠠⠠⠁⠐⠂⠄⠁⠠⠄⠐⠁⠁⠂⠐⠐⠂⠂⠐⠠⠄⠄⠐⠐⠁⠂⠠⠄⠐⠂⠄⠐⠁⠠⠐⠠⠠⠄⠠⠁⠂⠐⠄⠂⠄⠐⠐⠂⠄⠠⠐⠁⠄⠐⠁⠄⠠⠁⠐⠐⠂⠁⠐⠠⠐⠐⠐⠄⠠⠠⠁ -⠂⠐⠐⠄⠄⠐⠠⠠⠐⠄⠂⠐⠂⠠⠐⠂⠁⠐⠂⠂⠐⠁⠁⠠⠐⠁⠁⠠⠐⠂⠂⠠⠁⠠⠠⠄⠁⠠⠂⠠⠐⠠⠁⠐⠠⠄⠁⠂⠐⠐⠄⠁⠁⠁⠐⠐⠠⠄⠐⠐⠄⠁⠄⠐⠐⠐⠐⠂⠠⠠⠐⠐⠐⠠⠂⠠⠠⠐⠂⠐⠄⠁ -⠂⠐⠂⠂⠂⠠⠐⠠⠄⠐⠂⠁⠐⠄⠠⠐⠄⠐⠄⠁⠐⠐⠁⠄⠠⠄⠐⠐⠠⠄⠁⠁⠐⠄⠐⠁⠠⠁⠁⠁⠄⠂⠁⠐⠐⠄⠐⠠⠄⠂⠐⠐⠂⠁⠁⠠⠠⠁⠂⠐⠄⠂⠠⠠⠂⠁⠄⠄⠐⠄⠄⠄⠐⠐⠄⠐⠄⠄⠄⠂⠐⠄ -⠁⠠⠠⠁⠁⠄⠁⠄⠄⠁⠁⠁⠁⠄⠂⠂⠐⠠⠐⠁⠠⠐⠠⠂⠂⠐⠂⠁⠄⠐⠠⠠⠐⠠⠁⠁⠂⠂⠁⠄⠂⠐⠂⠂⠂⠐⠐⠂⠠⠄⠠⠂⠠⠐⠂⠁⠄⠐⠄⠐⠁⠂⠄⠄⠐⠠⠂⠐⠂⠠⠠⠐⠠⠠⠐⠂⠁⠠⠄⠠⠠⠐ -⠐⠐⠄⠐⠐⠄⠁⠄⠐⠠⠂⠄⠄⠠⠂⠐⠠⠁⠄⠁⠁⠁⠐⠐⠠⠐⠐⠂⠠⠠⠠⠁⠐⠄⠐⠐⠁⠐⠄⠄⠠⠐⠠⠠⠐⠠⠐⠐⠁⠁⠁⠐⠠⠐⠁⠁⠠⠐⠄⠂⠠⠠⠐⠂⠂⠄⠂⠄⠄⠐⠁⠂⠁⠁⠁⠐⠐⠐⠐⠂⠁⠁ -⠂⠁⠐⠄⠐⠄⠠⠂⠂⠁⠂⠠⠐⠐⠄⠐⠄⠁⠠⠐⠂⠁⠂⠂⠂⠐⠐⠁⠐⠂⠐⠂⠁⠁⠁⠂⠁⠂⠄⠠⠐⠐⠄⠂⠐⠄⠁⠄⠂⠠⠄⠐⠐⠂⠠⠐⠠⠂⠂⠐⠐⠄⠄⠠⠂⠠⠠⠠⠐⠁⠄⠁⠐⠁⠠⠠⠁⠐⠐⠐⠐⠐ -⠂⠁⠂⠂⠐⠄⠐⠠⠠⠄⠐⠁⠄⠁⠂⠐⠐⠐⠁⠁⠁⠠⠐⠂⠄⠐⠂⠐⠐⠐⠠⠠⠐⠂⠠⠂⠁⠐⠄⠄⠐⠂⠐⠂⠐⠐⠄⠁⠐⠐⠠⠠⠂⠄⠐⠄⠄⠐⠄⠄⠠⠐⠁⠄⠐⠐⠁⠠⠐⠐⠐⠂⠁⠐⠁⠐⠐⠐⠁⠁⠂⠁ diff --git a/patches/martinpath_01.txt b/patches/martinpath_01.txt deleted file mode 100644 index 45f9f10..0000000 --- a/patches/martinpath_01.txt +++ /dev/null @@ -1,160 +0,0 @@ -⠯⠾⠿⠿⠻⠿⠻⠾⠾⠿⠯⠷⠾⠻⠯⠻⠯⠷⠷⠿⠟⠷⠿⠯⠯⠾⠿⠟⠾⠾⠷⠻⠷⠯⠿⠿⠾⠾⠻⠟⠻⠯⠯⠯⠻⠯⠷⠟⠟⠯⠯⠻⠿⠻⠯⠿⠷⠟⠻⠿⠾⠾⠻⠯⠾⠻⠟⠯⠿⠟⠷⠷⠟⠟⠻⠯⠷⠟⠟⠿⠯⠾ -⠿⠿⠿⠻⠟⠟⠷⠿⠾⠷⠟⠟⠾⠾⠟⠾⠻⠾⠿⠻⠷⠻⠻⠻⠯⠯⠷⠿⠿⠷⠾⠾⠿⠯⠾⠷⠻⠯⠾⠟⠿⠿⠿⠾⠟⠻⠟⠻⠟⠷⠯⠻⠯⠷⠷⠾⠟⠟⠯⠿⠻⠷⠟⠾⠻⠟⠷⠯⠷⠷⠿⠻⠿⠯⠯⠿⠷⠾⠟⠻⠟⠾ -⠾⠻⠿⠯⠷⠿⠾⠟⠯⠷⠿⠿⠾⠾⠿⠟⠟⠾⠟⠯⠷⠷⠟⠯⠿⠾⠟⠾⠿⠻⠿⠿⠾⠷⠾⠻⠻⠯⠷⠷⠻⠷⠿⠷⠟⠾⠾⠿⠯⠟⠾⠯⠯⠯⠷⠷⠟⠟⠾⠿⠻⠟⠟⠯⠯⠷⠾⠿⠟⠻⠿⠿⠟⠷⠷⠿⠷⠻⠿⠷⠟⠟ -⠿⠷⠻⠯⠿⠻⠯⠯⠿⠾⠯⠻⠿⠟⠷⠻⠯⠿⠟⠯⠻⠟⠟⠯⠿⠯⠿⠿⠻⠷⠾⠿⠾⠷⠿⠻⠷⠟⠯⠿⠯⠻⠯⠻⠯⠯⠾⠷⠟⠾⠷⠷⠻⠻⠯⠻⠟⠯⠾⠿⠿⠻⠯⠯⠿⠿⠯⠷⠻⠻⠾⠾⠾⠿⠻⠾⠻⠾⠯⠯⠻⠿ -⠾⠿⠷⠻⠾⠾⠷⠯⠟⠿⠷⠿⠯⠾⠟⠻⠷⠯⠟⠿⠯⠟⠯⠟⠷⠾⠟⠻⠯⠻⠷⠷⠟⠿⠯⠷⠟⠿⠿⠾⠟⠿⠟⠯⠻⠯⠟⠟⠟⠷⠿⠟⠟⠾⠯⠷⠻⠷⠾⠷⠷⠟⠷⠻⠾⠯⠾⠻⠟⠯⠻⠯⠯⠾⠻⠾⠿⠻⠯⠷⠯⠟ -⠯⠿⠿⠯⠿⠯⠷⠯⠻⠾⠿⠾⠾⠻⠾⠿⠯⠿⠻⠟⠟⠯⠟⠾⠷⠻⠯⠟⠷⠻⠟⠯⠷⠿⠻⠷⠟⠾⠾⠾⠟⠯⠟⠟⠿⠷⠾⠟⠻⠯⠻⠻⠷⠟⠯⠯⠻⠷⠿⠷⠿⠯⠿⠟⠟⠯⠷⠷⠯⠟⠟⠻⠷⠟⠷⠟⠟⠷⠾⠿⠟⠯ -⠾⠷⠿⠯⠿⠟⠯⠾⠯⠟⠯⠟⠿⠯⠯⠻⠯⠿⠾⠷⠷⠷⠻⠾⠿⠿⠿⠷⠻⠿⠯⠷⠿⠿⠷⠟⠷⠿⠯⠯⠷⠯⠻⠷⠻⠿⠷⠷⠻⠯⠻⠯⠯⠟⠯⠯⠯⠷⠾⠷⠟⠾⠟⠷⠾⠟⠾⠷⠟⠾⠟⠾⠾⠿⠾⠯⠟⠻⠯⠯⠻⠻ -⠻⠷⠯⠷⠯⠿⠻⠯⠻⠿⠻⠟⠯⠟⠾⠿⠾⠾⠟⠾⠟⠻⠿⠯⠷⠟⠟⠯⠿⠻⠻⠻⠾⠿⠻⠾⠯⠻⠿⠯⠯⠻⠿⠷⠾⠟⠟⠾⠷⠿⠿⠷⠿⠯⠯⠟⠿⠷⠯⠷⠻⠯⠿⠻⠾⠯⠿⠻⠟⠷⠟⠿⠻⠻⠻⠷⠟⠾⠟⠷⠾⠯ -⠾⠷⠷⠷⠯⠾⠯⠻⠷⠷⠯⠯⠾⠾⠾⠷⠷⠻⠟⠷⠻⠻⠻⠟⠟⠟⠿⠷⠷⠿⠻⠟⠷⠻⠯⠻⠻⠾⠿⠷⠷⠾⠟⠾⠻⠟⠷⠾⠯⠻⠻⠻⠷⠻⠟⠻⠿⠯⠷⠟⠻⠷⠾⠾⠟⠟⠻⠟⠿⠟⠯⠿⠿⠯⠷⠻⠯⠿⠯⠻⠷⠯ -⠾⠟⠿⠾⠟⠯⠻⠟⠯⠿⠟⠿⠷⠷⠷⠷⠿⠾⠻⠾⠻⠯⠻⠻⠷⠷⠻⠿⠻⠿⠿⠻⠷⠷⠿⠯⠻⠷⠿⠯⠻⠯⠷⠯⠟⠾⠟⠯⠾⠻⠾⠾⠟⠷⠾⠯⠷⠟⠟⠯⠻⠾⠾⠿⠯⠯⠟⠿⠻⠟⠟⠷⠟⠻⠯⠻⠟⠷⠻⠾⠻⠿ -⠿⠿⠟⠻⠟⠿⠷⠻⠟⠻⠷⠟⠟⠿⠷⠟⠻⠟⠿⠻⠾⠟⠿⠯⠾⠻⠷⠾⠻⠟⠾⠿⠯⠻⠻⠯⠿⠾⠟⠟⠾⠷⠟⠿⠾⠿⠿⠷⠾⠷⠯⠟⠻⠾⠷⠾⠿⠻⠷⠟⠻⠿⠻⠾⠿⠷⠻⠟⠷⠯⠿⠟⠿⠟⠯⠯⠯⠟⠷⠟⠻⠷ -⠷⠿⠯⠷⠻⠟⠻⠻⠟⠟⠿⠷⠾⠾⠷⠯⠻⠟⠷⠷⠻⠿⠻⠾⠟⠯⠷⠷⠻⠻⠯⠾⠿⠟⠟⠷⠯⠯⠟⠾⠾⠯⠿⠯⠻⠟⠟⠻⠷⠯⠿⠿⠯⠿⠿⠾⠟⠾⠟⠷⠾⠻⠟⠿⠟⠻⠷⠾⠷⠿⠿⠟⠷⠷⠟⠾⠟⠟⠻⠷⠯⠾ -⠯⠻⠾⠿⠷⠻⠾⠟⠯⠯⠿⠯⠻⠟⠾⠻⠾⠷⠟⠟⠷⠻⠷⠻⠯⠻⠟⠯⠟⠿⠷⠿⠷⠻⠟⠟⠯⠿⠿⠟⠟⠟⠾⠿⠿⠯⠿⠟⠿⠾⠻⠯⠟⠾⠷⠟⠻⠷⠾⠻⠾⠾⠟⠯⠾⠯⠻⠷⠿⠟⠯⠿⠟⠟⠟⠿⠻⠯⠯⠷⠾⠷ -⠯⠿⠯⠟⠟⠿⠯⠷⠾⠷⠷⠯⠿⠾⠷⠿⠾⠟⠾⠷⠯⠟⠯⠿⠻⠻⠿⠾⠿⠻⠷⠾⠯⠷⠾⠾⠷⠷⠾⠷⠻⠯⠾⠾⠯⠾⠿⠿⠾⠾⠷⠻⠾⠿⠟⠻⠿⠻⠾⠻⠷⠟⠯⠯⠿⠻⠟⠟⠾⠻⠾⠟⠯⠯⠿⠷⠯⠻⠾⠷⠷⠟ -⠻⠻⠯⠟⠟⠿⠷⠯⠯⠯⠻⠻⠾⠷⠿⠿⠯⠷⠟⠷⠾⠿⠷⠿⠿⠟⠯⠿⠻⠻⠯⠿⠷⠯⠿⠾⠟⠿⠾⠷⠿⠻⠯⠯⠻⠷⠷⠷⠟⠿⠯⠻⠿⠯⠟⠻⠿⠾⠻⠻⠷⠷⠾⠿⠯⠟⠷⠯⠯⠟⠷⠯⠟⠟⠟⠯⠟⠷⠿⠷⠻⠟ -⠷⠟⠟⠻⠟⠿⠻⠾⠯⠾⠿⠿⠟⠷⠾⠟⠯⠻⠾⠻⠿⠾⠾⠷⠿⠻⠷⠻⠷⠾⠟⠯⠻⠿⠾⠟⠟⠷⠯⠷⠾⠯⠻⠿⠾⠟⠯⠷⠷⠟⠻⠻⠻⠾⠻⠻⠾⠻⠻⠷⠻⠯⠾⠟⠾⠾⠻⠯⠿⠷⠯⠟⠻⠯⠾⠷⠻⠷⠟⠷⠯⠷ -⠿⠟⠯⠾⠟⠯⠷⠿⠻⠷⠯⠷⠯⠾⠯⠷⠟⠻⠯⠻⠷⠿⠯⠻⠯⠾⠷⠻⠟⠾⠯⠷⠻⠻⠟⠯⠟⠷⠿⠻⠟⠯⠯⠷⠿⠷⠾⠿⠟⠷⠟⠾⠷⠿⠾⠿⠯⠟⠟⠯⠷⠷⠟⠻⠾⠷⠟⠯⠯⠿⠯⠾⠟⠟⠯⠟⠷⠯⠯⠯⠻⠷ -⠯⠟⠟⠿⠷⠿⠿⠻⠻⠻⠻⠾⠾⠻⠯⠷⠟⠻⠷⠿⠻⠷⠯⠯⠯⠾⠾⠿⠯⠾⠯⠟⠟⠯⠷⠟⠾⠯⠷⠻⠿⠯⠻⠾⠟⠾⠿⠷⠯⠾⠻⠟⠷⠟⠾⠾⠻⠟⠯⠻⠯⠻⠯⠿⠟⠯⠷⠾⠟⠾⠾⠻⠟⠟⠾⠾⠿⠯⠾⠾⠾⠷ -⠻⠷⠷⠯⠾⠿⠷⠯⠷⠿⠿⠿⠻⠟⠯⠯⠿⠿⠯⠷⠷⠷⠾⠟⠿⠯⠯⠟⠿⠾⠷⠿⠻⠿⠷⠷⠯⠻⠻⠻⠯⠾⠷⠟⠟⠻⠷⠾⠷⠯⠯⠷⠿⠟⠷⠿⠻⠿⠷⠿⠟⠷⠟⠯⠷⠾⠿⠿⠯⠷⠾⠟⠾⠯⠿⠿⠟⠻⠷⠾⠻⠻ -⠻⠾⠟⠟⠾⠯⠻⠯⠟⠿⠻⠿⠯⠟⠻⠯⠯⠿⠿⠟⠻⠾⠟⠷⠾⠯⠷⠟⠷⠟⠻⠿⠻⠻⠾⠾⠟⠾⠿⠯⠷⠯⠻⠾⠯⠯⠿⠷⠿⠿⠿⠷⠷⠷⠾⠻⠷⠟⠯⠻⠯⠷⠾⠷⠿⠻⠯⠻⠿⠟⠻⠾⠿⠟⠾⠯⠷⠟⠻⠷⠿⠻ -⠻⠟⠯⠟⠻⠾⠷⠟⠯⠻⠻⠾⠯⠾⠿⠷⠟⠯⠷⠷⠟⠿⠟⠻⠻⠷⠯⠷⠾⠟⠷⠷⠾⠷⠯⠯⠯⠻⠯⠟⠾⠯⠟⠯⠻⠯⠟⠻⠿⠯⠾⠿⠷⠟⠯⠟⠯⠯⠿⠿⠷⠿⠟⠷⠾⠻⠾⠻⠿⠾⠷⠻⠻⠯⠟⠾⠾⠻⠷⠯⠟⠾ -⠿⠾⠻⠾⠾⠟⠾⠿⠻⠿⠻⠾⠿⠯⠻⠿⠿⠟⠿⠯⠯⠯⠾⠾⠟⠷⠿⠯⠿⠿⠷⠷⠿⠻⠷⠿⠟⠿⠻⠯⠷⠯⠾⠷⠻⠻⠯⠯⠯⠟⠿⠷⠾⠷⠟⠟⠷⠟⠿⠾⠻⠾⠿⠟⠻⠾⠻⠻⠟⠯⠻⠿⠷⠻⠯⠾⠿⠿⠯⠷⠷⠷ -⠾⠯⠿⠯⠷⠟⠿⠻⠾⠻⠻⠿⠟⠻⠿⠻⠯⠾⠿⠟⠯⠟⠟⠾⠟⠷⠿⠻⠾⠟⠾⠻⠻⠻⠿⠻⠿⠟⠻⠷⠾⠯⠿⠟⠷⠻⠯⠻⠟⠻⠿⠷⠿⠻⠟⠻⠻⠾⠷⠟⠾⠟⠷⠟⠾⠿⠻⠻⠯⠟⠾⠾⠿⠻⠾⠟⠷⠟⠷⠿⠻⠾ -⠿⠯⠷⠟⠻⠯⠾⠷⠻⠿⠟⠷⠟⠟⠷⠿⠻⠟⠾⠯⠯⠿⠾⠻⠷⠷⠷⠯⠿⠷⠻⠻⠾⠾⠻⠾⠟⠟⠯⠟⠻⠯⠿⠿⠟⠷⠷⠾⠟⠯⠯⠿⠿⠾⠾⠿⠟⠾⠻⠿⠟⠟⠻⠾⠟⠯⠻⠷⠯⠯⠟⠷⠾⠯⠟⠟⠾⠿⠷⠾⠾⠿ -⠾⠟⠯⠿⠻⠷⠟⠷⠻⠿⠿⠻⠻⠻⠻⠷⠻⠷⠟⠾⠷⠾⠿⠿⠿⠾⠿⠟⠾⠿⠟⠿⠯⠾⠯⠟⠟⠷⠟⠿⠷⠟⠻⠾⠾⠿⠟⠷⠻⠻⠟⠯⠻⠯⠾⠟⠯⠯⠟⠷⠿⠾⠯⠻⠿⠾⠿⠻⠟⠯⠟⠟⠷⠻⠷⠾⠷⠷⠯⠾⠷⠻ -⠟⠷⠾⠻⠿⠻⠷⠯⠾⠟⠯⠷⠿⠾⠾⠷⠾⠻⠷⠻⠯⠻⠿⠯⠿⠻⠯⠾⠻⠷⠿⠷⠷⠟⠷⠟⠾⠷⠷⠿⠯⠯⠟⠟⠻⠷⠷⠾⠟⠿⠯⠾⠿⠾⠾⠾⠟⠿⠯⠟⠻⠯⠟⠿⠷⠟⠾⠷⠻⠯⠷⠯⠾⠷⠯⠿⠻⠻⠿⠷⠷⠻ -⠯⠟⠷⠷⠿⠻⠟⠿⠿⠿⠯⠾⠟⠷⠟⠷⠟⠾⠷⠟⠻⠿⠿⠿⠯⠿⠾⠯⠯⠿⠻⠷⠻⠷⠯⠷⠯⠿⠯⠷⠷⠷⠿⠾⠟⠿⠟⠻⠟⠯⠷⠻⠟⠷⠻⠯⠾⠯⠟⠟⠷⠾⠯⠻⠷⠷⠿⠿⠿⠻⠯⠷⠻⠯⠻⠯⠟⠟⠾⠾⠯⠯ -⠟⠯⠻⠷⠯⠷⠿⠾⠯⠻⠻⠾⠻⠟⠾⠷⠾⠿⠿⠻⠿⠻⠯⠟⠟⠻⠿⠷⠾⠯⠻⠟⠯⠯⠟⠿⠯⠟⠿⠿⠻⠟⠿⠾⠻⠻⠯⠯⠷⠟⠿⠻⠿⠻⠷⠷⠯⠯⠿⠟⠟⠟⠿⠾⠿⠷⠯⠷⠻⠷⠾⠻⠟⠾⠿⠾⠿⠿⠾⠟⠟⠯ -⠿⠟⠾⠯⠷⠻⠟⠟⠯⠟⠿⠾⠟⠷⠯⠟⠯⠟⠻⠾⠟⠿⠯⠟⠿⠟⠷⠷⠾⠾⠷⠟⠿⠯⠯⠷⠿⠷⠟⠟⠯⠟⠿⠯⠟⠻⠻⠾⠯⠟⠿⠷⠷⠻⠻⠷⠾⠻⠾⠯⠻⠟⠿⠷⠾⠷⠯⠷⠟⠟⠟⠯⠯⠯⠻⠿⠷⠯⠷⠟⠿⠾ -⠯⠻⠿⠿⠯⠾⠾⠿⠟⠾⠟⠾⠟⠷⠟⠟⠟⠯⠷⠿⠯⠯⠿⠯⠯⠾⠷⠾⠷⠷⠷⠾⠾⠷⠻⠯⠟⠻⠟⠿⠻⠿⠟⠿⠷⠻⠯⠟⠟⠾⠻⠟⠿⠯⠻⠾⠷⠟⠾⠯⠷⠟⠷⠿⠟⠯⠻⠻⠷⠾⠯⠟⠯⠿⠟⠯⠻⠷⠾⠟⠿⠷ -⠻⠿⠟⠻⠯⠾⠿⠾⠿⠯⠷⠾⠻⠷⠯⠷⠿⠯⠯⠻⠻⠯⠷⠾⠻⠯⠯⠿⠻⠻⠿⠾⠾⠾⠾⠟⠷⠾⠟⠯⠾⠾⠷⠿⠿⠟⠷⠟⠾⠯⠯⠯⠯⠯⠾⠻⠾⠷⠷⠾⠻⠟⠾⠟⠯⠷⠷⠟⠿⠟⠯⠿⠻⠷⠷⠯⠿⠻⠿⠯⠻⠻ -⠾⠯⠿⠻⠷⠷⠟⠾⠻⠯⠿⠷⠾⠻⠻⠿⠟⠯⠷⠿⠻⠟⠷⠾⠿⠟⠷⠟⠯⠷⠟⠟⠾⠯⠯⠻⠿⠟⠾⠿⠻⠯⠟⠾⠷⠾⠾⠾⠷⠷⠿⠯⠟⠾⠷⠾⠾⠟⠯⠯⠯⠟⠻⠯⠟⠯⠿⠯⠷⠟⠿⠟⠯⠿⠟⠿⠟⠻⠾⠾⠾⠾ -⠾⠟⠾⠯⠟⠻⠾⠻⠯⠻⠷⠟⠾⠾⠟⠷⠷⠾⠾⠯⠯⠾⠷⠻⠻⠯⠾⠯⠿⠻⠷⠿⠷⠿⠟⠻⠷⠷⠻⠷⠿⠿⠟⠷⠻⠻⠾⠟⠾⠟⠯⠾⠿⠻⠯⠟⠟⠿⠿⠯⠷⠻⠿⠻⠯⠯⠾⠾⠾⠟⠿⠟⠯⠷⠿⠟⠾⠿⠟⠟⠟⠾ -⠷⠟⠻⠯⠷⠾⠻⠟⠷⠻⠿⠯⠻⠟⠿⠷⠯⠟⠟⠾⠯⠟⠷⠟⠯⠟⠷⠯⠻⠷⠷⠟⠻⠾⠯⠯⠷⠯⠻⠷⠟⠟⠿⠷⠾⠻⠯⠻⠾⠷⠾⠯⠻⠻⠯⠯⠟⠾⠯⠻⠷⠷⠾⠯⠯⠿⠻⠷⠷⠟⠿⠻⠟⠟⠷⠷⠯⠿⠾⠯⠾⠷ -⠻⠯⠻⠯⠷⠷⠷⠷⠿⠻⠟⠯⠷⠯⠻⠟⠯⠷⠿⠷⠿⠾⠿⠿⠯⠷⠷⠿⠿⠟⠿⠿⠟⠿⠻⠯⠿⠟⠯⠷⠾⠟⠟⠯⠿⠾⠿⠿⠾⠻⠯⠷⠟⠟⠻⠷⠯⠟⠿⠷⠾⠿⠯⠻⠯⠷⠟⠷⠻⠿⠾⠷⠻⠷⠾⠻⠻⠾⠯⠯⠟⠯ -⠟⠻⠾⠿⠾⠿⠿⠟⠻⠯⠿⠯⠷⠿⠻⠯⠻⠻⠟⠷⠾⠾⠿⠾⠻⠿⠟⠟⠟⠯⠾⠯⠯⠟⠯⠻⠯⠟⠿⠻⠟⠻⠻⠻⠯⠷⠻⠷⠯⠻⠷⠻⠻⠻⠯⠟⠯⠿⠷⠷⠻⠾⠾⠯⠻⠷⠯⠾⠯⠷⠾⠾⠟⠿⠻⠟⠾⠯⠻⠟⠿⠷ -⠿⠻⠿⠷⠻⠟⠾⠻⠟⠟⠿⠾⠻⠻⠯⠿⠟⠻⠻⠯⠷⠟⠯⠷⠾⠾⠾⠾⠟⠻⠯⠾⠷⠻⠟⠿⠟⠾⠻⠟⠯⠻⠷⠿⠯⠾⠻⠟⠾⠿⠷⠷⠯⠾⠷⠟⠿⠯⠯⠯⠻⠟⠾⠟⠾⠾⠯⠟⠿⠯⠻⠿⠟⠿⠷⠾⠷⠯⠾⠿⠾⠯ -⠷⠟⠻⠟⠷⠾⠿⠷⠯⠷⠿⠯⠷⠟⠿⠟⠯⠯⠻⠟⠷⠷⠻⠯⠾⠻⠾⠾⠷⠿⠻⠯⠯⠾⠾⠾⠻⠟⠷⠯⠟⠟⠿⠷⠷⠷⠿⠯⠾⠷⠟⠟⠷⠟⠿⠯⠿⠟⠿⠟⠷⠷⠟⠟⠯⠷⠯⠷⠾⠾⠯⠷⠯⠟⠾⠯⠾⠾⠯⠯⠟⠿ -⠟⠷⠾⠷⠷⠻⠿⠿⠯⠯⠻⠯⠾⠟⠾⠿⠾⠯⠻⠷⠿⠻⠷⠷⠟⠻⠻⠷⠯⠷⠻⠯⠯⠿⠯⠿⠿⠯⠻⠾⠟⠿⠻⠯⠯⠻⠷⠾⠟⠿⠿⠾⠻⠾⠾⠷⠟⠯⠟⠟⠿⠻⠻⠯⠯⠟⠟⠯⠯⠻⠻⠯⠾⠾⠻⠟⠾⠿⠻⠻⠻⠻ -⠟⠻⠿⠿⠾⠷⠟⠷⠻⠿⠾⠯⠯⠯⠿⠟⠾⠟⠟⠾⠿⠯⠷⠿⠾⠷⠷⠾⠿⠟⠯⠾⠾⠾⠿⠟⠻⠯⠯⠻⠟⠿⠟⠾⠟⠟⠷⠟⠿⠿⠻⠯⠿⠯⠯⠻⠷⠷⠾⠷⠾⠯⠯⠾⠷⠷⠯⠷⠾⠟⠿⠻⠟⠟⠿⠾⠯⠿⠻⠾⠯⠻ -⠷⠿⠯⠟⠾⠟⠻⠾⠯⠻⠟⠷⠟⠻⠻⠯⠟⠾⠾⠷⠻⠯⠿⠿⠾⠯⠾⠻⠻⠯⠾⠾⠿⠾⠾⠟⠯⠻⠾⠟⠷⠟⠯⠿⠷⠻⠟⠿⠾⠷⠟⠻⠿⠿⠾⠿⠿⠿⠷⠿⠷⠷⠟⠷⠻⠻⠯⠯⠻⠾⠯⠟⠾⠿⠿⠯⠻⠯⠿⠾⠻⠷ -⠿⠷⠻⠟⠾⠻⠷⠻⠟⠿⠯⠷⠟⠟⠷⠟⠯⠯⠻⠿⠾⠷⠷⠟⠷⠻⠾⠾⠟⠾⠻⠟⠟⠻⠯⠯⠟⠿⠿⠷⠯⠯⠿⠻⠷⠷⠯⠾⠿⠻⠿⠿⠟⠯⠻⠿⠻⠷⠟⠻⠾⠷⠿⠻⠿⠷⠻⠻⠷⠻⠾⠿⠯⠿⠻⠿⠟⠯⠷⠷⠿⠷ -⠟⠾⠻⠷⠟⠻⠻⠟⠻⠿⠷⠿⠟⠿⠯⠯⠻⠻⠷⠷⠾⠟⠻⠻⠿⠿⠟⠟⠾⠿⠻⠾⠷⠯⠾⠿⠷⠯⠯⠯⠻⠯⠟⠻⠾⠾⠷⠟⠾⠟⠷⠾⠿⠾⠿⠿⠿⠾⠟⠷⠷⠻⠾⠻⠟⠷⠷⠻⠻⠿⠟⠯⠾⠻⠿⠷⠾⠷⠟⠯⠷⠻ -⠟⠻⠾⠷⠻⠾⠾⠿⠯⠻⠟⠻⠾⠷⠷⠯⠯⠯⠯⠻⠾⠯⠯⠿⠷⠾⠷⠷⠻⠿⠾⠟⠾⠾⠿⠿⠿⠯⠻⠿⠻⠻⠻⠾⠟⠾⠻⠾⠯⠿⠟⠻⠷⠯⠾⠻⠾⠿⠻⠿⠻⠻⠟⠷⠾⠾⠷⠾⠻⠻⠾⠟⠿⠷⠯⠾⠻⠷⠯⠿⠷⠯ -⠟⠾⠿⠾⠻⠟⠻⠷⠻⠾⠾⠷⠾⠾⠾⠿⠟⠟⠿⠻⠻⠟⠟⠷⠷⠟⠿⠿⠿⠿⠾⠷⠟⠷⠻⠻⠻⠷⠾⠯⠟⠾⠯⠻⠟⠾⠷⠿⠾⠯⠻⠾⠾⠿⠻⠷⠻⠾⠿⠻⠯⠾⠯⠻⠾⠯⠿⠿⠻⠻⠾⠷⠿⠷⠯⠻⠿⠾⠷⠟⠻⠻ -⠯⠟⠷⠷⠿⠯⠻⠟⠟⠿⠟⠯⠯⠾⠿⠟⠾⠯⠾⠿⠿⠷⠷⠾⠻⠻⠯⠻⠷⠾⠻⠷⠾⠟⠟⠿⠿⠷⠻⠿⠯⠟⠾⠾⠷⠿⠷⠾⠾⠟⠻⠯⠟⠯⠯⠯⠿⠷⠯⠟⠿⠻⠟⠯⠯⠟⠾⠿⠯⠯⠿⠾⠯⠻⠻⠾⠯⠻⠟⠯⠿⠻ -⠾⠻⠯⠟⠟⠾⠻⠾⠷⠯⠷⠷⠿⠻⠯⠻⠾⠟⠿⠿⠯⠟⠻⠾⠿⠻⠯⠾⠻⠯⠻⠟⠷⠻⠯⠯⠾⠟⠻⠾⠿⠿⠻⠻⠯⠿⠷⠷⠟⠟⠷⠯⠿⠾⠟⠟⠯⠾⠾⠟⠻⠷⠾⠷⠯⠾⠿⠟⠯⠾⠟⠯⠿⠾⠷⠟⠷⠾⠾⠻⠟⠻ -⠿⠾⠟⠷⠯⠟⠟⠻⠿⠷⠟⠯⠾⠿⠯⠾⠻⠷⠿⠾⠟⠟⠷⠟⠿⠷⠟⠿⠷⠻⠾⠯⠯⠻⠿⠟⠻⠾⠻⠻⠻⠯⠯⠷⠻⠻⠻⠿⠟⠿⠷⠾⠟⠾⠾⠷⠟⠻⠷⠟⠟⠾⠷⠯⠯⠿⠻⠿⠯⠾⠾⠾⠾⠻⠻⠷⠷⠯⠻⠾⠯⠻ -⠯⠿⠯⠻⠟⠟⠿⠿⠿⠟⠷⠯⠯⠷⠿⠯⠻⠯⠷⠷⠻⠿⠯⠾⠿⠷⠯⠷⠷⠯⠯⠷⠿⠯⠾⠷⠟⠷⠟⠟⠷⠿⠻⠷⠷⠾⠷⠟⠿⠿⠾⠿⠷⠯⠻⠿⠿⠟⠻⠿⠟⠷⠾⠿⠿⠿⠿⠿⠻⠾⠿⠻⠯⠿⠯⠻⠻⠻⠟⠿⠯⠟ -⠿⠯⠟⠿⠟⠷⠿⠟⠷⠿⠟⠿⠻⠾⠿⠿⠿⠿⠟⠯⠷⠻⠯⠻⠾⠿⠯⠾⠷⠟⠟⠯⠟⠻⠿⠿⠷⠷⠟⠿⠿⠷⠾⠟⠿⠯⠿⠯⠟⠻⠷⠾⠿⠯⠻⠯⠾⠯⠟⠯⠿⠻⠯⠟⠿⠷⠿⠯⠻⠻⠟⠯⠷⠟⠷⠻⠯⠷⠟⠿⠿⠯ -⠯⠾⠯⠿⠯⠻⠾⠷⠾⠟⠟⠷⠷⠟⠯⠯⠾⠯⠻⠟⠯⠯⠷⠾⠿⠾⠻⠷⠿⠟⠟⠯⠷⠯⠷⠿⠟⠟⠟⠾⠟⠯⠯⠟⠾⠾⠯⠻⠟⠷⠟⠯⠷⠿⠻⠟⠻⠷⠟⠿⠷⠻⠷⠻⠷⠿⠯⠾⠻⠟⠯⠯⠟⠾⠟⠾⠻⠯⠟⠿⠷⠟ -⠾⠟⠟⠷⠻⠿⠟⠾⠾⠻⠿⠟⠟⠷⠷⠷⠟⠻⠾⠷⠻⠻⠻⠷⠿⠷⠿⠻⠷⠻⠾⠷⠟⠷⠷⠷⠷⠯⠷⠯⠾⠻⠾⠾⠷⠷⠻⠻⠟⠟⠻⠿⠿⠯⠾⠯⠿⠯⠾⠿⠿⠾⠻⠷⠾⠷⠷⠯⠾⠷⠻⠻⠿⠾⠻⠷⠾⠯⠟⠿⠿⠯ -⠻⠾⠟⠷⠾⠷⠯⠯⠻⠾⠷⠻⠾⠟⠻⠟⠿⠾⠻⠻⠾⠾⠿⠿⠾⠯⠷⠟⠷⠷⠿⠿⠷⠿⠿⠯⠯⠿⠯⠷⠯⠾⠿⠯⠿⠯⠻⠯⠯⠯⠷⠟⠿⠟⠿⠾⠷⠯⠾⠾⠟⠯⠿⠷⠾⠿⠟⠯⠟⠿⠟⠾⠯⠿⠟⠻⠿⠷⠯⠿⠯⠿ -⠷⠷⠻⠷⠾⠾⠾⠷⠷⠷⠻⠯⠾⠻⠾⠻⠻⠷⠷⠾⠷⠿⠷⠟⠾⠾⠾⠻⠟⠻⠻⠷⠿⠾⠾⠿⠾⠾⠟⠿⠿⠷⠿⠟⠿⠷⠾⠿⠷⠿⠷⠻⠷⠿⠻⠿⠟⠟⠿⠻⠿⠿⠿⠟⠻⠷⠿⠟⠟⠿⠟⠿⠿⠾⠯⠯⠷⠯⠻⠾⠷⠿ -⠿⠾⠟⠷⠷⠟⠻⠟⠻⠾⠷⠯⠿⠻⠾⠿⠷⠯⠿⠾⠾⠻⠿⠻⠟⠿⠾⠾⠿⠷⠾⠯⠾⠻⠯⠟⠾⠟⠻⠿⠿⠻⠟⠿⠻⠷⠯⠷⠿⠻⠿⠷⠻⠾⠟⠿⠾⠿⠾⠯⠻⠷⠾⠟⠟⠷⠯⠻⠯⠯⠯⠿⠯⠷⠷⠟⠟⠾⠷⠻⠷⠷ -⠯⠿⠾⠾⠿⠷⠟⠻⠟⠟⠿⠯⠷⠯⠟⠟⠟⠟⠾⠿⠟⠿⠾⠟⠿⠻⠾⠾⠯⠯⠟⠻⠻⠷⠾⠻⠷⠯⠾⠷⠷⠾⠾⠿⠯⠾⠿⠟⠾⠿⠾⠿⠯⠾⠟⠻⠯⠯⠿⠯⠟⠻⠿⠟⠯⠟⠿⠯⠾⠻⠯⠿⠻⠾⠻⠾⠾⠿⠿⠯⠷⠷ -⠻⠾⠯⠾⠿⠻⠿⠟⠻⠷⠷⠻⠯⠻⠟⠻⠿⠻⠟⠿⠻⠷⠯⠾⠾⠟⠟⠻⠿⠟⠿⠾⠷⠿⠻⠟⠟⠻⠯⠟⠷⠟⠾⠷⠿⠻⠿⠾⠟⠿⠿⠯⠿⠟⠯⠷⠯⠻⠷⠾⠿⠻⠿⠻⠿⠯⠻⠻⠿⠾⠷⠯⠯⠯⠿⠯⠿⠻⠿⠾⠯⠷ -⠾⠷⠟⠿⠟⠯⠯⠷⠾⠯⠷⠯⠾⠻⠟⠾⠷⠷⠻⠻⠿⠟⠯⠾⠷⠻⠟⠿⠾⠾⠟⠟⠿⠷⠻⠾⠻⠟⠟⠟⠿⠿⠾⠿⠟⠻⠾⠯⠿⠿⠿⠯⠻⠯⠻⠿⠿⠻⠻⠷⠯⠷⠾⠷⠟⠯⠟⠷⠾⠟⠷⠟⠷⠻⠟⠷⠿⠟⠷⠷⠾⠟ -⠟⠷⠿⠾⠯⠿⠾⠟⠯⠷⠻⠟⠟⠷⠟⠷⠟⠾⠿⠷⠾⠾⠷⠾⠟⠟⠿⠻⠾⠷⠿⠯⠷⠾⠷⠻⠟⠷⠿⠯⠯⠻⠿⠾⠯⠻⠷⠻⠟⠯⠷⠾⠷⠟⠻⠟⠾⠯⠻⠾⠯⠯⠟⠯⠯⠿⠟⠻⠷⠯⠷⠯⠟⠷⠯⠯⠿⠻⠻⠷⠿⠾ -⠿⠟⠟⠿⠻⣝⠟⠟⣝⠿⠻⠺⠻⠿⠗⠟⠿⠗⠻⠿⠻⣝⠗⠿⠟⠗⠻⠺⠻⠺⠿⠟⠺⠻⠟⠗⠻⠗⠟⠿⠺⠺⣝⠻⠿⣝⠻⠺⣝⠻⠗⣝⠟⠿⠿⠗⠿⠿⣝⠺⠟⠗⠺⣝⠟⠿⣝⠟⠻⠗⠻⣝⣝⠟⠻⠗⠗⠺⠺⠿⣝⠿ -⣝⠻⠟⠺⠗⠻⠗⠟⣝⠗⠿⣝⠗⠺⠗⠻⠗⠺⠻⠟⠻⠻⠺⠟⠿⠺⠻⠿⠺⠿⠺⠻⣝⠻⣝⣝⣝⠺⠟⠟⣝⠟⠗⠗⠗⠻⠻⠿⠻⣝⣝⣝⣝⣝⠟⠗⠗⠺⣝⣝⠺⠿⠻⠻⠗⠟⠟⠿⠻⠺⠗⠻⠻⠻⠟⠟⠿⣝⠗⣝⠻⠺ -⠗⣝⠗⠻⠟⠿⠗⠿⠺⠗⠻⣝⠻⣝⠟⠺⠺⠟⣝⣝⠟⠿⠗⠿⠿⠟⠺⠗⠺⠟⠻⠿⠗⠻⠗⠿⠻⠻⣝⠻⠻⣝⠗⠿⠟⠿⣝⠿⠺⠗⠗⠟⣝⠿⠗⠺⠿⠗⣝⣝⠗⠺⠗⠺⠿⠺⠟⠟⠗⠿⠺⠟⠗⠟⠟⠗⠻⠻⠟⠗⣝⠻ -⣝⣝⠟⠟⠗⣝⠗⠻⠟⠗⠟⣝⣝⠗⣝⠻⣝⠻⣝⠺⣝⠟⠺⠿⠺⠺⠻⠟⠺⠻⠺⠟⠺⠗⠻⠟⠻⠟⠿⠗⠺⠿⠿⠟⠺⠺⠿⠿⣝⠟⠗⠗⣝⠟⠿⠺⠟⠺⠟⠿⠻⣝⠺⠻⠻⠟⠟⠗⠟⠟⠟⠻⠟⠿⠿⣝⠗⠗⠺⠗⠿⠿ -⠺⠿⠻⠺⠗⠿⠻⠺⣝⣝⣝⠻⠺⠺⠿⠻⠺⠗⣝⠺⠻⣝⠟⠻⠻⣝⠿⠗⠺⠗⠿⠟⠿⠗⠻⠟⠺⠻⠻⠺⠗⠗⠟⠟⠿⣝⠺⠗⠿⠺⠺⠺⠗⠟⠗⠺⠻⠿⠺⠗⠟⠿⠗⠻⠻⣝⠿⣝⣝⣝⠺⠗⠻⠺⠻⣝⠻⠗⠻⠻⣝⠗ -⣝⠟⠟⠻⠿⠿⠗⠺⣝⠟⠗⠻⠺⣝⠗⣝⠺⠻⠿⣝⠗⠗⠻⠗⠗⠟⠗⠺⠺⣝⠗⠟⠿⠿⠗⠟⠟⠺⠻⠟⠿⠟⠺⠟⣝⠻⠿⠿⠻⣝⠻⠿⠗⠟⠻⣝⠺⠿⠿⣝⣝⠿⠿⠿⣝⠿⣝⠟⠻⣝⠟⠺⠟⠿⠗⣝⠿⣝⠺⠺⠻⠿ -⠟⠿⠿⠿⣝⠻⠺⠻⠿⠺⠻⠻⠻⠗⣝⠻⠗⠺⣝⠿⠺⠻⠺⠿⠺⠗⠟⠗⠗⠟⠺⣝⠻⠗⠿⠺⠗⠻⣝⠟⠟⣝⠻⣝⠿⠟⠻⠟⠟⠗⣝⠻⣝⠿⠗⠿⠟⠗⠻⠻⠗⠿⣝⠿⠿⣝⠻⠗⣝⠟⠟⠻⠗⠺⠟⣝⣝⠿⠿⠻⠿⠗ -⠺⠺⠗⠗⠻⠟⠿⠻⠺⠗⠻⠟⠻⣝⠟⣝⠻⠺⠟⠻⣝⠺⠿⠺⠗⠺⠟⣝⠗⠺⠟⠟⠗⠿⠻⠗⠗⠿⠺⠻⠻⣝⠺⣝⠟⠻⠻⠗⠻⠿⠺⠿⠟⠿⠻⠟⠿⠟⠗⠿⣝⣝⠿⠺⣝⠿⠟⠟⠿⠿⠻⠺⠟⠗⠺⠿⠿⠟⠺⠻⠺⠺ -⠟⠺⠗⠿⠻⣝⠻⠺⠗⠻⠻⣝⠗⠿⠺⠟⠻⠟⠟⠻⠺⣝⠿⣝⣝⠻⠟⣝⠺⣝⠗⠟⣝⠺⠟⠺⠻⠿⠗⠟⠗⣝⠟⠟⠿⠟⠗⠟⠻⠿⠟⠺⠿⠗⠺⠗⠿⠟⠗⠻⠺⠗⠗⠟⣝⣝⠗⠺⠺⠟⣝⠗⠿⠟⠺⠻⠿⠿⠻⠻⠺⣝ -⣝⠟⠟⣝⠻⠟⠗⠻⣝⠺⠻⠺⣝⠿⠺⠿⠻⠺⣝⠗⠻⠿⠻⠺⠟⣝⠻⠟⠟⠿⠻⠟⣝⠻⠻⠿⠟⣝⠿⣝⣝⣝⠿⠺⠿⠿⠟⠻⠺⠗⠗⠺⠗⠗⠻⠟⠻⠟⠿⠺⠿⠻⠺⠺⠗⠿⣝⠗⠿⠺⠗⠿⣝⠺⣝⠿⠺⠻⣝⠟⠺⠟ -⠺⠗⠟⣝⠺⠿⠿⠗⣝⠿⠺⠺⠺⣝⠗⣝⠺⣝⠺⠿⠿⠿⠻⠟⠟⠿⠺⠗⠟⠺⠻⠟⠺⠟⠟⠗⠟⠟⠗⠻⠺⠗⠿⣝⣝⠟⠻⠺⠿⠿⠿⠟⠗⠻⠿⠗⠟⠿⠺⠿⠺⠗⠗⣝⠗⠻⠟⠻⠻⠿⠿⠿⠻⠻⠺⠻⠻⣝⠺⠿⠻⠗ -⠗⠿⠺⠻⠿⣝⠺⠟⠿⠿⣝⠿⣝⠟⣝⣝⣝⣝⠗⠺⠟⠺⠺⣝⠺⠗⠺⠿⣝⠺⠺⣝⠗⠿⠗⣝⠗⠿⠿⠗⠻⠻⠻⠟⠿⠺⠟⣝⣝⠺⠗⣝⠻⣝⠿⠿⠿⠿⠗⠗⠟⣝⠿⣝⠿⠿⠟⠟⠗⠗⠿⠟⠺⠗⠟⣝⠻⠗⠺⠺⠟⠺ -⠻⠻⠟⣝⠗⠟⠟⠺⣝⠟⣝⠻⠗⠺⣝⠟⠗⠟⠟⣝⠗⠗⠺⣝⠗⠟⠿⠿⣝⠻⠿⠗⠟⠟⠗⠺⠟⠻⠟⠿⠿⠗⣝⣝⣝⠻⠗⣝⠿⣝⠻⣝⠿⠟⠻⠻⠻⠗⣝⣝⠗⠻⣝⠺⣝⠗⠿⠿⠺⠗⣝⣝⠿⠿⠗⠺⠿⠺⠿⠗⠗⠺ -⠗⠗⠺⠻⠟⠺⠿⠻⠺⠺⠿⠗⠺⠟⠟⠟⠿⣝⠺⠿⠿⠗⣝⠻⠻⠿⠻⠗⠟⠗⠻⠟⠺⠟⠟⠺⠿⠗⣝⣝⠺⠗⠟⠺⠺⠗⣝⠻⠟⣝⠟⠗⠗⠿⠿⣝⠺⠻⠺⠺⠟⠟⠿⠟⠗⣝⣝⣝⠟⠗⠿⠻⠻⠗⠿⠺⠻⣝⠟⠗⠺⠻ -⠗⠿⠗⠟⠟⠟⠻⠟⣝⠟⠗⠗⠟⠻⠿⣝⠺⣝⠟⠿⠟⠺⠟⠻⠺⠺⠗⠟⠟⠗⠻⠗⠗⠻⠻⠻⠟⠺⠻⠺⠿⠿⠿⠺⠿⣝⠗⠿⠟⠿⠗⠺⠿⠟⠺⠺⠺⠻⠗⠟⠿⠺⠻⠟⠻⠟⠗⣝⠻⣝⠺⠺⠿⠻⠿⠻⠟⠗⣝⣝⣝⠻ -⠻⠿⠻⠗⠻⠺⠿⠟⣝⠗⠟⠿⠻⣝⠟⠗⠻⠻⠺⠿⠻⠗⠻⠻⠺⠻⣝⠺⠗⣝⠗⣝⠺⣝⠻⣝⠟⠺⠗⠺⠗⠗⠗⠺⠻⠟⠗⠺⠿⠻⠻⠻⠟⠟⠿⠿⠿⠿⠟⣝⠻⠗⠻⠻⠺⠿⠟⠗⠗⠻⠗⠟⠟⠟⠟⣝⠿⠿⠺⠗⠺⠺ -⠺⣝⠟⠿⠿⠿⠻⠗⠿⠺⠟⠗⣝⣝⠻⠿⣝⠻⠺⠻⠿⠿⠿⠿⠺⠻⠟⠿⠺⠿⠟⠟⠿⠟⠺⠻⠻⠿⣝⠿⠿⣝⠿⠻⠗⣝⠺⠿⠿⣝⠗⣝⠟⠻⠺⠿⠻⠻⠿⠗⠿⠟⠟⣝⠟⠻⠿⠺⠟⠺⠟⠟⠿⠿⠺⣝⠻⠺⠿⠻⠟⣝ -⠺⠟⣝⠺⣝⠟⠻⠟⠿⠗⠗⠗⠺⠻⠻⣝⠗⠺⠻⠟⠗⠺⠗⣝⠗⠿⠻⠟⠿⠗⠻⣝⠺⣝⠻⠗⣝⠻⠗⠗⣝⠿⠗⠟⠿⣝⠟⣝⠺⠟⠺⠻⠺⠺⣝⠿⣝⠗⣝⠺⠿⣝⠟⣝⠗⠿⠿⠗⠻⠺⠿⠺⠿⠺⠺⠻⠗⠺⠿⠺⠟⠟ -⠿⠟⠿⠟⠗⣝⠗⠻⠻⠻⠗⠿⠗⠻⠗⠻⠺⣝⠗⠿⠿⠿⠟⠺⠻⠻⠺⠗⣝⠻⠗⠻⠻⠟⠻⠟⣝⠿⠟⠗⣝⣝⠻⠗⠻⠟⠻⠻⠻⣝⠗⠺⠿⠗⠻⠺⣝⠺⠺⣝⠻⠗⠗⠿⠿⠗⠿⠗⠿⠺⠟⠻⠟⠻⠿⠟⠻⠻⠟⣝⣝⠺ -⠺⠿⠟⠿⣝⠟⠟⠿⣝⠟⠗⠗⠻⠻⠗⠻⠺⠟⠗⠻⠟⠺⠻⣝⠟⠿⠺⠟⠗⠻⠗⠿⠗⣝⠟⠗⣝⠿⠿⠺⠿⠟⠻⠿⣝⠗⠗⠻⠟⣝⠺⠗⠟⠗⣝⠺⠺⠿⣝⠻⠿⠺⠻⠗⠟⣝⠟⠟⣝⠟⠟⠿⠺⠟⠻⠻⠿⠗⠿⠻⠺⣝ -⠗⠟⠺⠟⣝⣝⠺⠻⣝⠿⠟⠟⣝⣝⠗⠿⠟⠿⠻⠟⠻⠿⠺⠿⠗⣝⠟⠺⠺⠻⣝⠺⠟⣝⠺⠟⠗⠻⣝⠻⠿⣝⠿⣝⣝⠗⠺⠺⣝⠺⣝⠗⠺⠺⣝⠿⠟⠻⣝⠿⠺⠟⠻⠟⠺⠟⠿⠻⠺⠗⠗⣝⣝⠿⠟⠗⠻⣝⠺⠿⠿⠺ -⠟⠗⣝⠺⠺⠿⣝⠺⣝⣝⣝⠗⠗⠟⣝⠺⠺⠺⣝⣝⠟⠻⠗⠻⠻⠺⣝⠿⠟⠗⠗⠟⠻⠿⣝⠻⠿⠗⠻⠗⠗⠗⠟⠺⠿⠻⠺⣝⠻⠺⠿⣝⠺⠿⣝⠟⠟⠗⠟⠿⣝⣝⣝⠿⠻⠟⠟⠻⠺⠿⠗⠻⠗⠗⠿⠺⠺⠟⣝⠿⠺⣝ -⠗⠻⠺⣝⠿⠻⠟⣝⠟⠿⠟⠗⣝⠺⣝⠿⠗⠗⣝⠟⠿⠗⠿⠿⠻⠟⣝⠺⠿⣝⣝⠻⠺⠿⠟⠗⠺⣝⠿⠿⣝⠗⠗⠗⠿⣝⠗⠻⠗⠗⠗⠺⠿⠿⠟⠻⠺⠿⠟⣝⠟⠻⠗⠗⠿⠻⠻⠻⠗⣝⠗⠟⣝⠗⠻⣝⠟⠟⣝⠻⠻⠟ -⠻⣝⠿⠻⠻⠗⠺⠗⠗⠺⠿⠺⠿⠟⠗⠗⠟⠻⣝⠺⠻⠻⣝⠺⠿⣝⠻⠟⠟⠿⠿⣝⣝⠺⠟⠺⠗⠗⠿⣝⠺⣝⣝⠺⠟⠺⠟⠿⠗⠟⠻⠗⠺⣝⠗⠟⣝⣝⠻⠺⠟⠻⠿⠺⠻⠻⠺⠿⠿⠺⠻⣝⠟⠗⠟⠟⠗⠟⣝⠿⠿⠺ -⠿⠟⠿⣝⠟⠺⠻⠟⠿⣝⠟⠗⠻⠗⠺⠺⣝⠻⠗⠿⣝⠻⠟⠺⠺⣝⠻⠻⠺⠟⠻⠗⣝⣝⠺⠗⠿⠿⣝⠺⠿⠺⠻⠺⠻⠺⠿⠻⣝⣝⠟⣝⠗⠟⠟⣝⠗⠗⠟⠗⠿⠗⠟⠟⠺⠺⠻⠿⠻⠻⣝⠻⠗⠟⠿⠿⠿⠺⠗⣝⠺⠺ -⠿⠟⠟⠿⠺⠗⠻⠺⠻⣝⠟⠟⠻⠻⣝⠻⠟⣝⠻⠗⠺⠿⠗⠺⠗⠿⠺⣝⠻⠗⠟⠿⠟⠟⣝⣝⠟⠿⠿⠺⣝⠗⠺⣝⣝⠟⣝⠻⠗⠟⠺⠗⠻⠟⠻⠻⠟⠗⠗⠗⠗⠻⣝⠗⠿⠿⣝⠿⠺⠻⠟⠺⣝⠿⠿⣝⣝⠟⠿⠿⠗⠺ -⠗⠺⠻⠟⠿⣝⠺⠟⠟⠟⠻⠿⠺⠟⠻⠻⠻⠺⠟⣝⠻⠺⠟⣝⠗⣝⣝⠗⣝⠗⠻⠻⠺⣝⠗⣝⠗⠿⠿⠿⣝⠗⠻⠗⠿⠿⠗⠟⠿⠻⠗⣝⠟⠺⠟⠻⣝⠻⣝⣝⠻⠺⠟⠻⠿⠿⠻⠻⣝⣝⣝⣝⠟⠗⣝⠟⠗⠗⠺⠻⣝⠺ -⠿⠟⣝⠺⣝⣝⠺⠻⠗⠻⠻⠟⠗⣝⠿⠻⠟⠟⠗⣝⠿⠻⠗⠺⠻⠺⠗⣝⣝⠟⠿⠗⠟⠻⣝⣝⠟⠗⣝⣝⠻⠟⠻⠟⠟⠻⠺⠗⠗⠗⠻⣝⠻⠟⠗⠺⣝⠻⠿⠟⠗⠟⠟⠻⣝⠟⠗⠗⠿⠗⠿⠗⠻⠺⠺⠿⠿⠻⠺⠟⣝⠗ -⠻⠿⠻⠻⣝⠿⠟⠺⠺⠿⠗⠿⠟⣝⠺⠺⠗⠻⠺⣝⠿⠗⠟⠻⠺⠟⠻⠿⣝⠻⣝⠿⠟⠺⠺⣝⠟⠻⠺⣝⣝⠟⠻⠿⣝⠺⠻⠻⠟⠺⠗⠿⠺⠿⠿⠟⠟⣝⠻⠺⠟⠺⠿⠗⠟⠗⠺⠗⠻⠟⣝⣝⣝⠻⠺⠻⠗⣝⠻⣝⠻⠗ -⠻⣝⠻⠺⠺⠺⠗⣝⠿⠿⠿⠻⠟⠟⣝⠻⠺⠟⠟⣝⠗⠺⠺⠺⠿⠻⠺⠻⠻⣝⣝⠗⠺⠺⠗⠺⠺⠻⣝⠿⠗⠿⠗⠻⠻⠟⣝⠿⠗⣝⠺⠻⠗⠺⣝⣝⣝⠗⠺⠺⠻⠻⠿⣝⣝⠻⠻⣝⠟⣝⣝⣝⠟⣝⠗⠺⠿⠻⣝⠻⠻⠻ -⠗⠟⠻⠺⠻⠟⠻⠺⠿⠺⠿⠿⠻⣝⠟⠻⠻⠺⣝⣝⠺⣝⠺⠟⠿⠻⠗⠻⠺⠟⠿⠻⠗⠿⠺⠗⠗⠿⠟⠿⠺⠿⠗⣝⠺⣝⠺⣝⠟⠟⣝⠿⣝⠺⠿⠺⠿⠺⣝⠗⠗⠿⣝⠟⠻⠺⠟⣝⠗⣝⠗⠺⠻⠻⣝⣝⠗⠟⠿⠟⣝⠿ -⠗⠻⠿⠻⠻⣝⠗⠿⠗⠻⠟⣝⠻⠗⠿⠗⠻⠿⣝⠗⠿⠗⠟⠟⠺⣝⠿⠿⠻⣝⠟⠟⠗⠿⠗⠺⠺⠻⠺⠿⣝⠗⠺⣝⠟⣝⣝⠗⠻⠗⠻⠿⠟⠺⠗⠺⣝⣝⠗⠺⠿⣝⠿⠗⠟⠺⠿⠺⠗⠺⠗⣝⠟⠟⠻⠿⠿⠗⠿⠻⠻⠻ -⠻⣝⠺⠗⠿⣝⠟⠿⠺⠿⣝⠗⠺⠻⠿⠺⠿⠺⠗⠻⠗⠟⠿⣝⣝⠻⠿⠿⠗⠺⠗⠗⠗⠟⠗⠗⠻⠗⠗⠿⠺⠺⠟⣝⠺⣝⣝⣝⠻⠗⠗⠻⠻⠿⠗⣝⠿⠺⠟⣝⣝⠟⠻⣝⣝⠟⠟⠟⠺⠟⠺⠻⠿⠻⣝⠺⠗⠟⠻⠗⠻⠗ -⠿⠿⠻⠺⠗⠺⠻⠗⠿⠻⣝⠻⠗⠿⠗⠿⠿⠟⠗⠿⠗⠟⠟⠟⠟⣝⠟⠿⠟⠺⠗⠻⠗⠗⠺⣝⠗⠻⠿⣝⠟⠗⠟⠻⠺⣝⠻⠗⠟⠟⠿⠺⠟⠗⣝⣝⠺⠿⣝⠿⣝⠗⠺⠻⠗⠗⠟⣝⣝⠺⠿⠿⣝⠗⣝⠟⠻⠗⠻⠟⠟⠺ -⠿⣝⣝⠟⠗⠗⠻⣝⠟⠿⠟⠺⠺⠟⠟⠺⠻⣝⠻⠺⠿⣝⠿⠻⠻⠻⠟⠻⣝⠿⠗⣝⠿⠗⠺⣝⠗⠿⠻⣝⠗⠟⠺⠿⠗⠟⠿⠟⣝⠺⠿⠟⣝⠗⠿⠻⠗⠺⠗⠿⣝⠻⠟⠗⠿⠻⠟⣝⣝⣝⠟⠗⠺⣝⠿⠺⠗⠻⠺⠿⠺⠺ -⠻⣝⣝⠟⠗⠻⠺⣝⠟⠻⠟⣝⣝⠻⠻⠟⠗⣝⠻⣝⠟⠗⠿⠿⣝⠗⣝⠺⠿⠺⠟⣝⣝⠗⠗⠗⠗⠻⠗⠻⠟⠺⠟⠺⠿⠺⣝⠗⠟⠗⠺⠗⠟⠻⠻⠟⠻⠗⠗⣝⠻⠗⠟⠿⣝⣝⣝⠺⠻⣝⠿⠻⠗⠺⠗⠿⠿⠟⠟⠻⠟⠺ -⣝⠟⠟⠟⠺⠟⠟⣝⠻⠿⠻⠺⠺⠺⠟⠻⠺⠿⠗⠟⠗⣝⠻⠺⠟⣝⠗⠺⣝⠻⠻⣝⠻⠟⠟⠺⠗⠺⠗⠗⠺⠻⠺⣝⠟⠿⠻⠟⠟⣝⠺⠺⠟⠺⠟⣝⠟⠺⣝⠟⠗⠟⣝⠗⠟⠗⠿⠿⠺⠺⣝⠗⠟⠺⠟⣝⠗⠗⠻⠺⠗⠺ -⠿⠗⠿⠿⠿⣝⣝⣝⠟⣝⠿⠻⠗⠻⣝⠻⠿⠿⠟⠟⠿⠻⠻⠿⠺⠟⠗⠿⠗⣝⣝⣝⠺⠺⠺⠗⠿⣝⠗⠟⠻⠺⠻⠗⠿⠿⠺⠿⣝⠗⠻⠟⠻⠺⠿⠿⠟⠻⠿⠻⠗⠺⠺⠗⠗⠟⠗⠻⣝⠻⠺⠟⠻⣝⣝⠿⠿⠟⠗⠻⠻⠗ -⠗⠗⣝⠺⠗⠗⣝⣝⠟⣝⠿⠿⠻⠺⠗⠻⣝⠗⠻⠺⠗⣝⣝⠟⠻⠟⠺⠟⠿⠻⠺⠺⣝⣝⠗⠺⠺⠿⠟⠗⠗⠺⠗⠗⣝⠺⠺⠺⣝⣝⠻⠿⠿⠟⠗⠺⠻⠿⠺⣝⠻⠟⠻⠺⣝⠗⠺⠻⣝⣝⣝⠟⠺⠺⠻⠺⣝⠗⠺⠗⠺⣝ -⣝⠻⠺⠗⣝⠟⠿⣝⠺⠺⣝⣝⠗⠺⠟⠻⠺⠗⣝⠗⠗⠟⠿⠻⠟⠺⠗⣝⣝⠗⠗⠿⠗⠿⠺⠻⠻⠟⠻⠟⠿⠟⣝⠟⠿⣝⠿⠻⠺⠟⠗⠟⠻⠗⣝⠗⠺⠟⠟⠗⠗⠺⠟⣝⠿⠿⠿⠟⠗⠻⠻⠺⠟⠿⠗⣝⠟⠗⠟⠗⠻⣝ -⠻⠿⠿⠗⠗⣝⣝⠗⠿⠺⠺⣝⠺⠗⠿⠺⠿⠿⠿⠗⠗⠗⠟⣝⣝⠺⣝⠻⣝⣝⠺⣝⠗⠗⣝⠺⠟⠻⠟⠻⠟⠻⣝⣝⣝⠗⠿⠿⠻⣝⠿⠿⠻⠺⠺⠗⠺⠻⠿⠻⠻⠻⠗⠟⠺⠗⠺⠿⠟⠺⠗⠻⣝⠺⠻⠺⠺⠺⠗⠗⠺⠻ -⠗⠿⠟⠺⠻⠟⠿⠺⠟⠟⠗⠟⠟⠺⠗⠻⠿⠺⠗⣝⠟⠻⠺⠻⠻⠟⠿⠟⠿⠟⠻⠗⠿⠗⠻⣝⣝⠟⠟⣝⠿⠿⠿⠿⠿⠟⠗⠺⣝⠟⣝⠿⠿⠿⠿⠿⠻⠺⠺⠗⣝⠻⠿⠺⠗⠗⠺⠗⠿⠟⣝⠿⠗⠗⠟⠗⠺⠻⠺⠟⠻⠿ -⠻⠿⣝⠗⠟⠻⠻⠺⠻⣝⠺⠟⣝⠻⠟⣝⠗⠗⠗⠿⠿⠗⣝⠿⠟⠿⠿⠻⠗⠿⠻⠟⠻⠿⣝⣝⠟⠗⠗⠿⠺⠺⠻⣝⠟⠗⠻⠿⠗⠻⠟⣝⠻⠺⠺⠗⠿⠺⠟⠟⠿⠿⠟⣝⠺⠻⣝⠺⠻⠻⣝⠟⠺⠻⠺⠗⠗⠟⣝⣝⠗⠺ -⠻⠟⠺⠻⠗⠺⠻⠿⠟⠺⠺⠿⠟⠗⠻⠿⣝⠺⠻⠺⠿⠺⠿⠺⠟⠻⠺⠗⠿⠺⠿⣝⠺⠟⠺⣝⣝⠻⠿⣝⠺⠺⠟⠿⠿⠿⣝⠟⠟⠻⠿⣝⠗⠗⠺⠟⣝⠗⠿⠟⠟⠺⣝⠿⣝⠗⠿⠿⠿⠟⠿⠿⠻⠿⣝⠻⠿⠗⣝⠺⠗⠻ -⠜⠪⠪⠸⠤⠣⠜⠸⠸⠣⠪⠣⠣⠸⠣⠣⠤⠣⠜⠣⠪⠤⠣⠣⠪⠣⠸⠪⠪⠪⠤⠸⠣⠤⠣⠜⠸⠜⠣⠣⠸⠣⠣⠪⠸⠸⠣⠜⠪⠜⠣⠜⠣⠣⠤⠪⠣⠣⠣⠸⠜⠣⠪⠣⠣⠤⠜⠣⠸⠤⠤⠸⠣⠪⠤⠜⠣⠣⠣⠪⠜⠜ -⠸⠜⠣⠣⠤⠣⠜⠸⠜⠣⠜⠪⠜⠸⠤⠪⠜⠪⠣⠤⠪⠪⠪⠣⠣⠸⠜⠸⠪⠪⠪⠤⠣⠣⠤⠤⠣⠤⠜⠤⠣⠣⠸⠪⠪⠜⠤⠪⠣⠣⠣⠸⠜⠜⠣⠪⠤⠸⠣⠤⠪⠸⠣⠸⠸⠪⠣⠤⠤⠣⠸⠣⠤⠤⠪⠣⠣⠤⠜⠤⠤⠤ -⠜⠤⠤⠜⠤⠪⠤⠪⠣⠤⠣⠪⠣⠣⠣⠣⠜⠜⠸⠤⠣⠣⠜⠣⠤⠣⠪⠣⠣⠣⠣⠤⠣⠣⠪⠸⠤⠤⠸⠪⠣⠸⠪⠣⠣⠪⠣⠣⠪⠣⠤⠪⠪⠣⠣⠪⠪⠣⠜⠜⠣⠣⠣⠜⠣⠜⠪⠜⠸⠣⠪⠜⠣⠸⠪⠤⠤⠣⠸⠤⠣⠜ -⠪⠪⠣⠣⠜⠣⠪⠸⠸⠸⠸⠜⠜⠸⠸⠪⠤⠣⠣⠜⠣⠣⠤⠣⠸⠣⠜⠣⠪⠣⠸⠜⠣⠜⠣⠪⠸⠣⠪⠪⠸⠤⠤⠣⠤⠜⠣⠣⠣⠤⠣⠜⠤⠣⠤⠣⠣⠣⠪⠣⠣⠤⠣⠣⠤⠸⠜⠣⠸⠸⠣⠸⠸⠣⠜⠪⠪⠪⠪⠜⠣⠪ -⠤⠸⠣⠣⠸⠤⠪⠣⠪⠪⠜⠤⠪⠜⠣⠣⠣⠣⠸⠪⠸⠸⠸⠪⠜⠣⠣⠪⠸⠤⠸⠜⠣⠪⠣⠣⠜⠣⠣⠤⠤⠤⠪⠣⠤⠤⠣⠪⠸⠤⠜⠪⠣⠜⠜⠸⠣⠜⠤⠤⠣⠜⠣⠜⠣⠸⠪⠜⠣⠪⠣⠤⠤⠜⠸⠜⠪⠜⠸⠣⠣⠜ -⠤⠣⠜⠜⠣⠤⠣⠣⠣⠪⠜⠤⠪⠤⠪⠸⠤⠣⠪⠜⠸⠣⠣⠪⠣⠤⠣⠣⠸⠤⠜⠸⠪⠣⠤⠸⠸⠸⠤⠜⠣⠤⠤⠣⠸⠣⠪⠣⠤⠤⠪⠤⠜⠸⠪⠤⠜⠸⠣⠜⠪⠣⠪⠣⠤⠸⠣⠸⠣⠤⠣⠜⠜⠤⠪⠤⠪⠜⠤⠣⠣⠜ -⠣⠣⠣⠸⠸⠣⠤⠜⠣⠣⠣⠸⠸⠜⠜⠣⠜⠸⠣⠸⠪⠜⠣⠪⠤⠸⠤⠣⠤⠜⠸⠪⠣⠸⠣⠪⠣⠜⠣⠤⠤⠸⠣⠸⠣⠣⠜⠣⠸⠣⠤⠣⠸⠸⠜⠸⠜⠜⠪⠸⠣⠪⠜⠤⠣⠣⠪⠣⠤⠸⠤⠪⠤⠪⠣⠣⠣⠸⠣⠤⠜⠸ -⠜⠜⠣⠜⠸⠣⠤⠣⠣⠜⠣⠪⠣⠤⠣⠜⠜⠜⠣⠪⠸⠸⠣⠣⠸⠣⠜⠸⠣⠜⠤⠜⠣⠣⠣⠣⠪⠸⠪⠸⠤⠤⠪⠤⠣⠤⠣⠣⠪⠤⠸⠣⠸⠤⠪⠪⠤⠜⠸⠤⠜⠣⠣⠪⠣⠸⠤⠪⠸⠪⠣⠪⠣⠣⠪⠣⠣⠤⠤⠪⠤⠣ -⠜⠜⠪⠣⠣⠜⠸⠜⠸⠜⠪⠸⠣⠣⠣⠣⠤⠜⠪⠣⠜⠣⠣⠜⠣⠣⠪⠣⠸⠣⠣⠸⠣⠪⠪⠪⠸⠪⠸⠣⠣⠣⠤⠸⠣⠸⠤⠸⠸⠸⠣⠜⠣⠜⠣⠣⠤⠤⠸⠸⠣⠤⠣⠣⠤⠪⠸⠤⠪⠣⠪⠪⠣⠣⠤⠣⠣⠜⠤⠣⠸⠤ -⠜⠤⠤⠸⠪⠸⠪⠣⠣⠣⠤⠣⠪⠪⠤⠣⠪⠜⠣⠣⠣⠜⠸⠜⠸⠜⠪⠪⠣⠪⠣⠸⠤⠪⠸⠣⠤⠣⠤⠤⠤⠤⠸⠣⠜⠸⠤⠣⠜⠜⠜⠤⠣⠣⠣⠣⠪⠣⠸⠜⠣⠣⠸⠸⠪⠸⠣⠪⠸⠣⠪⠸⠣⠤⠸⠣⠣⠣⠣⠪⠣⠤ -⠪⠜⠪⠪⠣⠣⠜⠣⠣⠸⠣⠸⠜⠪⠣⠪⠪⠪⠤⠣⠸⠸⠣⠣⠣⠤⠣⠣⠜⠪⠤⠸⠣⠣⠣⠜⠤⠸⠸⠣⠸⠸⠣⠣⠤⠣⠣⠤⠜⠪⠪⠸⠣⠪⠣⠪⠤⠜⠜⠤⠜⠸⠣⠜⠣⠪⠣⠣⠣⠣⠤⠤⠪⠪⠣⠸⠤⠸⠜⠣⠸⠣ -⠤⠣⠣⠤⠣⠣⠪⠪⠜⠪⠸⠣⠣⠣⠪⠪⠤⠪⠣⠣⠣⠣⠸⠣⠣⠤⠜⠪⠸⠣⠜⠣⠪⠣⠣⠤⠤⠪⠣⠣⠣⠣⠣⠤⠜⠪⠪⠜⠸⠣⠜⠣⠜⠸⠤⠜⠤⠜⠪⠜⠣⠪⠸⠸⠜⠪⠸⠸⠜⠜⠤⠤⠤⠸⠪⠤⠤⠣⠸⠤⠣⠜ -⠸⠸⠣⠸⠣⠤⠜⠸⠤⠣⠜⠤⠸⠣⠣⠤⠤⠜⠣⠤⠜⠜⠤⠸⠣⠣⠸⠤⠤⠸⠸⠣⠜⠣⠣⠪⠣⠪⠤⠪⠣⠸⠣⠪⠸⠜⠜⠣⠸⠤⠜⠣⠪⠪⠣⠤⠸⠜⠪⠜⠜⠣⠤⠪⠣⠸⠸⠪⠣⠣⠪⠣⠣⠣⠤⠜⠣⠪⠣⠤⠣⠣ -⠣⠪⠪⠪⠣⠣⠣⠸⠤⠣⠣⠣⠣⠣⠪⠪⠸⠪⠪⠣⠣⠪⠣⠤⠣⠜⠣⠤⠪⠸⠜⠪⠸⠤⠸⠤⠸⠣⠜⠣⠸⠪⠜⠣⠪⠪⠣⠸⠸⠣⠜⠸⠪⠣⠜⠜⠜⠤⠜⠤⠪⠤⠤⠤⠸⠜⠜⠣⠤⠸⠣⠣⠤⠣⠸⠣⠜⠣⠪⠣⠣⠣ -⠸⠣⠸⠤⠣⠣⠸⠣⠤⠣⠜⠣⠤⠜⠣⠤⠣⠣⠤⠣⠣⠣⠸⠸⠜⠸⠜⠣⠪⠪⠣⠸⠜⠪⠪⠤⠣⠣⠣⠣⠸⠪⠪⠣⠣⠸⠣⠣⠜⠸⠪⠸⠜⠜⠣⠪⠤⠪⠸⠜⠤⠜⠜⠸⠪⠜⠪⠣⠸⠸⠤⠜⠤⠣⠪⠪⠜⠪⠜⠣⠸⠸ -⠪⠤⠪⠸⠜⠪⠪⠪⠪⠣⠪⠪⠜⠣⠣⠣⠸⠸⠸⠜⠸⠪⠸⠤⠜⠸⠤⠸⠪⠣⠪⠣⠪⠣⠣⠪⠜⠣⠸⠣⠸⠪⠸⠜⠸⠸⠸⠜⠸⠣⠣⠸⠸⠣⠣⠣⠣⠣⠸⠣⠜⠤⠸⠣⠜⠪⠣⠤⠣⠣⠣⠣⠣⠣⠸⠣⠣⠪⠜⠜⠣⠤ -⠣⠪⠣⠸⠸⠪⠣⠸⠣⠜⠤⠸⠜⠜⠜⠪⠣⠣⠜⠣⠣⠜⠣⠣⠜⠣⠸⠜⠸⠤⠪⠸⠣⠣⠸⠸⠜⠤⠣⠣⠣⠜⠜⠣⠣⠪⠣⠜⠸⠤⠣⠜⠜⠜⠸⠤⠸⠜⠤⠣⠣⠸⠣⠣⠣⠤⠣⠣⠸⠤⠪⠤⠤⠪⠜⠜⠜⠣⠜⠪⠣⠣ -⠜⠜⠣⠤⠣⠸⠪⠣⠪⠜⠣⠜⠤⠪⠸⠸⠪⠣⠪⠜⠣⠤⠣⠪⠪⠸⠣⠣⠸⠣⠣⠪⠣⠣⠜⠣⠸⠣⠜⠜⠸⠜⠪⠪⠤⠪⠣⠣⠣⠸⠤⠜⠪⠸⠤⠤⠤⠪⠣⠸⠜⠸⠜⠣⠣⠜⠜⠪⠸⠜⠜⠤⠸⠣⠣⠪⠤⠜⠪⠤⠪⠸ -⠣⠣⠜⠤⠣⠜⠣⠸⠪⠜⠣⠣⠸⠣⠣⠜⠣⠣⠣⠣⠜⠸⠜⠸⠸⠜⠪⠤⠣⠣⠤⠤⠸⠣⠸⠣⠪⠪⠣⠜⠣⠣⠸⠣⠤⠪⠜⠣⠪⠤⠣⠣⠤⠤⠣⠤⠤⠤⠣⠣⠣⠣⠜⠣⠪⠜⠜⠣⠤⠪⠪⠣⠜⠣⠣⠣⠸⠜⠣⠣⠣⠣ -⠣⠸⠪⠣⠣⠤⠜⠪⠣⠣⠜⠤⠣⠣⠪⠜⠣⠪⠪⠤⠜⠜⠪⠸⠜⠣⠜⠸⠤⠸⠜⠣⠤⠜⠪⠤⠣⠜⠪⠣⠣⠤⠜⠪⠤⠤⠸⠸⠣⠤⠤⠪⠪⠤⠣⠣⠤⠣⠜⠣⠪⠣⠪⠣⠣⠜⠜⠣⠣⠣⠸⠸⠸⠤⠣⠪⠣⠜⠣⠪⠸⠪ -⠜⠪⠸⠣⠣⠪⠜⠣⠜⠣⠪⠜⠪⠸⠜⠜⠤⠣⠣⠜⠣⠪⠜⠤⠜⠸⠣⠣⠪⠤⠣⠪⠜⠪⠸⠤⠜⠸⠣⠤⠤⠜⠜⠣⠪⠤⠸⠤⠸⠪⠣⠸⠣⠣⠣⠣⠤⠤⠪⠪⠤⠣⠤⠤⠪⠣⠣⠤⠸⠪⠜⠣⠜⠪⠣⠸⠣⠣⠤⠜⠣⠣ -⠸⠪⠣⠣⠣⠣⠣⠤⠣⠪⠣⠪⠜⠣⠣⠣⠤⠪⠤⠸⠤⠤⠜⠣⠜⠸⠸⠸⠜⠸⠣⠪⠣⠪⠸⠪⠜⠸⠜⠤⠜⠪⠸⠣⠪⠪⠣⠜⠤⠤⠤⠣⠪⠜⠸⠤⠣⠜⠪⠸⠪⠪⠸⠜⠣⠣⠪⠣⠤⠸⠸⠤⠸⠣⠪⠣⠣⠪⠜⠜⠣⠪ -⠜⠣⠪⠜⠸⠜⠣⠤⠤⠪⠸⠣⠤⠜⠜⠜⠣⠤⠪⠜⠪⠜⠤⠣⠸⠣⠣⠣⠪⠸⠤⠣⠤⠜⠪⠣⠜⠤⠤⠤⠣⠸⠸⠣⠸⠣⠜⠸⠪⠣⠜⠜⠤⠸⠣⠸⠣⠸⠣⠪⠣⠤⠜⠸⠸⠤⠜⠜⠤⠣⠣⠣⠜⠤⠜⠜⠤⠸⠜⠣⠜⠪ -⠪⠪⠪⠜⠪⠣⠤⠤⠜⠜⠸⠪⠣⠣⠣⠪⠣⠤⠸⠸⠜⠪⠪⠤⠪⠣⠤⠣⠤⠣⠣⠣⠣⠣⠣⠤⠸⠤⠸⠜⠤⠣⠣⠣⠸⠣⠣⠪⠣⠪⠪⠜⠣⠪⠤⠸⠣⠜⠤⠜⠜⠸⠸⠤⠪⠤⠪⠤⠸⠪⠸⠸⠪⠣⠣⠸⠣⠸⠣⠣⠪⠤ -⠣⠣⠜⠣⠣⠸⠜⠪⠣⠸⠤⠜⠪⠸⠤⠤⠪⠸⠤⠣⠣⠜⠪⠣⠤⠣⠣⠤⠜⠸⠪⠜⠸⠣⠜⠜⠸⠸⠣⠸⠤⠤⠤⠤⠣⠣⠣⠣⠤⠣⠣⠪⠸⠣⠸⠣⠪⠣⠣⠣⠸⠸⠣⠸⠣⠣⠸⠤⠜⠜⠣⠪⠤⠣⠣⠣⠣⠪⠤⠣⠣⠤ -⠣⠣⠤⠣⠪⠸⠣⠤⠣⠜⠜⠤⠸⠣⠜⠤⠜⠣⠤⠤⠪⠤⠣⠣⠜⠣⠪⠜⠣⠤⠸⠸⠸⠤⠜⠣⠣⠜⠣⠣⠪⠜⠣⠣⠜⠣⠸⠣⠤⠪⠣⠣⠸⠣⠤⠤⠣⠣⠣⠪⠣⠣⠜⠣⠸⠣⠤⠪⠣⠪⠤⠪⠣⠸⠪⠣⠣⠜⠣⠪⠪⠜ -⠜⠜⠣⠸⠣⠸⠪⠤⠤⠤⠜⠣⠤⠪⠜⠤⠤⠤⠪⠤⠤⠤⠣⠣⠣⠤⠤⠜⠪⠤⠪⠣⠤⠣⠜⠣⠤⠪⠣⠪⠣⠜⠣⠤⠤⠣⠣⠸⠣⠤⠸⠜⠜⠤⠜⠣⠤⠣⠣⠣⠜⠣⠤⠤⠸⠜⠤⠪⠸⠤⠜⠸⠪⠜⠪⠣⠜⠪⠣⠸⠤⠸ -⠤⠤⠣⠣⠪⠸⠣⠤⠣⠜⠣⠸⠣⠸⠸⠤⠜⠣⠣⠣⠣⠤⠸⠣⠜⠪⠤⠣⠸⠤⠣⠸⠣⠣⠣⠣⠜⠤⠣⠪⠸⠣⠤⠣⠣⠜⠸⠣⠜⠪⠜⠪⠜⠪⠸⠤⠤⠪⠪⠪⠪⠤⠤⠪⠪⠜⠪⠜⠪⠤⠤⠣⠣⠪⠣⠸⠪⠪⠜⠜⠣⠣ -⠤⠪⠜⠪⠪⠜⠪⠪⠪⠪⠜⠪⠜⠸⠣⠣⠪⠸⠣⠤⠸⠤⠣⠤⠣⠜⠣⠪⠜⠪⠣⠣⠜⠣⠣⠪⠜⠣⠪⠪⠣⠪⠪⠤⠸⠣⠜⠜⠸⠜⠤⠪⠸⠜⠣⠪⠪⠣⠣⠣⠤⠜⠣⠣⠸⠤⠣⠣⠪⠜⠣⠣⠪⠣⠤⠣⠸⠤⠤⠜⠪⠣ -⠂⠤⠐⠉⠉⠤⠐⠂⠐⠤⠤⠂⠁⠤⠂⠤⠐⠁⠉⠂⠤⠤⠁⠤⠁⠤⠉⠉⠤⠂⠂⠤⠁⠂⠁⠤⠤⠁⠤⠉⠤⠁⠤⠁⠤⠁⠁⠉⠐⠤⠤⠉⠐⠁⠐⠂⠤⠤⠐⠐⠤⠁⠂⠁⠤⠂⠉⠂⠉⠤⠤⠉⠁⠐⠁⠐⠐⠁⠐⠤⠁⠂ -⠤⠤⠤⠂⠐⠂⠂⠁⠂⠐⠁⠁⠂⠁⠤⠤⠁⠐⠂⠂⠉⠁⠐⠂⠤⠂⠁⠤⠂⠁⠂⠁⠁⠐⠂⠐⠤⠂⠁⠤⠤⠁⠤⠂⠤⠁⠉⠉⠐⠂⠤⠐⠉⠁⠐⠂⠐⠉⠂⠉⠤⠉⠉⠁⠉⠉⠉⠤⠐⠂⠤⠤⠤⠂⠐⠤⠐⠤⠁⠤⠤⠤ -⠁⠤⠂⠐⠤⠉⠤⠂⠤⠤⠐⠁⠂⠁⠂⠁⠤⠁⠂⠐⠤⠤⠐⠤⠁⠂⠤⠤⠉⠤⠁⠂⠤⠐⠐⠤⠂⠉⠉⠐⠐⠉⠉⠤⠂⠤⠉⠐⠁⠉⠁⠁⠤⠐⠂⠤⠉⠁⠁⠉⠤⠐⠐⠁⠐⠐⠤⠁⠉⠤⠂⠤⠤⠁⠤⠤⠂⠁⠤⠤⠂⠤ -⠁⠤⠁⠉⠐⠁⠤⠁⠐⠉⠁⠤⠉⠁⠁⠤⠉⠂⠂⠁⠐⠉⠤⠉⠐⠤⠂⠤⠉⠤⠁⠂⠉⠉⠁⠤⠤⠤⠤⠁⠉⠁⠐⠤⠁⠐⠁⠂⠐⠤⠁⠤⠤⠐⠤⠁⠤⠤⠐⠤⠐⠂⠤⠤⠐⠤⠤⠂⠤⠤⠁⠐⠤⠂⠤⠤⠤⠂⠂⠁⠉⠐ -⠉⠁⠤⠁⠉⠐⠂⠤⠤⠁⠤⠁⠤⠂⠤⠤⠤⠂⠐⠁⠂⠁⠤⠐⠤⠂⠐⠐⠤⠂⠁⠉⠤⠤⠁⠤⠐⠉⠐⠤⠉⠉⠤⠤⠐⠐⠂⠤⠉⠉⠤⠤⠐⠐⠂⠂⠐⠤⠤⠂⠤⠉⠤⠂⠂⠁⠁⠉⠤⠤⠤⠤⠉⠤⠤⠂⠁⠤⠐⠉⠂⠤ -⠁⠐⠤⠤⠤⠂⠤⠐⠁⠁⠤⠂⠂⠁⠤⠂⠤⠤⠁⠐⠤⠂⠉⠤⠐⠐⠉⠤⠤⠁⠂⠤⠤⠉⠤⠤⠤⠐⠤⠐⠐⠂⠤⠉⠉⠐⠐⠐⠐⠉⠐⠤⠉⠁⠉⠤⠁⠉⠤⠂⠉⠐⠁⠂⠁⠁⠐⠤⠂⠂⠤⠤⠁⠤⠐⠤⠤⠤⠤⠤⠂⠤ -⠤⠁⠤⠤⠉⠤⠁⠉⠉⠂⠉⠂⠐⠁⠐⠤⠤⠂⠉⠤⠤⠤⠁⠐⠤⠂⠁⠁⠤⠉⠤⠤⠐⠐⠉⠁⠁⠤⠤⠉⠤⠂⠤⠉⠐⠉⠤⠉⠤⠉⠉⠐⠐⠐⠂⠤⠐⠁⠁⠂⠁⠁⠐⠐⠉⠁⠤⠁⠉⠂⠐⠉⠉⠤⠉⠁⠤⠤⠉⠤⠂⠐ -⠂⠐⠐⠐⠂⠤⠐⠂⠐⠉⠐⠉⠤⠂⠤⠐⠉⠁⠤⠐⠤⠉⠉⠉⠁⠐⠐⠂⠤⠤⠐⠤⠁⠤⠂⠐⠤⠐⠐⠤⠁⠐⠤⠁⠁⠉⠤⠐⠤⠤⠉⠁⠐⠂⠉⠐⠤⠤⠐⠉⠉⠐⠐⠤⠁⠁⠐⠤⠤⠤⠂⠉⠂⠉⠤⠉⠐⠂⠂⠁⠤⠁ -⠂⠤⠂⠁⠉⠉⠤⠤⠂⠤⠁⠂⠐⠁⠤⠤⠉⠐⠤⠁⠉⠁⠂⠁⠉⠂⠤⠐⠂⠐⠂⠂⠁⠂⠤⠁⠂⠤⠂⠤⠐⠁⠂⠐⠐⠤⠤⠤⠉⠤⠁⠤⠁⠉⠤⠤⠤⠤⠁⠉⠉⠂⠤⠁⠉⠤⠂⠁⠤⠂⠤⠐⠉⠤⠤⠤⠁⠤⠁⠁⠐⠁ -⠁⠁⠁⠂⠤⠉⠁⠉⠤⠉⠁⠉⠐⠤⠁⠤⠁⠐⠤⠂⠉⠤⠤⠤⠁⠐⠤⠁⠉⠉⠤⠤⠁⠤⠤⠤⠤⠐⠐⠤⠐⠉⠂⠁⠉⠤⠤⠉⠉⠤⠤⠤⠂⠐⠤⠉⠂⠁⠐⠤⠂⠁⠉⠐⠤⠁⠁⠂⠂⠂⠤⠂⠤⠤⠤⠤⠉⠤⠁⠐⠐⠤ -⠉⠁⠐⠂⠤⠁⠐⠤⠂⠁⠁⠂⠂⠉⠤⠤⠁⠁⠁⠁⠉⠂⠐⠐⠐⠤⠤⠁⠐⠂⠉⠉⠁⠐⠂⠤⠤⠂⠤⠤⠁⠂⠂⠤⠤⠁⠐⠁⠂⠉⠤⠂⠁⠤⠤⠤⠤⠐⠉⠁⠐⠐⠤⠤⠉⠁⠤⠐⠤⠉⠤⠤⠤⠉⠂⠤⠁⠁⠂⠂⠤⠤ -⠂⠐⠉⠂⠤⠁⠤⠤⠁⠁⠤⠂⠁⠂⠉⠁⠤⠐⠁⠁⠤⠤⠂⠂⠤⠤⠐⠤⠂⠉⠐⠤⠉⠂⠤⠂⠉⠁⠐⠤⠁⠤⠤⠤⠂⠁⠉⠉⠉⠉⠤⠤⠐⠁⠤⠉⠉⠐⠁⠤⠉⠁⠐⠁⠤⠉⠉⠉⠉⠂⠐⠉⠁⠤⠤⠉⠤⠤⠉⠤⠐⠤ -⠁⠤⠤⠉⠉⠐⠐⠂⠁⠂⠐⠁⠤⠤⠁⠂⠉⠂⠤⠤⠁⠤⠉⠤⠤⠤⠉⠤⠐⠐⠂⠂⠂⠁⠐⠁⠂⠤⠤⠁⠤⠤⠁⠁⠂⠁⠤⠉⠤⠤⠤⠁⠤⠉⠁⠤⠤⠂⠤⠤⠂⠂⠂⠐⠁⠤⠂⠁⠐⠤⠐⠁⠤⠤⠐⠁⠤⠤⠉⠁⠤⠤ -⠂⠤⠉⠤⠂⠁⠁⠐⠐⠁⠂⠉⠉⠁⠂⠂⠤⠉⠤⠐⠂⠁⠉⠤⠤⠁⠐⠉⠁⠤⠉⠤⠤⠤⠂⠉⠉⠂⠐⠤⠁⠉⠤⠁⠁⠉⠤⠤⠉⠁⠂⠉⠉⠂⠐⠤⠤⠐⠤⠂⠂⠁⠤⠤⠉⠤⠐⠐⠤⠉⠉⠤⠂⠤⠤⠤⠤⠂⠤⠤⠉⠐ -⠐⠐⠐⠂⠄⠄⠁⠐⠐⠐⠐⠄⠁⠐⠁⠐⠐⠂⠄⠁⠁⠐⠂⠐⠐⠂⠐⠁⠄⠂⠁⠐⠁⠐⠁⠐⠂⠄⠂⠐⠂⠐⠐⠂⠐⠁⠐⠄⠐⠐⠐⠂⠁⠐⠄⠄⠄⠐⠄⠁⠐⠐⠄⠄⠄⠐⠐⠐⠁ -⠂⠁⠁⠄⠐⠄⠂⠐⠄⠂⠂⠁⠐⠐⠁⠁⠄⠁⠁⠁⠂⠁⠐⠂⠐⠄⠁⠂⠄⠁⠐⠄⠐⠄⠐⠄⠁⠄⠁⠐⠐⠂⠄⠄⠐⠐⠄⠐⠄⠄⠁⠐⠐⠁⠐⠄⠐⠐⠐⠁⠁⠂⠄⠂⠂⠁ -⠄⠁⠐⠂⠐⠂⠐⠁⠂⠐⠄⠂⠐⠄⠁⠂⠐⠄⠐⠐⠂⠐⠄⠂⠐⠐⠄⠂⠂⠐⠄⠐⠐⠐⠂⠂⠄⠁⠂⠐⠂⠐⠁⠂⠐⠐⠁⠂⠐⠐⠄⠂⠐⠐⠂⠄⠂⠄⠂⠐⠐⠐⠁⠄⠐⠄⠂⠄⠐⠐⠁⠐ -⠁⠂⠂⠁⠐⠐⠄⠄⠄⠐⠄⠁⠐⠁⠄⠄⠄⠁⠂⠐⠐⠁⠄⠐⠁⠁⠐⠐⠂⠐⠐⠂⠐⠄⠁⠁⠂⠂⠐⠄⠂⠄⠁⠐⠄⠂⠐⠐⠐⠐⠐⠄⠐⠐⠄⠄⠂⠄⠐⠐⠐⠄⠐⠁⠂⠂⠁⠐⠂ -⠐⠂⠐⠐⠁⠄⠁⠁⠂⠄⠂⠄⠐⠄⠄⠄⠐⠐⠐⠂⠄⠁⠁⠄⠂⠐⠐⠐⠂⠂⠐⠐⠄⠐⠐⠂⠄⠂⠐⠐⠂⠐⠐⠐⠂⠄⠁⠐⠂⠂⠂⠁⠂⠄⠂⠐⠐⠐⠐⠂⠂⠁⠂⠁⠐⠄⠐ -⠁⠄⠂⠐⠐⠄⠁⠂⠁⠁⠐⠐⠁⠄⠁⠐⠄⠁⠄⠄⠐⠐⠂⠐⠄⠄⠄⠁⠐⠄⠐⠐⠁⠐⠁⠁⠐⠂⠂⠁⠂⠐⠁⠁⠐⠁⠐⠂⠂⠐⠐⠁⠁⠐⠄⠐⠐⠄⠁⠐⠂⠂⠄⠐⠐⠐⠂⠐⠐⠐ -⠁⠄⠂⠐⠄⠐⠄⠐⠐⠁⠄⠁⠐⠂⠄⠂⠂⠁⠐⠂⠄⠐⠂⠐⠐⠄⠄⠐⠁⠂⠐⠐⠁⠐⠁⠐⠄⠂⠐⠐⠂⠁⠐⠐⠐⠐⠂⠄⠐⠐⠁⠂⠂⠐⠁⠐⠐⠐⠄⠂⠁⠐⠂⠐⠄⠂⠐⠁ -⠂⠄⠄⠄⠂⠂⠁⠐⠐⠄⠁⠐⠄⠐⠐⠄⠐⠐⠐⠄⠁⠄⠐⠁⠐⠐⠁⠁⠂⠐⠐⠄⠄⠂⠂⠁⠄⠐⠂⠂⠐⠐⠁⠐⠐⠁⠐⠄⠐⠐⠄⠐⠐⠐⠁⠂⠄⠄⠐⠐⠐⠐⠁⠐⠁⠂ -⠐⠄⠄⠐⠁⠐⠂⠐⠂⠂⠁⠄⠐⠐⠄⠐⠄⠄⠂⠄⠄⠂⠁⠁⠄⠐⠂⠐⠐⠐⠂⠂⠐⠐⠁⠐⠐⠄⠂⠐⠄⠂⠐⠄⠂⠐⠄⠁⠁⠄⠂⠂⠐⠐⠁⠁⠄⠂⠄⠁⠂⠂⠁⠁⠐⠂⠂⠐⠄⠁⠄ -⠐⠐⠐⠐⠄⠐⠄⠂⠂⠄⠁⠂⠁⠁⠂⠂⠁⠐⠄⠐⠂⠄⠐⠄⠁⠐⠁⠁⠄⠄⠁⠁⠐⠐⠂⠐⠐⠂⠄⠄⠂⠐⠐⠄⠁⠐⠐⠂⠁⠂⠄⠐⠐⠂⠐⠁⠐⠐⠐⠄⠂⠐⠂⠁⠐⠐⠁⠂⠂⠁⠐⠐ -⠁⠐⠐⠁⠄⠐⠂⠐⠐⠐⠂⠂⠂⠁⠐⠐⠁⠄⠁⠐⠐⠄⠁⠄⠐⠂⠐⠂⠁⠐⠁⠂⠐⠁⠄⠄⠐⠄⠂⠂⠐⠂⠐⠁⠐⠐⠂⠁⠐⠐⠐⠁⠂⠐⠄⠐⠐⠐⠐⠐⠁⠐⠁⠂⠁⠐⠄⠐⠁⠁⠐ -⠐⠐⠐⠂⠄⠂⠁⠐⠐⠄⠐⠁⠐⠄⠐⠄⠐⠐⠄⠂⠐⠐⠄⠂⠂⠄⠐⠄⠄⠐⠐⠐⠐⠂⠂⠁⠁⠄⠁⠄⠄⠐⠐⠂⠐⠐⠄⠁⠐⠂⠐⠄⠐⠄⠂⠐⠂⠐⠐⠐⠐⠄⠂⠁ -⠄⠐⠐⠂⠂⠁⠐⠐⠄⠄⠐⠄⠁⠄⠐⠐⠐⠐⠁⠐⠂⠐⠁⠂⠂⠐⠂⠄⠂⠐⠁⠐⠐⠄⠂⠂⠁⠄⠂⠁⠐⠄⠐⠂⠁⠂⠐⠐⠁⠐⠐⠂⠂⠁⠐⠐⠐⠐⠂⠐⠁⠁⠐⠁⠁⠄ -⠄⠐⠁⠁⠂⠐⠄⠁⠄⠄⠐⠁⠁⠁⠂⠐⠂⠐⠐⠐⠁⠂⠁⠂⠄⠂⠄⠂⠐⠄⠐⠁⠄⠁⠄⠁⠐⠐⠐⠂⠁⠁⠐⠁⠂⠁⠂⠐⠄⠄⠂⠁⠐⠄⠁⠐⠄⠄⠂⠐⠁⠐⠂⠐⠐⠁⠂ diff --git a/patches/martinpath_OK THIS IS THE GOOD ONE.txt b/patches/martinpath_OK THIS IS THE GOOD ONE.txt deleted file mode 100644 index b89f4e4..0000000 --- a/patches/martinpath_OK THIS IS THE GOOD ONE.txt +++ /dev/null @@ -1,74 +0,0 @@ -⠯⠻⠿⠟⠾⠿⠻⠾⠯⠷⠟⠷⠟⠿⠻⠟⠟⠻⠿⠟⠻⠷⠷⠾⠯⠿⠟⠟⠟⠷⠟⠯⠷⠿⠟⠾⠿⠻⠟⠾⠻⠟⠷⠾⠿⠷⠻⠯⠾⠿⠿⠷⠷⠿⠯⠿⠟⠯⠾⠷⠯⠯⠯⠯⠯⠾⠷⠿⠻⠿⠯⠻⠿⠟⠻⠯⠾⠻⠾⠷⠟⠟ -⠟⠷⠷⠷⠟⠻⠯⠷⠾⠟⠻⠿⠷⠷⠻⠿⠿⠷⠿⠾⠻⠻⠿⠯⠻⠻⠷⠿⠾⠯⠟⠟⠷⠟⠯⠿⠻⠾⠷⠻⠾⠟⠾⠿⠟⠟⠾⠯⠷⠷⠻⠟⠾⠟⠻⠾⠯⠟⠻⠿⠷⠾⠷⠟⠯⠻⠾⠯⠯⠾⠾⠿⠷⠿⠯⠷⠾⠻⠿⠾⠟⠻ -⠯⠷⠻⠻⠯⠿⠯⠿⠿⠻⠟⠟⠷⠾⠟⠾⠾⠯⠻⠾⠯⠾⠯⠿⠯⠻⠿⠾⠾⠾⠿⠷⠻⠟⠷⠷⠾⠟⠯⠷⠷⠾⠯⠯⠯⠿⠿⠾⠾⠾⠟⠷⠟⠷⠟⠿⠻⠿⠿⠟⠯⠿⠯⠷⠻⠟⠷⠿⠷⠷⠾⠾⠟⠾⠻⠻⠷⠟⠻⠯⠷⠾ -⠻⠯⠷⠟⠯⠾⠾⠯⠻⠾⠻⠾⠯⠿⠟⠯⠷⠯⠻⠷⠾⠷⠟⠯⠷⠷⠷⠻⠯⠻⠟⠟⠷⠿⠾⠯⠻⠷⠷⠯⠿⠟⠾⠾⠟⠷⠿⠯⠻⠟⠷⠷⠾⠷⠯⠿⠟⠯⠯⠾⠾⠟⠻⠯⠷⠟⠿⠻⠾⠯⠻⠯⠾⠯⠟⠿⠯⠟⠿⠟⠟⠟ -⠯⠯⠟⠾⠾⠯⠾⠿⠾⠯⠷⠷⠟⠟⠯⠿⠷⠯⠾⠾⠟⠿⠿⠯⠾⠿⠟⠷⠾⠯⠾⠷⠯⠟⠯⠾⠟⠻⠾⠻⠷⠯⠾⠷⠷⠷⠿⠾⠯⠿⠻⠿⠯⠟⠟⠯⠾⠟⠿⠿⠾⠻⠾⠟⠿⠟⠷⠷⠟⠿⠻⠯⠾⠿⠟⠷⠿⠾⠯⠻⠿⠷ -⠯⠟⠾⠷⠾⠟⠟⠿⠟⠻⠻⠯⠷⠯⠷⠿⠿⠟⠿⠟⠯⠾⠷⠿⠾⠻⠻⠯⠻⠟⠿⠿⠯⠯⠷⠟⠾⠟⠷⠟⠾⠷⠿⠻⠷⠟⠻⠯⠾⠿⠟⠿⠾⠯⠷⠾⠾⠷⠾⠻⠾⠻⠿⠻⠿⠾⠷⠟⠾⠿⠟⠯⠾⠷⠯⠻⠻⠾⠯⠷⠷⠻ -⠯⠟⠾⠷⠻⠿⠿⠾⠟⠻⠻⠯⠾⠷⠻⠟⠷⠻⠷⠻⠻⠷⠟⠾⠯⠟⠟⠻⠯⠿⠻⠷⠻⠯⠻⠯⠟⠾⠿⠯⠻⠿⠾⠷⠾⠻⠿⠷⠷⠯⠻⠯⠷⠷⠿⠯⠿⠟⠯⠯⠿⠾⠻⠿⠟⠿⠿⠾⠷⠿⠾⠟⠿⠻⠟⠿⠯⠟⠟⠻⠻⠟ -⠿⠿⠻⠾⠷⠿⠟⠟⠾⠟⠻⠾⠿⠿⠿⠯⠿⠯⠟⠻⠯⠟⠿⠾⠻⠾⠷⠯⠿⠻⠻⠿⠟⠾⠷⠻⠻⠯⠷⠯⠯⠻⠻⠷⠯⠷⠯⠷⠻⠯⠯⠷⠟⠿⠷⠷⠷⠿⠷⠯⠷⠾⠾⠾⠻⠿⠿⠾⠻⠯⠷⠷⠷⠻⠿⠿⠿⠻⠾⠷⠷⠿ -⠷⠿⠯⠻⠟⠿⠻⠿⠟⠻⠷⠻⠟⠿⠾⠻⠻⠷⠯⠯⠻⠟⠻⠻⠷⠾⠯⠿⠷⠾⠿⠯⠿⠯⠷⠯⠿⠾⠷⠿⠻⠯⠷⠻⠷⠾⠷⠷⠻⠿⠾⠻⠯⠻⠿⠷⠿⠿⠾⠻⠟⠾⠿⠻⠿⠯⠷⠿⠟⠻⠾⠷⠿⠿⠟⠯⠯⠾⠟⠯⠻⠷ -⠷⠯⠯⠾⠟⠿⠷⠻⠷⠯⠯⠷⠾⠿⠷⠾⠻⠻⠟⠾⠷⠾⠿⠿⠻⠿⠟⠻⠿⠯⠻⠯⠾⠻⠯⠯⠷⠻⠷⠻⠻⠿⠻⠟⠻⠷⠯⠾⠿⠯⠯⠷⠟⠿⠟⠷⠷⠿⠯⠾⠟⠟⠾⠻⠟⠾⠟⠿⠯⠷⠯⠻⠻⠟⠿⠻⠷⠷⠾⠟⠷⠯ -⠻⠿⠿⠻⠯⠷⠻⠷⠟⠯⠯⠻⠿⠿⠾⠷⠯⠷⠿⠷⠿⠷⠻⠟⠷⠟⠾⠿⠯⠾⠯⠷⠟⠷⠷⠷⠟⠿⠷⠷⠻⠾⠯⠿⠟⠿⠯⠷⠷⠻⠻⠿⠷⠟⠿⠷⠻⠾⠾⠷⠿⠯⠯⠷⠯⠻⠻⠯⠯⠿⠾⠯⠟⠯⠟⠯⠾⠿⠿⠟⠷⠟ -⠻⠿⠾⠻⠷⠯⠯⠯⠾⠯⠟⠷⠿⠻⠾⠾⠷⠾⠾⠿⠯⠿⠷⠿⠻⠻⠿⠻⠯⠿⠟⠷⠯⠿⠾⠷⠾⠷⠻⠯⠾⠻⠷⠯⠿⠻⠿⠿⠻⠾⠷⠯⠟⠻⠾⠟⠿⠻⠻⠿⠷⠯⠻⠿⠻⠟⠷⠷⠿⠾⠻⠯⠾⠾⠟⠻⠷⠟⠯⠷⠯⠟ -⠻⠿⠯⠿⠷⠯⠟⠷⠷⠾⠾⠟⠟⠟⠾⠻⠿⠿⠷⠷⠯⠷⠟⠿⠿⠿⠯⠿⠿⠿⠷⠾⠟⠿⠾⠿⠷⠾⠯⠷⠿⠻⠻⠻⠾⠷⠷⠟⠻⠷⠻⠻⠟⠾⠾⠟⠯⠾⠿⠿⠷⠿⠟⠻⠯⠟⠿⠷⠾⠯⠾⠷⠿⠿⠻⠾⠾⠷⠟⠯⠯⠿ -⠿⠾⠻⠻⠷⠻⠟⠯⠻⠟⠾⠷⠾⠷⠷⠯⠾⠻⠿⠿⠻⠯⠻⠷⠾⠯⠾⠿⠯⠾⠻⠿⠟⠻⠟⠿⠷⠻⠟⠻⠻⠯⠯⠿⠿⠯⠿⠾⠟⠻⠟⠯⠟⠿⠿⠯⠟⠻⠷⠻⠷⠯⠟⠾⠟⠯⠿⠻⠷⠿⠯⠿⠾⠿⠾⠾⠷⠷⠿⠿⠻⠾ -⠟⠷⠾⠯⠷⠷⠾⠻⠯⠻⠯⠿⠾⠷⠻⠷⠷⠿⠯⠷⠯⠿⠿⠻⠟⠾⠾⠯⠿⠯⠻⠷⠷⠾⠟⠯⠟⠷⠾⠟⠻⠷⠟⠾⠟⠷⠿⠷⠿⠾⠾⠯⠿⠾⠻⠻⠟⠿⠟⠷⠯⠯⠻⠷⠯⠟⠷⠷⠯⠻⠷⠟⠾⠾⠻⠷⠟⠻⠷⠯⠾⠯ -⠗⠿⠿⠿⠻⠺⣝⠻⠻⠟⠻⠺⠟⠟⠻⠟⠗⠗⠿⣝⣝⠗⠿⠟⠻⣝⠻⠺⠻⣝⣝⠿⣝⠗⠟⣝⠗⠟⠺⣝⠟⠗⠻⠟⠻⠻⠗⠗⠺⠿⠟⠗⠿⠟⠿⠟⠺⠻⣝⠿⠟⠗⣝⠺⠿⠟⠿⣝⠻⠻⠺⠺⠟⠻⠿⠗⣝⠺⣝⠻⠺⣝ -⠟⠺⠿⠺⠗⠗⠻⠟⠗⠺⠗⠗⠟⣝⠗⠗⣝⠿⠺⠺⠻⠟⠿⠟⠿⠿⣝⠻⠻⠗⠟⠿⠗⣝⠺⣝⣝⠿⠻⠟⠿⠟⠿⠺⠺⠻⠿⠟⠿⠗⠻⠗⣝⠻⠻⠻⠿⣝⠗⠗⠺⠻⠺⣝⠻⠗⠟⣝⠻⠿⣝⠟⠿⠿⠟⠟⠟⣝⠻⠗⠺⠻ -⠺⣝⠟⠟⠿⠿⣝⠺⠟⠗⠗⠿⠻⣝⠿⠟⠿⠺⠺⠟⠟⠻⠟⠗⠿⣝⠟⣝⠗⠻⠺⣝⠗⠟⠿⣝⠻⠿⠗⠺⠻⠟⠗⠗⠺⣝⠺⠟⠿⠻⠻⠗⠻⣝⠻⣝⠗⣝⠻⠟⠻⣝⠿⣝⠗⣝⠻⠗⠗⠗⠺⠺⠟⠻⠻⠗⠿⠟⠿⠗⠿⠻ -⠻⣝⠗⠺⠺⠗⠗⠿⣝⠗⠟⠺⠿⣝⠿⠻⠿⠻⠻⠻⠗⠻⠿⣝⠻⠻⠿⠟⠻⣝⠗⠺⠺⠺⣝⠻⠻⣝⠗⠻⠻⠟⠺⠻⠟⠺⠺⣝⠻⠿⣝⠗⠗⠗⣝⠿⣝⠻⠻⠗⠗⠺⣝⠻⠟⠗⠿⠗⠺⠟⠟⠟⠟⠿⠗⠿⠗⠿⠺⠿⠺⠺ -⠻⠟⣝⠟⣝⣝⠻⠻⠿⠻⣝⠺⠟⠺⠻⠗⠿⠺⣝⠟⠺⣝⠻⠺⠺⠟⠗⠺⠺⠗⠺⠗⠗⣝⠗⣝⠿⠗⠻⣝⠟⣝⠺⠗⠿⠟⠿⠿⠿⠟⠗⠗⠻⠺⠻⣝⠺⠺⠿⣝⠺⠻⠗⠟⠟⠗⣝⠺⠺⠟⠟⠗⠿⠻⣝⠻⠗⠗⠻⠿⠻⠗ -⣝⣝⠟⠿⠟⠻⣝⠟⣝⠿⠟⠻⠟⠺⠻⠿⠿⠻⠺⠻⠻⣝⣝⠿⠿⣝⣝⣝⣝⠿⠗⣝⠻⠗⣝⣝⠗⣝⠟⠺⠺⠺⠿⠿⠺⠗⠗⠗⠺⠟⠺⠿⠟⠻⠺⠿⣝⠿⠟⠻⠺⣝⠟⠿⣝⠗⠿⠟⣝⠿⠗⠻⠗⣝⠻⠺⠿⠿⠺⣝⠻⠺ -⠿⠺⠗⠟⠻⠻⠟⠺⠗⠺⠿⠺⠺⠻⠻⠺⠟⠗⠟⠗⠺⠗⠟⣝⠗⠻⠿⠗⠻⠗⠺⣝⣝⠟⠺⠿⠺⠗⠻⣝⠻⠟⠺⠗⠿⣝⠗⠿⠺⠟⠗⠗⠺⠗⠺⠻⠿⠺⠺⠿⠿⠿⠿⠗⠻⠺⠟⠟⣝⠿⠺⠗⠗⠻⠻⠿⠺⠗⠺⠻⠗⠗ -⠿⠿⠺⠿⠿⠗⠿⠻⠟⠻⠻⠺⠗⠿⠺⠗⣝⠗⠺⠗⠟⣝⠺⣝⠟⠻⠻⠻⠺⠺⠻⣝⠺⠺⠟⠻⠻⠗⠺⠻⠺⠺⠻⠗⠟⠟⠿⠗⠟⠺⣝⠗⠿⠿⠟⠟⠻⠺⠻⣝⠗⣝⠿⠿⠻⠿⠺⠺⠺⣝⠻⠿⠿⠻⠿⠻⠿⠟⠺⠗⣝⠿ -⠟⠻⠺⠺⠗⠿⣝⠻⠗⠺⠻⣝⣝⠺⠿⠿⠗⠻⣝⠟⠿⠗⠻⣝⠟⠻⠗⠟⣝⠗⠺⣝⠟⠟⠗⠻⠟⠿⣝⣝⠗⠺⠗⠻⠟⠿⠿⠺⠗⠟⠗⠻⠻⠺⠟⠗⠿⠺⣝⠟⠗⠺⠿⠻⠺⣝⠟⠻⠻⠻⠗⠗⠺⠗⠗⣝⠟⠗⠿⠿⣝⠗ -⣝⣝⠿⠿⣝⣝⣝⠿⠺⣝⠻⠿⠿⠟⠟⠻⠗⠿⠻⠿⠺⠿⠿⠻⠻⠻⠺⠗⠗⠺⠟⠺⠻⠟⠿⠿⠿⠺⣝⣝⠟⠻⠿⣝⠗⠺⠗⠗⠟⠻⠟⣝⠻⠟⣝⠻⠗⣝⣝⣝⣝⣝⣝⠗⠟⠗⠺⠺⠟⠗⠟⠺⠺⣝⠻⠿⣝⠺⣝⣝⠗⠟ -⠻⠿⠻⠺⠿⠗⠗⠺⠗⣝⠗⠿⠗⣝⣝⠻⠿⠗⠻⠟⠟⠿⠗⣝⠗⠗⠺⣝⠻⠗⣝⣝⠻⣝⠗⠻⠿⠟⠻⠟⠗⠿⣝⠿⠻⠿⣝⠟⣝⠺⠗⠟⠿⠟⣝⠻⠺⠟⠟⠻⠗⣝⠻⠟⠺⠻⠗⠿⣝⠻⠿⠻⠺⠿⠺⣝⠺⠿⠺⠿⠗⠻ -⣝⠺⣝⠺⠟⠟⣝⠻⠗⣝⣝⣝⠗⠟⠻⣝⣝⠗⠗⠿⠗⠟⠟⠺⠗⠻⣝⠺⠗⠗⠺⣝⠺⠻⠿⠗⠟⣝⠿⠟⠟⠻⠿⠺⠻⠟⠿⠟⠺⠟⠗⠗⠿⠗⣝⠗⠺⠺⠻⣝⣝⣝⠻⠻⠟⠟⣝⣝⣝⠻⠻⠺⣝⠻⠟⣝⠻⠺⠗⣝⠺⠗ -⣝⠗⠗⠻⠺⣝⠟⠗⠿⠿⠺⣝⠗⠻⠿⠺⠺⠟⠟⠻⠟⠺⠿⠗⠺⠟⠗⠿⠟⠺⠗⠿⠗⠗⠗⠻⠟⣝⠗⠺⠟⠻⠿⠗⠟⠿⠗⠗⠟⠿⠗⠺⠻⠟⠗⠟⠿⠟⠟⠗⠗⠟⠻⠟⠺⠻⠿⠟⣝⠟⠿⠟⠟⠗⣝⠗⠺⠻⠟⣝⠺⠿ -⠿⠿⠻⠗⠺⠺⠿⠟⣝⠿⠺⣝⠻⠻⠻⣝⠟⠺⠺⠻⠻⠗⠺⣝⠗⠗⠗⠻⠻⠺⠗⠟⣝⠟⠺⠿⠗⠺⠺⠗⣝⠟⠺⠻⣝⠺⠿⠻⠻⣝⣝⠻⠟⠗⠗⠿⠿⠟⠻⠿⠺⣝⠻⠻⠟⣝⠿⠟⠻⣝⠿⣝⠗⠿⠺⠟⠿⠗⠗⠻⠗⠻ -⠟⣝⠺⠗⠿⣝⠺⣝⠗⠿⠿⠺⣝⠿⠿⠿⠺⣝⠻⣝⠟⠿⠻⠗⠗⠻⠿⣝⣝⠗⠟⠿⣝⠺⠺⠻⠻⠺⠟⠺⠿⠺⠿⠟⠗⣝⣝⠗⠺⠟⣝⣝⠟⠟⣝⣝⠗⠗⠟⠻⠻⠗⣝⠗⠺⠟⠿⠺⠟⠺⠺⠗⣝⠟⠺⠟⠗⠟⣝⠟⠺⠻ -⠎⠣⠜⠸⠜⠕⠜⠪⠣⠪⠸⠜⠎⠕⠕⠸⠜⠸⠎⠪⠣⠎⠎⠣⠎⠸⠣⠣⠸⠸⠪⠪⠕⠸⠎⠎⠣⠸⠸⠪⠸⠣⠣⠪⠜⠸⠪⠎⠎⠪⠪⠕⠎⠸⠣⠪⠎⠪⠸⠪⠎⠸⠜⠎⠸⠸⠸⠪⠎⠣⠣⠜⠎⠎⠎⠪⠸⠸⠸⠣⠸⠎ -⠣⠸⠣⠕⠕⠜⠕⠕⠣⠜⠪⠣⠕⠜⠸⠜⠜⠣⠜⠸⠸⠎⠕⠪⠎⠸⠸⠎⠪⠪⠕⠸⠕⠜⠎⠕⠣⠪⠸⠣⠎⠜⠕⠸⠸⠜⠎⠕⠪⠎⠣⠕⠎⠸⠪⠣⠕⠣⠎⠎⠎⠸⠪⠣⠜⠜⠕⠪⠸⠪⠪⠸⠣⠣⠕⠕⠸⠣⠎⠸⠣⠣ -⠪⠎⠜⠸⠸⠣⠎⠎⠸⠕⠎⠎⠣⠸⠎⠜⠜⠣⠕⠸⠣⠕⠣⠕⠪⠸⠜⠕⠪⠸⠜⠎⠎⠕⠸⠎⠕⠪⠣⠎⠜⠸⠎⠎⠣⠎⠣⠸⠕⠪⠎⠕⠸⠎⠜⠎⠎⠜⠸⠕⠕⠎⠪⠜⠸⠎⠕⠣⠕⠎⠎⠪⠎⠸⠸⠣⠸⠸⠜⠪⠜⠕ -⠕⠸⠎⠎⠕⠸⠎⠕⠸⠣⠣⠪⠸⠕⠎⠣⠪⠸⠜⠣⠪⠕⠎⠪⠪⠣⠜⠎⠎⠎⠎⠎⠸⠕⠎⠜⠪⠸⠕⠎⠣⠸⠸⠜⠸⠸⠕⠕⠪⠸⠪⠎⠣⠕⠪⠕⠜⠸⠜⠣⠎⠕⠎⠪⠎⠪⠕⠕⠪⠪⠣⠪⠪⠣⠣⠣⠜⠪⠕⠸⠪⠎ -⠸⠸⠸⠸⠎⠕⠎⠣⠸⠪⠪⠜⠕⠕⠣⠪⠣⠜⠣⠕⠪⠕⠕⠎⠸⠕⠣⠸⠕⠕⠣⠣⠕⠜⠎⠸⠸⠪⠣⠣⠪⠕⠕⠎⠪⠜⠣⠎⠣⠪⠜⠪⠜⠪⠕⠜⠎⠜⠕⠜⠪⠣⠕⠜⠎⠸⠕⠣⠕⠕⠜⠕⠜⠜⠜⠜⠸⠕⠸⠕⠜⠣ -⠎⠸⠜⠸⠜⠣⠎⠜⠜⠣⠣⠣⠣⠣⠪⠣⠸⠪⠪⠸⠣⠕⠪⠣⠣⠜⠸⠣⠕⠜⠣⠸⠜⠸⠸⠸⠪⠕⠣⠎⠣⠣⠎⠕⠣⠣⠕⠸⠣⠪⠸⠕⠎⠣⠎⠣⠕⠣⠎⠪⠎⠎⠸⠎⠕⠕⠕⠎⠪⠕⠣⠎⠕⠸⠪⠜⠸⠣⠜⠕⠜⠣ -⠎⠸⠪⠪⠣⠎⠣⠣⠕⠎⠪⠕⠣⠎⠸⠸⠜⠜⠎⠎⠸⠕⠕⠸⠪⠎⠕⠕⠎⠪⠎⠪⠕⠪⠜⠣⠜⠸⠪⠜⠣⠎⠕⠸⠣⠎⠣⠎⠕⠎⠸⠎⠸⠸⠎⠜⠪⠪⠸⠪⠜⠕⠜⠜⠸⠸⠜⠪⠪⠸⠜⠎⠕⠎⠣⠣⠕⠣⠪⠪⠎⠕ -⠎⠪⠪⠣⠎⠎⠎⠎⠜⠸⠎⠣⠪⠣⠎⠎⠸⠕⠕⠪⠸⠣⠪⠜⠣⠸⠜⠣⠣⠸⠸⠣⠣⠕⠣⠣⠕⠎⠜⠕⠎⠣⠜⠜⠪⠸⠕⠣⠪⠕⠣⠪⠎⠎⠸⠕⠎⠕⠸⠣⠎⠎⠸⠪⠸⠎⠜⠎⠕⠜⠣⠕⠪⠣⠕⠣⠕⠸⠸⠕⠪⠜ -⠜⠸⠪⠣⠣⠸⠪⠸⠕⠸⠕⠜⠸⠸⠎⠸⠎⠪⠣⠕⠪⠪⠎⠕⠸⠎⠸⠸⠣⠕⠪⠪⠸⠜⠸⠣⠎⠸⠜⠕⠣⠕⠎⠎⠕⠪⠎⠣⠪⠸⠸⠎⠜⠣⠕⠎⠕⠕⠪⠎⠎⠕⠣⠸⠎⠣⠎⠎⠸⠕⠣⠣⠜⠣⠕⠎⠜⠕⠪⠜⠪⠕ -⠪⠸⠎⠸⠪⠎⠕⠕⠜⠸⠕⠪⠪⠪⠪⠕⠣⠜⠸⠣⠪⠪⠪⠜⠪⠸⠪⠪⠪⠕⠸⠣⠸⠎⠕⠕⠪⠕⠕⠪⠕⠣⠎⠕⠎⠕⠣⠸⠣⠕⠕⠣⠪⠕⠣⠕⠸⠪⠎⠸⠸⠜⠜⠎⠎⠜⠜⠸⠪⠣⠜⠜⠕⠪⠎⠎⠜⠸⠕⠜⠕⠕ -⠕⠜⠕⠜⠣⠜⠣⠜⠣⠪⠸⠣⠪⠪⠣⠸⠸⠪⠎⠕⠪⠣⠕⠜⠣⠎⠪⠣⠕⠪⠜⠕⠣⠜⠜⠎⠸⠜⠪⠸⠣⠣⠎⠸⠸⠎⠎⠸⠪⠜⠪⠣⠜⠣⠣⠪⠜⠕⠎⠕⠣⠸⠕⠪⠜⠜⠪⠪⠸⠎⠎⠜⠜⠸⠜⠪⠎⠜⠸⠸⠪⠎ -⠜⠪⠎⠜⠸⠜⠣⠎⠪⠪⠕⠕⠎⠎⠕⠸⠕⠸⠸⠜⠪⠎⠸⠜⠸⠜⠣⠪⠸⠸⠎⠣⠜⠣⠕⠸⠎⠕⠣⠪⠸⠕⠜⠪⠣⠎⠕⠎⠸⠸⠣⠜⠣⠎⠜⠸⠜⠸⠪⠜⠸⠕⠸⠪⠜⠜⠜⠸⠪⠕⠕⠕⠸⠎⠕⠜⠪⠣⠕⠪⠪⠸ -⠕⠕⠣⠕⠪⠎⠎⠪⠜⠎⠣⠪⠣⠣⠣⠎⠣⠸⠕⠪⠸⠣⠸⠣⠸⠕⠸⠕⠎⠜⠪⠣⠜⠕⠪⠎⠪⠕⠪⠣⠸⠕⠸⠜⠕⠪⠸⠣⠎⠸⠣⠕⠎⠣⠪⠪⠪⠕⠸⠜⠪⠸⠕⠎⠕⠣⠕⠜⠕⠣⠸⠸⠎⠪⠪⠜⠕⠪⠪⠎⠎⠸ -⠸⠸⠣⠣⠕⠕⠪⠜⠪⠜⠣⠸⠜⠸⠸⠎⠕⠸⠕⠎⠪⠕⠸⠪⠕⠎⠪⠸⠸⠣⠕⠣⠎⠜⠪⠣⠎⠪⠪⠪⠪⠸⠜⠪⠸⠕⠪⠪⠪⠎⠎⠸⠜⠪⠜⠎⠪⠣⠣⠪⠣⠣⠕⠸⠕⠎⠎⠎⠸⠕⠪⠜⠸⠣⠸⠸⠣⠣⠜⠣⠕⠸ -⠪⠎⠪⠜⠣⠎⠪⠕⠸⠜⠪⠎⠪⠣⠎⠸⠕⠜⠕⠸⠸⠪⠸⠜⠪⠕⠕⠎⠪⠪⠸⠸⠕⠜⠜⠜⠪⠸⠜⠕⠕⠪⠜⠸⠣⠸⠸⠸⠸⠸⠪⠜⠪⠎⠸⠪⠜⠸⠕⠜⠜⠣⠕⠕⠜⠣⠸⠪⠸⠸⠜⠕⠜⠪⠜⠣⠸⠸⠸⠜⠣⠜ -⠢⠅⠡⠅⠊⠊⠑⠡⠑⠢⠊⠑⠅⠊⠅⠑⠅⠌⠡⠅⠅⠅⠢⠅⠢⠢⠊⠅⠑⠊⠌⠌⠅⠢⠅⠊⠑⠑⠌⠊⠢⠑⠢⠌⠢⠊⠢⠊⠊⠑⠌⠑⠌⠊⠊⠡⠑⠢⠌⠑⠊⠅⠡⠑⠢⠢⠡⠌⠡⠅⠅⠢⠊⠌⠡⠑⠅⠢⠑⠡⠢⠑ -⠢⠑⠡⠊⠊⠌⠊⠑⠢⠑⠢⠢⠊⠅⠢⠊⠡⠊⠅⠢⠢⠑⠢⠊⠅⠅⠡⠌⠊⠢⠅⠊⠑⠢⠑⠅⠢⠊⠑⠢⠢⠢⠡⠊⠑⠑⠊⠡⠅⠡⠑⠌⠊⠡⠑⠑⠌⠡⠢⠊⠡⠌⠊⠅⠢⠢⠢⠌⠌⠊⠌⠅⠢⠌⠅⠡⠢⠌⠊⠑⠡⠌ -⠑⠑⠢⠊⠅⠅⠡⠅⠌⠌⠑⠌⠌⠢⠡⠊⠌⠢⠡⠑⠊⠅⠌⠑⠡⠅⠡⠢⠊⠑⠌⠢⠊⠊⠊⠌⠡⠌⠅⠌⠌⠢⠌⠡⠡⠑⠌⠡⠊⠑⠅⠅⠌⠌⠑⠑⠑⠡⠅⠅⠌⠅⠡⠊⠌⠑⠅⠅⠅⠅⠌⠅⠢⠌⠢⠢⠌⠅⠑⠅⠑⠌ -⠊⠡⠢⠑⠊⠅⠡⠢⠌⠡⠌⠢⠡⠢⠅⠑⠅⠊⠌⠢⠡⠅⠊⠡⠅⠊⠑⠌⠊⠑⠅⠢⠑⠅⠅⠊⠅⠑⠌⠊⠌⠌⠡⠢⠡⠡⠡⠊⠊⠢⠅⠢⠌⠅⠅⠌⠑⠡⠌⠅⠌⠅⠅⠅⠅⠡⠢⠡⠡⠊⠡⠡⠊⠑⠑⠌⠡⠑⠅⠅⠑⠡ -⠡⠢⠌⠢⠢⠢⠢⠊⠅⠑⠑⠡⠑⠌⠅⠅⠊⠑⠡⠑⠊⠢⠑⠑⠡⠅⠢⠡⠊⠑⠑⠌⠅⠅⠑⠢⠑⠌⠊⠢⠑⠅⠅⠊⠊⠑⠑⠑⠢⠢⠊⠅⠌⠊⠊⠌⠅⠊⠢⠅⠌⠢⠌⠢⠑⠊⠌⠅⠡⠊⠑⠢⠅⠑⠢⠢⠡⠅⠅⠡⠅⠅ -⠡⠅⠡⠑⠑⠢⠌⠢⠌⠊⠡⠑⠡⠡⠢⠊⠢⠅⠡⠊⠑⠑⠢⠑⠅⠅⠌⠊⠌⠡⠢⠊⠡⠢⠅⠌⠡⠊⠑⠢⠑⠅⠊⠊⠅⠌⠑⠡⠡⠅⠑⠅⠅⠑⠅⠊⠡⠌⠡⠌⠌⠊⠊⠌⠌⠑⠢⠅⠑⠊⠢⠌⠢⠡⠢⠊⠊⠅⠊⠊⠡⠌ -⠊⠅⠊⠡⠢⠊⠅⠊⠢⠊⠑⠑⠌⠢⠡⠅⠊⠑⠅⠅⠅⠢⠌⠅⠑⠅⠑⠌⠅⠢⠌⠊⠌⠅⠊⠅⠢⠊⠊⠑⠊⠡⠌⠌⠢⠡⠑⠢⠊⠊⠅⠅⠡⠡⠌⠌⠡⠌⠅⠊⠡⠅⠌⠑⠌⠌⠅⠡⠡⠢⠡⠊⠢⠢⠌⠊⠌⠌⠌⠅⠡⠡ -⠌⠢⠡⠡⠅⠡⠢⠑⠑⠌⠢⠑⠢⠌⠅⠢⠑⠢⠊⠅⠑⠅⠑⠅⠅⠡⠅⠊⠌⠊⠅⠅⠢⠅⠑⠢⠢⠑⠌⠑⠑⠅⠅⠡⠑⠌⠡⠅⠌⠊⠅⠡⠡⠊⠢⠌⠑⠢⠊⠅⠊⠌⠊⠌⠅⠅⠑⠢⠑⠌⠊⠅⠑⠡⠢⠅⠢⠊⠑⠑⠅⠡ -⠊⠌⠌⠅⠌⠌⠑⠅⠑⠢⠑⠢⠡⠑⠌⠅⠊⠡⠡⠡⠌⠡⠌⠅⠢⠊⠊⠢⠑⠌⠡⠊⠢⠌⠅⠊⠊⠢⠡⠌⠢⠊⠢⠑⠌⠌⠑⠢⠅⠑⠌⠅⠡⠡⠊⠑⠅⠢⠡⠑⠡⠢⠅⠅⠢⠑⠢⠢⠊⠑⠌⠢⠡⠢⠡⠌⠢⠑⠡⠅⠡⠡ -⠅⠑⠅⠢⠡⠊⠊⠌⠑⠌⠢⠑⠊⠡⠅⠅⠑⠊⠊⠑⠊⠅⠡⠢⠊⠌⠑⠢⠊⠢⠢⠅⠑⠢⠌⠊⠑⠌⠢⠊⠊⠅⠌⠑⠊⠌⠡⠢⠅⠢⠢⠢⠢⠡⠊⠢⠊⠡⠅⠡⠢⠌⠅⠢⠌⠡⠡⠊⠑⠅⠅⠅⠡⠢⠌⠊⠑⠢⠅⠢⠡⠅ -⠢⠢⠢⠢⠌⠢⠌⠑⠅⠢⠢⠢⠢⠡⠌⠢⠊⠢⠡⠅⠌⠅⠅⠊⠢⠡⠅⠊⠌⠑⠑⠡⠑⠡⠌⠢⠡⠅⠡⠡⠢⠌⠅⠡⠊⠢⠌⠑⠑⠡⠑⠅⠢⠡⠊⠅⠢⠑⠊⠊⠢⠑⠊⠑⠌⠡⠌⠌⠊⠡⠢⠌⠡⠑⠡⠢⠢⠌⠑⠑⠑⠌ -⠊⠊⠊⠅⠊⠌⠑⠅⠌⠡⠊⠑⠢⠡⠌⠅⠊⠑⠡⠑⠊⠡⠑⠊⠊⠊⠑⠡⠢⠢⠅⠢⠅⠊⠅⠢⠌⠅⠊⠌⠡⠢⠢⠌⠅⠡⠑⠅⠌⠡⠡⠌⠊⠅⠑⠅⠢⠅⠅⠌⠌⠢⠑⠢⠡⠊⠢⠊⠑⠊⠑⠢⠊⠊⠅⠡⠊⠌⠡⠅⠅⠢ -⠢⠅⠑⠊⠡⠑⠅⠑⠢⠢⠢⠡⠅⠢⠊⠊⠡⠊⠅⠡⠢⠡⠡⠌⠅⠌⠢⠅⠑⠊⠢⠊⠢⠅⠊⠌⠡⠢⠅⠡⠢⠡⠌⠑⠊⠊⠡⠊⠊⠊⠅⠑⠅⠊⠢⠑⠡⠌⠌⠡⠊⠌⠌⠢⠡⠡⠅⠅⠡⠑⠅⠡⠑⠅⠑⠌⠅⠢⠡⠅⠢⠡ -⠊⠊⠢⠌⠡⠅⠑⠊⠅⠑⠌⠡⠊⠊⠌⠡⠢⠡⠅⠅⠢⠊⠑⠢⠊⠊⠅⠡⠑⠑⠌⠡⠅⠊⠊⠑⠊⠑⠅⠑⠊⠌⠢⠅⠑⠅⠑⠡⠅⠡⠌⠡⠢⠢⠌⠑⠌⠡⠌⠊⠢⠅⠊⠊⠑⠡⠢⠌⠅⠊⠡⠅⠢⠡⠌⠊⠅⠢⠅⠡⠑⠑ -⠅⠡⠢⠌⠢⠅⠊⠑⠅⠊⠌⠌⠅⠑⠡⠅⠌⠌⠑⠑⠊⠅⠅⠌⠡⠅⠅⠑⠌⠅⠢⠑⠢⠊⠢⠊⠅⠅⠊⠢⠅⠌⠌⠡⠅⠢⠊⠅⠊⠑⠑⠑⠢⠊⠑⠅⠡⠅⠊⠑⠅⠌⠡⠅⠢⠑⠑⠡⠑⠌⠑⠌⠑⠌⠑⠊⠡⠡⠡⠌⠑⠅ -⠁⠠⠐⠄⠐⠄⠂⠁⠐⠁⠐⠐⠂⠐⠄⠠⠐⠄⠂⠂⠐⠁⠁⠁⠐⠐⠐⠂⠐⠁⠠⠄⠐⠠⠁⠐⠁⠐⠐⠐⠠⠄⠐⠐⠂⠁⠐⠐⠐⠐⠠⠐⠠⠂⠐⠐⠠⠁⠠⠐⠂⠠⠄⠂⠄⠐⠁⠠⠁⠐⠐⠐⠐⠁⠐⠂⠐⠐⠐⠄⠁⠐ -⠁⠁⠄⠐⠐⠁⠁⠐⠄⠄⠁⠄⠐⠐⠠⠂⠁⠐⠁⠄⠄⠐⠄⠄⠂⠂⠠⠐⠐⠐⠁⠐⠄⠂⠄⠠⠁⠁⠄⠐⠠⠂⠐⠐⠠⠐⠠⠄⠂⠁⠄⠄⠄⠠⠠⠠⠂⠁⠄⠁⠁⠂⠄⠄⠄⠄⠂⠁⠐⠂⠐⠐⠄⠄⠁⠂⠐⠄⠁⠂⠁⠠ -⠐⠁⠐⠐⠂⠐⠄⠐⠐⠐⠁⠂⠐⠐⠠⠁⠐⠠⠄⠂⠐⠂⠂⠐⠠⠂⠐⠠⠄⠐⠁⠐⠄⠁⠐⠁⠄⠁⠁⠄⠐⠠⠐⠁⠐⠄⠁⠐⠁⠂⠄⠁⠄⠂⠐⠄⠐⠐⠁⠐⠄⠐⠂⠠⠁⠐⠐⠁⠐⠐⠐⠠⠐⠐⠐⠠⠁⠄⠄⠂⠁⠄ -⠁⠠⠐⠁⠐⠐⠠⠄⠐⠐⠠⠂⠂⠐⠂⠄⠄⠂⠂⠠⠐⠂⠐⠠⠐⠐⠁⠁⠄⠁⠠⠐⠂⠁⠄⠠⠐⠐⠐⠂⠠⠐⠐⠄⠠⠁⠠⠐⠐⠂⠐⠄⠠⠐⠄⠁⠐⠁⠂⠐⠠⠠⠐⠄⠠⠄⠐⠐⠄⠂⠄⠂⠐⠐⠠⠁⠠⠂⠐⠐⠁⠂ -⠄⠁⠐⠄⠠⠐⠁⠄⠐⠐⠐⠂⠐⠠⠄⠐⠐⠐⠁⠠⠠⠂⠂⠠⠁⠐⠂⠄⠁⠁⠠⠐⠐⠁⠂⠐⠂⠐⠄⠂⠁⠐⠄⠄⠐⠂⠐⠄⠄⠠⠐⠄⠐⠂⠐⠐⠁⠂⠠⠁⠄⠠⠂⠁⠐⠁⠐⠐⠐⠄⠐⠐⠄⠄⠁⠠⠐⠂⠠⠁⠁⠐ -⠄⠁⠂⠐⠐⠐⠄⠂⠁⠄⠐⠐⠠⠁⠄⠠⠂⠠⠄⠐⠠⠠⠠⠁⠂⠄⠂⠠⠁⠁⠐⠠⠐⠁⠠⠐⠂⠐⠁⠁⠠⠠⠄⠐⠄⠂⠄⠄⠐⠐⠁⠄⠄⠄⠁⠐⠐⠄⠠⠐⠐⠠⠐⠄⠠⠐⠠⠄⠁⠐⠁⠁⠂⠂⠁⠐⠁⠠⠐⠁⠠⠠ -⠠⠁⠄⠂⠂⠐⠂⠐⠂⠐⠄⠐⠐⠐⠄⠁⠠⠐⠠⠄⠂⠐⠁⠄⠠⠄⠐⠂⠁⠐⠂⠁⠠⠐⠐⠄⠠⠐⠂⠐⠁⠐⠁⠁⠐⠐⠠⠄⠐⠄⠁⠁⠂⠐⠠⠂⠠⠂⠠⠄⠠⠐⠂⠐⠄⠁⠄⠄⠁⠠⠠⠐⠐⠐⠂⠄⠐⠁⠁⠐⠐⠠ -⠐⠐⠁⠂⠐⠐⠠⠐⠐⠁⠐⠐⠂⠠⠐⠠⠐⠐⠠⠠⠂⠐⠄⠁⠐⠠⠄⠂⠐⠐⠠⠁⠠⠠⠄⠐⠐⠁⠄⠄⠂⠠⠠⠁⠄⠄⠐⠠⠐⠐⠐⠂⠠⠠⠄⠁⠂⠐⠂⠐⠠⠐⠂⠄⠁⠐⠄⠐⠁⠠⠄⠄⠐⠁⠁⠐⠐⠁⠐⠠⠁⠠ -⠂⠂⠠⠂⠠⠄⠁⠐⠐⠂⠁⠐⠐⠐⠁⠁⠐⠁⠠⠐⠁⠐⠁⠐⠂⠁⠁⠠⠐⠂⠄⠐⠠⠂⠐⠐⠐⠂⠐⠁⠐⠠⠂⠠⠄⠐⠄⠁⠂⠄⠐⠐⠐⠂⠁⠄⠐⠂⠁⠁⠄⠐⠂⠠⠂⠐⠠⠄⠁⠐⠠⠄⠐⠠⠐⠠⠁⠁⠐⠐⠐⠁ -⠄⠠⠁⠄⠐⠁⠐⠂⠐⠂⠐⠄⠐⠄⠂⠁⠐⠠⠁⠐⠠⠁⠐⠠⠐⠄⠄⠂⠐⠐⠐⠠⠠⠐⠄⠠⠐⠠⠐⠄⠐⠠⠐⠄⠐⠠⠂⠄⠐⠐⠄⠐⠐⠐⠐⠐⠁⠐⠁⠁⠐⠐⠂⠠⠐⠠⠐⠄⠄⠁⠐⠠⠄⠐⠐⠄⠄⠐⠂⠁⠐⠐ -⠂⠠⠐⠠⠠⠂⠠⠂⠠⠄⠁⠐⠐⠐⠄⠁⠄⠐⠄⠠⠐⠄⠠⠐⠐⠐⠠⠐⠠⠂⠂⠐⠐⠄⠐⠠⠠⠠⠂⠠⠂⠂⠁⠠⠁⠠⠐⠄⠐⠄⠄⠄⠁⠂⠁⠁⠠⠂⠐⠐⠐⠐⠄⠄⠐⠐⠁⠁⠄⠐⠐⠐⠁⠐⠂⠐⠠⠐⠄⠁⠐⠁ -⠐⠠⠠⠐⠂⠠⠄⠐⠂⠠⠄⠂⠠⠐⠁⠠⠐⠐⠂⠄⠐⠄⠐⠄⠠⠁⠠⠠⠐⠐⠠⠂⠐⠁⠠⠠⠄⠁⠁⠠⠁⠠⠐⠐⠐⠄⠁⠄⠐⠂⠠⠐⠄⠂⠄⠐⠠⠄⠄⠐⠠⠠⠐⠐⠠⠐⠐⠐⠁⠂⠂⠂⠐⠠⠄⠁⠂⠂⠄⠄⠐⠠ -⠄⠄⠐⠁⠂⠠⠠⠐⠁⠂⠐⠐⠐⠂⠠⠐⠠⠁⠐⠂⠁⠄⠐⠂⠁⠁⠐⠐⠐⠐⠐⠐⠂⠁⠂⠐⠄⠠⠄⠠⠐⠠⠐⠐⠄⠁⠐⠠⠂⠠⠐⠐⠠⠂⠐⠐⠐⠂⠂⠂⠐⠐⠠⠁⠄⠂⠁⠐⠂⠠⠂⠐⠄⠐⠄⠂⠄⠄⠠⠠⠐⠐ -⠐⠠⠐⠂⠐⠁⠁⠄⠂⠐⠐⠄⠄⠠⠂⠐⠄⠐⠐⠐⠐⠄⠐⠁⠐⠠⠄⠂⠠⠐⠁⠁⠁⠐⠂⠂⠠⠐⠄⠐⠄⠂⠁⠐⠂⠂⠠⠂⠠⠁⠄⠠⠄⠁⠠⠂⠠⠐⠄⠐⠠⠂⠄⠠⠠⠂⠂⠠⠁⠐⠠⠂⠠⠠⠂⠂⠄⠠⠄⠠⠂⠐ diff --git a/patches/newest patch_floor_rain.txt b/patches/newest patch_floor_rain.txt deleted file mode 100644 index 9e406a1..0000000 --- a/patches/newest patch_floor_rain.txt +++ /dev/null @@ -1,74 +0,0 @@ -================================================================================== -================================================================================== -================================================================================== -================================================================================== -================================================================================== -================================================================================== -=====================================autonomy===================================== -==================================autonomyequality================================ -==================================autonomysocially================================ -===============================sociallymutuallysocially=========================== -============================sociallymutuallyautonomyunderway====================== -============================globallymutuallyAutonomyunderway====================== -==========================Autonomymutuallyequalityunderwayautonomy================ -=========================sociallyautonomysociallyunderwayequality================= -================================================================================== -================================================================================== -================================================================================== -================================================================================== -================================================================================== -==========================================================================mutually -==================================================================autonomyequality -==================================================================humanityautonomy -==========================================================sociallymutuallysocially -==================================================sociallymutuallysociallyunderway -==================================================autonomymutuallyAutonomyunderway -==========================================Autonomymutuallyequalityunderwayautonomy -==========================================sociallyautonomygloballyunderwayequality -=============================================================//===/========//=/==/ -====================================================================//===/====/=// -===========================================================================/===//= -================================================================================== -==========================================================================/======= -================================================================================== -================================================================================== -=============================mutually===============================/============= -==========================autonomyequality====================================/=== -==========================sociallyautonomy======================================== -=======================sociallymutuallysocially========================/========== -====================sociallymutuallysociallyunderway============================== -====================globallymutuallyAutonomyunderway============================== -==================Autonomymutuallyequalityautonomyautonomy======================== -==================sociallyautonomysociallyunderwayequality======================== -========================/////=========//===/====================================== -=========================///======/=============================================== -========================/=/=======//============================================== -======================/=====/===================================================== -========================/========================================================= -================================================================================== -================================================================================== -=======================/============================mutually====================== -==============================================autonomyequality==================== -===========================/==================sociallysocially==================== -===================/======================sociallymutuallysocially================ -========================================sociallymutuallysociallyunderway========== -=====================================sociallymutuallyAutonomyunderway============= -====================================Autonomymutuallyequalityunderwayautonomy====== -==================================autonomyAutonomyautonomysociallyunderwayequality -==================================underwayAutonomyautonomysociallyunderwayequality -==================================sociallyequalityautonomyunderwayunderwayequality -==========================equalityautonomymutuallysociallysociallyunderwayequality -==========================mutuallyautonomyequalitysociallyunderwaymutuallymutually -==========================Autonomyunderwaymutuallysociallyautonomyunderwaysocially -==================sociallymutuallyunderwayautonomyequalityautonomymutuallyAutonomy -==================sociallymutuallyunderwayautonomyequalityautonomymutuallyAutonomy -==========equalitysociallymutuallyunderwayautonomyAutonomyautonomysociallyequality -==========underwayequalitysociallyautonomyautonomyautonomyunderwayequalitysocially -==========underwayAutonomyhumanityautonomygloballyautonomyhumanityequalitysocially -==========underwayequalityautonomyautonomyautonomyautonomyautonomyequalitysocially -========lygloballyequalitysociallyautonomyautonomyautonomyunderwayequalitysocially -========underwayequalitysociallyautonomyautonomygloballyunderwayequalitysociallyhu -========tyunderwayequalitysociallyautonomyautonomyautonomyunderwayequalitysocially -========underwayequalitysociallyautonomyAutonomyautonomyunderwayequalitysociallyau -autonomyunderwayequalitysociallyautonomygloballyautonomyunderwayequalitysociallyso -ygloballyunderwayequalitysociallyautonomygloballyunderwayunderwayequalitysociallya \ No newline at end of file diff --git a/patches/number-patch.txt b/patches/number-patch.txt deleted file mode 100644 index 91a512f..0000000 --- a/patches/number-patch.txt +++ /dev/null @@ -1,74 +0,0 @@ -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -5555555555555555555555555555555555555555555555555555555555555555555555555555555555 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -3333333333333333333333333333333333333333333333333333333333333333333333333333333333 -3333333333333333333333333333333333333333333333333333333333333333333333333333333333 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -4444444444444444444444444444444444444444444444444444444444444444444444444444444444 -4444444444444444444444444444444444444444444444444444444444444444444444444444444444 -4444444444444444444444444444444444444444444444444444444444444444444444444444444444 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -3333333333333333333333333333333333333333333333333333333333333333333333333333333333 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -9999999999999999999999999999999999999999999999999999999999999999999999999999999999 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -9999999999999999999999999999999999999999999999999999999999999999999999999999999999 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -5555555555555555555555555555555555555555555555555555555555555555555555555555555555 -9999999999999999999999999999999999999999999999999999999999999999999999999999999999 -4444444444444444444444444444444444444444444444444444444444444444444444444444444444 -4444444444444444444444444444444444444444444444444444444444444444444444444444444444 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -8888888888888888888888888888888888888888888888888888888888888888888888888888888888 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -9999999999999999999999999999999999999999999999999999999999999999999999999999999999 -9999999999999999999999999999999999999999999999999999999999999999999999999999999999 -4444444444444444444444444444444444444444444444444444444444444444444444444444444444 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -5555555555555555555555555555555555555555555555555555555555555555555555555555555555 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -8888888888888888888888888888888888888888888888888888888888888888888888888888888888 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -3333333333333333333333333333333333333333333333333333333333333333333333333333333333 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -5555555555555555555555555555555555555555555555555555555555555555555555555555555555 -3333333333333333333333333333333333333333333333333333333333333333333333333333333333 -2222222222222222222222222222222222222222222222222222222222222222222222222222222222 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -3333333333333333333333333333333333333333333333333333333333333333333333333333333333 -8888888888888888888888888888888888888888888888888888888888888888888888888888888888 -1111111111111111111111111111111111111111111111111111111111111111111111111111111111 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -8888888888888888888888888888888888888888888888888888888888888888888888888888888888 -5555555555555555555555555555555555555555555555555555555555555555555555555555555555 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -8888888888888888888888888888888888888888888888888888888888888888888888888888888888 -7777777777777777777777777777777777777777777777777777777777777777777777777777777777 -0000000000000000000000000000000000000000000000000000000000000000000000000000000000 -6666666666666666666666666666666666666666666666666666666666666666666666666666666666 -9999999999999999999999999999999999999999999999999999999999999999999999999999999999 diff --git a/patches/patchclara.txt b/patches/patchclara.txt deleted file mode 100644 index ed597a1..0000000 --- a/patches/patchclara.txt +++ /dev/null @@ -1,74 +0,0 @@ -(ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you(ノ゜-゜) -yeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you(ノ ̄o ̄)ノyou se - me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see y -u....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yea - i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you s -e me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see yo -( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜- -)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do -you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...yo - see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you s -e me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see -me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see m -?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me -ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me? -( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me? -(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me? -( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me -ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see m -?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see -me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you s -e me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...yo - see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do -you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜- -)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see yo -( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you s -e me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yea - i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see y -u....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou se - me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜) -yeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you -(ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see y -u (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah -i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ( --゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you -ee me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you see me?(゜ -゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i -see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see -you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄) -you see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you - (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yea - i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see -e?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o -)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you.... -ou see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou -ee me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you - (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)ye -h i see you (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you -ee me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see -you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i s -e you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you - (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)y -ah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do y -u see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....y -u see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノ -ou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i s -e you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you se - me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you....you -ee me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you (ノ ̄o ̄)ノy -u see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i -ee you (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you -see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah i see you... -you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you ( - ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you - (ノ゜-゜)ノyeah i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ -)yeah i see you (ノ ̄o ̄)ノyou see me?....yeah i see you - ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i see you (ノ゜-゜)ノyeah -i see you....you see me?(゜-゜)...you see me?ノ(゜-゜ノ)yeah i see you - (ノ ̄o ̄)ノyou see me?....yeah i see you( ̄o ̄)do you see me?ノ( ̄o ̄ノ)yeah i \ No newline at end of file diff --git a/patches/patcherico_new.txt b/patches/patcherico_new.txt deleted file mode 100644 index 3d0e966..0000000 --- a/patches/patcherico_new.txt +++ /dev/null @@ -1,74 +0,0 @@ - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/s -c) NotebookApp.rate_limit_window=3.😡 (sec🍬) 🗣 IOPub data r -te exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.r -te_limit_window=3.😡 (sec🍬) 🗣 IOPub data rate exceeded. No -ebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window -3.😡 (sec🍬) 🗣 IOPub data rate exceeded. NotebookApp.iopub -data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_lim -t=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 -bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) 🗣 -IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) -otebookApp.rate_limit_window=3.😡 (sec🍬) 🗣 IOPub data -rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp -rate_limit_window=3.😡 (sec🍬) 🗣 IOPub data rate exce -ded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limi -_window=3.😡 (sec🍬) 🗣 IOPub data rate exceeded. Not -bookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window= -.😡 (sec🍬) 🗣 IOPub data rate exceeded. NotebookApp -iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec -) 🗣 IOPub data rate exceeded. NotebookApp.iopub_ -ata_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_r -te_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_l -mit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit -1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡 -😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡 -😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡 -😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡 -😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡 -😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡 -😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit -1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_l -mit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_r -te_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_ -ata_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp -iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec -) 🗣 IOPub data rate exceeded. Not -bookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window= -.😡 (sec🍬) 🗣 IOPub data rate exce -ded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limi -_window=3.😡 (sec🍬) 🗣 IOPub data -rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp -rate_limit_window=3.😡 (sec🍬) 🗣 -IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) -otebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 -bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_lim -t=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub -data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. No -ebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window -3.😡 (sec🍬) 🗣 IOPub data r -te exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.r -te_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit=1😡😡😡😡😡😡.😡 (bytes/s -c) NotebookApp.rate_limit_window=3.😡 (sec🍬) - 🗣 IOPub data rate exceeded. NotebookApp.iopub_data_rate_limit= -😡😡😡😡😡😡.😡 (bytes/sec) NotebookApp.rate_limit_window=3.😡 (sec🍬) \ No newline at end of file diff --git a/patches/patchericoforthefuture.txt b/patches/patchericoforthefuture.txt deleted file mode 100644 index c5e2b92..0000000 --- a/patches/patchericoforthefuture.txt +++ /dev/null @@ -1,74 +0,0 @@ -ACROSS THE LANGUAGES ACROSS THERE WORLD WORLD NINE SIX SIX LANGUAGES THO -USAND THE ARE MORE ARE ARE ARE HUNDRED WORLD NINE WORLD THOUSAND THOUSA -ND ARE ACROSS HUNDRED MORE HUNDRED NINE SIX THERE LANGUAGES WORLD THOUSA -ND SIX WORLD WORLD ARE LANGUAGES THAN NINE NINE WORLD NINE ARE ARE WOR -LD ACROSS ARE THOUSAND THAN LANGUAGES ACROSS MORE WORLD LANGUAGES SIX WO -RLD WORLD ACROSS LANGUAGES NINE ACROSS THOUSAND NINE WORLD SIX THERE SIX - THOUSAND SIX MORE LANGUAGES SIX LANGUAGES ARE ACROSS NINE HUNDRED SIX -SIX THAN NINE SIX THERE NINE ACROSS THAN LANGUAGES SIX ARE ACROSS THE -ACROSS THERE SIX SIX SIX HUNDRED MORE THAN THE HUNDRED ACROSS MORE THOU -SAND MORE WORLD HUNDRED WORLD SIX WORLD WORLD SIX MORE THAN THOUSAND TH -OUSAND ARE NINE NINE MORE THE LANGUAGES MORE THOUSAND MORE NINE THERE M -ORE HUNDRED LANGUAGES NINE THOUSAND THERE HUNDRED THAN MORE HUNDRED THOUS -AND NINE HUNDRED WORLD ACROSS HUNDRED THE THOUSAND HUNDRED WORLD SIX ACR -OSS THOUSAND SIX THOUSAND MORE SIX ARE THERE NINE NINE NINE THOUSAND AC -ROSS THERE SIX NINE WORLD THERE ACROSS WORLD ACROSS THOUSAND SIX ACROSS - LANGUAGES THERE THERE THE LANGUAGES NINE THERE SIX MORE ACROSS LANGUAGES - MORE THOUSAND MORE NINE MORE HUNDRED HUNDRED MORE WORLD NINE MORE WORL -D WORLD NINE NINE NINE SIX HUNDRED MORE HUNDRED MORE WORLD THOUSAND WOR -LD NINE THE LANGUAGES THOUSAND ACROSS HUNDRED WORLD WORLD THERE LANGUAGES - THE ACROSS MORE SIX SIX THAN THAN LANGUAGES HUNDRED THERE ARE ACROSS -NINE SIX LANGUAGES WORLD THERE SIX LANGUAGES MORE WORLD THOUSAND THERE S -IX NINE MORE THERE MORE MORE LANGUAGES WORLD THOUSAND MORE WORLD WORLD -THOUSAND SIX MORE MORE THOUSAND THE WORLD HUNDRED WORLD MORE THOUSAND NI -NE THOUSAND THERE LANGUAGES ACROSS MORE LANGUAGES THERE ACROSS HUNDRED TH -OUSAND THAN LANGUAGES LANGUAGES MORE THOUSAND SIX MORE SIX WORLD SIX WOR -LD WORLD THAN SIX ARE ACROSS THERE SIX HUNDRED WORLD THERE MORE THERE -WORLD HUNDRED LANGUAGES THOUSAND THE THERE SIX THAN HUNDRED SIX HUNDRED -HUNDRED MORE THERE THERE WORLD SIX LANGUAGES NINE ARE THOUSAND ACROSS LA -NGUAGES NINE MORE NINE SIX HUNDRED LANGUAGES NINE ARE WORLD HUNDRED NINE - THE HUNDRED LANGUAGES MORE LANGUAGES SIX NINE THAN ACROSS THOUSAND THOU -SAND ACROSS NINE THAN NINE SIX THE THOUSAND MORE LANGUAGES HUNDRED SIX -NINE THE MORE LANGUAGES THE ACROSS ACROSS SIX NINE SIX SIX THAN MORE N -INE MORE SIX WORLD LANGUAGES HUNDRED WORLD ARE SIX THOUSAND WORLD THERE - THERE HUNDRED WORLD LANGUAGES LANGUAGES THAN THAN MORE THAN THOUSAND SIX - WORLD WORLD THERE THE THOUSAND THERE THERE NINE MORE THE ACROSS NINE -ACROSS WORLD MORE ARE WORLD MORE LANGUAGES MORE LANGUAGES ARE WORLD MORE - THOUSAND ACROSS SIX THERE SIX SIX MORE HUNDRED THERE SIX THE HUNDRED -HUNDRED THOUSAND NINE HUNDRED LANGUAGES THERE ARE LANGUAGES THE THOUSAND -MORE SIX THAN ACROSS SIX THE NINE THOUSAND THERE LANGUAGES WORLD THOUSAN -D THE NINE SIX HUNDRED WORLD HUNDRED HUNDRED NINE NINE THE LANGUAGES TH -ERE WORLD MORE LANGUAGES LANGUAGES ARE THAN LANGUAGES ARE SIX ACROSS WOR -LD THE LANGUAGES ACROSS NINE NINE ARE NINE SIX THOUSAND THAN SIX THERE - ACROSS LANGUAGES THOUSAND WORLD HUNDRED HUNDRED HUNDRED THOUSAND ACROSS W -ORLD THOUSAND LANGUAGES NINE WORLD ACROSS THERE LANGUAGES THOUSAND WORLD -SIX LANGUAGES THAN MORE ACROSS THERE SIX SIX MORE THOUSAND SIX WORLD SI -X THOUSAND NINE HUNDRED MORE NINE WORLD THAN ACROSS THE MORE MORE LANGU -AGES MORE MORE HUNDRED THERE ACROSS NINE THAN LANGUAGES THE LANGUAGES WO -RLD THERE WORLD THOUSAND LANGUAGES NINE SIX LANGUAGES THOUSAND MORE THERE - LANGUAGES LANGUAGES SIX THERE LANGUAGES ARE WORLD THERE WORLD WORLD ARE - NINE THERE LANGUAGES THOUSAND WORLD ACROSS ACROSS NINE LANGUAGES LANGUAG -ES THOUSAND THE WORLD LANGUAGES NINE LANGUAGES NINE HUNDRED WORLD ARE NI -NE HUNDRED HUNDRED THAN HUNDRED SIX LANGUAGES SIX THAN THAN ARE ARE LAN -GUAGES HUNDRED ACROSS THAN SIX THOUSAND THE ARE THOUSAND HUNDRED MORE HU -NDRED THERE NINE THOUSAND MORE THOUSAND THOUSAND HUNDRED WORLD WORLD WORL -D WORLD WORLD THOUSAND WORLD THAN NINE SIX THERE SIX SIX LANGUAGES THOU -SAND WORLD THAN MORE THAN MORE LANGUAGES ARE NINE MORE NINE THOUSAND LA -NGUAGES HUNDRED ARE WORLD HUNDRED ACROSS HUNDRED SIX MORE NINE SIX SIX -LANGUAGES WORLD WORLD LANGUAGES NINE THE THERE HUNDRED THOUSAND SIX SIX -LANGUAGES SIX THAN THOUSAND NINE NINE LANGUAGES THOUSAND WORLD THERE THER -E MORE NINE LANGUAGES SIX HUNDRED THERE LANGUAGES LANGUAGES WORLD THOUSAN -D LANGUAGES MORE WORLD THOUSAND THAN SIX ARE LANGUAGES THOUSAND WORLD HU -NDRED SIX SIX MORE WORLD ACROSS THAN HUNDRED THERE ACROSS SIX SIX ARE -LANGUAGES WORLD SIX NINE THOUSAND ARE MORE THAN THOUSAND THAN WORLD SIX - WORLD MORE NINE THOUSAND NINE NINE THAN LANGUAGES MORE ARE ACROSS SIX -WORLD MORE MORE WORLD SIX HUNDRED SIX WORLD THE LANGUAGES WORLD SIX SIX - THOUSAND THOUSAND ACROSS THOUSAND SIX ACROSS ACROSS WORLD ARE NINE MORE - THOUSAND THAN THERE ARE THOUSAND NINE ARE THOUSAND NINE THERE SIX THER -E LANGUAGES THOUSAND MORE HUNDRED THOUSAND THERE THOUSAND THOUSAND THAN W -ORLD HUNDRED THERE MORE THE ARE THAN LANGUAGES MORE THERE SIX THOUSAND -MORE HUNDRED NINE HUNDRED MORE SIX NINE WORLD HUNDRED HUNDRED THERE LANG -UAGES MORE HUNDRED NINE ACROSS NINE THAN LANGUAGES THE THAN SIX LANGUAGE -S THOUSAND SIX THERE THAN THERE SIX THOUSAND THOUSAND THOUSAND ACROSS HU -NDRED ACROSS MORE SIX HUNDRED THERE LANGUAGES THE MORE WORLD LANGUAGES A -RE LANGUAGES THE THE WORLD THERE HUNDRED ACROSS NINE NINE LANGUAGES HUND \ No newline at end of file diff --git a/patches/punctuationflag.txt b/patches/punctuationflag.txt deleted file mode 100644 index 38f33ee..0000000 --- a/patches/punctuationflag.txt +++ /dev/null @@ -1,74 +0,0 @@ -.................................................................................. -. | $ ^ / ( L * | | . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. W 0 " S } V @ $ $ $. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. # F = : + < \ ^ ^ . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. [ 1 T | $ ^ / / / /. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. ( L * W 0 " S ( ( . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. } V @ # F = : L L L. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. + < \ [ 1 T | * * . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. $ ^ / ( L * W W W W. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. 0 " S } V @ # 0 0 . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. F = : + < \ [ " " ". -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. 1 T | $ ^ / ( S S . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. L * W 0 " S } } } }. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. V @ # F = : + V V . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. < \ [ 1 T | $ @ @ @. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. ^ / ( L * W 0 # # . -. . . . . . . . A Rigged Election. A Rigged Election. A Rigged . -. . -. " S } V @ # F F F F. -. . . . . . . . Election. A Rigged Election. A Rigged Election.. -. . -. = = = = . -.tion. A Rigged Election. A Rigged Election. A Rigged Election. A Rigged . -. . -. : : : :. -. Rigged Election. A Rigged Election. A Rigged Election. A Rigged Election.. -. . -. + + + + . -.tion. A Rigged Election. A Rigged Election. A Rigged Election. A Rigged . -. . -. < < < <. -. Rigged Election. A Rigged Election. A Rigged Election. A Rigged Election.. -. . -. \ \ \ \ . -.tion. A Rigged Election. A Rigged Election. A Rigged Election. A Rigged . -. . -. [ [ [ [. -. Rigged Election. A Rigged Election. A Rigged Election. A Rigged Election.. -. . -. 1 1 1 1 . -.tion. A Rigged Election. A Rigged Election. A Rigged Election. A Rigged . -. . -. T T T T. -. Rigged Election. A Rigged Election. A Rigged Election. A Rigged Election.. -. . -.................................................................................. \ No newline at end of file diff --git a/patches/shape-patch.txt b/patches/shape-patch.txt deleted file mode 100644 index dd334a7..0000000 --- a/patches/shape-patch.txt +++ /dev/null @@ -1,74 +0,0 @@ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚▚ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ -▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉▉ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ -▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞▞ -▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓ \ No newline at end of file diff --git a/pdf-ascii-quilting/ASCII-canvas-to-PDF.ipynb b/pdf-ascii-quilting/ASCII-canvas-to-PDF.ipynb new file mode 100644 index 0000000..480f90d --- /dev/null +++ b/pdf-ascii-quilting/ASCII-canvas-to-PDF.ipynb @@ -0,0 +1,355 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ASCII Canvas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "(using Reportlab to export it as a PDF)" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "width = 75\n", + "height = 65" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "multipage = False" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n" + ] + } + ], + "source": [ + "# Simple fill-up of a page, to set the reach of our canvas\n", + "lines = [] # All the lines will be stored here\n", + "\n", + "for linenumber in range(height):\n", + " line = 'x' * width\n", + " lines.append(line)\n", + "\n", + "print('\\n'.join(lines))" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TuringcompleteTuringcompleteTuringcompleteTuringcompleteTuringcomplete\n", + "isisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisis\n", + "thanthanthanthanthanthanthanthanthanthanthanthanthanthanthanthanthanthan\n", + "givinggivinggivinggivinggivinggivinggivinggivinggivinggivinggivinggiving\n", + "OulipoOulipoOulipoOulipoOulipoOulipoOulipoOulipoOulipoOulipoOulipoOulipo\n", + "(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or(or\n", + "ideographic-pictorialideographic-pictorialideographic-pictorial\n", + "andandandandandandandandandandandandandandandandandandandandandandandandand\n", + "parts.parts.parts.parts.parts.parts.parts.parts.parts.parts.parts.parts.\n", + "converseconverseconverseconverseconverseconverseconverseconverseconverse\n", + "forforforforforforforforforforforforforforforforforforforforforforforforfor\n", + "MyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMyMy\n", + "performperformperformperformperformperformperformperformperformperform\n", + "“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a“a\n", + "whateverwhateverwhateverwhateverwhateverwhateverwhateverwhateverwhatever\n", + "becomebecomebecomebecomebecomebecomebecomebecomebecomebecomebecomebecome\n", + "complicatecomplicatecomplicatecomplicatecomplicatecomplicatecomplicate\n", + "typicallytypicallytypicallytypicallytypicallytypicallytypicallytypically\n", + "ButButButButButButButButButButButButButButButButButButButButButButButButBut\n", + "sincesincesincesincesincesincesincesincesincesincesincesincesincesincesince\n", + "ofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofof\n", + "likelikelikelikelikelikelikelikelikelikelikelikelikelikelikelikelikelike\n", + "notnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnotnot\n", + "ofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofof\n", + "ititititititititititititititititititititititititititititititititititititit\n", + "computercomputercomputercomputercomputercomputercomputercomputercomputer\n", + "misperceivesmisperceivesmisperceivesmisperceivesmisperceivesmisperceives\n", + "Java,Java,Java,Java,Java,Java,Java,Java,Java,Java,Java,Java,Java,Java,Java,\n", + "anotheranotheranotheranotheranotheranotheranotheranotheranotheranother\n", + "tototototototototototototototototototototototototototototototototototototo\n", + "controlcontrolcontrolcontrolcontrolcontrolcontrolcontrolcontrolcontrol\n", + "computercomputercomputercomputercomputercomputercomputercomputercomputer\n", + "metaphoricallymetaphoricallymetaphoricallymetaphoricallymetaphorically\n", + "andandandandandandandandandandandandandandandandandandandandandandandandand\n", + "thethethethethethethethethethethethethethethethethethethethethethethethethe\n", + "significance.significance.significance.significance.significance.\n", + "ininininininininininininininininininininininininininininininininininininin\n", + "sincesincesincesincesincesincesincesincesincesincesincesincesincesincesince\n", + "bebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebe\n", + "purepurepurepurepurepurepurepurepurepurepurepurepurepurepurepurepurepure\n", + "asasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasas\n", + "inputinputinputinputinputinputinputinputinputinputinputinputinputinputinput\n", + "lesslesslesslesslesslesslesslesslesslesslesslesslesslesslesslesslessless\n", + "structures—semanticstructures—semanticstructures—semantic\n", + "can’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’tcan’t\n", + "isisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisis\n", + "isisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisis\n", + "functionsfunctionsfunctionsfunctionsfunctionsfunctionsfunctionsfunctions\n", + "shape,shape,shape,shape,shape,shape,shape,shape,shape,shape,shape,shape,\n", + "namenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamename\n", + "atatatatatatatatatatatatatatatatatatatatatatatatatatatatatatatatatatatatat\n", + "ininininininininininininininininininininininininininininininininininininin\n", + "isisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisisis\n", + "ofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofof\n", + "thethethethethethethethethethethethethethethethethethethethethethethethethe\n", + "humanshumanshumanshumanshumanshumanshumanshumanshumanshumanshumanshumans\n", + "terminals,terminals,terminals,terminals,terminals,terminals,terminals,\n", + "meaningmeaningmeaningmeaningmeaningmeaningmeaningmeaningmeaningmeaning\n", + "appropriatedappropriatedappropriatedappropriatedappropriatedappropriated\n", + "asasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasasas\n", + "thatthatthatthatthatthatthatthatthatthatthatthatthatthatthatthatthatthat\n", + "bebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebebe\n", + "ononononononononononononononononononononononononononononononononononononon\n", + "DigitalDigitalDigitalDigitalDigitalDigitalDigitalDigitalDigitalDigital\n", + "ofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofofof\n" + ] + } + ], + "source": [ + "# Another way to fill-up the page\n", + "import random \n", + "\n", + "lines = []\n", + "\n", + "txt = open('txt/language.txt', 'r').read()\n", + "words = txt.split()\n", + "\n", + "for linenumber in range(height):\n", + " word = random.choice(words)\n", + " length_of_word = len(word)\n", + " nr_of_words_fit_in_line = width / length_of_word\n", + " line = word * int(nr_of_words_fit_in_line)\n", + " lines.append(line)\n", + " \n", + "print('\\n'.join(lines))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "# Same as above + a \"switch\" to make multipaged PDFs\n", + "import random \n", + "\n", + "multipage = True\n", + "number_of_pages = 100\n", + "\n", + "lines = []\n", + "pages = []\n", + "\n", + "txt = open('txt/language.txt', 'r').read()\n", + "words = txt.split()\n", + "\n", + "for page in range(number_of_pages):\n", + " \n", + " for linenumber in range(height):\n", + " word = random.choice(words)\n", + " length_of_word = len(word)\n", + " nr_of_words_fit_in_line = width / length_of_word\n", + " line = word * int(nr_of_words_fit_in_line)\n", + " lines.append(line)\n", + " \n", + " # Add a page\n", + " pages.append(lines)\n", + " lines = []\n", + "\n", + "for page in pages:\n", + " print('\\n'.join(page))\n", + " print('-' * width)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exporting with Reportlab" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "from reportlab.pdfgen.canvas import Canvas\n", + "from reportlab.lib.pagesizes import A4\n", + "from reportlab.lib.units import mm\n", + "\n", + "pagewidth = 210*mm\n", + "pageheight = 297*mm\n", + "\n", + "c = Canvas(\"ASCII-canvas-to-PDF.pdf\", pagesize=(pagewidth, pageheight), bottomup=0)\n", + "c.setFont('Courier', 12)\n", + "\n", + "start_y = 10*mm # start position of the lines\n", + "\n", + "y = start_y\n", + "lineheight = 4*mm\n", + "\n", + "if multipage == True:\n", + " for page in pages:\n", + " for line in page:\n", + " c.drawCentredString(pagewidth/2, y, line)\n", + " y += lineheight\n", + " c.showPage()\n", + " y = start_y\n", + "else:\n", + " for line in lines:\n", + " c.drawCentredString(pagewidth/2, y, line)\n", + " y += lineheight\n", + " \n", + "c.save()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/pdf-ascii-quilting/ASCII-patch-making.ipynb b/pdf-ascii-quilting/ASCII-patch-making.ipynb new file mode 100644 index 0000000..eedadf8 --- /dev/null +++ b/pdf-ascii-quilting/ASCII-patch-making.ipynb @@ -0,0 +1,406 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ASCII Patch-making" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Fixed parameters" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "metadata": {}, + "outputs": [], + "source": [ + "characters = 82 # width\n", + "rows = 74 # height" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Patch 1: random shapes\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "\n", + "lines = []\n", + "shapes = ['░','▒','▓','▉','▚','▞']\n", + "\n", + "for linenumber in range(rows):\n", + " line = ''\n", + " for c in range(characters):\n", + " line += random.choice(shapes)\n", + " lines.append(line)\n", + "\n", + "patch = '\\n'.join(lines)\n", + "print(patch)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Patch 2: random numbers" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lines = []\n", + "\n", + "import random\n", + "numbers = ['0','1','2','3','4','5','6','7','8','9']\n", + "\n", + "for linenumber in range(rows):\n", + " line = random.choice(numbers) * characters\n", + " lines.append(line)\n", + "\n", + "print('\\n'.join(lines))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Patch 3: -ing words, from Words for the Future\n" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "metadata": {}, + "outputs": [], + "source": [ + "# Collect all words of the Words for the future publications\n", + "\n", + "folder = 'txt/words-for-the-future/'\n", + "files = os.listdir(folder)\n", + "# print(files)\n", + "\n", + "bag = []\n", + "\n", + "for file in files:\n", + " \n", + " txt = open(folder+file).read()\n", + " words = txt.split()\n", + " \n", + " for word in words:\n", + " \n", + " word = word.strip()\n", + " word = word.lower()\n", + " \n", + " if word.endswith('ing'):\n", + " \n", + " bag.append(word)\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['refusing', 'affecting', 'understanding', '‘burning', 'listening', 'reclaiming', 'ongoing', 'threatening', 'including', 'living', 'something', 'defending', 'cascading', 'interconnecting', 'facing', 'something', 'reworlding', 'devastating', 'reworlding', 'freeing', 'verifying', 'entailing', 'turning', 'affirming', 'including', 'taking', 'going', 'forgetting', 'resurrecting', 'reinventing', 'challenging', 'defining', 'uniting', 'belonging', '[b]getting', 'meaning', 'doing', 'destroying', 'protesting', 'mobilizing', 'obtaining', 'achieving', 'thing', 'devastating', 'holding', 'empowering', 'trying', 'caring', 'including', 'contaminating', 'reducing', 'feeling', 'deserting', 'protesting', '[b]making', 'addressing', 'diverging', 'dismembering', 'betraying', 'learning', 'reclaiming', 'consensus-making', 'giving', 'convoking', 'giving', 'everything', 'everything', 'being', 'refusing', 'playing', 'holding', 'something', 'partnering', 'composing', 'weaving', 'competing', 'having', 'weaving', 'living', 'emphasizing', 'worlding', 'mobilizing', 'becoming', 'losing', 'conquering', 'including', 'relinquishing', 'challenging', 'learning', 'tsing', 'paying', 'trusting', 'inviting', 'consenting', 'tsing', 'unravelling', 'weaving', 'trusting', 'relying', 'overbearing', 'including', 'stepping', 'conquering', 'interesting', 'enlightening', 'defining', 'weaving', 'weaving', 'having', 'having', 'sing', 'consenting', 'trusting', 'knowing', 'weaving', 'telling', 'learning', 'ongoing', 'concerning', 'daring', 'reclaiming', 'living', 'dying', 'standing', 'condescending', 'refusing', 'opting', 'sustaining', 'composing', 'learning', 'weaving', 'being', 'participating', 'contributing', 'giving', 'adding', '[i]dreaming', 'following', 'giving', 'affecting', 'living', 'learning', 'living', 'devastating', 'affecting', 'creating', 'poisoning', 'developing', 'living', 'cultivating', 'according', 'recovering', 'bio-diversifying', 'bringing', 'living', 'according', 'living', 'beating', 'representing', 'protecting', 'representing', 'understanding', 'banning', 'bring', 'beginning', 'something', 'everything', 'beginning', 'showing', 'bearing', 'giving', 'giving', 'taking', 'offering', 'offering', 'offering', 'covering', 'astonishing', 'living', 'living', 'representing', 'living', 'asking', 'living', 'referring', 'supporting', 'crying', 'supporting', 'keeping', 'demanding', 'protecting', 'understanding', 'offering', 'being', 'living', 'representing', 'surrounding', 'affecting', 'achieving', 'during', 'spraying', 'killing', 'producing', 'spoiling', 'regarding', 'recovering', 'mixing', 'creating', 'working', 'deciding', '“endangering', 'hiding', 'being', 'according', 'contaminating', 'doing', '“endangering', 'keeping', 'having', 'having', 'farming', 'importing', 'competing', 'endangering', 'losing', 'working', 'creating', 'looking', 'migrating', 'trying', 'nothing', 'nothing', 'touching', 'knowing', 'keeping', 'getting', 'something', 'preparing', 'offering', 'offering', 'keeping', 'cultivating', 'growing', 'harvesting', 'healing', 'learning', 'keeping', 'appropriating', 'living', 'living', 'something', 'finding', 'conserving', 'taking', 'keeping', 'growing', 'renewing', 'reinforcing', 'organizing', 'sharing', 'offering', 'taking', '(inter)acting', 'living', 'affecting', 'ignoring', 'developing', 'dealing', 'dealing', 'addressing', 'ending', 'living', 'feeding', 're-learning', 'living', 'multiplying', 'bringing', 'understanding', 'watching', 'knowing', 'understanding', 'being', 'involving', 'multiplying', 'producing', 'embracing', 'bringing', 'living', 'sharing', 'something', 'withdrawing', 'cancelling', 'being', 'losing', 'something', 'carrying', 'choosing', 'stepping', 'framing', 'mediating', 'investigating', 'bring', 'entering', 'creating', 'during', 'preserving', 'ongoing', 'multiplying', 'according', 'destabilising', 'conflicting', 'remaining', 'generating', 'connecting', 'connecting', 'being', 'understanding', 'mediating', 'conflicting', 'operating', 'inhabiting', 'being', 'glimmering', 'instituting', 'unfolding', 'acknowledging', 'creating', 'spring', 'preserving', 'curating', 'setting', 'being', 'positioning', 'leaving', 'reenacting', 'morning', 'crying', 'wondering', 'growing', 'something', 'giving', 'longing', 'expressing', 'displaying', 'saying', 'growing', 'believing', 'longing', 'submitting', 'being', 'something', 'believing', 'convincing', 'saying', 'feeling', 'expressing', 'confirming', 'producing', 'stating', 'understanding', 'being', 'expressing', 'rejecting', 'expecting', 'accepting', 'realizing', 'acknowledging', 'becoming', 'understanding', 'expressing', 'having', 'telling', 'allowing', 'something', 'describing', 'having', 'working', 'noticing', 'thing', 'celebrating', 'comparing', 'rating', 'locking', 'describing', 'recalling', 'finalizing', 'presenting', 'something', 'thinking', 'trying', 'something', 'something', 'living', 'bugging', 'killing', 'using', 'drawing', 'experiencing', 'having', 'feeling', 'hearing', 'speaking', 'being', 'questioning', 'questioning', '(well-)being', 'crediting', 'making', 'paying', 'noticing', 'noticing', 'realizing', 'benefiting', 'using', 'something', 'standing', 'releasing', 'trying', 'taking', 'looking', 'noticing', 'noticing', 'noticing', 'noticing', 'ageing', 'thing', 'unwilling', 'underlining', 'gaining', 'passing', 'expecting', 'tsing', 'celebrating', 'displaying', 'something', 'feeling', 'inserting', 'claiming', 'deadening', 'meaning', 'living', 'during', 'feeling', 'ongoing', 'journeying', 'awaiting', 'interesting', 'hurting', 'using', 'managing', 'getting', 'something', 'living', 'getting', 'living', 'living', 'nothing', 'being', 'experiencing', 'enduring', 'being', 'getting', 'living', 'living', 'landing', 'believing', 'waiting', 'awaiting', 'awaiting', 'deadening', 'becoming', 'claiming', 'promising', 'understanding', 'running', 'making', 'running', 'trying', 'getting', 'talking', 'listening', 'allowing', 'everything', 'something', 'upbringing', 'listening', 'taking', 'using', 'using', 'speaking', 'finding', 'encountering', 'ignoring', 'considering', 'nothing', 'pretending', 'acknowledging', 'naming', 'something', 'reproducing', 'using', 'pretending', 'managing', 'during', 'imagining', 'fostering', 'publishing', 'coming', 'lasting', 'during', 'unifying', 'worrying', 'unifying', 'acquiring', 'learning', 'failing', 'publishing', 'disseminating', 'activating', 'translating', 'doing', 'building', 'bringing', 'consuming', 'changing', 'improving', 'encouraging', 'turning', 'bring', 'pursuing', 'reading', 'sharing', 'expressing', 'seeing', '“reading', 'putting', 'venturing', 'marketing', 'exhausting', 'creating', 'growing', 'storytelling', 'sharing', 'learning', 'teaching', 'executing', 'growing', 'adapting', 'working', 'sharing', 'imagining', 'having', 'ongoing', 'respecting', 'using', 'celebrating', 'taking', 'making', 'looking', 'funding', 'developing', 'nausea-inducing', 'understanding', 'defining', 'befriending', 'speaking', 'different-looking', 'going', 'during', 'hanging', 'burning', 'thinking', 'gaining', 'expending', 'learning', 'creating', 'learning', 'talking', 'something', 'happening', 'playing', 'swinging', 'stabbing', 'swinging', 'talking', 'dropping', 'starting', 'glancing', 'quasi-stabbing', 'underscoring', 'non-life-threatening', 'believing', 'piercing', 'pointing', 'giving', 'making', 'something', 'eating', 'speaking', 'everything', 'affecting', 'enveloping', 'during', 'submitting', 'boring', 'experiencing', 'working', 'removing', 'embracing', 'encompassing', 'being', 'talking', 'contemplating', 'getting', 'preserving', 'constructing', 'shifting', 'providing', 'thinking', 'falling', 'advertising', 'encompassing', 'talking', 'experiencing', 'pushing', 'visualizing', 'hankering', 'slamming', 'shouting', 'arguing', 'frightening', 'everything', 'nothing', 'trending', 'arm-wrestling', 'wondering', 'anything', 'pleading', 'speaking', 'commenting', 'drinking', 'thriving', 'understanding', 'leaving', 'something', 'interesting', 'moving', 'quoting', 'writing', 'arguing', 'including', 'heading', 'devoting', 'signalling', 'being', 'being', 'feeling', 'getting', 'something', 'asking', 'understanding', 'being', 'living', 'thinking', 'representing', 'devastating', 'composing', 'building', 'living', 'missing', 'taking', 'something', 'surprising', 'circulating', 'talking', 'overarching', 'spreading', 'growing', 'reflecting', 'compiling', 'ongoing', 'whirling', 'reflecting', 'paying', 'seeing', 'being', 'perceiving', 'going', 'seeing', 'bring', 'echoing', 'being', 'putting', 'making', 'revitalizing', 'regarding', 'forgetting', 'promising', 'threatening', 'seeing', 'remembering', 'disguising', 'nothing', 'taking', 'uprising', 'willing', 'being', 'embracing', 'understanding', 'focusing', 'meaning', 'existing', 'reviving', 'drawing', 'competing', 'overcoming', 'drawing', 'opposing', 'transforming', 'instituting', 'opposing', 'understanding', 'existing', 'something', 'bring', 'going', 'recognizing', 'embracing', 'right-wing', 'understanding', 'astounding', 'putting', 'considering', 'motivating', 'writing', 'wing', 'fighting', 'facing', 'focusing', 'addressing', 'going', 'being', 'going', 'right-wing', 'right-wing', 'during', 'troubling', 'departing', 'seeking', 'surprising', 'right-wing', 'rendering', 'something', 'right-wing', 'left-wing', 'practicing', 'thinking', 'nothing', 'focusing', 'whining', 'contributing', 'equating', 'adopting', 'being', 'describing', 'analyzing', 'contributing', 'making', 'mobilizing', 'coping', 'handling', 'meaning', 'deploying', 'paying', 'redeeming', 'storytelling', 'popping', 'storytelling', 'going', 'sitting', 'being', 'turning', 'finding', 'giving', 'storytelling', 'preserving', 'fulfilling', 'overwhelming', 'storytelling', 'storytelling', 'building', 'leading', 'redeeming', 'making', 'going', 'storytelling', 'storytelling', 'bring', 'waiting', 'focusing', 'rewarding', 'beginning', 'being', 'including', 'calling', 'crushing', 'outlawing', 'representing', 'regarding', 'thinking', 'lasting', 'understanding', 'reviving', 'coming', 'performing', 'reviving', 'thinking', 'performing', 'making', 'everything', 'non-thinking', 'thinking', 'providing', 'during', 'thinking', 'being', '“everything', 'nothing', 'living', 'designing', 'ever-changing', 'applying', 'ever-changing', 'defying', 'non-signifying', 'taking', 'originating', 'anything', 'resisting', 'exhibiting', 'being', 'linking', 'self-organizing', 'thinking', 'distributing', 'enlivening', 'flowing', 'inducing', 'transporting', 'conferring', 'building', 'being', 'according', 'according', 'naming', 'shifting', 'existing', 'provoking', 'living', 'enabling', 'working', 'intersecting', 'interacting', 'adjusting', 'changing', 'adding', 'using', 'improvising', 'using', 'telling', 'meaning', 'meaning', 'becoming', 'conjuring', 'understanding', 'building', 'living', '“living', 'extracting', '“living', 'living', 'according', 'tipping', 'bring', 'arising', 'waiting', 'using', 'generating', 'meaning', 'participating', 'evolving', 'acquiring', 'coordinating', 'being', 'understanding', 'changing', 'thinking', 'experimenting', 'making', 'being', 'living', 'relating', 'producing', 'being', '‘bring', 'living', 'nurturing', 'being', 'thinking', 'existing', '‘being', 'reducing', 'choking', 'coming-into-being', 'insulating', 'ionizing', 'thickening', 'dancing', 'drooling', 'nothing', 'expanding', 'lensing', 'chewing', 'chewing', 'nothing', 'patterning', 'obstructing', 'caressing', 'living', 'rigging', 'living', 'funding', '7.”living', 'living', 'living', '\"living', 'living', 'atomizing', '(breaking', 'during', 'living', 'merging', 'understanding', 'reading', 'using', 'witnessing', 'emerging', 'articulating', 'promoting', 'relating', 'achieving', 'wellbeing', 'continuing', 'emerging', 'forming', 'culminating', 'being', 'decision-making', 'during', 'including', 'encompassing', 'linking', '(including', 'deepening', 'following', 'voting', 'using', 'varying', 'mining', 'unchanging', 'ordering', 'achieving', 'filmmaking', 'including', 'pursuing', 'decision-making', 'wellbeing', 'encompassing', 'learning', 'reworking', 'generating', 'following', 'interlocking', 'bringing', 'reviving', 'strengthening', 'being', 'promoting', 'well-being', 'moving', 'fulfilling', 'ongoing', 'establishing', 'decision-making', 'decision-making', 'including', 'facilitating', 'establishing', 'strenthening', 'including', 'falling', 'caring', 'sharing', 'focusing', 'promoting', 'learning', 'being', 'balancing', 'overlapping', 'evolving', 'documenting', 'disseminating', 'spreading', 'learning', 'evolving', 'finding', 'struggling', 'gaining', 'searching', 'spreading', 'finding', 'finding', 'understanding', 'ongoing', 'including', 'integrating', 'forthcoming', 'containing', '[i]churning', 'making', 'evolving', 'linking', 'advocating', 'rehealing', 'reconnecting', 'encompassing', 'living', '‘looking', 'unshackling', '‘looking', 'unshackling', '[i]churning', 'making', 'working', 'doing', 'regarding', '(including', '[i]churning', 'forthcoming', 'unshackling']\n" + ] + } + ], + "source": [ + "print(bag)" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "------------unshackling---------------------------------------------------------\n", + "-------having-------------------------------------------------------------------\n", + "--------ongoing-----------------------------------------------------------------\n", + "----------following-------------------------------------------------------------\n", + "----------imagining-------------------------------------------------------------\n", + "------being---------------------------------------------------------------------\n", + "-------living-------------------------------------------------------------------\n", + "---------inviting---------------------------------------------------------------\n", + "--------morning-----------------------------------------------------------------\n", + "--------showing-----------------------------------------------------------------\n", + "-------taking-------------------------------------------------------------------\n", + "--------playing-----------------------------------------------------------------\n", + "------using---------------------------------------------------------------------\n", + "------------interesting---------------------------------------------------------\n", + "----------providing-------------------------------------------------------------\n", + "---------changing---------------------------------------------------------------\n", + "---------learning---------------------------------------------------------------\n", + "------------devastating---------------------------------------------------------\n", + "-----------everything-----------------------------------------------------------\n", + "------going---------------------------------------------------------------------\n", + "-----------developing-----------------------------------------------------------\n", + "-------boring-------------------------------------------------------------------\n", + "-------------representing-------------------------------------------------------\n", + "---------learning---------------------------------------------------------------\n", + "--------nothing-----------------------------------------------------------------\n", + "-------------“endangering-------------------------------------------------------\n", + "------being---------------------------------------------------------------------\n", + "--------leaving-----------------------------------------------------------------\n", + "--------“living-----------------------------------------------------------------\n", + "--------pushing-----------------------------------------------------------------\n", + "-----------forgetting-----------------------------------------------------------\n", + "---------offering---------------------------------------------------------------\n", + "------being---------------------------------------------------------------------\n", + "--------locking-----------------------------------------------------------------\n", + "-------naming-------------------------------------------------------------------\n", + "------being---------------------------------------------------------------------\n", + "-------making-------------------------------------------------------------------\n", + "----------belonging-------------------------------------------------------------\n", + "--------getting-----------------------------------------------------------------\n", + "-------------experiencing-------------------------------------------------------\n", + "-----------conquering-----------------------------------------------------------\n", + "-----------concerning-----------------------------------------------------------\n", + "------being---------------------------------------------------------------------\n", + "----------including-------------------------------------------------------------\n", + "-------making-------------------------------------------------------------------\n", + "----------achieving-------------------------------------------------------------\n", + "-------coping-------------------------------------------------------------------\n", + "--------working-----------------------------------------------------------------\n", + "-----------pretending-----------------------------------------------------------\n", + "-----------reworlding-----------------------------------------------------------\n", + "----------including-------------------------------------------------------------\n", + "--------------strengthening-----------------------------------------------------\n", + "--------relying-----------------------------------------------------------------\n", + "-----------connecting-----------------------------------------------------------\n", + "---------creating---------------------------------------------------------------\n", + "--------missing-----------------------------------------------------------------\n", + "--------talking-----------------------------------------------------------------\n", + "-------living-------------------------------------------------------------------\n", + "-----------conferring-----------------------------------------------------------\n", + "--------working-----------------------------------------------------------------\n", + "---------relating---------------------------------------------------------------\n", + "---------learning---------------------------------------------------------------\n", + "----------something-------------------------------------------------------------\n", + "--------looking-----------------------------------------------------------------\n", + "------using---------------------------------------------------------------------\n", + "-------seeing-------------------------------------------------------------------\n", + "--------playing-----------------------------------------------------------------\n", + "-------boring-------------------------------------------------------------------\n", + "--------chewing-----------------------------------------------------------------\n", + "-----------benefiting-----------------------------------------------------------\n", + "--------ongoing-----------------------------------------------------------------\n", + "-------------representing-------------------------------------------------------\n", + "--------falling-----------------------------------------------------------------\n", + "----------realizing-------------------------------------------------------------\n" + ] + } + ], + "source": [ + "import os, random\n", + "\n", + "lines = []\n", + "\n", + "for linenumber in range(rows):\n", + " line = ''\n", + " word = random.choice(bag)\n", + " wordlength = len(word)\n", + " for i in range(characters-wordlength-2):\n", + " line += '-'\n", + " if i == wordlength:\n", + " line += word\n", + " lines.append(line)\n", + "\n", + "patch = '\\n'.join(lines)\n", + "print(patch)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Save your patch as a plain text (.txt) file" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "out = open('patches/shapes-patch.txt', 'w')\n", + "out.write(patch)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/pdf-ascii-quilting/ASCII-quilt-making.ipynb b/pdf-ascii-quilting/ASCII-quilt-making.ipynb new file mode 100644 index 0000000..6a5010c --- /dev/null +++ b/pdf-ascii-quilting/ASCII-quilt-making.ipynb @@ -0,0 +1,48 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "quilt = open(\"my-fantastic-quilt\", 'w')\n", + "\n", + "for row in patches:\n", + "\n", + " for linenumber in range(74):\n", + "\n", + " line = ''\n", + "\n", + " for patch in row:\n", + "\n", + " line += open(patch).readlines()[linenumber]\n", + "\n", + " print(patch[line], nolineending, file=quilt)\n", + "\n", + " print(line)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/pdf-ascii-quilting/ASCII-quilt.ipynb b/pdf-ascii-quilting/ASCII-quilt.ipynb new file mode 100644 index 0000000..653c115 --- /dev/null +++ b/pdf-ascii-quilting/ASCII-quilt.ipynb @@ -0,0 +1,450 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# ASCII Canvas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "(using Reportlab to export it as a PDF)" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [], + "source": [ + "width = 328\n", + "height = 296" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n", + "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\n" + ] + } + ], + "source": [ + "# Simple fill-up of a page, to set the reach of our canvas\n", + "lines = [] # All the lines will be stored here\n", + "\n", + "for linenumber in range(height):\n", + " line = 'x' * width\n", + " lines.append(line)\n", + "\n", + "print('\\n'.join(lines))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Exporting with Reportlab" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "from reportlab.pdfgen.canvas import Canvas\n", + "from reportlab.lib.pagesizes import A4, A0\n", + "from reportlab.lib.units import mm\n", + "\n", + "# pagewidth = 210*mm # = A4[0]\n", + "# pageheight = 297*mm # = A4[1]\n", + "\n", + "# It is the same as:\n", + "pagewidth, pageheight = A0\n", + "\n", + "c = Canvas(\"ASCII-QUILT.pdf\", pagesize=(pagewidth, pageheight), bottomup=0) # the 'bottomup' flips the coordinates, and puts the 0,0 at the left top\n", + "c.setFont('Courier', 12)\n", + "\n", + "start_y = 5*mm # start position of the lines\n", + "\n", + "y = start_y\n", + "lineheight = 4*mm\n", + "\n", + "for line in lines:\n", + " c.drawCentredString(pagewidth/2, y, line)\n", + " y += lineheight\n", + "\n", + "c.save()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/aalib-pdf.ipynb b/pdf-ascii-quilting/aalib-pdf.ipynb similarity index 100% rename from aalib-pdf.ipynb rename to pdf-ascii-quilting/aalib-pdf.ipynb diff --git a/concordance_quilt.ipynb b/pdf-ascii-quilting/concordance_quilt.ipynb similarity index 100% rename from concordance_quilt.ipynb rename to pdf-ascii-quilting/concordance_quilt.ipynb diff --git a/patterns-generating.ipynb b/pdf-ascii-quilting/patterns-generating.ipynb similarity index 100% rename from patterns-generating.ipynb rename to pdf-ascii-quilting/patterns-generating.ipynb diff --git a/patterns-searching-for.ipynb b/pdf-ascii-quilting/patterns-searching-for.ipynb similarity index 100% rename from patterns-searching-for.ipynb rename to pdf-ascii-quilting/patterns-searching-for.ipynb diff --git a/quilt.ipynb b/pdf-ascii-quilting/quilt.ipynb similarity index 100% rename from quilt.ipynb rename to pdf-ascii-quilting/quilt.ipynb diff --git a/pdf-ascii-quilting/quilts/quilt_WFTF.jpg b/pdf-ascii-quilting/quilts/quilt_WFTF.jpg new file mode 100644 index 0000000..0aad838 Binary files /dev/null and b/pdf-ascii-quilting/quilts/quilt_WFTF.jpg differ diff --git a/pdf-html2print/weasyprint.ipynb b/pdf-html2print/weasyprint.ipynb new file mode 100644 index 0000000..6adee73 --- /dev/null +++ b/pdf-html2print/weasyprint.ipynb @@ -0,0 +1,337 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Weasyprint\n", + "\n", + "Weasyprint is a python library to layout HTML (and CSS) as print pages, saving to a PDF. In this way, it can be a part of a \"web to print\" workflow." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "https://weasyprint.readthedocs.io/en/latest/tutorial.html" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from weasyprint import HTML, CSS\n", + "from weasyprint.fonts import FontConfiguration" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## HTML()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The main class that weasyprint is HTML, it represents an HTML document, and provides functions to save as PDF (or PNG). When creating an HTML object you can specify the HTML either via HTML source as a string (via the *string* option), a file (via the *filename* option), or even an online page (via *url*)." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "html = HTML(string='

hello

')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "or" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "html = HTML(filename=\"path/to/some.html\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "or" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [], + "source": [ + "html = HTML(url=\"https://pzwiki.wdka.nl/mediadesign/Category:WordsfortheFuture\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## CSS()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The CSS class lets you include an (additional) CSS file. Just as with the HTML class, you can give a string, filename, or URL. If the HTML already has stylesheets, they will be combined. (is this true?)" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [], + "source": [ + "css = CSS(string='''\n", + "@page{\n", + " size: A4;\n", + " margin: 15mm;\n", + " background-color: lightgrey;\n", + " font-family: monospace;\n", + " font-size: 8pt;\n", + " color: red;\n", + " border:1px dotted red;\n", + " \n", + " @top-left{\n", + " content: \"natural\";\n", + " }\n", + " @top-center{\n", + " content: \"language\";\n", + " }\n", + " @top-right{\n", + " content: \"artificial\";\n", + " }\n", + " @top-middle{\n", + " content: \"\"\n", + " }\n", + " @left-top{\n", + " content: \"computer control\";\n", + " }\n", + " @right-top{\n", + " content: \"markup\";\n", + " }\n", + " @bottom-left{\n", + " content: \"formal\";\n", + " }\n", + " @bottom-center{\n", + " content: \"programming\";\n", + " }\n", + " @bottom-right{\n", + " content: \"machine\";\n", + " }\n", + " }\n", + " body{\n", + " font-family: serif;\n", + " font-size: 12pt;\n", + " line-height: 1.4;\n", + " color: magenta;\n", + " }\n", + " h1{\n", + " width: 100%;\n", + " text-align: center;\n", + " font-size: 250%;\n", + " line-height: 1.25;\n", + " color: orange;\n", + " }\n", + " strong{\n", + " color: blue;\n", + " }\n", + " em{\n", + " color: green;\n", + " }\n", + "\n", + "\n", + "''', font_config=font_config)" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [], + "source": [ + "html.write_pdf('mydocument.pdf', stylesheets=[css])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Using NLTK to automatically markup a (plain) text with POS tags" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import nltk\n", + "\n", + "txt = open('txt/language.txt').read()\n", + "words = nltk.word_tokenize(txt)\n", + "tagged_words = nltk.pos_tag(words)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# collect all the pieces of HTML\n", + "content = ''\n", + "content += '

Language and Software Studies, by Florian Cramer

'\n", + "\n", + "for word, tag in tagged_words:\n", + " content += f'{ word } '\n", + "\n", + "# write the HTML file\n", + "with open(\"txt/language.html\", \"w\") as f:\n", + " f.write(f\"\"\"\n", + "\n", + "\n", + " \n", + " \n", + " \n", + "\n", + "\n", + "{ content }\n", + "\n", + "\"\"\")\n", + "\n", + "# write a CSS file\n", + "with open(\"txt/language.css\", \"w\") as f:\n", + " f.write(\"\"\"\n", + "\n", + "@page{\n", + " size:A4;\n", + " background-color:lightgrey;\n", + " margin:10mm;\n", + "}\n", + ".JJ{\n", + " color:red;\n", + "}\n", + ".VB,\n", + ".VBG{\n", + " color:magenta;\n", + "}\n", + ".NN,\n", + ".NNP{\n", + " color:green;\n", + "}\n", + ".EX{\n", + " color: blue;\n", + "}\n", + "\n", + " \"\"\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# If you use @font-face in your stylesheet, you would need Weasyprint's FontConfiguration()\n", + "font_config = FontConfiguration()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "html = HTML(\"txt/language.html\")\n", + "css = CSS(\"txt/language.css\")\n", + "html.write_pdf('txt/language.pdf', stylesheets=[css], font_config=font_config)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Preview your PDF in the notebook!\n", + "from IPython.display import IFrame, display\n", + "IFrame(\"txt/language.pdf\", width=900, height=400)" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "

Language and Software Studies, by Florian Cramer

Language Florian Cramer Software and language are intrinsically related , since software may process language , and is constructed in language . Yet language means different things in the context of computing : formal languages in which algorithms are expressed and software is implemented , and in so-called natural spoken languages . There are at least two layers of formal language in software : programming language in which the software is written , and the language implemented within the software as its symbolic controls . In the case of compilers , shells , and macro languages , for example , these layers can overlap . Natural language is what can be processed as data by software ; since this processing is formal , however , it is restricted to syntactical operations . While differentiation of computer programming languages as artificial languages from languages like English as natural languages is conceptually important and undisputed , it remains problematic in its pure terminology : There is nothing natural about spoken language ; it is a cultural construct and thus just as artificial as any formal machine control language . To call programming languages machine languages doesn t solve the problem either , as it obscures that machine languages are human creations . High-level machine-independent programming languages such as Fortran , C , Java , and Basic are not even direct mappings of machine logic . If programming languages are human languages for machine control , they could be called cybernetic languages . But these languages can also be used outside machines—in programming handbooks , for example , in programmer s dinner table jokes , or as abstract formal languages for expressing logical constructs , such as in Hugh Kenner s use of the Pascal programming language to explain aspects of the structure of Samuel Beckett s writing.1 In this sense , computer control languages could be more broadly defined as syntactical languages as opposed to semantic languages . But this terminology is not without its problems either . Common languages like English are both formal and semantic ; although their scope extends beyond the formal , anything that can be expressed in a computer control language can also be expressed in common language . It follows that computer control languages are a formal ( and as such rather primitive ) subset of common human languages . To complicate things even further , computer science has its own understanding of operational semantics in programming languages , for example in the construction of a programming language interpreter or compiler . Just as this interpreter doesn t perform interpretations in a hermeneutic sense of semantic text explication , the computer science notion of semantics defies linguistic and common sense understanding of the word , since compiler construction is purely syntactical , and programming languages denote nothing but syntactical manipulations of symbols . What might more suitably be called the semantics of computer control languages resides in the symbols with which those operations are denoted in most programming languages : English words like if , then , else , for , while , goto , and print , in conjunction with arithmetical and punctuation symbols ; in alphabetic software controls , words like list , move , copy , and paste ; in graphical software controls , such as symbols like the trash can . Ferdinand de Saussure states that the signs of common human language are arbitrary2 because it s purely a cultural-social convention that assigns phonemes to concepts . Likewise , it s purely a cultural convention to assign symbols to machine operations . But just as the cultural choice of phonemes in spoken language is restrained by what the human voice can pronounce , the assignment of symbols to machine operations is limited to what can be efficiently processed by the machine and of good use to humans.3 This compromise between operability and usability is obvious in , for example , Unix commands . Originally used on teletype terminals , the operation copy was abbreviated to the command cp , move to mv , list to ls , etc. , in order to cut down machine memory use , teletype paper consumption , and human typing effort at the same time . Any computer control language is thus a cultural compromise between the constraints of machine design—which is far from objective , but based on human choices , culture , and thinking style itself 4—and the equally subjective user preferences , involving fuzzy factors like readability , elegance , and usage efficiency . The symbols of computer control languages inevitably do have semantic connotations simply because there exist no symbols with which humans would not associate some meaning . But symbols can t denote any semantic statements , that is , they do not express meaning in their own terms ; humans metaphorically read meaning into them through associations they make . Languages without semantic denotation are not historically new phenomena ; mathematical formulas are their oldest example . In comparison to common human languages , the multitude of programming languages is of lesser significance . The criterion of Turing completeness of a programming language , that is , that any computation can be expressed in it , means that every programming language is , formally speaking , just a riff on every other programming language . Nothing can be expressed in a Turingcomplete language such as C that couldn t also be expressed in another Turingcomplete language such as Lisp ( or Fortran , Smalltalk , Java ... ) and vice versa . This ultimately proves the importance of human and cultural factors in programming languages : while they are interchangeable in regard to their control of machine functions , their different structures—semantic descriptors , grammar and style in which algorithms can be expressed—lend themselves not only to different problem sets , but also to different styles of thinking . Just as programming languages are a subset of common languages , Turingincomplete computer control languages are a constrained subset of Turingcomplete languages . This prominently includes markup languages ( such as HTML ) , file formats , network protocols , and most user controls ( see the entry Interface ) of computer programs . In most cases , languages of this type are restrained from denoting algorithmic operations for computer security reasons—to prevent virus infection and remote takeover . This shows how the very design of a formal language is a design for machine control . Access to hardware functions is limited not only through the software application , but through the syntax the software application may use for storing and transmitting the information it processes . To name one computer control language a programming language , another a protocol , and yet another a file format is merely a convention , a nomenclature indicating different degrees of syntactic restraint built into the very design of a computer control language . In its most powerful Turing-complete superset , computer control language is language that executes . As with magical and speculative concepts of language , the word automatically performs the operation . Yet this is not to be confused with what linguistics calls a performative or illocutionary speech act , for example , the words of a judge who pronounces a verdict , a leader giving a command , or a legislator passing a law . The execution of computer control languages is purely formal ; it is the manipulation of a machine , not a social performance based on human conventions such as accepting a verdict . Computer languages become performative only through the social impact of the processes they trigger , especially when their outputs aren t critically checked . Joseph Weizenbaum s software psychotherapist Eliza , a simple program that syntactically transforms input phrases , is a classical example,5 as is the 1987 New York Stock Exchange crash that involved a chain reaction of sell recommendations by day trading software.6 Writing in a computer programming language is phrasing instructions for an utter idiot . The project of Artificial Intelligence is to prove that intelligence is just a matter of a sufficiently massive layering of foolproof recipes—in linguistic terms , that semantics is nothing else but ( more elaborate ) syntax . As long as A.I . fails to deliver this proof , the difference between common languages and computer control languages continues to exist , and language processing through computers remains restrained to formal string manipulations , a fact that after initial enthusiasm has made many experimental poets since the 1950s abandon their experiments with computer-generated texts.7 The history of computing is rich with confusions of formal with common human languages , and false hopes and promises that formal languages would become more like common human languages . Among the unrealized hopes are artificial intelligence , graphical user interface design with its promise of an intuitive or , to use Jef Raskin s term , humane interface , 8 and major currents of digital art . Digital installation art typically misperceives its programmed behaviorist black boxes as interactive , and some digital artists are caught in the misconception that they can overcome what they see as the Western male binarism of computer languages by reshaping them after romanticized images of indigenous human languages . The digital computer is a symbolic machine that computes syntactical language and processes alphanumerical symbols ; it treats all data—including images and sounds—as textual , that is , as chunks of coded symbols . Nelson Goodman s criteria of writing as disjunct and discrete , or consisting of separate single entities that differ from other separate single entities , also applies to digital files.9 The very meaning of digitization is to structure analog data as numbers and store them as numerical texts composed of discrete parts . All computer software controls are linguistic regardless of their perceivable shape , alphanumerical writing , graphics , sound signals , or whatever else . The Unix command rm file is operationally identical to dragging the file into the trashcan on a desktop . Both are just different encodings for the same operation , just as alphabetic language and morse beeps are different encodings for the same characters . As a symbolic handle , this encoding may enable or restrain certain uses of the language . In this respect , the differences between ideographic-pictorial and abstract-symbolic common languages also apply to computer control languages . Pictorial symbols simplify control languages through predefined objects and operations , but make it more difficult to link them through a grammar and thus express custom operations . Just as a pictogram of a house is easier to understand than the letters h-o-u-s-e , the same is true for the trashcan icon in comparison to the rm command . But it is difficult to precisely express the operation If I am home tomorrow at six , I will clean up every second room in the house through a series of pictograms . Abstract , grammatical alphanumeric languages are more suitable for complex computational instructions.10 The utopia of a universal pictorial computer control language ( with icons , windows , and pointer operations ) is a reenactment of the rise and eventual fall of universal pictorial language utopias in the Renaissance , from Tommaso Campanella s Città del sole to Comenius Orbis pictus —although the modern project of expressing only machine operations in pictograms was less ambitious . The converse to utopian language designs occurs when computer control languages get appropriated and used informally in everyday culture . Jonathan Swift tells how scientists on the flying island of Lagado would , for example , praise the beauty of a woman , or any other animal ... by rhombs , circles , parallelograms , ellipses , and other geometrical terms. 11 Likewise , there is programming language poetry which , unlike most algorithmic poetry , writes its program source as the poetical work , or crossbreeds cybernetic with common human languages . These code poems or codeworks often play with the interference between human agency and programmed processes in computer networks . In computer programming and computer science , code is often understood either as a synonym of computer programming language or as a text written in such a language . This modern usage of the term code differs from the traditional mathematical and cryptographic notion of code as a set of formal transformation rules that transcribe one group of symbols to another group of symbols , for example , written letters into morse beeps . The translation that occurs when a text in a programming language gets compiled into machine instructions is not an encoding in this sense because the process is not oneto-one reversible . This is why proprietary software companies can keep their source code secret . It is likely that the computer cultural understanding of code is historically derived from the name of the first high-level computer programming language , Short Code from 1950.12 The only programming language that is a code in the original sense is assembly language , the human- readable mnemonic one-to-one representation of processor instructions . Conversely , those instructions can be coded back , or disassembled , into assembly language . Software as a whole is not only code but a symbolic form involving cultural practices of its employment and appropriation . But since writing in a computer control language is what materially makes up software , critical thinking about computers is not possible without an informed understanding of the structural formalism of its control languages . Artists and activists since the French Oulipo poets and the MIT hackers in the 1960s have shown how their limitations can be embraced as creative challenges . Likewise , it is incumbent upon critics to reflect the sometimes more and sometimes less amusing constraints and game rules computer control languages write into culture . Notes 1 . Hugh Kenner , Beckett Thinking , in Hugh Kenner , The Mechanic Muse , 83–107 . 2 . Ferdinand de Saussure , Course in General Linguistics , Chapter I : Nature of the Linguistic Sign. 3 . See the section , Saussurean Signs and Material Matters , in N. Katherine Hayles , My Mother Was a Computer , 42–45 . 4 . For example , Steve Wozniak s design of the Apple I mainboard was consijdered a beautiful work of art in its time according to Steven Levy , Insanely Great : The Life and Times of Macintosh , 81 . 5 . Joseph Weizenbaum , ELIZA—A Computer Program for the Study of Natural Language Communication between Man and Machine. 6 . Marsha Pascual , Black Monday , Causes and Effects. 7 . Among them concrete poetry writers , French Oulipo poets , the German poet Hans Magnus Enzensberger , and the Austrian poets Ferdinand Schmatz and Franz Josef Czernin . 8 . Jef Raskin , The Humane Interface : New Directions for Designing Interactive Systems . 9 . According to Nelson Goodman s definition of writing in The Languages of Art , 143 . 10 . Alan Kay , an inventor of the graphical user interface , conceded in 1990 that it would not be surprising if the visual system were less able in this area than the mechanism that solve noun phrases for natural language . Although it is not fair to say that iconic languages can t work just because no one has been able to design a good one , it is likely that the above explanation is close to truth. This status quo hasn t changed since . Alan Kay , User Interface : A Personal View , in , Brenda Laurel ed . The Art of Human-Computer Interface Design , Reading : Addison Wesley , 1989 , 203 . 11 . Swift , Jonathan , Gulliver s Travels , Project Gutenberg Ebook , available at http : // www.gutenberg.org / dirs / extext197 / gltrv10.txt / . 12 . See Wolfgang Hagen , The Style of Source Codes . \n" + ] + } + ], + "source": [ + "# Printing the content is useful to see how the HTML is written!\n", + "print( content )" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/pdf-toolkit/1.a0.ps b/pdf-toolkit/1.a0.ps new file mode 100644 index 0000000..fcfc3d2 --- /dev/null +++ b/pdf-toolkit/1.a0.ps @@ -0,0 +1,30201 @@ +%!PS-Adobe-3.0 +%%BoundingBox: 0 0 595 841 +%%HiResBoundingBox: 0 0 595.00 841.00 +%%Creator: GPL Ghostscript 927 (ps2write) +%%LanguageLevel: 2 +%%CreationDate: D:20201028212343+01'00' +%%DocumentMedia: plain 2382 3369 0 () () +%%BoundingBox: 0 0 2382 3369 +%%Pages: 4 0 +%%EndComments +%%BeginProlog +%%BeginProcSet: PStoPS 1 15 +userdict begin +[/showpage/erasepage/copypage]{dup where{pop dup load + type/operatortype eq{ /PStoPSenablepage cvx 1 index load 1 array astore cvx {} bind /ifelse cvx 4 array astore cvx def}{pop}ifelse}{pop}ifelse}forall /PStoPSenablepage true def +[/letter/legal/executivepage/a4/a4small/b5/com10envelope + /monarchenvelope/c5envelope/dlenvelope/lettersmall/note + /folio/quarto/a5]{dup where{dup wcheck{exch{}put} + {pop{}def}ifelse}{pop}ifelse}forall +/setpagedevice {pop}bind 1 index where{dup wcheck{3 1 roll put} + {pop def}ifelse}{def}ifelse +/PStoPSmatrix matrix currentmatrix def +/PStoPSxform matrix def/PStoPSclip{clippath}def +/defaultmatrix{PStoPSmatrix exch PStoPSxform exch concatmatrix}bind def +/initmatrix{matrix defaultmatrix setmatrix}bind def +/initclip[{matrix currentmatrix PStoPSmatrix setmatrix + [{currentpoint}stopped{$error/newerror false put{newpath}} + {/newpath cvx 3 1 roll/moveto cvx 4 array astore cvx}ifelse] + {[/newpath cvx{/moveto cvx}{/lineto cvx} + {/curveto cvx}{/closepath cvx}pathforall]cvx exch pop} + stopped{$error/errorname get/invalidaccess eq{cleartomark + $error/newerror false put cvx exec}{stop}ifelse}if}bind aload pop + /initclip dup load dup type dup/operatortype eq{pop exch pop} + {dup/arraytype eq exch/packedarraytype eq or + {dup xcheck{exch pop aload pop}{pop cvx}ifelse} + {pop cvx}ifelse}ifelse + {newpath PStoPSclip clip newpath exec setmatrix} bind aload pop]cvx def +/initgraphics{initmatrix newpath initclip 1 setlinewidth + 0 setlinecap 0 setlinejoin []0 setdash 0 setgray + 10 setmiterlimit}bind def +end +%%EndProcSet +/DSC_OPDFREAD true def +/SetPageSize true def +/EPS2Write false def +currentdict/DSC_OPDFREAD known{ +currentdict/DSC_OPDFREAD get +}{ +false +}ifelse +10 dict begin +/DSC_OPDFREAD exch def +/this currentdict def +/y 720 def +/ebuf 200 string def +/prnt{ +36//this/y get moveto//ebuf cvs show +//this/y 2 copy get 12 sub put +}bind def +/newline{ +36//this/y get moveto +//this/y 2 copy get 12 sub put +}bind def +errordict/handleerror +{systemdict begin +$error begin +newerror +{(%%[ Error handled by opdfread.ps : )print errorname//ebuf cvs print(; OffendingCommand: ) +print/command load//ebuf cvs print( ]%%)= flush +/newerror false store vmstatus pop pop 0 ne +{grestoreall +}if +errorname(VMerror)ne +{showpage +}if +initgraphics +0 720 moveto +errorname(VMerror)eq +{//this/ehsave known +{clear//this/ehsave get restore 2 vmreclaim +}if +vmstatus exch pop exch pop +} +/Courier 12 selectfont +{ +(ERROR: )//prnt exec errorname//prnt exec +(OFFENDING COMMAND: )//prnt exec +/command load//prnt exec +$error/ostack known{ +(%%[STACK:)= +(STACK:)//prnt exec +$error/ostack get aload length{ +//newline exec +dup mark eq{ +(-mark-)dup = show +}{ +dup type/nametype eq{ +dup xcheck not{ +(/)show +(/)print +}if +}if +dup =//ebuf cvs show +}ifelse +}repeat +}if +}ifelse +(%%]%)= +//systemdict/showpage get exec +quit +}if +end +end +}bind readonly put +end +50 dict begin +/DefaultSwitch +{ +dup where{ +pop pop +}{ +false def +}ifelse +}bind def +/=string 256 string def +/=only{ +//=string cvs print +}bind def +/HexDigits(0123456789ABCDEF)readonly def +/PrintHex +{8{ +dup -28 bitshift 15 and//HexDigits exch 1 getinterval//=only exec +4 bitshift +}repeat +pop +}bind def +/PDFR_DEBUG DefaultSwitch +/PDFR_DUMP DefaultSwitch +/PDFR_STREAM DefaultSwitch +/TTFDEBUG DefaultSwitch +/RotatePages DefaultSwitch +/FitPages DefaultSwitch +/CenterPages DefaultSwitch +/SetPageSize DefaultSwitch +/error +{ +counttomark 1 sub -1 0{ +index dup type/arraytype eq{==}{=only}ifelse +}for +()= +cleartomark +....Undefined +}bind def +//SetPageSize{ +//RotatePages//FitPages or//CenterPages or{ +mark(/RotatePages, /FitPages and CenterPages are not allowed with /SetPageSize)//error exec +}if +} +{ +//FitPages//CenterPages and{ +mark(CenterPages is not allowed with /FitPages)//error exec +}if +} +ifelse +/knownget +{ +2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/IsUpper +{dup(A)0 get ge exch(Z)0 get le and +}bind def +/cpa2g{ +dup length array +0 1 2 index length 1 sub{ +dup 3 index exch get cp2g +3 copy put pop pop +}for +exch pop +}bind def +/cpd2g{ +dup length dict exch{ +cp2g 2 index 3 1 roll put +}forall +}bind def +/cps2g{ +dup length string copy +}bind def +/cp2gprocs +<> +def +/cp2g{ +dup gcheck not{ +dup//cp2gprocs 1 index type +2 copy known{ +get currentglobal 3 1 roll true setglobal exec exch setglobal +1 index wcheck not{readonly}if +1 index xcheck{cvx}if +exch pop +}{ +pop pop +}ifelse +}if +}bind def +/BlockBuffer 65535 string def +/PDFReader currentdict def +/ObjectRegistryMaxLength 50000 def +/ObjectRegistry 10 dict def +ObjectRegistry +begin +0 ObjectRegistryMaxLength dict def +end +/CurrentObject null def +/DoneDocumentStructure false def +/GraphicState 20 dict begin +/InitialTextMatrix matrix def +/InitialMatrix matrix currentmatrix def +currentdict end def +/TempMatrix matrix def +/GraphicStateStack 20 array def +/GraphicStateStackPointer 0 def +/InitialTextMatrixStack 20 array def +/InitialTextMatrixStackPointer 0 def +/PDFColorSpaces 50 dict def +/InstalledFonts 50 dict def +/MacRomanEncodingInverse null def +currentglobal false setglobal +userdict/PDFR_InitialGS gstate put +userdict/PDFR_Patterns 50 dict put +userdict/FuncDataReader 10 dict put +setglobal +/InitialExtGState 20 dict begin +/BG2 currentblackgeneration cp2g def +/UCR2 currentundercolorremoval cp2g def +/TR2 currentglobal false setglobal[currentcolortransfer]exch setglobal cp2g def +/HT currenthalftone cp2g def +currentdict end readonly def +/InitialGraphicState 20 dict begin +/FontSize 0 def +/CharacterSpacing 0 def +/TextLeading 0 def +/TextRenderingMode 0 def +/WordSpacing 0 def +currentdict end readonly def +/SimpleColorSpaceNames 15 dict begin +/DeviceGray true def +/DeviceRGB true def +/DeviceCMYK true def +currentdict end readonly def +/1_24_bitshift_1_sub 1 24 bitshift 1 sub def +/ReadFontProcs 10 dict def +/GetObject +{ +dup ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get exch knownget{ +exch knownget +}{ +pop false +}ifelse +}bind def +/PutObject +{ +1 index ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get 1 index knownget{ +exch pop +3 1 roll put +}{ +//PDFReader/ObjectRegistry get dup +begin +1 index ObjectRegistryMaxLength dict def +end +exch get +3 1 roll put +}ifelse +}bind def +/Register +{ +1 index GetObject{ +dup xcheck{ +4 3 roll pop +//PDFR_DEBUG{ +(Have a daemon for )print 2 index == +}if +exec +}{ +dup null ne{ +mark(The object )4 index(is already defined : )4 index//error exec +}{ +pop +}ifelse +3 2 roll +exec +}ifelse +}{ +3 2 roll +exec +}ifelse +PutObject +}bind def +/IsRegistered +{ +GetObject{ +null ne +}{ +false +}ifelse +}bind def +/GetRegistered +{ +dup GetObject not{ +exch mark exch(Object )exch( isn't defined before needed (1).)//error exec +}if +dup xcheck{ +exch mark exch(Object )exch( isn't defined before needed (2).)//error exec +}{ +dup null eq{ +exch mark exch(Object )exch( isn't defined before needed (3).)//error exec +}if +exch pop +}ifelse +}bind def +/StandardFontNames<< +/Times-Roman true +/Helvetica true +/Courier true +/Symbol true +/Times-Bold true +/Helvetica-Bold true +/Courier-Bold true +/ZapfDingbats true +/Times-Italic true +/Helvetica-Oblique true +/Courier-Oblique true +/Times-BoldItalic true +/Helvetica-BoldOblique true +/Courier-BoldOblique true +>>def +/CleanAllResources +{//PDFR_DEBUG{ +(CleanAllResources beg)= +}if +//PDFReader/ObjectRegistry get{ +dup length 0 exch 1 exch 1 sub{ +2 copy get dup xcheck{ +pop pop +}{ +dup null eq{ +pop pop +}{ +dup type/dicttype eq{/.Global known}{pop false}ifelse{ +pop +}{ +//PDFR_DEBUG{ +(Dropping )print dup = +}if +1 index exch/DroppedObject put +}ifelse +}ifelse +}ifelse +}for +pop +}forall +FontDirectory length dict begin +FontDirectory{ +pop +dup//StandardFontNames exch known not{ +dup null def +}if +pop +}forall +currentdict +end{ +pop +//PDFR_DEBUG{ +(Undefining font )print dup = +}if +undefinefont +}forall +//PDFR_DEBUG{ +(CleanAllResources end)= +}if +}bind def +/PrintReference +{ +//PDFR_DEBUG{ +({ )print +dup{ +=only( )print +}forall +( })= +}if +}bind def +/R +{ +0 ne{ +exch mark exch(A referred object generation )exch( isn't 0.)//error exec +}if +[ +exch//GetRegistered/exec load +]cvx +//PrintReference exec +}bind def +/IsObjRef +{ +dup type/arraytype eq{ +dup length 3 eq{ +dup xcheck exch +dup 0 get type/integertype eq 3 2 roll and exch +dup 1 get//GetRegistered eq 3 2 roll and exch +2 get/exec load eq and +}{ +pop false +}ifelse +}{ +pop false +}ifelse +}bind def +/DoNothing +{ +}def +/RunTypeDaemon +{ +dup type/dicttype eq{ +dup/Type//knownget exec{ +//PDFReader/TypeDaemons get exch +//knownget exec{ +exec +}if +}if +}if +}bind def +/obj +{ +//PDFR_DEBUG{ +(Defining )print 1 index =only( )print dup =only( obj)= +}if +0 ne{ +exch mark exch(An object generation )exch( isn't 0.)//error exec +}if +}bind def +/endobj +{ +//PDFR_DEBUG{ +(endobj )= +}if +count 1 eq{ +pop +}{ +dup type/dicttype eq{ +dup/.endobj_daemon//knownget exec{ +//PDFR_DEBUG{(.endobj_daemon for )print 2 index =}if +exec +}if +}if +dup type/dicttype eq{dup/ImmediateExec known}{false}ifelse{ +pop pop +}{ +//PDFR_DEBUG{ +(Storing )print 1 index = +}if +//RunTypeDaemon exec +//DoNothing 3 1 roll//Register exec +}ifelse +}ifelse +}bind def +/StoreBlock +{ +//PDFR_DEBUG{ +(StoreBlock )print//PDFReader/BlockCount get =only(, Length = )print dup length = +}if +dup length string copy +//PDFReader/BlockCount get exch +//PDFReader/CurrentObject get 3 1 roll +put +//PDFReader/BlockCount get 1 add +//PDFReader exch/BlockCount exch put +}bind def +/CheckLength +{dup type/integertype ne{ +mark(Object length isn't an integer.)//error exec +}if +}bind def +/ResolveD +{ +3 copy pop get +dup//IsObjRef exec{ +//PDFR_DEBUG{ +(Resolving )print//PrintReference exec +}if +exec +exch exec +}{ +exch pop +}ifelse +dup 4 1 roll +put +}bind def +/ResolveA +{2 index 2 index get +dup//IsObjRef exec{ +exec +exch exec +3 copy put +}{ +exch pop +}ifelse +exch pop exch pop +}bind def +/StoreStream +{ +dup//PDFReader exch/CurrentObject exch put +//PDFReader/BlockCount 0 put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(StoreStream Length = )print dup = +}if +currentfile exch()/SubFileDecode filter +{dup//BlockBuffer readstring{ +//StoreBlock exec +}{ +//StoreBlock exec +exit +}ifelse +}loop +pop +//PDFReader/CurrentObject null put +//PDFR_DEBUG{ +(StoreStream end.)= +}if +}bind def +/MakeStreamDumper +{ +//PDFR_DEBUG{ +(MakeStreamDumper beg.)= +}if +currentglobal exch dup gcheck setglobal +[exch +1 dict dup/c 0 put exch +1024 string +{readstring pop +(StreamDumper )print 1 index/c get =string cvs print( )print +dup length =string cvs print( <)print dup print(>\n)print +dup length +3 2 roll +dup/c get +3 2 roll +add/c exch put +}/exec load +] +cvx 0()/SubFileDecode filter +exch setglobal +//PDFR_DEBUG{ +(MakeStreamDumper end.)= +}if +}bind def +/ShortFilterNames 15 dict begin +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/AppendFilters +{ +//PDFR_DEBUG{ +(AppendFilters beg.)= +}if +dup 3 1 roll +/Filter//knownget exec{ +dup type/nametype eq{ +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +2 index/DecodeParms//knownget exec{ +exch +}if +filter +}{ +dup 0 exch 1 exch length 1 sub{ +2 copy get +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +3 1 roll +4 index/DecodeParms//knownget exec{ +exch get +}{ +pop null +}ifelse +dup null eq{ +pop 3 1 roll filter exch +}{ +3 1 roll +4 1 roll filter exch +}ifelse +}for +pop +}ifelse +//PDFR_DEBUG//PDFR_DUMP and{ +//MakeStreamDumper exec +}if +}if +exch pop +//PDFR_DEBUG{ +(AppendFilters end.)= +}if +}bind def +/ExecuteStream +{ +dup//PDFReader exch/CurrentObject exch put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(ExecuteStream id = )print 2 index =only( Length = )print dup = +}if +//PDFReader/InitialGraphicState get +//PDFReader/GraphicState get copy pop +//PDFReader/Operators get begin +currentfile exch()/SubFileDecode filter +1 index//AppendFilters exec +cvx mark exch +exec +counttomark 0 ne{ +mark(Data left on ostack after an immediate stream execution.)//error exec +}if +cleartomark +end +//PDFR_DEBUG{ +(ExecuteStream end.)= +}if +//PDFReader/CurrentObject null put +dup/IsPage known{ +dup/Context get/NumCopies//knownget exec{ +1 sub{ +copypage +}repeat +}if +EPS2Write not{showpage}if +pagesave restore +}if +}bind def +/stream +{ +//PDFR_DEBUG{ +1 index =only( stream)= +}if +1 index GetObject{ +dup xcheck{ +exec +1 index null PutObject +}{ +pop +}ifelse +}if +dup/ImmediateExec known{ +dup/GlobalExec//knownget exec{ +currentglobal 4 1 roll +setglobal +//ExecuteStream exec +3 2 roll setglobal +}{ +//ExecuteStream exec +}ifelse +}{ +//StoreStream exec +}ifelse +dup/.CleanResources//knownget exec{ +/All eq{ +//CleanAllResources exec +}if +}if +}bind def +/HookFont +{ +//PDFR_DEBUG{ +(Loaded the font )print dup/FontName get = +}if +{ +dup/FontFileType get dup/Type1 eq exch/MMType1 eq or{ +dup/FontName get +//PDFReader/RemoveFontNamePrefix get exec +findfont +exit +}if +dup/FontFileType get/TrueType eq{ +//PDFReader/MakeType42 get exec +//PDFR_DEBUG{ +(Font dict <<)= +dup{ +1 index/sfnts eq{ +exch pop +(/sfnts [)print +{ +(-string\()print length//=only exec(\)- )= +}forall +(])= +}{ +exch//=only exec( )print == +}ifelse +}forall +(>>)= +}if +dup/FontName get exch definefont +exit +}if +mark(FontHook has no proc for )2 index/FontFileType get//error exec +}loop +/Font exch put +}bind def +/endstream +{ +}bind def +/xref +{ +//PDFR_DEBUG{ +(xref)= +//PDFR_DUMP{ +//PDFReader/ObjectRegistry get == +}if +}if +end +count 0 ne{ +mark(Excessive data on estack at the end of the interpretation.)//error exec +}if +currentfile 1(%%EOF)/SubFileDecode filter +flushfile +cleardictstack +}bind def +/ResolveDict +{dup{ +pop 1 index exch +//DoNothing//ResolveD exec +pop +}forall +pop +}bind def +/SetupPageView +{ +//PDFR_DEBUG{ +(SetupPageView beg)= +}if +//DSC_OPDFREAD not{ +//GraphicState/InitialMatrix get setmatrix +}if +/MediaBox get aload pop +3 index neg 3 index neg translate +3 -1 roll sub 3 1 roll exch sub exch +userdict/.HWMargins//knownget exec{ +aload pop +}{ +currentpagedevice/.HWMargins//knownget exec{ +aload pop +}{ +0 0 0 0 +}ifelse +}ifelse +currentpagedevice/PageSize get aload pop +3 -1 roll sub 3 1 roll exch sub exch +exch 3 index sub exch 3 index sub +//SetPageSize{ +//PDFR_DEBUG{ +(Setting page size to )print 1 index//=only exec( )print dup = +}if +pop pop 3 index 3 index 2 copy +currentglobal false setglobal 3 1 roll +currentpagedevice dup/PageSize known{ +/PageSize get aload pop +}{ +0 0 +}ifelse +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(PageSize matches request)== flush}if +pop pop +}{ +/MediaRequested where{ +//PDFR_DEBUG{(MediaRequested is true, check against new request)== flush}if +/MediaRequested get aload pop +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(MediaRequested same as current request, ignore)== flush}if +pop pop false +}{ +//PDFR_DEBUG{(MediaRequested different to current request)== flush}if +true +}ifelse +}{ +//PDFR_DEBUG{(No MediaRequested yet)== flush}if +true +}ifelse +{ +//PDFR_DEBUG{(Setting pagesize)== flush}if +2 array astore +dup/MediaRequested exch def +<< exch/PageSize exch >>setpagedevice +}if +}ifelse +userdict/PDFR_InitialGS gstate put +setglobal +}if +//RotatePages{ +2 copy gt 6 index 6 index gt ne{ +1 index 5 index le 1 index 5 index le and not +}{ +false +}ifelse +}{ +false +}ifelse +{//CenterPages{ +//PDFR_DEBUG{ +(Rotating page, and then centering it)== +}if +90 rotate +0 5 index neg translate +5 index 1 index exch sub 2 div +2 index 6 index sub 2 div neg +translate +}{ +//FitPages{ +1 index 5 index div 1 index 7 index div +2 copy gt{ +exch +}if +pop dup scale +}if +90 rotate +0 5 index neg translate +}ifelse +}{ +//CenterPages{ +//PDFR_DEBUG{ +(Ccentering page)== +}if +1 index 6 index sub 2 div +1 index 6 index sub 2 div +translate +}{ +//FitPages{ +1 index 6 index div 1 index 6 index div +2 copy gt{ +exch +}if +pop dup scale +}if +}ifelse +}ifelse +pop pop +translate +pop pop +//PDFR_DEBUG{ +(SetupPageView end)= +}if +}bind def +/PageContentsDaemon +{ +//PDFR_DEBUG{ +(Executing PageContentsDaemon for )print 2 index = +}if +1 index exch/Context exch put +dup/ImmediateExec true put +dup/IsPage true put +SetPageSize{dup/Context get//SetupPageView exec}if +/pagesave save def +}bind def +/FontFileDaemon +{ +//PDFR_DEBUG{ +(Executing FontFileDaemon for )print 2 index = +}if +dup/FontFileType get +2 index exch +dup//ReadFontProcs exch//knownget exec{ +exch pop exec +}{ +mark(FontFile reader for )2 index( isn't implemented yet.)//error exec +}ifelse +//PDFR_DEBUG{ +(FontFileDaemon end)= +}if +pop +}bind def +/FontDescriptorDaemon +{ +//PDFR_DEBUG{ +(Executing FontDescriptorDaemon for )print 2 index = +}if +2 copy/FontResource exch put +/Subtype get 1 index exch/FontFileType exch put +}bind def +/UnPDFEscape{ +dup dup length string cvs +dup(#)search{ +{ +pop +(16#--)2 index 0 2 getinterval +1 index 3 2 getinterval copy pop +cvi +0 exch put +0 +1 index 2 1 index length 2 sub getinterval +3 copy putinterval +length +3 copy exch put +getinterval +(#)search not{ +pop exit +}if +}loop +(\0)search pop exch pop exch pop +cvn +exch pop +}{ +pop pop +}ifelse +}bind def +/TypeDaemons<< +/Page +{//PDFR_DEBUG{ +(Recognized a page.)= +}if +dup/Contents//knownget exec{ +0 get//DoNothing exch +[ +3 index//PageContentsDaemon/exec load +]cvx +//Register exec +}{ +(fixme: page with no Contents won't be printed.)= +}ifelse +}bind +/FontDescriptor +{//PDFR_DEBUG{ +(Recognized a font descriptor.)= +}if +dup/FontName//knownget exec{ +1 index/FontName 3 -1 roll//UnPDFEscape exec put +}if +dup dup/FontFile known{/FontFile}{/FontFile2}ifelse +//knownget exec{ +0 get//DoNothing exch +[ +3 index//FontFileDaemon/exec load +]cvx +//Register exec +}{ +(Font descriptor )print 1 index =only( has no FontFile.)= +}ifelse +}bind +/Font +{//PDFR_DEBUG{ +(Recognized a font resource.)= +}if +dup/BaseFont//knownget exec{ +//UnPDFEscape exec 2 copy/BaseFont exch put +//PDFReader/RemoveFontNamePrefix get exec +currentglobal exch +dup/Font resourcestatus{ +pop pop +//PDFReader/GetInstalledFont get exec pop +}{ +pop +}ifelse +setglobal +}if +dup/FontDescriptor//knownget exec{ +0 get +dup//IsRegistered exec{ +//PDFR_DEBUG{ +(already registered )print dup = +}if +pop +}{ +//DoNothing exch +[ +3 index//FontDescriptorDaemon/exec load +]cvx +//Register exec +}ifelse +}if +}bind +>>def +/MakeStreamReader +{dup +[ +exch +//PDFR_DEBUG{ +(Stream proc ) +/print load +//PDFR_STREAM{ +(<) +/print load +}if +}if +1 dict dup/i -1 put +/dup load +/i +/get load +1 +/add load +/dup load +3 +1 +/roll load +/i +/exch load +/put load +//knownget +/exec load +/not load +{()} +/if load +//PDFR_DEBUG{ +//PDFR_STREAM{ +/dup load +/print load +(>) +/print load +}if +( end of stream proc.\n) +/print load +}if +]cvx +//PDFR_DEBUG{ +(Stream reader )print dup == +}if +0()/SubFileDecode filter +exch//AppendFilters exec +}bind def +/RunDelayedStream +{ +//GraphicState/InitialTextMatrix get +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get +2 copy get null eq{ +2 copy currentglobal true setglobal matrix exch setglobal put +}if +get copy pop +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 add put +//MakeStreamReader exec +mark exch +cvx exec +counttomark 0 ne{ +mark(Data left on ostack after a delayed stream execution.)//error exec +}if +cleartomark +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 sub put +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get get +//GraphicState/InitialTextMatrix get +copy pop +}bind def +//ReadFontProcs begin +/Type1 +{//PDFR_DEBUG{ +(ReadFontProcs.Type1)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +dup/ImmediateExec true put +/GlobalExec true put +}bind def +/MMType1//Type1 def +/TrueType +{//PDFR_DEBUG{ +(ReadFontProcs.TrueType)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +pop +}bind def +end +/.opdloadttfontdict 50 dict def +.opdloadttfontdict begin +/maxstring 65400 def +end +/.InsertionSort +{ +/CompareProc exch def +/Array exch def +1 1 Array length 1 sub +{ +/Ix exch def +/Value1 Array Ix get def +/Jx Ix 1 sub def +{ +Jx 0 lt{ +exit +}if +/Value2 Array Jx get def +Value1 Value2 CompareProc{ +exit +}if +Array Jx 1 add Value2 put +/Jx Jx 1 sub def +}loop +Array Jx 1 add Value1 put +}for +Array +}bind def +/putu16{ +3 copy -8 bitshift put +exch 1 add exch 16#ff and put +}bind def +/putu32{ +3 copy -16 bitshift putu16 +exch 2 add exch 16#ffff and putu16 +}bind def +/.readtable{ +dup dup 1 and add string +dup 0 4 -1 roll getinterval +3 -1 roll exch +dup()ne{readstring}if pop pop +}bind def +/.readbigtable{ +dup maxstring lt{ +.readtable +}{ +currentuserparams/VMReclaim get -2 vmreclaim +[4 2 roll{ +dup maxstring le{exit}if +1 index maxstring string readstring pop 3 1 roll maxstring sub +}loop .readtable] +exch vmreclaim +}ifelse +}bind def +/ReadTTF +{ +.opdloadttfontdict begin +/TTFontFile exch def +/TableDir TTFontFile 12 string readstring pop def +/tables TTFontFile TableDir 4 getu16 16 mul string readstring pop def +/tabarray tables length 16 idiv array def +TableDir 0 4 getinterval(ttcf)eq{ +QUIET not{(Can't handle TrueType font Collections.)=}if +/.loadttfonttables cvx/invalidfont signalerror +}{ +0 16 tables length 1 sub{ +dup +tables exch 16 getinterval +exch 16 div cvi exch +tabarray 3 1 roll put +}for +}ifelse +tabarray{exch 8 getu32 exch 8 getu32 gt}.InsertionSort pop +/Read TableDir length tables length add def +/tabs[ +tabarray{ +dup 8 getu32 +Read sub +dup 0 gt{ +dup string TTFontFile exch readstring pop pop +Read add/Read exch def +}{ +pop +}ifelse +12 getu32 +dup Read add +/Read exch def +TTFontFile exch .readbigtable +}forall +]def +end +}bind def +/GetLocaType +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(head)eq{ +tabs exch get +50 gets16 +/LocaType exch def +exit +}{ +pop +}ifelse +}for +}bind def +/GetNumGlyphs +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(maxp)eq{ +tabs exch get +4 getu16 +/NumGlyphs exch def +exit +}{ +pop +}ifelse +}for +}bind def +/StringToLoca +{ +/LocaIndex exch def +/StringOffset 0 def +{ +dup length StringOffset gt{ +dup +LocaType 1 eq{ +StringOffset getu32 +LocaArray LocaIndex 3 -1 roll put +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 4 add +def +}{ +StringOffset getu16 2 mul +LocaArray length LocaIndex gt{ +LocaArray LocaIndex 3 -1 roll put +}{ +pop +}ifelse +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 2 add +def +}ifelse +}{ +pop +LocaIndex +exit +}ifelse +}loop +}bind def +/GetSortedLoca +{ +NumGlyphs 1 add array/LocaArray exch def +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(loca)eq{ +tabs exch get +exit +}{ +pop +}ifelse +}for +dup type/stringtype eq{ +0 StringToLoca pop +}{ +0 exch +{ +exch StringToLoca +}forall +pop +}ifelse +LocaArray{gt}.InsertionSort pop +}bind def +/GetWorkingString +{ +WorkString 0 +GlyfArray GlyfStringIndex get +putinterval +/WorkBytes GlyfArray GlyfStringIndex get length def +/GlyfStringIndex GlyfStringIndex 1 add def +}bind def +/GetWorkingBytes +{ +/BytesToRead exch def +WorkString 0 BytesToRead getinterval +dup length string copy +WorkString BytesToRead WorkBytes BytesToRead sub getinterval +dup length string copy +WorkString 0 3 -1 roll putinterval +/WorkBytes WorkBytes BytesToRead sub def +}bind def +/GetGlyfBytes +{ +/ToRead exch def +WorkBytes 0 eq{ +GetWorkingString +}if +WorkBytes ToRead ge{ +ToRead string dup 0 +ToRead GetWorkingBytes putinterval +}{ +ToRead string +dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +ToRead WorkBytes sub +GetWorkingString +GetWorkingBytes +putinterval +}ifelse +}bind def +/SplitGlyf +{ +/GlyfArray exch def +/DestArray GlyfArray length 2 mul array def +/DestArrayIndex 0 def +/LastLoca 0 def +/NextLocaIndex 0 def +/LastLocaIndex 0 def +/GlyfStringIndex 0 def +/WorkString maxstring string def +/WorkBytes 0 def +{ +LocaArray NextLocaIndex get +LastLoca sub maxstring gt +{ +LocaArray LastLocaIndex get LastLoca sub +GetGlyfBytes +DestArray DestArrayIndex 3 -1 roll put +/DestArrayIndex DestArrayIndex 1 add def +LocaArray LastLocaIndex get/LastLoca exch def +}{ +/LastLocaIndex NextLocaIndex def +/NextLocaIndex NextLocaIndex 1 add def +NextLocaIndex NumGlyphs gt +{ +WorkBytes +GlyfStringIndex GlyfArray length lt{ +GlyfArray GlyfStringIndex get length +add string dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +GetWorkingString +WorkString 0 WorkBytes getinterval +putinterval +}{ +pop +WorkString 0 WorkBytes getinterval +}ifelse +dup length string copy +DestArray DestArrayIndex 3 -1 roll put +exit +}if +}ifelse +}loop +DestArray +}bind def +/ProcessTTData +{ +.opdloadttfontdict begin +0 1 tabarray length 1 sub{ +/ix exch def +tabarray ix get +12 getu32 dup maxstring le{ +dup 4 mod 0 ne{ +4 div cvi 1 add 4 mul string/newstring exch def +/oldstring tabs ix get def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix newstring put +}{ +pop +}ifelse +}{ +dup 4 mod 0 ne{ +dup maxstring idiv maxstring mul sub +4 idiv 1 add 4 mul string/newstring exch def +tabs ix get +dup length 1 sub dup/iy exch def get/oldstring exch def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix get iy newstring put +}{ +pop +}ifelse +}ifelse +}for +0 1 tabarray length 1 sub{ +dup tabarray exch get +dup 12 getu32 maxstring gt{ +0 4 getinterval dup(glyf)eq{ +pop +GetLocaType +GetNumGlyphs +GetSortedLoca +dup tabs exch get +SplitGlyf +tabs 3 1 roll put +}{ +(Warning, table )print print( > 64Kb\n)print +pop +}ifelse +}{ +pop +pop +}ifelse +}for +end +}bind def +/Makesfnts +{ +.opdloadttfontdict begin +0 +tabs{ +dup type/stringtype eq{ +pop +1 add +}{ +{ +type/stringtype eq{ +1 add +}if +}forall +}ifelse +}forall +1 add +/TTOffset +TableDir length +tabarray length 16 mul add +def +0 +tabarray{ +exch dup 1 add +3 1 roll +dup +tabs exch get +dup type/stringtype eq{ +length +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}{ +0 exch +{ +dup type/stringtype eq{ +length add +}{ +pop +}ifelse +}forall +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}ifelse +}forall +pop +array +dup 0 +TableDir length +tables length add +string +dup 0 TableDir putinterval +dup 12 tables putinterval +put +dup +/ix 1 def +tabs{ +dup type/stringtype eq{ +ix exch +put dup +/ix ix 1 add def +}{ +{ +dup type/stringtype eq{ +ix exch put dup +/ix ix 1 add def +}{ +pop +}ifelse +}forall +}ifelse +}forall +pop +end +}bind def +/MakeType42 +{ +//PDFR_DEBUG{ +(MakeType42 beg)= +}if +10 dict begin +/FontName 1 index/FontName get def +/FontType 42 def +/FontMatrix[1 0 0 1 0 0]def +/FontBBox 1 index/FontBBox get def +dup/FontResource get +dup/Encoding known{ +//PDFReader/ObtainEncoding get exec +/Encoding get +}{ +pop null +}ifelse +/PDFEncoding exch def +/CharStrings 2 index//PDFReader/MakeTTCharStrings get exec def +/sfnts 2 index//MakeStreamReader exec +ReadTTF +ProcessTTData +Makesfnts +def +/Encoding StandardEncoding def +/PaintType 0 def +currentdict end +//PDFR_DEBUG{ +(MakeType42 end)= +}if +}bind def +/GetInstalledFont +{ +dup//InstalledFonts exch knownget{ +exch pop +}{ +dup findfont dup 3 1 roll +//InstalledFonts 3 1 roll put +}ifelse +}bind def +/RemoveFontNamePrefix +{//=string cvs true +0 1 5{ +2 index exch get//IsUpper exec not{ +pop false exit +}if +}for +{(+)search{ +pop pop +}if +}if +cvn +}bind def +/CheckFont +{dup/Type get/Font ne{ +mark(Resource )3 index( must have /Type/Font .)//error exec +}if +}bind def +/CheckEncoding +{dup type/nametype ne{ +dup/Type get/Encoding ne{ +mark(Resource )3 index( must have /Type/Encoding .)//error exec +}if +}if +}bind def +/ObtainEncoding +{dup/Encoding known{ +dup dup/Encoding//CheckEncoding//ResolveD exec +dup type dup/arraytype eq exch/packedarraytype eq or{ +pop pop +}{ +dup type/nametype eq{ +/Encoding findresource +}{ +dup/BaseEncoding//knownget exec not{ +/StandardEncoding +}if +/Encoding findresource +exch +/Differences//knownget exec{ +exch dup length array copy exch +0 exch +{ +dup type/integertype eq{ +exch pop +}{ +3 copy put pop +1 add +}ifelse +}forall +pop +}if +}ifelse +/Encoding exch put +}ifelse +}{ +dup/Encoding/StandardEncoding/Encoding findresource put +}ifelse +}bind def +/ObtainMetrics +{dup/Widths//knownget exec{ +1 index/Encoding get +256 dict +3 index/Subtype get/TrueType eq{ +1000 +}{ +1 +}ifelse +4 index/MissingWidth//knownget exec not{ +0 +}if +5 index/FirstChar//knownget exec not{ +0 +}if +6 5 roll +dup 0 exch 1 exch length 1 sub{ +2 copy get +exch 3 index add +7 index exch get +dup dup null ne exch/.notdef ne and{ +6 index 3 1 roll exch +6 index div +3 copy pop//knownget exec{ +0 eq +}{ +true +}ifelse +{put +}{ +pop pop pop +}ifelse +}{ +pop pop +}ifelse +}for +pop pop pop pop exch pop +1 index exch/Metrics exch put +}{ +dup/MissingWidth//knownget exec{ +256 dict +2 index/Encoding get{ +dup null ne{ +3 copy 3 2 roll put +}if +pop +}forall +exch pop +1 index exch/Metrics exch put +}if +}ifelse +}bind def +/NotDef +{ +FontMatrix aload pop pop pop exch pop exch pop +1 exch div exch +1 exch div exch +1 index 0 setcharwidth +0 setlinewidth +0 0 moveto +2 copy rlineto +1 index 0 rlineto +neg exch neg exch rlineto +closepath stroke +}bind def +/SaveResourcesToStack +{ +[ +//PDFReader/OldResources known{ +//PDFReader/OldResources get +}{ +null +}ifelse +//PDFReader/CurrentObject get/Context get/Resources get +] +//PDFReader/OldResources 3 -1 roll put +}bind def +/RestoreResourcesFromStack +{ +//PDFReader/OldResources get dup +0 get//PDFReader/OldResources 3 -1 roll put +1 get//PDFReader/CurrentObject get/Context get/Resources 3 -1 roll put +}bind def +/BuildChar +{//PDFR_DEBUG{ +(BuildChar )print dup//=only exec( )print +}if +exch begin +Encoding exch get +//PDFR_DEBUG{ +dup = +}if +dup null eq{ +pop//NotDef exec +} +{ +CharProcs exch//knownget exec +{ +currentfont/Font get/Resources//knownget exec{ +exec +SaveResourcesToStack +//PDFReader/CurrentObject get/Context get +/Resources 3 -1 roll put +//RunDelayedStream exec +RestoreResourcesFromStack +}{ +//RunDelayedStream exec +}ifelse +} +{ +//NotDef exec +}ifelse +}ifelse +end +}bind def +/printdict +{(<<)= +{exch = ==}forall +(>>)= +}bind def +/printfont +{ +dup{ +exch dup = +dup/Encoding eq{ +pop = +}{ +dup/FontInfo eq exch/Private eq or{ +//printdict exec +}{ +== +}ifelse +}ifelse +}forall +}bind def +/ScaleMetrics +{1 index{ +2 index div +3 index +3 1 roll put +}forall +pop +}bind def +/ResolveAndSetFontAux +{exch dup +//PDFReader/CurrentObject get/Context get/Resources get +/Font//DoNothing//ResolveD exec +exch//CheckFont//ResolveD exec +dup/Font//knownget exec{ +exch pop exch pop +}{ +{ +dup/Subtype get dup dup/Type1 eq exch/TrueType eq or exch/MMType1 eq or{ +exch pop +dup/BaseFont get +//RemoveFontNamePrefix exec +//PDFR_DEBUG{ +(Font )print dup = +}if +1 index/FontDescriptor known{ +//PDFR_DEBUG{ +(Font from a font descriptor.)= +}if +1 index +/FontDescriptor//DoNothing//ResolveD exec +/Font//knownget exec{ +exch pop +}{ +//PDFR_DEBUG{ +(Font descriptor has no Font resolved.)= +}if +//GetInstalledFont exec +}ifelse +}{ +//GetInstalledFont exec +}ifelse +exch +dup/Encoding known not{ +1 index/Encoding get 1 index exch/Encoding exch put +}if +//ObtainEncoding exec +//ObtainMetrics exec +exch +dup length dict copy +dup 2 index/Encoding get +/Encoding exch put +1 index/Metrics//knownget exec{ +2 index/Subtype get/TrueType ne{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +0.001 div +//ScaleMetrics exec +}{ +1 index/sfnts known not{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +//ScaleMetrics exec +}if +}ifelse +1 index exch/Metrics exch put +}if +1 index/BaseFont get +exch +dup/FID undef +dup/UniqueID undef +definefont +dup 3 1 roll +/Font exch put +exit +}if +dup/Subtype get/Type3 eq{ +//ObtainEncoding exec +2 copy exch/FontName exch put +dup/CharProcs get//ResolveDict exec +dup/FontType 3 put +dup/BuildChar//BuildChar put +dup dup/Font exch put +dup 3 1 roll +definefont +2 copy ne{ +2 copy/Font exch put +}if +exch pop +exit +}if +dup/Subtype get/Type0 eq{ +}if +dup/Subtype get/CIDFontType0 eq{ +}if +dup/Subtype get/CIDFontType2 eq{ +}if +mark(Unknown font type )2 index/Subtype get//error exec +}loop +}ifelse +exch scalefont setfont +}bind def +/ResolveAndSetFont +{ +//ResolveAndSetFontAux exec +}bind def +/.knownget +{2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/.min +{2 copy lt{ +exch +}if +pop +}bind def +/.max +{2 copy gt{ +exch +}if +pop +}bind def +/.dicttomark +{>> +}bind def +/getu16{ +2 copy get 8 bitshift 3 1 roll 1 add get add +}bind def +/gets16{ +getu16 16#8000 xor 16#8000 sub +}bind def +/getu32{ +2 copy getu16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/gets32{ +2 copy gets16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/cmapformats mark +0{ +6 256 getinterval{}forall 256 packedarray +}bind +2{ +/sHK_sz 2 def +/sH_sz 8 def +dup 2 getu16/cmapf2_tblen exch def +dup 4 getu16/cmapf2_lang exch def +dup 6 256 sHK_sz mul getinterval/sHKs exch def +0 +0 1 255{ +sHKs exch +2 mul getu16 +1 index +1 index +lt{exch}if pop +}for +/sH_len exch def +dup 6 256 sHK_sz mul add +cmapf2_tblen 1 index sub getinterval +/sH_gIA exch def +/cmapf2_glyph_array 65535 array def +/.cmapf2_putGID{ +/cmapf2_ch cmapf2_ch_hi 8 bitshift cmapf2_ch_lo add def +firstCode cmapf2_ch_lo le +cmapf2_ch_lo firstCode entryCount add lt +and{ +sH_offset idRangeOffset add +cmapf2_ch_lo firstCode sub 2 mul +add 6 add +sH_gIA exch getu16 +dup 0 gt{ +idDelta add +cmapf2_glyph_array exch cmapf2_ch exch put +}{ +pop +}ifelse +}{ +}ifelse +}def +16#00 1 16#ff{ +/cmapf2_ch_hi exch def +sHKs cmapf2_ch_hi sHK_sz mul getu16 +/sH_offset exch def +sH_gIA sH_offset sH_sz getinterval +dup 0 getu16/firstCode exch def +dup 2 getu16/entryCount exch def +dup 4 gets16/idDelta exch def +dup 6 getu16/idRangeOffset exch def +pop +sH_offset 0 eq{ +/cmapf2_ch_lo cmapf2_ch_hi def +/cmapf2_ch_hi 0 def +.cmapf2_putGID +}{ +16#00 1 16#ff{ +/cmapf2_ch_lo exch def +.cmapf2_putGID +}for +}ifelse +}for +pop +0 1 cmapf2_glyph_array length 1 sub{ +dup cmapf2_glyph_array exch get +null eq{cmapf2_glyph_array exch 0 put}{pop}ifelse +}for +cmapf2_glyph_array +}bind +4{ +/etab exch def +/nseg2 etab 6 getu16 def +14/endc etab 2 index nseg2 getinterval def +2 add +nseg2 add/startc etab 2 index nseg2 getinterval def +nseg2 add/iddelta etab 2 index nseg2 getinterval def +nseg2 add/idroff etab 2 index nseg2 getinterval def +pop +/firstcode startc 0 getu16 16#ff00 and dup 16#f000 ne{pop 0}if def +/lastcode firstcode def +/striptopbyte false def +/putglyph{ +glyphs code 3 -1 roll put/code code 1 add def +}bind def +/numcodes 0 def/glyphs 0 0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +ecode lastcode gt{ +/lastcode ecode def +}if +}for pop +firstcode 16#f000 ge lastcode firstcode sub 255 le and{ +lastcode 255 and +/striptopbyte true def +}{ +lastcode +}ifelse +1 add +array def +glyphs length 1024 ge{ +.array1024z 0 1024 glyphs length 1023 sub{glyphs exch 2 index putinterval}for +glyphs dup length 1024 sub 3 -1 roll +putinterval +}{ +0 1 glyphs length 1 sub{glyphs exch 0 put}for +}ifelse +/numcodes 0 def/code 0 def +0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +numcodes scode firstcode sub +exch sub 0 .max dup/code exch code exch add def +ecode scode sub 1 add add numcodes add/numcodes exch def +/delta iddelta i2 gets16 def +TTFDEBUG{ +(scode=)print scode =only +( ecode=)print ecode =only +( delta=)print delta =only +( droff=)print idroff i2 getu16 = +}if +idroff i2 getu16 dup 0 eq{ +pop scode delta add 65535 and 1 ecode delta add 65535 and +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +{putglyph}for +}{ +/gloff exch 14 nseg2 3 mul add 2 add i2 add add def +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +0 1 ecode scode sub{ +2 mul gloff add etab exch getu16 +dup 0 ne{delta add 65535 and}if putglyph +}for +}ifelse +}for glyphs/glyphs null def +}bind +6{ +dup 6 getu16/firstcode exch def dup 8 getu16/ng exch def +firstcode ng add array +0 1 firstcode 1 sub{2 copy 0 put pop}for +dup firstcode ng getinterval +0 1 ng 1 sub{ +dup 2 mul 10 add 4 index exch getu16 3 copy put pop pop +}for pop exch pop +}bind +.dicttomark readonly def +/cmaparray{ +dup 0 getu16 cmapformats exch .knownget{ +TTFDEBUG{ +(cmap: format )print 1 index 0 getu16 = flush +}if exec +}{ +(Can't handle format )print 0 getu16 = flush +0 1 255{}for 256 packedarray +}ifelse +TTFDEBUG{ +(cmap: length=)print dup length = dup == +}if +}bind def +/postremap mark +/Cdot/Cdotaccent +/Edot/Edotaccent +/Eoverdot/Edotaccent +/Gdot/Gdotaccent +/Ldot/Ldotaccent +/Zdot/Zdotaccent +/cdot/cdotaccent +/edot/edotaccent +/eoverdot/edotaccent +/gdot/gdotaccent +/ldot/ldotaccent +/zdot/zdotaccent +.dicttomark readonly def +/get_from_stringarray +{1 index type/stringtype eq{ +get +}{ +exch{ +2 copy length ge{ +length sub +}{ +exch get exit +}ifelse +}forall +}ifelse +}bind def +/getinterval_from_stringarray +{ +2 index type/stringtype eq{ +getinterval +}{ +string exch 0 +4 3 roll{ +dup length +dup 4 index lt{ +3 index exch sub +exch pop 3 1 roll exch pop +}{ +dup 3 1 roll +4 index sub +5 index length 4 index sub +2 copy gt{exch}if pop +dup 3 1 roll +5 index exch getinterval +5 index 4 index 3 index +getinterval +copy pop +exch pop add exch pop 0 exch +dup 3 index length ge{exit}if +}ifelse +}forall +pop pop +}ifelse +}bind def +/string_array_size +{dup type/stringtype eq{ +length +}{ +0 exch{length add}forall +}ifelse +}bind def +/postformats mark +16#00010000{ +pop MacGlyphEncoding +} +16#00020000{ +dup dup type/arraytype eq{0 get}if length 36 lt{ +TTFDEBUG{(post format 2.0 invalid.)= flush}if +pop[] +}{ +/postglyphs exch def +/post_first postglyphs dup type/arraytype eq{0 get}if def +post_first 32 getu16/numglyphs exch def +/glyphnames numglyphs 2 mul 34 add def +/postpos glyphnames def +/total_length postglyphs//string_array_size exec def +numglyphs array 0 1 numglyphs 1 sub{ +postpos total_length ge{ +1 numglyphs 1 sub{1 index exch/.notdef put}for +exit +}if +postglyphs postpos//get_from_stringarray exec +postglyphs postpos 1 add 2 index//getinterval_from_stringarray exec cvn +exch postpos add 1 add/postpos exch def +2 index 3 1 roll +put +}for +/postnames exch def +numglyphs array 0 1 numglyphs 1 sub{ +dup 2 mul 34 add postglyphs exch 2//getinterval_from_stringarray exec +dup 0 get 8 bitshift exch 1 get add dup 258 lt{ +MacGlyphEncoding exch get +}{ +dup 32768 ge{ +pop/.notdef +}{ +258 sub dup postnames length ge{ +TTFDEBUG{( *** warning: glyph index past end of 'post' table)= flush}if +pop +exit +}if +postnames exch get +postremap 1 index .knownget{exch pop}if +}ifelse +}ifelse +2 index 3 1 roll put +}for +} +ifelse +}bind +16#00030000{ +pop[] +}bind +.dicttomark readonly def +/first_post_string +{ +post dup type/arraytype eq{0 get}if +}bind def +/.getpost{ +/glyphencoding post null eq{ +TTFDEBUG{(post missing)= flush}if[] +}{ +postformats first_post_string 0 getu32 .knownget{ +TTFDEBUG{ +(post: format )print +first_post_string +dup 0 getu16 =only(,)print 2 getu16 = flush +}if +post exch exec +}{ +TTFDEBUG{(post: unknown format )print post 0 getu32 = flush}if[] +}ifelse +}ifelse def +}bind def +/MacRomanEncoding[ +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +]/Encoding defineresource pop +/TTParser<< +/Pos 0 +/post null +>>def +/readu8 +{read not{ +mark(Insufficient data in the stream.)//error exec +}if +}bind def +/readu16 +{dup//readu8 exec 8 bitshift exch//readu8 exec or +}bind def +/reads16 +{//readu16 exec 16#8000 xor 16#8000 sub +}bind def +/readu32 +{dup//readu16 exec 16 bitshift exch//readu16 exec or +}bind def +/reads32 +{dup//reads16 exec 16 bitshift exch//readu16 exec or +}bind def +/SkipToPosition +{dup//TTParser/Pos get +exch//TTParser exch/Pos exch put +sub +//PDFR_DEBUG{ +(Skipping )print dup//=only exec( bytes.)= +}if +dup 0 eq{ +pop pop +}{ +dup 3 1 roll +()/SubFileDecode filter +exch +{1 index//BlockBuffer readstring pop length +dup 0 eq{pop exch pop exit}if +sub +}loop +0 ne{ +mark(Insufficient data in the stream for SkipToPosition.)//error exec +}if +}ifelse +}bind def +/TagBuffer 4 string def +/ParseTTTableDirectory +{//PDFR_DEBUG{ +(ParseTTTableDirectory beg)= +}if +15 dict begin +dup//readu32 exec 16#00010000 ne{ +mark(Unknown True Type version.)//error exec +}if +dup//readu16 exec/NumTables exch def +dup//readu16 exec/SearchRange exch def +dup//readu16 exec/EntrySelector exch def +dup//readu16 exec/RangeShift exch def +//PDFR_DEBUG{ +(NumTables = )print NumTables = +}if +NumTables{ +dup//TagBuffer readstring not{ +mark(Could not read TT tag.)//error exec +}if +cvn +[2 index//readu32 exec pop +2 index//readu32 exec +3 index//readu32 exec +] +//PDFR_DEBUG{ +2 copy exch//=only exec( )print == +}if +def +}repeat +pop +//TTParser/Pos 12 NumTables 16 mul add put +currentdict end +//PDFR_DEBUG{ +(ParseTTTableDirectory end)= +}if +}bind def +/ParseTTcmap +{//PDFR_DEBUG{ +(ParseTTcmap beg)= +}if +/cmap get aload pop +3 1 roll +7 dict begin +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(cmap position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos get/TablePos exch def +dup//readu16 exec pop +dup//readu16 exec/NumEncodings exch def +//PDFR_DEBUG{ +(NumEncodings = )print NumEncodings = +}if +null +NumEncodings{ +1 index//readu32 exec +2 index//readu32 exec +3 array dup 3 2 roll 0 exch put +2 index null ne{ +dup 0 get 3 index 0 get sub +3 index exch 1 exch put +}if +dup 4 3 roll pop 3 1 roll +def +}repeat +dup 0 get +4 3 roll exch sub +1 exch put +//PDFR_DEBUG{ +currentdict{ +exch dup type/integertype eq{ +//PrintHex exec( )print == +}{ +pop pop +}ifelse +}forall +}if +4 NumEncodings 8 mul add/HeaderLength exch def +//TTParser/Pos//TTParser/Pos get HeaderLength add put +0 +NumEncodings{ +16#7FFFFFF null +currentdict{ +1 index type/integertype eq{ +exch pop dup 0 get +dup 5 index gt{ +dup 4 index lt{ +4 1 roll +exch pop exch pop +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}forall +//PDFR_DEBUG{ +(Obtaining subtable for )print dup == +}if +3 2 roll pop +3 copy pop +TablePos add//SkipToPosition exec +3 copy exch pop 1 get +//TTParser/Pos//TTParser/Pos get 3 index add put +string +readstring not{ +mark(Can't read a cmap subtable.)//error exec +}if +2 exch put +}repeat +pop pop +currentdict end +//PDFR_DEBUG{ +(ParseTTcmap end)= +}if +}bind def +/GetTTEncoding +{//PDFR_DEBUG{ +(GetTTEncoding beg)= +}if +get +exch pop +2 get +10 dict begin +/TTFDEBUG//PDFR_DEBUG def +//cmaparray exec +end +//PDFR_DEBUG{ +(GetTTEncoding end)= +dup == +}if +}bind def +/InverseEncoding +{ +256 dict begin +dup length 1 sub -1 0{ +2 copy get +exch +1 index currentdict exch//knownget exec{ +dup type/arraytype eq{ +aload length 1 add array astore +}{ +2 array astore +}ifelse +}if +def +}for +pop +currentdict end +}bind def +/GetMacRomanEncodingInverse +{//PDFReader/MacRomanEncodingInverse get +dup null eq{ +pop +MacRomanEncoding//InverseEncoding exec +dup//PDFReader exch/MacRomanEncodingInverse exch put +}if +}bind def +/PutCharStringSingle +{ +dup 3 index length lt{ +2 index exch get +dup 0 ne{ +def +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/PutCharString +{1 index type/nametype ne{ +mark(Bad charstring name)//error exec +}if +dup type/arraytype eq{ +{ +3 copy//PutCharStringSingle exec +pop pop +}forall +pop +}{ +//PutCharStringSingle exec +}ifelse +}bind def +/ComposeCharStrings +{ +//PDFR_DEBUG{ +(ComposeCharStrings beg)= +}if +1 index length 1 add dict begin +/.notdef 0 def +exch +//TTParser/post get +dup null ne{ +exch +1 index length 1 sub -1 0{ +dup 3 index exch get exch +dup 0 eq 2 index/.notdef eq or{ +pop pop +}{ +def +}ifelse +}for +}if +exch pop exch +{ +//PutCharString exec +}forall +pop +currentdict end +//PDFR_DEBUG{ +(ComposeCharStrings end)= +}if +}bind def +/ParseTTpost +{ +//PDFR_DEBUG{ +(ParseTTpost beg)= +}if +/post get aload pop +3 1 roll +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(post position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos//TTParser/Pos get 4 index add put +exch dup 65535 le{ +string +readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}{ +[3 1 roll +dup 16384 div floor cvi +exch 1 index 16384 mul +sub exch +1 sub 0 1 3 -1 roll +{ +1 add index +16384 string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}for +counttomark -2 roll +string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +] +}ifelse +1 dict begin +/post exch def +//.getpost exec +//TTParser/post glyphencoding put +//PDFR_DEBUG{ +(ParseTTpost end)= +glyphencoding == +}if +end +}bind def +/MakeTTCharStrings +{//MakeStreamReader exec +dup dup//ParseTTTableDirectory exec +//TTParser/post null put +dup/post//knownget exec{ +0 get +1 index/cmap get 0 get +lt{ +2 copy//ParseTTpost exec +//ParseTTcmap exec +}{ +2 copy//ParseTTcmap exec +3 1 roll +//ParseTTpost exec +}ifelse +}{ +//ParseTTcmap exec +}ifelse +{ +dup 16#00030001 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Windows Unicode.)= +}if +16#00030001//GetTTEncoding exec +AdobeGlyphList//ComposeCharStrings exec +exit +}if +dup 16#00010000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Macintosh Roman.)= +}if +16#00010000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +dup 16#00030000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding 3.0 - not sure why Ghostscript writes it since old versions.)= +}if +16#00030000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +mark(True Type cmap has no useful encodings.)//error exec +}loop +//PDFR_DEBUG{ +(CharStrings <<)= +dup{ +exch +dup type/nametype eq{ +//=only exec +}{ +== +}ifelse +( )print == +}forall +(>>)= +}if +}bind def +/ScaleVal +{ +aload pop +1 index sub +3 2 roll mul add +}bind def +/ScaleArg +{ +aload pop +1 index sub +3 1 roll +sub exch div +}bind def +/ScaleArgN +{ +dup length 2 sub -2 0{ +2 +2 index 3 1 roll getinterval +3 2 roll +exch//ScaleArg exec +1 index length 2 idiv 1 add 1 roll +}for +pop +}bind def +/ComputeFunction_10 +{ +//PDFR_DEBUG{ +(ComputeFunction_10 beg )print 1 index//=only exec( stack=)print count = +}if +exch +dup 1 eq{ +pop dup length 1 sub get +}{ +1 index length 1 sub mul +dup dup floor sub +dup 0 eq{ +pop cvi get +}{ +3 1 roll floor cvi +2 getinterval +aload pop +2 index mul 3 2 roll 1 exch sub 3 2 roll mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_10 end )print dup//=only exec( stack=)print count = +}if +}bind def +/ComputeFunction_n0 +{ +//PDFR_DEBUG{ +(ComputeFunction_n0 beg N=)print dup//=only exec( stack=)print count = +}if +dup 0 eq{ +pop +}{ +dup 2 add -1 roll +dup 3 index length 1 sub ge{ +pop 1 sub +exch dup length 1 sub get exch +//PDFReader/ComputeFunction_n0 get exec +}{ +dup floor cvi dup +4 index exch get +3 index dup +5 add copy +6 2 roll +pop pop pop pop +1 sub +//PDFReader/ComputeFunction_n0 get exec +3 2 roll pop +exch +4 3 roll exch +4 add 2 roll 1 add +3 2 roll exch get +exch 1 sub +//PDFReader/ComputeFunction_n0 get exec +1 index mul +3 1 roll +1 exch sub mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_n0 end )print dup//=only exec( stack=)print count = +}if +}bind def +/FunctionToProc_x01 +{ +dup/Domain get exch +dup/Data get 0 get exch +/Size get length +[4 1 roll +//PDFR_DEBUG{ +{(function beg, stack =)print count//=only exec(\n)print}/exec load +5 2 roll +}if +dup 1 gt{ +{mark exch +3 add 2 roll +//ScaleArgN exec +counttomark dup +3 add -2 roll +pop exch +//ComputeFunction_n0 exec +}/exec load +}{ +pop +3 1/roll load//ScaleArg/exec load +/exch load +//ComputeFunction_10/exec load +}ifelse +//PDFR_DEBUG{ +(function end, stack =)/print load/count load//=only/exec load(\n)/print load +}if +]cvx +//PDFR_DEBUG{ +(Made a procedure for the 1-result function :)= +dup == +}if +}bind def +/FunctionProcDebugBeg +{(FunctionProcDebugBeg )print count = +}bind def +/FunctionProcDebugEnd +{(FunctionProcDebugEnd )print count = +}bind def +/FunctionToProc_x0n +{ +PDFR_DEBUG{ +(FunctionToProc_x0n beg m=)print dup = +}if +1 index/Size get length exch +dup 7 mul 2 add array +PDFR_DEBUG{ +dup 0//FunctionProcDebugBeg put +}{ +dup 0//DoNothing put +}ifelse +dup 1/exec load put +dup 2 5 index/Domain get put +2 index 1 eq{ +dup 3//ScaleArg put +}{ +dup 3//ScaleArgN put +}ifelse +dup 4/exec load put +1 index 1 sub 0 exch 1 exch{ +dup 7 mul 5 add +1 index 4 index 1 sub ne{ +dup 3 index exch 6 index put 1 add +dup 3 index exch/copy load put 1 add +}if +[ +6 index/Data get 3 index get +6 index 1 eq{ +//ComputeFunction_10/exec load +}{ +6 index +//ComputeFunction_n0/exec load +}ifelse +]cvx +3 index exch 2 index exch put 1 add +2 index 1 index/exec load put 1 add +1 index 4 index 1 sub ne{ +2 index 1 index 6 index 1 add put 1 add +2 index 1 index 1 put 1 add +2 index 1 index/roll load put +}if +pop pop +}for +PDFR_DEBUG{ +dup dup length 2 sub//FunctionProcDebugEnd put +}{ +dup dup length 2 sub//DoNothing put +}ifelse +dup dup length 1 sub/exec load put +cvx exch pop exch pop exch pop +//PDFR_DEBUG{ +(Made a procedure for the n-argument function :)= +dup == +}if +PDFR_DEBUG{ +(FunctionToProc_x0n end)= +}if +}bind def +/MakeTableRec +{ +0 +exec +}bind def +/MakeTable +{//PDFR_DEBUG{ +(MakeTable beg )print count = +}if +1 index/Size get exch +1 sub dup +3 1 roll +get +array +1 index 0 eq{ +exch pop exch pop +}{ +dup length 1 sub -1 0{ +3 index 3 index//MakeTableRec exec +2 index 3 1 roll put +}for +exch pop exch pop +}ifelse +//PDFR_DEBUG{ +(MakeTable end )print count = +}if +}bind def +//MakeTableRec 0//MakeTable put +/StoreSample +{ +1 sub +dup 0 eq{ +pop +}{ +-1 1{ +I exch get get +}for +}ifelse +I 0 get 3 2 roll put +}bind def +/ReadSample32 +{ +4{ +File read not{ +mark(Insufficient data for function.)//error exec +}if +}repeat +pop +3 1 roll exch +256 mul add 256 mul add +//1_24_bitshift_1_sub div +}bind def +/ReadSample +{ +Buffer BitsLeft BitsPerSample +{2 copy ge{ +exit +}if +3 1 roll +8 add 3 1 roll +256 mul File read not{ +mark(Insufficient data for function.)//error exec +}if +add +3 1 roll +}loop +sub dup +2 index exch +neg bitshift +2 copy exch bitshift +4 3 roll exch sub +/Buffer exch def +exch/BitsLeft exch def +Div div +}bind def +/ReadSamplesRec +{0 +exec +}bind def +/ReadSamples +{ +//PDFR_DEBUG{ +(ReadSamples beg )print count = +}if +dup 1 eq{ +pop +0 1 Size 0 get 1 sub{ +I exch 0 exch put +0 1 M 1 sub{ +dup Range exch 2 mul 2 getinterval +//PDFR_DEBUG{ +(Will read a sample ... )print +}if +BitsPerSample 32 eq{//ReadSample32}{//ReadSample}ifelse +exec exch//ScaleVal exec +//PDFR_DEBUG{ +(value=)print dup = +}if +exch Table exch get +Size length//StoreSample exec +}for +}for +}{ +1 sub +dup Size exch get 0 exch 1 exch 1 sub{ +I exch 2 index exch put +dup//ReadSamplesRec exec +}for +pop +}ifelse +//PDFR_DEBUG{ +(ReadSamples end )print count = +}if +}bind def +//ReadSamplesRec 0//ReadSamples put +/StreamToArray +{//PDFR_DEBUG{ +(StreamToArray beg )print count = +}if +userdict/FuncDataReader get begin +dup/BitsPerSample get/BitsPerSample exch def +dup/Size get length/N exch def +dup/Range get length 2 idiv/M exch def +1 BitsPerSample bitshift 1 sub/Div exch def +/BitsLeft 0 def +/Buffer 0 def +dup/Size get/Size exch def +dup/Range get/Range exch def +/File 1 index//MakeStreamReader exec def +/I[N{0}repeat]def +M array +dup length 1 sub -1 0{ +2 index N//MakeTable exec +2 index 3 1 roll put +}for +/Table exch def +N//ReadSamples exec +PDFR_DEBUG{ +(Table = )print Table == +}if +/Data Table put +end +//PDFR_DEBUG{ +(StreamToArray end )print count = +}if +}bind def +/FunctionToProc10 +{ +PDFR_DEBUG{ +(FunctionToProc10 beg, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +PDFR_DEBUG{ +(FunctionToProc10 end)= +}if +}bind def +/FunctionToProc12 +{begin +currentdict/C0//knownget exec{length 1 eq}{true}ifelse{ +N +currentdict/C0//knownget exec{ +0 get +}{ +0 +}ifelse +currentdict/C1//knownget exec{ +0 get +}{ +1 +}ifelse +1 index sub +[4 1 roll +{ +4 2 roll +exp mul add +}aload pop +]cvx +}{ +[ +0 1 C0 length 1 sub{ +N +C0 2 index get +C1 3 index get +4 3 roll pop +1 index sub +[/dup load +5 2 roll +{ +4 2 roll +exp mul add +exch +}aload pop +]cvx +/exec load +}for +/pop load +]cvx +}ifelse +end +//PDFR_DEBUG{ +(FunctionType2Proc : )print dup == +}if +}bind def +/FunctionToProc14 +{//MakeStreamReader exec cvx exec +//PDFR_DEBUG{ +(FunctionType4Proc : )print dup == +}if +}bind def +/FunctionToProc1 +{ +dup/FunctionType get +{dup 0 eq{ +pop//FunctionToProc10 exec exit +}if +dup 2 eq{ +pop//FunctionToProc12 exec exit +}if +dup 4 eq{ +pop//FunctionToProc14 exec exit +}if +mark exch(Function type )exch( isn't implemented yet.)//error exec +}loop +}bind def +/FunctionToProc20 +{ +PDFR_DEBUG{ +(FunctionToProc20, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +}bind def +/FunctionToProc +{//PDFR_DEBUG{ +(FunctionToProc beg )print count = +}if +dup type/dicttype eq{ +dup/Domain get length 2 idiv +{ +dup 1 eq{ +pop//FunctionToProc1 exec exit +}if +dup 2 eq{ +pop//FunctionToProc20 exec exit +}if +mark(Functions with many arguments aren't implemented yet.)//error exec +}loop +}{ +//PDFR_DEBUG{(Not a function dict, assume already a procedure.)print}if +}ifelse +//PDFR_DEBUG{ +(FunctionToProc end )print count = +}if +}bind def +/spotfunctions mark +/Round{ +abs exch abs 2 copy add 1 le{ +dup mul exch dup mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +} +/Diamond{ +abs exch abs 2 copy add .75 le{ +dup mul exch dup mul add 1 exch sub +}{ +2 copy add 1.23 le{ +.85 mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +}ifelse +} +/Ellipse{ +abs exch abs 2 copy 3 mul exch 4 mul add 3 sub dup 0 lt{ +pop dup mul exch .75 div dup mul add 4 div 1 exch sub +}{ +dup 1 gt{ +pop 1 exch sub dup mul exch 1 exch sub +.75 div dup mul add 4 div 1 sub +}{ +.5 exch sub exch pop exch pop +}ifelse +}ifelse +} +/EllipseA{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseA{dup mul .9 mul exch dup mul add 1 sub} +/EllipseB{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub} +/EllipseC{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseC{dup mul .9 mul exch dup mul add 1 sub} +/Line{exch pop abs neg} +/LineX{pop} +/LineY{exch pop} +/Square{abs exch abs 2 copy lt{exch}if pop neg} +/Cross{abs exch abs 2 copy gt{exch}if pop neg} +/Rhomboid{abs exch abs 0.9 mul add 2 div} +/DoubleDot{2{360 mul sin 2 div exch}repeat add} +/InvertedDoubleDot{2{360 mul sin 2 div exch}repeat add neg} +/SimpleDot{dup mul exch dup mul add 1 exch sub} +/InvertedSimpleDot{dup mul exch dup mul add 1 sub} +/CosineDot{180 mul cos exch 180 mul cos add 2 div} +/Double{exch 2 div exch 2{360 mul sin 2 div exch}repeat add} +/InvertedDouble{ +exch 2 div exch 2{360 mul sin 2 div exch}repeat add neg +} +.dicttomark readonly def +/CheckColorSpace +{ +dup type/arraytype ne{ +mark(Resource )3 index( must be an array.)//error exec +}if +}bind def +/SubstitutePDFColorSpaceRec +{0 +exec +}bind def +/SubstitutePDFColorSpace +{ +{ +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup dup 1//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +1 exch put +}if +exit +}if +dup 0 get/Indexed eq{ +exit +}if +dup 0 get/Separation eq{ +dup dup 2//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +2 exch put +exit +}if +dup 0 get/CalGray eq{ +1 get +dup/Gamma//knownget exec{ +[exch[exch/exp load]cvx dup dup] +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedA exch] +exit +}if +dup 0 get/CalRGB eq{ +1 get +dup/Matrix//knownget exec{ +1 index exch/MatrixLMN exch put +}if +dup/Gamma//knownget exec{ +aload pop +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +3 array astore +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedABC exch] +exit +}if +dup 0 get/Lab eq{ +1 get +begin +currentdict/Range//knownget exec{aload pop}{-100 100 -100 100}ifelse +0 100 6 2 roll 6 array astore +/RangeABC exch def +/DecodeABC[{16 add 116 div}bind{500 div}bind{200 div}bind]def +/MatrixABC[1 1 1 1 0 0 0 0 -1]def +{dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108 841 div mul}ifelse} +/DecodeLMN[ +[3 index aload pop WhitePoint 0 get/mul load]cvx +[4 index aload pop WhitePoint 1 get/mul load]cvx +[5 index aload pop WhitePoint 2 get/mul load]cvx +]def pop +//PDFR_DEBUG{ +(Constructed from Lab <<)= +currentdict{exch = ==}forall +(>>)= +}if +[/CIEBasedABC currentdict] +end +exit +pop +}if +dup 0 get/CIEBasedA eq{exit}if +dup 0 get/CIEBasedABC eq{exit}if +mark exch(Unimplemented color space )exch//error exec +}loop +}bind def +//SubstitutePDFColorSpaceRec 0//SubstitutePDFColorSpace put +/ResolveArrayElement +{2 copy get +dup type dup/arraytype eq exch +/packedarraytype eq or{ +dup length 1 ge exch xcheck and{ +2 copy get +dup 0 get type/integertype eq +1 index 1 get type dup/arraytype +eq exch +/packedarraytype eq or +and{ +exec +2 index 4 1 roll put +}{ +pop pop +}ifelse +}{ +pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/ResolveColorSpaceArrayRec +{0 +exec +}bind def +/SetColorSpaceSafe +{ +PDFR_DEBUG{ +(SetColorSpaceSafe beg)= +}if +currentcolorspace dup type/arraytype eq{ +1 index type/arraytype eq{ +dup length 2 index length eq{ +false exch +dup length 0 exch 1 exch 1 sub{ +dup +4 index exch get exch +2 index exch get +ne{ +exch pop true exch exit +}if +}for +pop +{ +setcolorspace +}{ +pop +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +PDFR_DEBUG{ +(SetColorSpaceSafe end)= +}if +}bind def +/ResolveColorSpaceArray +{ +//PDFR_DEBUG{ +(ResolveColorSpaceArray beg )print dup == +}if +dup 0 get/Indexed eq{ +1//ResolveArrayElement exec +dup dup 1 get +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArrayRec exec +1 exch put +}{ +pop pop +}ifelse +}if +dup 0 get/Separation eq{ +dup dup 1 get UnPDFEscape 1 exch put +3//ResolveArrayElement exec +dup 3 get//FunctionToProc exec +2 copy 3 exch put +pop +}if +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup 1 get dup type/arraytype eq{ +ResolveColorSpaceArray +1 index 1 3 -1 roll put +}{ +pop +}ifelse +}if +}if +PDFR_DEBUG{ +(Construcrted color space :)= +dup == +}if +//PDFR_DEBUG{ +(ResolveColorSpaceArray end )print dup == +}if +}bind def +//ResolveColorSpaceArrayRec 0//ResolveColorSpaceArray put +/ResolveColorSpace +{ +//PDFR_DEBUG{ +(ResolveColorSpace beg )print dup = +}if +dup//SimpleColorSpaceNames exch known not{ +dup//PDFColorSpaces exch//knownget exec{ +exch pop +//PDFR_DEBUG{ +(ResolveColorSpace known )= +}if +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/ColorSpace//DoNothing//ResolveD exec +exch//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArray exec +dup//PDFColorSpaces 4 2 roll put +}if +}ifelse +}if +//PDFR_DEBUG{ +(ResolveColorSpace end )print dup == +}if +}bind def +/CheckPattern +{ +dup/PatternType//knownget exec{ +dup 1 ne{ +mark(Resource )4 index( is a shading, which can't be handled at level 2. )//error exec +}if +pop +}if +dup/Type knownget{ +/Pattern ne{ +mark(Resource )4 index( must have /Type/Pattern .)//error exec +}if +}if +}bind def +/PaintProc +{/Context get +//RunDelayedStream exec +}bind def +/ResolvePattern +{ +dup +userdict/PDFR_Patterns get +exch//knownget exec{ +exch pop +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/Pattern//DoNothing//ResolveD exec +exch//CheckPattern//ResolveD exec +dup dup/Context exch put +dup/Resources//DoNothing//ResolveD exec pop +dup/PaintProc//PaintProc put +gsave userdict/PDFR_InitialGS get setgstate +currentglobal exch false setglobal +dup/Matrix get +makepattern +exch setglobal +grestore +dup userdict/PDFR_Patterns get +4 2 roll +put +}ifelse +}bind def +/SetColor +{//PDFR_DEBUG{ +(SetColor beg)= +}if +currentcolorspace dup type/nametype eq{ +pop setcolor +}{ +0 get/Pattern eq{ +//ResolvePattern exec setpattern +}{ +setcolor +}ifelse +}ifelse +//PDFR_DEBUG{ +(SetColor end)= +}if +}bind def +/ImageKeys 15 dict begin +/BPC/BitsPerComponent def +/CS/ColorSpace def +/D/Decode def +/DP/DecodeParms def +/F/Filter def +/H/Height def +/IM/ImageMask def +/I/Interpolate def +/W/Width def +currentdict end readonly def +/ImageValues 15 dict begin +/G/DeviceGray def +/RGB/DeviceRGB def +/CMYK/DeviceCMYK def +/I/Indexed def +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/GetColorSpaceRange +{2 index/ColorSpace get +dup type/arraytype eq{ +1 get +}if +exch//knownget exec{ +exch pop +}if +}bind def +/DecodeArrays 15 dict begin +/DeviceGray{[0 1]}def +/DeviceRGB{[0 1 0 1 0 1]}def +/DeviceCMYK{[0 1 0 1 0 1 0 1]}def +/Indexed{ +dup/BitsPerComponent get 1 exch bitshift 1 sub[exch 0 exch] +}def +/Separation{[0 1]}def +/CIEBasedA{[0 1]/RangeA//GetColorSpaceRange exec}def +/CIEBasedABC{[0 1 0 1 0 1]/RangeABC//GetColorSpaceRange exec}def +currentdict end readonly def +/Substitute +{1 index//knownget exec{ +exch pop +}if +}bind def +/DebugImagePrinting +{ +//PDFR_DEBUG{ +(Image :)= +dup{exch//=only exec( )print == +}forall +}if +}bind def +/CompleteImage +{ +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec pop +}if +dup/Decode known not{ +dup/ColorSpace//knownget exec{ +dup type/arraytype eq{ +0 get +}if +//DecodeArrays exch get exec +}{ +[0 1] +}ifelse +1 index exch/Decode exch put +}if +dup/ImageMatrix[2 index/Width get 0 0 5 index/Height get neg +0 7 index/Height get]put +//DebugImagePrinting exec +}bind def +/CompleteInlineImage +{ +//PDFR_DEBUG{ +(CompleteInlineImage beg)= +}if +dup/ImageType known not{ +dup/ImageType 1 put +}if +dup length dict exch{ +exch//ImageKeys//Substitute exec +dup/Filter eq{ +exch//ImageValues//Substitute exec exch +}if +dup/ColorSpace eq{ +exch +dup//ImageValues exch//knownget exec{ +exch pop +}{ +//ResolveColorSpace exec +}ifelse +exch +}if +exch +2 index 3 1 roll put +}forall +//CompleteImage exec +dup/DataSource 2 copy get +2 index//AppendFilters exec put +//PDFR_DEBUG{ +(CompleteInlineImage end)= +}if +}bind def +/CompleteOutlineImage +{ +currentglobal exch dup gcheck setglobal +//PDFR_DEBUG{ +(CompleteOutlineImage beg)= +}if +dup dup//MakeStreamReader exec/DataSource exch put +dup/ImageType known not{ +//CompleteImage exec +dup/ImageType 1 put +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//ResolveColorSpaceArray exec +//SubstitutePDFColorSpace exec +1 index exch/ColorSpace exch put +}{ +pop +}ifelse +}if +}if +//PDFR_DEBUG{ +(CompleteOutlineImage end)= +}if +exch setglobal +}bind def +/DoImage +{ +//PDFR_DEBUG{ +(DoImage beg)= +}if +gsave +dup/ColorSpace//knownget exec{setcolorspace}if +dup/ImageMask//knownget exec not{false}if +{imagemask}{image}ifelse +grestore +//PDFR_DEBUG{ +(DoImage end)= +}if +}bind def +/GSave +{ +gsave +//PDFReader/GraphicStateStackPointer get +dup//GraphicStateStack exch get null eq{ +dup//GraphicStateStack exch//InitialGraphicState length dict put +}if +dup//GraphicStateStack exch get +//GraphicState exch copy pop +1 add//PDFReader exch/GraphicStateStackPointer exch put +}bind def +/GRestore +{ +grestore +//PDFReader/GraphicStateStackPointer get +1 sub dup +//PDFReader exch/GraphicStateStackPointer exch put +//GraphicStateStack exch get +//GraphicState copy pop +}bind def +/SetFont +{dup//GraphicState exch/FontSize exch put +//ResolveAndSetFont exec +//GraphicState/FontMatrixNonHV currentfont/FontMatrix get 1 get 0 ne put +}bind def +/ShowText +{//GraphicState/TextRenderingMode get 0 eq{ +//GraphicState/WordSpacing get 0 +32 +//GraphicState/CharacterSpacing get 0 +6 5 roll +//GraphicState/FontMatrixNonHV get{ +[ +7 -2 roll pop +5 -2 roll pop +5 -1 roll +{ +exch +pop +3 index add +exch 2 index eq{3 index add}if +4 1 roll +} +currentfont/FontMatrix get 0 get 0 ne{ +1 1 index length 1 sub getinterval cvx +}if +5 index +cshow +pop pop pop] +xshow +}{ +awidthshow +}ifelse +}{ +//GraphicState/CharacterSpacing get 0 eq +//GraphicState/FontMatrixNonHV get not and +//GraphicState/WordSpacing get 0 eq and{ +true charpath +}{ +{ +exch +pop 0 +currentpoint 5 4 roll +( )dup 0 3 index put true charpath +5 1 roll +moveto rmoveto +//GraphicState/CharacterSpacing get 0 rmoveto +32 eq{ +//GraphicState/WordSpacing get 0 rmoveto +}if +} +//GraphicState/FontMatrixNonHV get dup not exch{ +pop currentfont/FontMatrix get 0 get 0 ne +}if{ +1 1 index length 1 sub getinterval cvx +}if +exch cshow +}ifelse +}ifelse +}bind def +/ShowTextBeg +{//GraphicState/TextRenderingMode get 0 ne{ +currentpoint newpath moveto +}if +}bind def +/ShowTextEnd +{//GraphicState/TextRenderingMode get +{dup 1 eq{ +stroke exit +}if +dup 2 eq{ +gsave fill grestore stroke exit +}if +dup 3 eq{ +currentpoint newpath moveto +}if +dup 4 eq{ +gsave fill grestore clip exit +}if +dup 5 eq{ +gsave stroke grestore clip exit +}if +dup 6 eq{ +gsave fill grestore gsave stroke grestore fill exit +}if +dup 7 eq{ +clip exit +}if +exit +}loop +pop +}bind def +/ShowTextWithGlyphPositioning +{//ShowTextBeg exec +{dup type/stringtype eq{ +//ShowText exec +}{ +neg 1000 div//GraphicState/FontSize get mul 0 rmoveto +}ifelse +}forall +//ShowTextEnd exec +}bind def +/CheckFont +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/SetTransfer +{ +//PDFR_DEBUG{(SetTransfer beg )print count =}if +dup type/arraytype eq 1 index xcheck not and{ +0 4 getinterval aload pop +setcolortransfer +}{ +settransfer +}ifelse +//PDFR_DEBUG{(SetTransfer end )print count =}if +}bind def +/CheckExtGState +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/CheckHalftone +{dup/HalftoneType known not{ +mark(Resource )3 index( must have /HalftoneType.)//error exec +}if +}bind def +/ResolveFunction +{ +//PDFR_DEBUG{(ResolveFunction beg )print dup = count =}if +2 copy get//IsObjRef exec{ +2 copy//DoNothing//ResolveD exec +3 copy put pop +}if +2 copy get dup type/arraytype eq exch xcheck and not{ +2 copy get +dup type/arraytype eq 1 index xcheck not and{ +dup length 1 sub -1 0{ +2 copy//DoNothing ResolveA +dup/Identity eq{ +pop 2 copy{}put +}{ +//FunctionToProc exec +3 copy put pop +}ifelse +pop +}for +}{ +dup/Default eq{ +}{ +dup/Identity eq{ +pop{} +}{dup type/nametype eq{ +//spotfunctions exch get +}{ +//FunctionToProc exec +}ifelse +}ifelse +}ifelse +}ifelse +3 copy put +exch pop +}{ +1 index exch get +}ifelse +//PDFR_DEBUG{(ResolveFunction end )print dup == count =}if +}bind def +/ResolveFunctionSafe +{2 copy known{ +//ResolveFunction exec +}if +pop +}bind def +/CreateHalftoneThresholds +{ +dup/Thresholds known not{ +dup/HalftoneType get 10 eq{ +dup dup//MakeStreamReader exec +/Thresholds exch put +}if +dup/HalftoneType get dup 3 eq exch 6 eq or{ +dup dup//MakeStreamReader exec +//BlockBuffer readstring pop +dup length +dup 0 eq{ +mark(Could not read Thresholds)//error exec +}if +string copy/Thresholds exch put +dup/HalftoneType 3 put +}if +}if +}bind def +/SetExtGState +{ +//PDFReader/CurrentObject get/Context get/Resources get +/ExtGState//DoNothing//ResolveD exec +exch//CheckExtGState//ResolveD exec +dup/LW//knownget exec{ +setlinewidth +}if +dup/LC//knownget exec{ +setlinecap +}if +dup/LJ//knownget exec{ +setlinejoin +}if +dup/ML//knownget exec{ +setmeterlimit +}if +dup/D//knownget exec{ +setdash +}if +dup/RI//knownget exec{ +mark(Unimplemented ExtGState.RI)//error exec +}if +dup/OP//knownget exec{ +setoverprint +}if +dup/op//knownget exec{ +setoverprint +}if +dup/OPM//knownget exec{ +mark(Unimplemented ExtGState.OPM)//error exec +}if +dup/Font//knownget exec{ +mark(Unimplemented ExtGState.Font)//error exec +}if +dup/BG known{ +/BG//ResolveFunction exec +setblackgeneration +}if +dup/BG2 known{ +/BG2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/BG2 get +}if +setblackgeneration +}if +dup/UCR known{ +/UCR//ResolveFunction exec +setundercolorremoval +}if +dup/UCR2 known{ +/UCR2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/UCR2 get +}if +setundercolorremoval +}if +dup/TR known{ +/TR//ResolveFunction exec +//SetTransfer exec +}if +dup/TR2 known{ +/TR2//ResolveFunction exec +dup/Default eq{ +pop//InitialExtGState/TR2 get +aload pop setcolortransfer +}{ +//SetTransfer exec +}ifelse +}if +dup/HT//knownget exec{ +dup/Default eq{ +pop//InitialExtGState/HT get +sethalftone +}{ +//PDFR_DEBUG{(Ht beg)=}if +pop dup/HT//CheckHalftone//ResolveD exec +/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +null exch +dup/HalftoneType get dup 5 eq exch dup 4 eq exch 2 eq or or{ +dup{ +dup//IsObjRef exec{ +pop +1 index exch//CheckHalftone ResolveD +}if +dup type/dicttype eq{ +dup/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +//CreateHalftoneThresholds exec +dup/HalftoneType get 5 gt{ +4 3 roll pop +dup 4 1 roll +}if +}if +pop pop +}forall +}if +//CreateHalftoneThresholds exec +//PDFR_DEBUG{ +(HT:)= +dup{ +1 index/Default eq{ +(Default <<)= +exch pop +{exch = ==}forall +(>>)= +}{ +exch = == +}ifelse +}forall +(HT end)= flush +}if +exch dup null ne{ +(Warning: Ignoring a halftone with a Level 3 component halftone Type )print dup/HalftoneType get = +pop pop +}{ +pop +dup/HalftoneType get 5 gt{ +(Warning: Ignoring a Level 3 halftone Type )print dup/HalftoneType get = +pop +}{ +sethalftone +}ifelse +}ifelse +//PDFR_DEBUG{(HT set)= flush}if +}ifelse +}if +dup/FL//knownget exec{ +setflattness +}if +dup/SM//knownget exec{ +setsmoothness +}if +dup/SA//knownget exec{ +setstrokeadjust +}if +dup/BM//knownget exec{ +mark(Unimplemented ExtGState.BM)//error exec +}if +dup/SMask//knownget exec{ +mark(Unimplemented ExtGState.SMask)//error exec +}if +dup/CA//knownget exec{ +mark(Unimplemented ExtGState.CA)//error exec +}if +dup/ca//knownget exec{ +mark(Unimplemented ExtGState.ca)//error exec +}if +dup/AIS//knownget exec{ +mark(Unimplemented ExtGState.AIS)//error exec +}if +dup/TK//knownget exec{ +mark(Unimplemented ExtGState.TK)//error exec +}if +pop +}bind def +/CheckXObject +{dup/Subtype get dup/Image ne exch dup/Form ne exch/PS ne and and{ +mark(Resource )3 index( must have /Subtype /Image or /Form or /PS.)//error exec +}if +}bind def +/DoXObject +{ +//PDFReader/CurrentObject get/Context get/Resources get +/XObject//DoNothing//ResolveD exec +exch//CheckXObject//ResolveD exec +dup/Subtype get +dup/Image eq{ +pop +//CompleteOutlineImage exec +//DoImage exec +}{ +dup/PS eq{ +PDFR_DEBUG{ +(Executing a PS Xobject)= +}if +pop +//RunDelayedStream exec +}{ +dup/Form eq{ +pop +PDFR_DEBUG{ +(Executing a Form XObject)= +}if +//PDFReader/CurrentObject get exch +dup//PDFReader exch<< exch/Context exch >>/CurrentObject exch put +dup/Matrix get concat +dup/BBox get aload pop exch 3 index sub exch 2 index sub rectclip +//RunDelayedStream exec +//PDFReader exch/CurrentObject exch put +}{ +mark exch(unimplemented XObject type )exch//error exec +}ifelse +}ifelse +}ifelse +}bind def +/Operators 50 dict begin +/q{//GSave exec}bind def +/Q{//GRestore exec}bind def +/cm{//TempMatrix astore concat}bind def +/i{1 .min setflat}bind def +/J/setlinecap load def +/d/setdash load def +/j/setlinejoin load def +/w/setlinewidth load def +/M/setmiterlimit load def +/gs{SetExtGState}bind def +/g/setgray load def +/rg/setrgbcolor load def +/k/setcmykcolor load def +/cs{//ResolveColorSpace exec//SetColorSpaceSafe exec +}bind def +/sc/setcolor load def +/scn{//SetColor exec}bind def +/G/setgray load def +/RG/setrgbcolor load def +/K/setcmykcolor load def +/CS//cs def +/ri{SetColorRenderingIntent}bind def +/SC/setcolor load def +/SCN{//SetColor exec}bind def +/m/moveto load def +/l/lineto load def +/c/curveto load def +/v{currentpoint 6 2 roll curveto}bind def +/y{2 copy curveto}bind def +/re{ +4 2 roll moveto exch dup 0 rlineto 0 3 -1 roll rlineto neg 0 rlineto +closepath +}def +/h/closepath load def +/n/newpath load def +/S/stroke load def +/s{closepath stroke}bind def +/f/fill load def +/f*/eofill load def +/B{gsave fill grestore stroke}bind def +/b{closepath gsave fill grestore stroke}bind def +/B*{gsave eofill grestore stroke}bind def +/b*{closepath gsave eofill grestore stroke}bind def +/W/clip load def +/W*/eoclip load def +/sh{ +ResolveShading +dup/Background known{ +gsave +dup/ColorSpace get setcolorspace +dup/Background get aload pop setcolor +pathbbox +2 index sub exch 3 index sub exch +rectfill +grestore +}if +shfill +}bind def +/Do{//DoXObject exec}bind def +/BI{currentglobal false setglobal<<}bind def +/ID{>> +dup/DataSource currentfile +2 index/F//knownget exec{ +/A85 eq{ +0(~>)/SubFileDecode filter +}if +}if +put +//CompleteInlineImage exec +exch setglobal +//DoImage exec +}bind def +/EI{}bind def +/BT{gsave//GraphicState/InitialTextMatrix get currentmatrix pop}bind def +/ET{grestore}bind def +/Tc{//GraphicState exch/CharacterSpacing exch put}bind def +/TL{//GraphicState exch/TextLeading exch put}bind def +/Tr{//GraphicState exch/TextRenderingMode exch put}bind def +/Ts{ +mark(Unimplemented SetTextRise)//error exec +}bind def +/Tw{//GraphicState exch/WordSpacing exch put}bind def +/Tz{ +mark(Unimplemented SetHorizontalTextScaling)//error exec +}bind def +/Td{translate 0 0 moveto}bind def +/TD{dup neg//TL exec//Td exec}bind def +/Tm{//GraphicState/InitialTextMatrix get setmatrix +//TempMatrix astore concat +0 0 moveto}bind def +/T*{0//GraphicState/TextLeading get neg//Td exec}bind def +/Tj{//ShowTextBeg exec//ShowText exec//ShowTextEnd exec}bind def +/'{//T* exec//ShowText exec//ShowTextEnd exec}bind def +/"{3 2 roll//Tw exec exch//Tc exec//' exec}bind def +/TJ//ShowTextWithGlyphPositioning def +/Tf//SetFont def +/d0/setcharwidth load def +/d1/setcachedevice load def +/BDC{pop pop}bind def +/BMC{pop}bind def +/EMC{}bind def +/BX{BeginCompatibilitySection}bind def +/EX{EndCompatibilitySection}bind def +/DP{DefineMarkedContentPointWithPropertyList}bind def +/MP{DefineMarkedContentPoint}bind def +/PS{cvx exec}bind def +currentdict end def +//PDFR_STREAM{ +//Operators length dict begin +//Operators{ +exch dup +[exch//=only/exec load +( )/print load +8 7 roll +dup type/arraytype eq{ +/exec load +}if +( )/print load +]cvx +def +}forall +currentdict end/Operators exch def +}if +/.registerencoding +{pop pop +}bind def +/.defineencoding +{def +}bind def +/.findencoding +{load +}bind def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +256 packedarray +5 1 index .registerencoding +.defineencoding +exec +/AdobeGlyphList mark +/A 16#0041 +/AE 16#00c6 +/AEacute 16#01fc +/AEmacron 16#01e2 +/AEsmall 16#f7e6 +/Aacute 16#00c1 +/Aacutesmall 16#f7e1 +/Abreve 16#0102 +/Abreveacute 16#1eae +/Abrevecyrillic 16#04d0 +/Abrevedotbelow 16#1eb6 +/Abrevegrave 16#1eb0 +/Abrevehookabove 16#1eb2 +/Abrevetilde 16#1eb4 +/Acaron 16#01cd +/Acircle 16#24b6 +/Acircumflex 16#00c2 +/Acircumflexacute 16#1ea4 +/Acircumflexdotbelow 16#1eac +/Acircumflexgrave 16#1ea6 +/Acircumflexhookabove 16#1ea8 +/Acircumflexsmall 16#f7e2 +/Acircumflextilde 16#1eaa +/Acute 16#f6c9 +/Acutesmall 16#f7b4 +/Acyrillic 16#0410 +/Adblgrave 16#0200 +/Adieresis 16#00c4 +/Adieresiscyrillic 16#04d2 +/Adieresismacron 16#01de +/Adieresissmall 16#f7e4 +/Adotbelow 16#1ea0 +/Adotmacron 16#01e0 +/Agrave 16#00c0 +/Agravesmall 16#f7e0 +/Ahookabove 16#1ea2 +/Aiecyrillic 16#04d4 +/Ainvertedbreve 16#0202 +/Alpha 16#0391 +/Alphatonos 16#0386 +/Amacron 16#0100 +/Amonospace 16#ff21 +/Aogonek 16#0104 +/Aring 16#00c5 +/Aringacute 16#01fa +/Aringbelow 16#1e00 +/Aringsmall 16#f7e5 +/Asmall 16#f761 +/Atilde 16#00c3 +/Atildesmall 16#f7e3 +/Aybarmenian 16#0531 +/B 16#0042 +/Bcircle 16#24b7 +/Bdotaccent 16#1e02 +/Bdotbelow 16#1e04 +/Becyrillic 16#0411 +/Benarmenian 16#0532 +/Beta 16#0392 +/Bhook 16#0181 +/Blinebelow 16#1e06 +/Bmonospace 16#ff22 +/Brevesmall 16#f6f4 +/Bsmall 16#f762 +/Btopbar 16#0182 +/C 16#0043 +/Caarmenian 16#053e +/Cacute 16#0106 +/Caron 16#f6ca +/Caronsmall 16#f6f5 +/Ccaron 16#010c +/Ccedilla 16#00c7 +/Ccedillaacute 16#1e08 +/Ccedillasmall 16#f7e7 +/Ccircle 16#24b8 +/Ccircumflex 16#0108 +/Cdot 16#010a +/Cdotaccent 16#010a +/Cedillasmall 16#f7b8 +/Chaarmenian 16#0549 +/Cheabkhasiancyrillic 16#04bc +/Checyrillic 16#0427 +/Chedescenderabkhasiancyrillic 16#04be +/Chedescendercyrillic 16#04b6 +/Chedieresiscyrillic 16#04f4 +/Cheharmenian 16#0543 +/Chekhakassiancyrillic 16#04cb +/Cheverticalstrokecyrillic 16#04b8 +/Chi 16#03a7 +/Chook 16#0187 +/Circumflexsmall 16#f6f6 +/Cmonospace 16#ff23 +/Coarmenian 16#0551 +/Csmall 16#f763 +/D 16#0044 +/DZ 16#01f1 +/DZcaron 16#01c4 +/Daarmenian 16#0534 +/Dafrican 16#0189 +/Dcaron 16#010e +/Dcedilla 16#1e10 +/Dcircle 16#24b9 +/Dcircumflexbelow 16#1e12 +/Dcroat 16#0110 +/Ddotaccent 16#1e0a +/Ddotbelow 16#1e0c +/Decyrillic 16#0414 +/Deicoptic 16#03ee +/Delta 16#2206 +/Deltagreek 16#0394 +/Dhook 16#018a +/Dieresis 16#f6cb +/DieresisAcute 16#f6cc +/DieresisGrave 16#f6cd +/Dieresissmall 16#f7a8 +/Digammagreek 16#03dc +/Djecyrillic 16#0402 +/Dlinebelow 16#1e0e +/Dmonospace 16#ff24 +/Dotaccentsmall 16#f6f7 +/Dslash 16#0110 +/Dsmall 16#f764 +/Dtopbar 16#018b +/Dz 16#01f2 +/Dzcaron 16#01c5 +/Dzeabkhasiancyrillic 16#04e0 +/Dzecyrillic 16#0405 +/Dzhecyrillic 16#040f +/E 16#0045 +/Eacute 16#00c9 +/Eacutesmall 16#f7e9 +/Ebreve 16#0114 +/Ecaron 16#011a +/Ecedillabreve 16#1e1c +/Echarmenian 16#0535 +/Ecircle 16#24ba +/Ecircumflex 16#00ca +/Ecircumflexacute 16#1ebe +/Ecircumflexbelow 16#1e18 +/Ecircumflexdotbelow 16#1ec6 +/Ecircumflexgrave 16#1ec0 +/Ecircumflexhookabove 16#1ec2 +/Ecircumflexsmall 16#f7ea +/Ecircumflextilde 16#1ec4 +/Ecyrillic 16#0404 +/Edblgrave 16#0204 +/Edieresis 16#00cb +/Edieresissmall 16#f7eb +/Edot 16#0116 +/Edotaccent 16#0116 +/Edotbelow 16#1eb8 +/Efcyrillic 16#0424 +/Egrave 16#00c8 +/Egravesmall 16#f7e8 +/Eharmenian 16#0537 +/Ehookabove 16#1eba +/Eightroman 16#2167 +/Einvertedbreve 16#0206 +/Eiotifiedcyrillic 16#0464 +/Elcyrillic 16#041b +/Elevenroman 16#216a +/Emacron 16#0112 +/Emacronacute 16#1e16 +/Emacrongrave 16#1e14 +/Emcyrillic 16#041c +/Emonospace 16#ff25 +/Encyrillic 16#041d +/Endescendercyrillic 16#04a2 +/Eng 16#014a +/Enghecyrillic 16#04a4 +/Enhookcyrillic 16#04c7 +/Eogonek 16#0118 +/Eopen 16#0190 +/Epsilon 16#0395 +/Epsilontonos 16#0388 +/Ercyrillic 16#0420 +/Ereversed 16#018e +/Ereversedcyrillic 16#042d +/Escyrillic 16#0421 +/Esdescendercyrillic 16#04aa +/Esh 16#01a9 +/Esmall 16#f765 +/Eta 16#0397 +/Etarmenian 16#0538 +/Etatonos 16#0389 +/Eth 16#00d0 +/Ethsmall 16#f7f0 +/Etilde 16#1ebc +/Etildebelow 16#1e1a +/Euro 16#20ac +/Ezh 16#01b7 +/Ezhcaron 16#01ee +/Ezhreversed 16#01b8 +/F 16#0046 +/Fcircle 16#24bb +/Fdotaccent 16#1e1e +/Feharmenian 16#0556 +/Feicoptic 16#03e4 +/Fhook 16#0191 +/Fitacyrillic 16#0472 +/Fiveroman 16#2164 +/Fmonospace 16#ff26 +/Fourroman 16#2163 +/Fsmall 16#f766 +/G 16#0047 +/GBsquare 16#3387 +/Gacute 16#01f4 +/Gamma 16#0393 +/Gammaafrican 16#0194 +/Gangiacoptic 16#03ea +/Gbreve 16#011e +/Gcaron 16#01e6 +/Gcedilla 16#0122 +/Gcircle 16#24bc +/Gcircumflex 16#011c +/Gcommaaccent 16#0122 +/Gdot 16#0120 +/Gdotaccent 16#0120 +/Gecyrillic 16#0413 +/Ghadarmenian 16#0542 +/Ghemiddlehookcyrillic 16#0494 +/Ghestrokecyrillic 16#0492 +/Gheupturncyrillic 16#0490 +/Ghook 16#0193 +/Gimarmenian 16#0533 +/Gjecyrillic 16#0403 +/Gmacron 16#1e20 +/Gmonospace 16#ff27 +/Grave 16#f6ce +/Gravesmall 16#f760 +/Gsmall 16#f767 +/Gsmallhook 16#029b +/Gstroke 16#01e4 +/H 16#0048 +/H18533 16#25cf +/H18543 16#25aa +/H18551 16#25ab +/H22073 16#25a1 +/HPsquare 16#33cb +/Haabkhasiancyrillic 16#04a8 +/Hadescendercyrillic 16#04b2 +/Hardsigncyrillic 16#042a +/Hbar 16#0126 +/Hbrevebelow 16#1e2a +/Hcedilla 16#1e28 +/Hcircle 16#24bd +/Hcircumflex 16#0124 +/Hdieresis 16#1e26 +/Hdotaccent 16#1e22 +/Hdotbelow 16#1e24 +/Hmonospace 16#ff28 +/Hoarmenian 16#0540 +/Horicoptic 16#03e8 +/Hsmall 16#f768 +/Hungarumlaut 16#f6cf +/Hungarumlautsmall 16#f6f8 +/Hzsquare 16#3390 +/I 16#0049 +/IAcyrillic 16#042f +/IJ 16#0132 +/IUcyrillic 16#042e +/Iacute 16#00cd +/Iacutesmall 16#f7ed +/Ibreve 16#012c +/Icaron 16#01cf +/Icircle 16#24be +/Icircumflex 16#00ce +/Icircumflexsmall 16#f7ee +/Icyrillic 16#0406 +/Idblgrave 16#0208 +/Idieresis 16#00cf +/Idieresisacute 16#1e2e +/Idieresiscyrillic 16#04e4 +/Idieresissmall 16#f7ef +/Idot 16#0130 +/Idotaccent 16#0130 +/Idotbelow 16#1eca +/Iebrevecyrillic 16#04d6 +/Iecyrillic 16#0415 +/Ifraktur 16#2111 +/Igrave 16#00cc +/Igravesmall 16#f7ec +/Ihookabove 16#1ec8 +/Iicyrillic 16#0418 +/Iinvertedbreve 16#020a +/Iishortcyrillic 16#0419 +/Imacron 16#012a +/Imacroncyrillic 16#04e2 +/Imonospace 16#ff29 +/Iniarmenian 16#053b +/Iocyrillic 16#0401 +/Iogonek 16#012e +/Iota 16#0399 +/Iotaafrican 16#0196 +/Iotadieresis 16#03aa +/Iotatonos 16#038a +/Ismall 16#f769 +/Istroke 16#0197 +/Itilde 16#0128 +/Itildebelow 16#1e2c +/Izhitsacyrillic 16#0474 +/Izhitsadblgravecyrillic 16#0476 +/J 16#004a +/Jaarmenian 16#0541 +/Jcircle 16#24bf +/Jcircumflex 16#0134 +/Jecyrillic 16#0408 +/Jheharmenian 16#054b +/Jmonospace 16#ff2a +/Jsmall 16#f76a +/K 16#004b +/KBsquare 16#3385 +/KKsquare 16#33cd +/Kabashkircyrillic 16#04a0 +/Kacute 16#1e30 +/Kacyrillic 16#041a +/Kadescendercyrillic 16#049a +/Kahookcyrillic 16#04c3 +/Kappa 16#039a +/Kastrokecyrillic 16#049e +/Kaverticalstrokecyrillic 16#049c +/Kcaron 16#01e8 +/Kcedilla 16#0136 +/Kcircle 16#24c0 +/Kcommaaccent 16#0136 +/Kdotbelow 16#1e32 +/Keharmenian 16#0554 +/Kenarmenian 16#053f +/Khacyrillic 16#0425 +/Kheicoptic 16#03e6 +/Khook 16#0198 +/Kjecyrillic 16#040c +/Klinebelow 16#1e34 +/Kmonospace 16#ff2b +/Koppacyrillic 16#0480 +/Koppagreek 16#03de +/Ksicyrillic 16#046e +/Ksmall 16#f76b +/L 16#004c +/LJ 16#01c7 +/LL 16#f6bf +/Lacute 16#0139 +/Lambda 16#039b +/Lcaron 16#013d +/Lcedilla 16#013b +/Lcircle 16#24c1 +/Lcircumflexbelow 16#1e3c +/Lcommaaccent 16#013b +/Ldot 16#013f +/Ldotaccent 16#013f +/Ldotbelow 16#1e36 +/Ldotbelowmacron 16#1e38 +/Liwnarmenian 16#053c +/Lj 16#01c8 +/Ljecyrillic 16#0409 +/Llinebelow 16#1e3a +/Lmonospace 16#ff2c +/Lslash 16#0141 +/Lslashsmall 16#f6f9 +/Lsmall 16#f76c +/M 16#004d +/MBsquare 16#3386 +/Macron 16#f6d0 +/Macronsmall 16#f7af +/Macute 16#1e3e +/Mcircle 16#24c2 +/Mdotaccent 16#1e40 +/Mdotbelow 16#1e42 +/Menarmenian 16#0544 +/Mmonospace 16#ff2d +/Msmall 16#f76d +/Mturned 16#019c +/Mu 16#039c +/N 16#004e +/NJ 16#01ca +/Nacute 16#0143 +/Ncaron 16#0147 +/Ncedilla 16#0145 +/Ncircle 16#24c3 +/Ncircumflexbelow 16#1e4a +/Ncommaaccent 16#0145 +/Ndotaccent 16#1e44 +/Ndotbelow 16#1e46 +/Nhookleft 16#019d +/Nineroman 16#2168 +/Nj 16#01cb +/Njecyrillic 16#040a +/Nlinebelow 16#1e48 +/Nmonospace 16#ff2e +/Nowarmenian 16#0546 +/Nsmall 16#f76e +/Ntilde 16#00d1 +/Ntildesmall 16#f7f1 +/Nu 16#039d +/O 16#004f +/OE 16#0152 +/OEsmall 16#f6fa +/Oacute 16#00d3 +/Oacutesmall 16#f7f3 +/Obarredcyrillic 16#04e8 +/Obarreddieresiscyrillic 16#04ea +/Obreve 16#014e +/Ocaron 16#01d1 +/Ocenteredtilde 16#019f +/Ocircle 16#24c4 +/Ocircumflex 16#00d4 +/Ocircumflexacute 16#1ed0 +/Ocircumflexdotbelow 16#1ed8 +/Ocircumflexgrave 16#1ed2 +/Ocircumflexhookabove 16#1ed4 +/Ocircumflexsmall 16#f7f4 +/Ocircumflextilde 16#1ed6 +/Ocyrillic 16#041e +/Odblacute 16#0150 +/Odblgrave 16#020c +/Odieresis 16#00d6 +/Odieresiscyrillic 16#04e6 +/Odieresissmall 16#f7f6 +/Odotbelow 16#1ecc +/Ogoneksmall 16#f6fb +/Ograve 16#00d2 +/Ogravesmall 16#f7f2 +/Oharmenian 16#0555 +/Ohm 16#2126 +/Ohookabove 16#1ece +/Ohorn 16#01a0 +/Ohornacute 16#1eda +/Ohorndotbelow 16#1ee2 +/Ohorngrave 16#1edc +/Ohornhookabove 16#1ede +/Ohorntilde 16#1ee0 +/Ohungarumlaut 16#0150 +/Oi 16#01a2 +/Oinvertedbreve 16#020e +/Omacron 16#014c +/Omacronacute 16#1e52 +/Omacrongrave 16#1e50 +/Omega 16#2126 +/Omegacyrillic 16#0460 +/Omegagreek 16#03a9 +/Omegaroundcyrillic 16#047a +/Omegatitlocyrillic 16#047c +/Omegatonos 16#038f +/Omicron 16#039f +/Omicrontonos 16#038c +/Omonospace 16#ff2f +/Oneroman 16#2160 +/Oogonek 16#01ea +/Oogonekmacron 16#01ec +/Oopen 16#0186 +/Oslash 16#00d8 +/Oslashacute 16#01fe +/Oslashsmall 16#f7f8 +/Osmall 16#f76f +/Ostrokeacute 16#01fe +/Otcyrillic 16#047e +/Otilde 16#00d5 +/Otildeacute 16#1e4c +/Otildedieresis 16#1e4e +/Otildesmall 16#f7f5 +/P 16#0050 +/Pacute 16#1e54 +/Pcircle 16#24c5 +/Pdotaccent 16#1e56 +/Pecyrillic 16#041f +/Peharmenian 16#054a +/Pemiddlehookcyrillic 16#04a6 +/Phi 16#03a6 +/Phook 16#01a4 +/Pi 16#03a0 +/Piwrarmenian 16#0553 +/Pmonospace 16#ff30 +/Psi 16#03a8 +/Psicyrillic 16#0470 +/Psmall 16#f770 +/Q 16#0051 +/Qcircle 16#24c6 +/Qmonospace 16#ff31 +/Qsmall 16#f771 +/R 16#0052 +/Raarmenian 16#054c +/Racute 16#0154 +/Rcaron 16#0158 +/Rcedilla 16#0156 +/Rcircle 16#24c7 +/Rcommaaccent 16#0156 +/Rdblgrave 16#0210 +/Rdotaccent 16#1e58 +/Rdotbelow 16#1e5a +/Rdotbelowmacron 16#1e5c +/Reharmenian 16#0550 +/Rfraktur 16#211c +/Rho 16#03a1 +/Ringsmall 16#f6fc +/Rinvertedbreve 16#0212 +/Rlinebelow 16#1e5e +/Rmonospace 16#ff32 +/Rsmall 16#f772 +/Rsmallinverted 16#0281 +/Rsmallinvertedsuperior 16#02b6 +/S 16#0053 +/SF010000 16#250c +/SF020000 16#2514 +/SF030000 16#2510 +/SF040000 16#2518 +/SF050000 16#253c +/SF060000 16#252c +/SF070000 16#2534 +/SF080000 16#251c +/SF090000 16#2524 +/SF100000 16#2500 +/SF110000 16#2502 +/SF190000 16#2561 +/SF200000 16#2562 +/SF210000 16#2556 +/SF220000 16#2555 +/SF230000 16#2563 +/SF240000 16#2551 +/SF250000 16#2557 +/SF260000 16#255d +/SF270000 16#255c +/SF280000 16#255b +/SF360000 16#255e +/SF370000 16#255f +/SF380000 16#255a +/SF390000 16#2554 +/SF400000 16#2569 +/SF410000 16#2566 +/SF420000 16#2560 +/SF430000 16#2550 +/SF440000 16#256c +/SF450000 16#2567 +/SF460000 16#2568 +/SF470000 16#2564 +/SF480000 16#2565 +/SF490000 16#2559 +/SF500000 16#2558 +/SF510000 16#2552 +/SF520000 16#2553 +/SF530000 16#256b +/SF540000 16#256a +/Sacute 16#015a +/Sacutedotaccent 16#1e64 +/Sampigreek 16#03e0 +/Scaron 16#0160 +/Scarondotaccent 16#1e66 +/Scaronsmall 16#f6fd +/Scedilla 16#015e +/Schwa 16#018f +/Schwacyrillic 16#04d8 +/Schwadieresiscyrillic 16#04da +/Scircle 16#24c8 +/Scircumflex 16#015c +/Scommaaccent 16#0218 +/Sdotaccent 16#1e60 +/Sdotbelow 16#1e62 +/Sdotbelowdotaccent 16#1e68 +/Seharmenian 16#054d +/Sevenroman 16#2166 +/Shaarmenian 16#0547 +/Shacyrillic 16#0428 +/Shchacyrillic 16#0429 +/Sheicoptic 16#03e2 +/Shhacyrillic 16#04ba +/Shimacoptic 16#03ec +/Sigma 16#03a3 +/Sixroman 16#2165 +/Smonospace 16#ff33 +/Softsigncyrillic 16#042c +/Ssmall 16#f773 +/Stigmagreek 16#03da +/T 16#0054 +/Tau 16#03a4 +/Tbar 16#0166 +/Tcaron 16#0164 +/Tcedilla 16#0162 +/Tcircle 16#24c9 +/Tcircumflexbelow 16#1e70 +/Tcommaaccent 16#0162 +/Tdotaccent 16#1e6a +/Tdotbelow 16#1e6c +/Tecyrillic 16#0422 +/Tedescendercyrillic 16#04ac +/Tenroman 16#2169 +/Tetsecyrillic 16#04b4 +/Theta 16#0398 +/Thook 16#01ac +/Thorn 16#00de +/Thornsmall 16#f7fe +/Threeroman 16#2162 +/Tildesmall 16#f6fe +/Tiwnarmenian 16#054f +/Tlinebelow 16#1e6e +/Tmonospace 16#ff34 +/Toarmenian 16#0539 +/Tonefive 16#01bc +/Tonesix 16#0184 +/Tonetwo 16#01a7 +/Tretroflexhook 16#01ae +/Tsecyrillic 16#0426 +/Tshecyrillic 16#040b +/Tsmall 16#f774 +/Twelveroman 16#216b +/Tworoman 16#2161 +/U 16#0055 +/Uacute 16#00da +/Uacutesmall 16#f7fa +/Ubreve 16#016c +/Ucaron 16#01d3 +/Ucircle 16#24ca +/Ucircumflex 16#00db +/Ucircumflexbelow 16#1e76 +/Ucircumflexsmall 16#f7fb +/Ucyrillic 16#0423 +/Udblacute 16#0170 +/Udblgrave 16#0214 +/Udieresis 16#00dc +/Udieresisacute 16#01d7 +/Udieresisbelow 16#1e72 +/Udieresiscaron 16#01d9 +/Udieresiscyrillic 16#04f0 +/Udieresisgrave 16#01db +/Udieresismacron 16#01d5 +/Udieresissmall 16#f7fc +/Udotbelow 16#1ee4 +/Ugrave 16#00d9 +/Ugravesmall 16#f7f9 +/Uhookabove 16#1ee6 +/Uhorn 16#01af +/Uhornacute 16#1ee8 +/Uhorndotbelow 16#1ef0 +/Uhorngrave 16#1eea +/Uhornhookabove 16#1eec +/Uhorntilde 16#1eee +/Uhungarumlaut 16#0170 +/Uhungarumlautcyrillic 16#04f2 +/Uinvertedbreve 16#0216 +/Ukcyrillic 16#0478 +/Umacron 16#016a +/Umacroncyrillic 16#04ee +/Umacrondieresis 16#1e7a +/Umonospace 16#ff35 +/Uogonek 16#0172 +/Upsilon 16#03a5 +/Upsilon1 16#03d2 +/Upsilonacutehooksymbolgreek 16#03d3 +/Upsilonafrican 16#01b1 +/Upsilondieresis 16#03ab +/Upsilondieresishooksymbolgreek 16#03d4 +/Upsilonhooksymbol 16#03d2 +/Upsilontonos 16#038e +/Uring 16#016e +/Ushortcyrillic 16#040e +/Usmall 16#f775 +/Ustraightcyrillic 16#04ae +/Ustraightstrokecyrillic 16#04b0 +/Utilde 16#0168 +/Utildeacute 16#1e78 +/Utildebelow 16#1e74 +/V 16#0056 +/Vcircle 16#24cb +/Vdotbelow 16#1e7e +/Vecyrillic 16#0412 +/Vewarmenian 16#054e +/Vhook 16#01b2 +/Vmonospace 16#ff36 +/Voarmenian 16#0548 +/Vsmall 16#f776 +/Vtilde 16#1e7c +/W 16#0057 +/Wacute 16#1e82 +/Wcircle 16#24cc +/Wcircumflex 16#0174 +/Wdieresis 16#1e84 +/Wdotaccent 16#1e86 +/Wdotbelow 16#1e88 +/Wgrave 16#1e80 +/Wmonospace 16#ff37 +/Wsmall 16#f777 +/X 16#0058 +/Xcircle 16#24cd +/Xdieresis 16#1e8c +/Xdotaccent 16#1e8a +/Xeharmenian 16#053d +/Xi 16#039e +/Xmonospace 16#ff38 +/Xsmall 16#f778 +/Y 16#0059 +/Yacute 16#00dd +/Yacutesmall 16#f7fd +/Yatcyrillic 16#0462 +/Ycircle 16#24ce +/Ycircumflex 16#0176 +/Ydieresis 16#0178 +/Ydieresissmall 16#f7ff +/Ydotaccent 16#1e8e +/Ydotbelow 16#1ef4 +/Yericyrillic 16#042b +/Yerudieresiscyrillic 16#04f8 +/Ygrave 16#1ef2 +/Yhook 16#01b3 +/Yhookabove 16#1ef6 +/Yiarmenian 16#0545 +/Yicyrillic 16#0407 +/Yiwnarmenian 16#0552 +/Ymonospace 16#ff39 +/Ysmall 16#f779 +/Ytilde 16#1ef8 +/Yusbigcyrillic 16#046a +/Yusbigiotifiedcyrillic 16#046c +/Yuslittlecyrillic 16#0466 +/Yuslittleiotifiedcyrillic 16#0468 +/Z 16#005a +/Zaarmenian 16#0536 +/Zacute 16#0179 +/Zcaron 16#017d +/Zcaronsmall 16#f6ff +/Zcircle 16#24cf +/Zcircumflex 16#1e90 +/Zdot 16#017b +/Zdotaccent 16#017b +/Zdotbelow 16#1e92 +/Zecyrillic 16#0417 +/Zedescendercyrillic 16#0498 +/Zedieresiscyrillic 16#04de +/Zeta 16#0396 +/Zhearmenian 16#053a +/Zhebrevecyrillic 16#04c1 +/Zhecyrillic 16#0416 +/Zhedescendercyrillic 16#0496 +/Zhedieresiscyrillic 16#04dc +/Zlinebelow 16#1e94 +/Zmonospace 16#ff3a +/Zsmall 16#f77a +/Zstroke 16#01b5 +/a 16#0061 +/aabengali 16#0986 +/aacute 16#00e1 +/aadeva 16#0906 +/aagujarati 16#0a86 +/aagurmukhi 16#0a06 +/aamatragurmukhi 16#0a3e +/aarusquare 16#3303 +/aavowelsignbengali 16#09be +/aavowelsigndeva 16#093e +/aavowelsigngujarati 16#0abe +/abbreviationmarkarmenian 16#055f +/abbreviationsigndeva 16#0970 +/abengali 16#0985 +/abopomofo 16#311a +/abreve 16#0103 +/abreveacute 16#1eaf +/abrevecyrillic 16#04d1 +/abrevedotbelow 16#1eb7 +/abrevegrave 16#1eb1 +/abrevehookabove 16#1eb3 +/abrevetilde 16#1eb5 +/acaron 16#01ce +/acircle 16#24d0 +/acircumflex 16#00e2 +/acircumflexacute 16#1ea5 +/acircumflexdotbelow 16#1ead +/acircumflexgrave 16#1ea7 +/acircumflexhookabove 16#1ea9 +/acircumflextilde 16#1eab +/acute 16#00b4 +/acutebelowcmb 16#0317 +/acutecmb 16#0301 +/acutecomb 16#0301 +/acutedeva 16#0954 +/acutelowmod 16#02cf +/acutetonecmb 16#0341 +/acyrillic 16#0430 +/adblgrave 16#0201 +/addakgurmukhi 16#0a71 +/adeva 16#0905 +/adieresis 16#00e4 +/adieresiscyrillic 16#04d3 +/adieresismacron 16#01df +/adotbelow 16#1ea1 +/adotmacron 16#01e1 +/ae 16#00e6 +/aeacute 16#01fd +/aekorean 16#3150 +/aemacron 16#01e3 +/afii00208 16#2015 +/afii08941 16#20a4 +/afii10017 16#0410 +/afii10018 16#0411 +/afii10019 16#0412 +/afii10020 16#0413 +/afii10021 16#0414 +/afii10022 16#0415 +/afii10023 16#0401 +/afii10024 16#0416 +/afii10025 16#0417 +/afii10026 16#0418 +/afii10027 16#0419 +/afii10028 16#041a +/afii10029 16#041b +/afii10030 16#041c +/afii10031 16#041d +/afii10032 16#041e +/afii10033 16#041f +/afii10034 16#0420 +/afii10035 16#0421 +/afii10036 16#0422 +/afii10037 16#0423 +/afii10038 16#0424 +/afii10039 16#0425 +/afii10040 16#0426 +/afii10041 16#0427 +/afii10042 16#0428 +/afii10043 16#0429 +/afii10044 16#042a +/afii10045 16#042b +/afii10046 16#042c +/afii10047 16#042d +/afii10048 16#042e +/afii10049 16#042f +/afii10050 16#0490 +/afii10051 16#0402 +/afii10052 16#0403 +/afii10053 16#0404 +/afii10054 16#0405 +/afii10055 16#0406 +/afii10056 16#0407 +/afii10057 16#0408 +/afii10058 16#0409 +/afii10059 16#040a +/afii10060 16#040b +/afii10061 16#040c +/afii10062 16#040e +/afii10063 16#f6c4 +/afii10064 16#f6c5 +/afii10065 16#0430 +/afii10066 16#0431 +/afii10067 16#0432 +/afii10068 16#0433 +/afii10069 16#0434 +/afii10070 16#0435 +/afii10071 16#0451 +/afii10072 16#0436 +/afii10073 16#0437 +/afii10074 16#0438 +/afii10075 16#0439 +/afii10076 16#043a +/afii10077 16#043b +/afii10078 16#043c +/afii10079 16#043d +/afii10080 16#043e +/afii10081 16#043f +/afii10082 16#0440 +/afii10083 16#0441 +/afii10084 16#0442 +/afii10085 16#0443 +/afii10086 16#0444 +/afii10087 16#0445 +/afii10088 16#0446 +/afii10089 16#0447 +/afii10090 16#0448 +/afii10091 16#0449 +/afii10092 16#044a +/afii10093 16#044b +/afii10094 16#044c +/afii10095 16#044d +/afii10096 16#044e +/afii10097 16#044f +/afii10098 16#0491 +/afii10099 16#0452 +/afii10100 16#0453 +/afii10101 16#0454 +/afii10102 16#0455 +/afii10103 16#0456 +/afii10104 16#0457 +/afii10105 16#0458 +/afii10106 16#0459 +/afii10107 16#045a +/afii10108 16#045b +/afii10109 16#045c +/afii10110 16#045e +/afii10145 16#040f +/afii10146 16#0462 +/afii10147 16#0472 +/afii10148 16#0474 +/afii10192 16#f6c6 +/afii10193 16#045f +/afii10194 16#0463 +/afii10195 16#0473 +/afii10196 16#0475 +/afii10831 16#f6c7 +/afii10832 16#f6c8 +/afii10846 16#04d9 +/afii299 16#200e +/afii300 16#200f +/afii301 16#200d +/afii57381 16#066a +/afii57388 16#060c +/afii57392 16#0660 +/afii57393 16#0661 +/afii57394 16#0662 +/afii57395 16#0663 +/afii57396 16#0664 +/afii57397 16#0665 +/afii57398 16#0666 +/afii57399 16#0667 +/afii57400 16#0668 +/afii57401 16#0669 +/afii57403 16#061b +/afii57407 16#061f +/afii57409 16#0621 +/afii57410 16#0622 +/afii57411 16#0623 +/afii57412 16#0624 +/afii57413 16#0625 +/afii57414 16#0626 +/afii57415 16#0627 +/afii57416 16#0628 +/afii57417 16#0629 +/afii57418 16#062a +/afii57419 16#062b +/afii57420 16#062c +/afii57421 16#062d +/afii57422 16#062e +/afii57423 16#062f +/afii57424 16#0630 +/afii57425 16#0631 +/afii57426 16#0632 +/afii57427 16#0633 +/afii57428 16#0634 +/afii57429 16#0635 +/afii57430 16#0636 +/afii57431 16#0637 +/afii57432 16#0638 +/afii57433 16#0639 +/afii57434 16#063a +/afii57440 16#0640 +/afii57441 16#0641 +/afii57442 16#0642 +/afii57443 16#0643 +/afii57444 16#0644 +/afii57445 16#0645 +/afii57446 16#0646 +/afii57448 16#0648 +/afii57449 16#0649 +/afii57450 16#064a +/afii57451 16#064b +/afii57452 16#064c +/afii57453 16#064d +/afii57454 16#064e +/afii57455 16#064f +/afii57456 16#0650 +/afii57457 16#0651 +/afii57458 16#0652 +/afii57470 16#0647 +/afii57505 16#06a4 +/afii57506 16#067e +/afii57507 16#0686 +/afii57508 16#0698 +/afii57509 16#06af +/afii57511 16#0679 +/afii57512 16#0688 +/afii57513 16#0691 +/afii57514 16#06ba +/afii57519 16#06d2 +/afii57534 16#06d5 +/afii57636 16#20aa +/afii57645 16#05be +/afii57658 16#05c3 +/afii57664 16#05d0 +/afii57665 16#05d1 +/afii57666 16#05d2 +/afii57667 16#05d3 +/afii57668 16#05d4 +/afii57669 16#05d5 +/afii57670 16#05d6 +/afii57671 16#05d7 +/afii57672 16#05d8 +/afii57673 16#05d9 +/afii57674 16#05da +/afii57675 16#05db +/afii57676 16#05dc +/afii57677 16#05dd +/afii57678 16#05de +/afii57679 16#05df +/afii57680 16#05e0 +/afii57681 16#05e1 +/afii57682 16#05e2 +/afii57683 16#05e3 +/afii57684 16#05e4 +/afii57685 16#05e5 +/afii57686 16#05e6 +/afii57687 16#05e7 +/afii57688 16#05e8 +/afii57689 16#05e9 +/afii57690 16#05ea +/afii57694 16#fb2a +/afii57695 16#fb2b +/afii57700 16#fb4b +/afii57705 16#fb1f +/afii57716 16#05f0 +/afii57717 16#05f1 +/afii57718 16#05f2 +/afii57723 16#fb35 +/afii57793 16#05b4 +/afii57794 16#05b5 +/afii57795 16#05b6 +/afii57796 16#05bb +/afii57797 16#05b8 +/afii57798 16#05b7 +/afii57799 16#05b0 +/afii57800 16#05b2 +/afii57801 16#05b1 +/afii57802 16#05b3 +/afii57803 16#05c2 +/afii57804 16#05c1 +/afii57806 16#05b9 +/afii57807 16#05bc +/afii57839 16#05bd +/afii57841 16#05bf +/afii57842 16#05c0 +/afii57929 16#02bc +/afii61248 16#2105 +/afii61289 16#2113 +/afii61352 16#2116 +/afii61573 16#202c +/afii61574 16#202d +/afii61575 16#202e +/afii61664 16#200c +/afii63167 16#066d +/afii64937 16#02bd +/agrave 16#00e0 +/agujarati 16#0a85 +/agurmukhi 16#0a05 +/ahiragana 16#3042 +/ahookabove 16#1ea3 +/aibengali 16#0990 +/aibopomofo 16#311e +/aideva 16#0910 +/aiecyrillic 16#04d5 +/aigujarati 16#0a90 +/aigurmukhi 16#0a10 +/aimatragurmukhi 16#0a48 +/ainarabic 16#0639 +/ainfinalarabic 16#feca +/aininitialarabic 16#fecb +/ainmedialarabic 16#fecc +/ainvertedbreve 16#0203 +/aivowelsignbengali 16#09c8 +/aivowelsigndeva 16#0948 +/aivowelsigngujarati 16#0ac8 +/akatakana 16#30a2 +/akatakanahalfwidth 16#ff71 +/akorean 16#314f +/alef 16#05d0 +/alefarabic 16#0627 +/alefdageshhebrew 16#fb30 +/aleffinalarabic 16#fe8e +/alefhamzaabovearabic 16#0623 +/alefhamzaabovefinalarabic 16#fe84 +/alefhamzabelowarabic 16#0625 +/alefhamzabelowfinalarabic 16#fe88 +/alefhebrew 16#05d0 +/aleflamedhebrew 16#fb4f +/alefmaddaabovearabic 16#0622 +/alefmaddaabovefinalarabic 16#fe82 +/alefmaksuraarabic 16#0649 +/alefmaksurafinalarabic 16#fef0 +/alefmaksurainitialarabic 16#fef3 +/alefmaksuramedialarabic 16#fef4 +/alefpatahhebrew 16#fb2e +/alefqamatshebrew 16#fb2f +/aleph 16#2135 +/allequal 16#224c +/alpha 16#03b1 +/alphatonos 16#03ac +/amacron 16#0101 +/amonospace 16#ff41 +/ampersand 16#0026 +/ampersandmonospace 16#ff06 +/ampersandsmall 16#f726 +/amsquare 16#33c2 +/anbopomofo 16#3122 +/angbopomofo 16#3124 +/angkhankhuthai 16#0e5a +/angle 16#2220 +/anglebracketleft 16#3008 +/anglebracketleftvertical 16#fe3f +/anglebracketright 16#3009 +/anglebracketrightvertical 16#fe40 +/angleleft 16#2329 +/angleright 16#232a +/angstrom 16#212b +/anoteleia 16#0387 +/anudattadeva 16#0952 +/anusvarabengali 16#0982 +/anusvaradeva 16#0902 +/anusvaragujarati 16#0a82 +/aogonek 16#0105 +/apaatosquare 16#3300 +/aparen 16#249c +/apostrophearmenian 16#055a +/apostrophemod 16#02bc +/apple 16#f8ff +/approaches 16#2250 +/approxequal 16#2248 +/approxequalorimage 16#2252 +/approximatelyequal 16#2245 +/araeaekorean 16#318e +/araeakorean 16#318d +/arc 16#2312 +/arighthalfring 16#1e9a +/aring 16#00e5 +/aringacute 16#01fb +/aringbelow 16#1e01 +/arrowboth 16#2194 +/arrowdashdown 16#21e3 +/arrowdashleft 16#21e0 +/arrowdashright 16#21e2 +/arrowdashup 16#21e1 +/arrowdblboth 16#21d4 +/arrowdbldown 16#21d3 +/arrowdblleft 16#21d0 +/arrowdblright 16#21d2 +/arrowdblup 16#21d1 +/arrowdown 16#2193 +/arrowdownleft 16#2199 +/arrowdownright 16#2198 +/arrowdownwhite 16#21e9 +/arrowheaddownmod 16#02c5 +/arrowheadleftmod 16#02c2 +/arrowheadrightmod 16#02c3 +/arrowheadupmod 16#02c4 +/arrowhorizex 16#f8e7 +/arrowleft 16#2190 +/arrowleftdbl 16#21d0 +/arrowleftdblstroke 16#21cd +/arrowleftoverright 16#21c6 +/arrowleftwhite 16#21e6 +/arrowright 16#2192 +/arrowrightdblstroke 16#21cf +/arrowrightheavy 16#279e +/arrowrightoverleft 16#21c4 +/arrowrightwhite 16#21e8 +/arrowtableft 16#21e4 +/arrowtabright 16#21e5 +/arrowup 16#2191 +/arrowupdn 16#2195 +/arrowupdnbse 16#21a8 +/arrowupdownbase 16#21a8 +/arrowupleft 16#2196 +/arrowupleftofdown 16#21c5 +/arrowupright 16#2197 +/arrowupwhite 16#21e7 +/arrowvertex 16#f8e6 +/asciicircum 16#005e +/asciicircummonospace 16#ff3e +/asciitilde 16#007e +/asciitildemonospace 16#ff5e +/ascript 16#0251 +/ascriptturned 16#0252 +/asmallhiragana 16#3041 +/asmallkatakana 16#30a1 +/asmallkatakanahalfwidth 16#ff67 +/asterisk 16#002a +/asteriskaltonearabic 16#066d +/asteriskarabic 16#066d +/asteriskmath 16#2217 +/asteriskmonospace 16#ff0a +/asterisksmall 16#fe61 +/asterism 16#2042 +/asuperior 16#f6e9 +/asymptoticallyequal 16#2243 +/at 16#0040 +/atilde 16#00e3 +/atmonospace 16#ff20 +/atsmall 16#fe6b +/aturned 16#0250 +/aubengali 16#0994 +/aubopomofo 16#3120 +/audeva 16#0914 +/augujarati 16#0a94 +/augurmukhi 16#0a14 +/aulengthmarkbengali 16#09d7 +/aumatragurmukhi 16#0a4c +/auvowelsignbengali 16#09cc +/auvowelsigndeva 16#094c +/auvowelsigngujarati 16#0acc +/avagrahadeva 16#093d +/aybarmenian 16#0561 +/ayin 16#05e2 +/ayinaltonehebrew 16#fb20 +/ayinhebrew 16#05e2 +/b 16#0062 +/babengali 16#09ac +/backslash 16#005c +/backslashmonospace 16#ff3c +/badeva 16#092c +/bagujarati 16#0aac +/bagurmukhi 16#0a2c +/bahiragana 16#3070 +/bahtthai 16#0e3f +/bakatakana 16#30d0 +/bar 16#007c +/barmonospace 16#ff5c +/bbopomofo 16#3105 +/bcircle 16#24d1 +/bdotaccent 16#1e03 +/bdotbelow 16#1e05 +/beamedsixteenthnotes 16#266c +/because 16#2235 +/becyrillic 16#0431 +/beharabic 16#0628 +/behfinalarabic 16#fe90 +/behinitialarabic 16#fe91 +/behiragana 16#3079 +/behmedialarabic 16#fe92 +/behmeeminitialarabic 16#fc9f +/behmeemisolatedarabic 16#fc08 +/behnoonfinalarabic 16#fc6d +/bekatakana 16#30d9 +/benarmenian 16#0562 +/bet 16#05d1 +/beta 16#03b2 +/betasymbolgreek 16#03d0 +/betdagesh 16#fb31 +/betdageshhebrew 16#fb31 +/bethebrew 16#05d1 +/betrafehebrew 16#fb4c +/bhabengali 16#09ad +/bhadeva 16#092d +/bhagujarati 16#0aad +/bhagurmukhi 16#0a2d +/bhook 16#0253 +/bihiragana 16#3073 +/bikatakana 16#30d3 +/bilabialclick 16#0298 +/bindigurmukhi 16#0a02 +/birusquare 16#3331 +/blackcircle 16#25cf +/blackdiamond 16#25c6 +/blackdownpointingtriangle 16#25bc +/blackleftpointingpointer 16#25c4 +/blackleftpointingtriangle 16#25c0 +/blacklenticularbracketleft 16#3010 +/blacklenticularbracketleftvertical 16#fe3b +/blacklenticularbracketright 16#3011 +/blacklenticularbracketrightvertical 16#fe3c +/blacklowerlefttriangle 16#25e3 +/blacklowerrighttriangle 16#25e2 +/blackrectangle 16#25ac +/blackrightpointingpointer 16#25ba +/blackrightpointingtriangle 16#25b6 +/blacksmallsquare 16#25aa +/blacksmilingface 16#263b +/blacksquare 16#25a0 +/blackstar 16#2605 +/blackupperlefttriangle 16#25e4 +/blackupperrighttriangle 16#25e5 +/blackuppointingsmalltriangle 16#25b4 +/blackuppointingtriangle 16#25b2 +/blank 16#2423 +/blinebelow 16#1e07 +/block 16#2588 +/bmonospace 16#ff42 +/bobaimaithai 16#0e1a +/bohiragana 16#307c +/bokatakana 16#30dc +/bparen 16#249d +/bqsquare 16#33c3 +/braceex 16#f8f4 +/braceleft 16#007b +/braceleftbt 16#f8f3 +/braceleftmid 16#f8f2 +/braceleftmonospace 16#ff5b +/braceleftsmall 16#fe5b +/bracelefttp 16#f8f1 +/braceleftvertical 16#fe37 +/braceright 16#007d +/bracerightbt 16#f8fe +/bracerightmid 16#f8fd +/bracerightmonospace 16#ff5d +/bracerightsmall 16#fe5c +/bracerighttp 16#f8fc +/bracerightvertical 16#fe38 +/bracketleft 16#005b +/bracketleftbt 16#f8f0 +/bracketleftex 16#f8ef +/bracketleftmonospace 16#ff3b +/bracketlefttp 16#f8ee +/bracketright 16#005d +/bracketrightbt 16#f8fb +/bracketrightex 16#f8fa +/bracketrightmonospace 16#ff3d +/bracketrighttp 16#f8f9 +/breve 16#02d8 +/brevebelowcmb 16#032e +/brevecmb 16#0306 +/breveinvertedbelowcmb 16#032f +/breveinvertedcmb 16#0311 +/breveinverteddoublecmb 16#0361 +/bridgebelowcmb 16#032a +/bridgeinvertedbelowcmb 16#033a +/brokenbar 16#00a6 +/bstroke 16#0180 +/bsuperior 16#f6ea +/btopbar 16#0183 +/buhiragana 16#3076 +/bukatakana 16#30d6 +/bullet 16#2022 +/bulletinverse 16#25d8 +/bulletoperator 16#2219 +/bullseye 16#25ce +/c 16#0063 +/caarmenian 16#056e +/cabengali 16#099a +/cacute 16#0107 +/cadeva 16#091a +/cagujarati 16#0a9a +/cagurmukhi 16#0a1a +/calsquare 16#3388 +/candrabindubengali 16#0981 +/candrabinducmb 16#0310 +/candrabindudeva 16#0901 +/candrabindugujarati 16#0a81 +/capslock 16#21ea +/careof 16#2105 +/caron 16#02c7 +/caronbelowcmb 16#032c +/caroncmb 16#030c +/carriagereturn 16#21b5 +/cbopomofo 16#3118 +/ccaron 16#010d +/ccedilla 16#00e7 +/ccedillaacute 16#1e09 +/ccircle 16#24d2 +/ccircumflex 16#0109 +/ccurl 16#0255 +/cdot 16#010b +/cdotaccent 16#010b +/cdsquare 16#33c5 +/cedilla 16#00b8 +/cedillacmb 16#0327 +/cent 16#00a2 +/centigrade 16#2103 +/centinferior 16#f6df +/centmonospace 16#ffe0 +/centoldstyle 16#f7a2 +/centsuperior 16#f6e0 +/chaarmenian 16#0579 +/chabengali 16#099b +/chadeva 16#091b +/chagujarati 16#0a9b +/chagurmukhi 16#0a1b +/chbopomofo 16#3114 +/cheabkhasiancyrillic 16#04bd +/checkmark 16#2713 +/checyrillic 16#0447 +/chedescenderabkhasiancyrillic 16#04bf +/chedescendercyrillic 16#04b7 +/chedieresiscyrillic 16#04f5 +/cheharmenian 16#0573 +/chekhakassiancyrillic 16#04cc +/cheverticalstrokecyrillic 16#04b9 +/chi 16#03c7 +/chieuchacirclekorean 16#3277 +/chieuchaparenkorean 16#3217 +/chieuchcirclekorean 16#3269 +/chieuchkorean 16#314a +/chieuchparenkorean 16#3209 +/chochangthai 16#0e0a +/chochanthai 16#0e08 +/chochingthai 16#0e09 +/chochoethai 16#0e0c +/chook 16#0188 +/cieucacirclekorean 16#3276 +/cieucaparenkorean 16#3216 +/cieuccirclekorean 16#3268 +/cieuckorean 16#3148 +/cieucparenkorean 16#3208 +/cieucuparenkorean 16#321c +/circle 16#25cb +/circlemultiply 16#2297 +/circleot 16#2299 +/circleplus 16#2295 +/circlepostalmark 16#3036 +/circlewithlefthalfblack 16#25d0 +/circlewithrighthalfblack 16#25d1 +/circumflex 16#02c6 +/circumflexbelowcmb 16#032d +/circumflexcmb 16#0302 +/clear 16#2327 +/clickalveolar 16#01c2 +/clickdental 16#01c0 +/clicklateral 16#01c1 +/clickretroflex 16#01c3 +/club 16#2663 +/clubsuitblack 16#2663 +/clubsuitwhite 16#2667 +/cmcubedsquare 16#33a4 +/cmonospace 16#ff43 +/cmsquaredsquare 16#33a0 +/coarmenian 16#0581 +/colon 16#003a +/colonmonetary 16#20a1 +/colonmonospace 16#ff1a +/colonsign 16#20a1 +/colonsmall 16#fe55 +/colontriangularhalfmod 16#02d1 +/colontriangularmod 16#02d0 +/comma 16#002c +/commaabovecmb 16#0313 +/commaaboverightcmb 16#0315 +/commaaccent 16#f6c3 +/commaarabic 16#060c +/commaarmenian 16#055d +/commainferior 16#f6e1 +/commamonospace 16#ff0c +/commareversedabovecmb 16#0314 +/commareversedmod 16#02bd +/commasmall 16#fe50 +/commasuperior 16#f6e2 +/commaturnedabovecmb 16#0312 +/commaturnedmod 16#02bb +/compass 16#263c +/congruent 16#2245 +/contourintegral 16#222e +/control 16#2303 +/controlACK 16#0006 +/controlBEL 16#0007 +/controlBS 16#0008 +/controlCAN 16#0018 +/controlCR 16#000d +/controlDC1 16#0011 +/controlDC2 16#0012 +/controlDC3 16#0013 +/controlDC4 16#0014 +/controlDEL 16#007f +/controlDLE 16#0010 +/controlEM 16#0019 +/controlENQ 16#0005 +/controlEOT 16#0004 +/controlESC 16#001b +/controlETB 16#0017 +/controlETX 16#0003 +/controlFF 16#000c +/controlFS 16#001c +/controlGS 16#001d +/controlHT 16#0009 +/controlLF 16#000a +/controlNAK 16#0015 +/controlRS 16#001e +/controlSI 16#000f +/controlSO 16#000e +/controlSOT 16#0002 +/controlSTX 16#0001 +/controlSUB 16#001a +/controlSYN 16#0016 +/controlUS 16#001f +/controlVT 16#000b +/copyright 16#00a9 +/copyrightsans 16#f8e9 +/copyrightserif 16#f6d9 +/cornerbracketleft 16#300c +/cornerbracketlefthalfwidth 16#ff62 +/cornerbracketleftvertical 16#fe41 +/cornerbracketright 16#300d +/cornerbracketrighthalfwidth 16#ff63 +/cornerbracketrightvertical 16#fe42 +/corporationsquare 16#337f +/cosquare 16#33c7 +/coverkgsquare 16#33c6 +/cparen 16#249e +/cruzeiro 16#20a2 +/cstretched 16#0297 +/curlyand 16#22cf +/curlyor 16#22ce +/currency 16#00a4 +/cyrBreve 16#f6d1 +/cyrFlex 16#f6d2 +/cyrbreve 16#f6d4 +/cyrflex 16#f6d5 +/d 16#0064 +/daarmenian 16#0564 +/dabengali 16#09a6 +/dadarabic 16#0636 +/dadeva 16#0926 +/dadfinalarabic 16#febe +/dadinitialarabic 16#febf +/dadmedialarabic 16#fec0 +/dagesh 16#05bc +/dageshhebrew 16#05bc +/dagger 16#2020 +/daggerdbl 16#2021 +/dagujarati 16#0aa6 +/dagurmukhi 16#0a26 +/dahiragana 16#3060 +/dakatakana 16#30c0 +/dalarabic 16#062f +/dalet 16#05d3 +/daletdagesh 16#fb33 +/daletdageshhebrew 16#fb33 +/dalethebrew 16#05d3 +/dalfinalarabic 16#feaa +/dammaarabic 16#064f +/dammalowarabic 16#064f +/dammatanaltonearabic 16#064c +/dammatanarabic 16#064c +/danda 16#0964 +/dargahebrew 16#05a7 +/dargalefthebrew 16#05a7 +/dasiapneumatacyrilliccmb 16#0485 +/dblGrave 16#f6d3 +/dblanglebracketleft 16#300a +/dblanglebracketleftvertical 16#fe3d +/dblanglebracketright 16#300b +/dblanglebracketrightvertical 16#fe3e +/dblarchinvertedbelowcmb 16#032b +/dblarrowleft 16#21d4 +/dblarrowright 16#21d2 +/dbldanda 16#0965 +/dblgrave 16#f6d6 +/dblgravecmb 16#030f +/dblintegral 16#222c +/dbllowline 16#2017 +/dbllowlinecmb 16#0333 +/dbloverlinecmb 16#033f +/dblprimemod 16#02ba +/dblverticalbar 16#2016 +/dblverticallineabovecmb 16#030e +/dbopomofo 16#3109 +/dbsquare 16#33c8 +/dcaron 16#010f +/dcedilla 16#1e11 +/dcircle 16#24d3 +/dcircumflexbelow 16#1e13 +/dcroat 16#0111 +/ddabengali 16#09a1 +/ddadeva 16#0921 +/ddagujarati 16#0aa1 +/ddagurmukhi 16#0a21 +/ddalarabic 16#0688 +/ddalfinalarabic 16#fb89 +/dddhadeva 16#095c +/ddhabengali 16#09a2 +/ddhadeva 16#0922 +/ddhagujarati 16#0aa2 +/ddhagurmukhi 16#0a22 +/ddotaccent 16#1e0b +/ddotbelow 16#1e0d +/decimalseparatorarabic 16#066b +/decimalseparatorpersian 16#066b +/decyrillic 16#0434 +/degree 16#00b0 +/dehihebrew 16#05ad +/dehiragana 16#3067 +/deicoptic 16#03ef +/dekatakana 16#30c7 +/deleteleft 16#232b +/deleteright 16#2326 +/delta 16#03b4 +/deltaturned 16#018d +/denominatorminusonenumeratorbengali 16#09f8 +/dezh 16#02a4 +/dhabengali 16#09a7 +/dhadeva 16#0927 +/dhagujarati 16#0aa7 +/dhagurmukhi 16#0a27 +/dhook 16#0257 +/dialytikatonos 16#0385 +/dialytikatonoscmb 16#0344 +/diamond 16#2666 +/diamondsuitwhite 16#2662 +/dieresis 16#00a8 +/dieresisacute 16#f6d7 +/dieresisbelowcmb 16#0324 +/dieresiscmb 16#0308 +/dieresisgrave 16#f6d8 +/dieresistonos 16#0385 +/dihiragana 16#3062 +/dikatakana 16#30c2 +/dittomark 16#3003 +/divide 16#00f7 +/divides 16#2223 +/divisionslash 16#2215 +/djecyrillic 16#0452 +/dkshade 16#2593 +/dlinebelow 16#1e0f +/dlsquare 16#3397 +/dmacron 16#0111 +/dmonospace 16#ff44 +/dnblock 16#2584 +/dochadathai 16#0e0e +/dodekthai 16#0e14 +/dohiragana 16#3069 +/dokatakana 16#30c9 +/dollar 16#0024 +/dollarinferior 16#f6e3 +/dollarmonospace 16#ff04 +/dollaroldstyle 16#f724 +/dollarsmall 16#fe69 +/dollarsuperior 16#f6e4 +/dong 16#20ab +/dorusquare 16#3326 +/dotaccent 16#02d9 +/dotaccentcmb 16#0307 +/dotbelowcmb 16#0323 +/dotbelowcomb 16#0323 +/dotkatakana 16#30fb +/dotlessi 16#0131 +/dotlessj 16#f6be +/dotlessjstrokehook 16#0284 +/dotmath 16#22c5 +/dottedcircle 16#25cc +/doubleyodpatah 16#fb1f +/doubleyodpatahhebrew 16#fb1f +/downtackbelowcmb 16#031e +/downtackmod 16#02d5 +/dparen 16#249f +/dsuperior 16#f6eb +/dtail 16#0256 +/dtopbar 16#018c +/duhiragana 16#3065 +/dukatakana 16#30c5 +/dz 16#01f3 +/dzaltone 16#02a3 +/dzcaron 16#01c6 +/dzcurl 16#02a5 +/dzeabkhasiancyrillic 16#04e1 +/dzecyrillic 16#0455 +/dzhecyrillic 16#045f +/e 16#0065 +/eacute 16#00e9 +/earth 16#2641 +/ebengali 16#098f +/ebopomofo 16#311c +/ebreve 16#0115 +/ecandradeva 16#090d +/ecandragujarati 16#0a8d +/ecandravowelsigndeva 16#0945 +/ecandravowelsigngujarati 16#0ac5 +/ecaron 16#011b +/ecedillabreve 16#1e1d +/echarmenian 16#0565 +/echyiwnarmenian 16#0587 +/ecircle 16#24d4 +/ecircumflex 16#00ea +/ecircumflexacute 16#1ebf +/ecircumflexbelow 16#1e19 +/ecircumflexdotbelow 16#1ec7 +/ecircumflexgrave 16#1ec1 +/ecircumflexhookabove 16#1ec3 +/ecircumflextilde 16#1ec5 +/ecyrillic 16#0454 +/edblgrave 16#0205 +/edeva 16#090f +/edieresis 16#00eb +/edot 16#0117 +/edotaccent 16#0117 +/edotbelow 16#1eb9 +/eegurmukhi 16#0a0f +/eematragurmukhi 16#0a47 +/efcyrillic 16#0444 +/egrave 16#00e8 +/egujarati 16#0a8f +/eharmenian 16#0567 +/ehbopomofo 16#311d +/ehiragana 16#3048 +/ehookabove 16#1ebb +/eibopomofo 16#311f +/eight 16#0038 +/eightarabic 16#0668 +/eightbengali 16#09ee +/eightcircle 16#2467 +/eightcircleinversesansserif 16#2791 +/eightdeva 16#096e +/eighteencircle 16#2471 +/eighteenparen 16#2485 +/eighteenperiod 16#2499 +/eightgujarati 16#0aee +/eightgurmukhi 16#0a6e +/eighthackarabic 16#0668 +/eighthangzhou 16#3028 +/eighthnotebeamed 16#266b +/eightideographicparen 16#3227 +/eightinferior 16#2088 +/eightmonospace 16#ff18 +/eightoldstyle 16#f738 +/eightparen 16#247b +/eightperiod 16#248f +/eightpersian 16#06f8 +/eightroman 16#2177 +/eightsuperior 16#2078 +/eightthai 16#0e58 +/einvertedbreve 16#0207 +/eiotifiedcyrillic 16#0465 +/ekatakana 16#30a8 +/ekatakanahalfwidth 16#ff74 +/ekonkargurmukhi 16#0a74 +/ekorean 16#3154 +/elcyrillic 16#043b +/element 16#2208 +/elevencircle 16#246a +/elevenparen 16#247e +/elevenperiod 16#2492 +/elevenroman 16#217a +/ellipsis 16#2026 +/ellipsisvertical 16#22ee +/emacron 16#0113 +/emacronacute 16#1e17 +/emacrongrave 16#1e15 +/emcyrillic 16#043c +/emdash 16#2014 +/emdashvertical 16#fe31 +/emonospace 16#ff45 +/emphasismarkarmenian 16#055b +/emptyset 16#2205 +/enbopomofo 16#3123 +/encyrillic 16#043d +/endash 16#2013 +/endashvertical 16#fe32 +/endescendercyrillic 16#04a3 +/eng 16#014b +/engbopomofo 16#3125 +/enghecyrillic 16#04a5 +/enhookcyrillic 16#04c8 +/enspace 16#2002 +/eogonek 16#0119 +/eokorean 16#3153 +/eopen 16#025b +/eopenclosed 16#029a +/eopenreversed 16#025c +/eopenreversedclosed 16#025e +/eopenreversedhook 16#025d +/eparen 16#24a0 +/epsilon 16#03b5 +/epsilontonos 16#03ad +/equal 16#003d +/equalmonospace 16#ff1d +/equalsmall 16#fe66 +/equalsuperior 16#207c +/equivalence 16#2261 +/erbopomofo 16#3126 +/ercyrillic 16#0440 +/ereversed 16#0258 +/ereversedcyrillic 16#044d +/escyrillic 16#0441 +/esdescendercyrillic 16#04ab +/esh 16#0283 +/eshcurl 16#0286 +/eshortdeva 16#090e +/eshortvowelsigndeva 16#0946 +/eshreversedloop 16#01aa +/eshsquatreversed 16#0285 +/esmallhiragana 16#3047 +/esmallkatakana 16#30a7 +/esmallkatakanahalfwidth 16#ff6a +/estimated 16#212e +/esuperior 16#f6ec +/eta 16#03b7 +/etarmenian 16#0568 +/etatonos 16#03ae +/eth 16#00f0 +/etilde 16#1ebd +/etildebelow 16#1e1b +/etnahtafoukhhebrew 16#0591 +/etnahtafoukhlefthebrew 16#0591 +/etnahtahebrew 16#0591 +/etnahtalefthebrew 16#0591 +/eturned 16#01dd +/eukorean 16#3161 +/euro 16#20ac +/evowelsignbengali 16#09c7 +/evowelsigndeva 16#0947 +/evowelsigngujarati 16#0ac7 +/exclam 16#0021 +/exclamarmenian 16#055c +/exclamdbl 16#203c +/exclamdown 16#00a1 +/exclamdownsmall 16#f7a1 +/exclammonospace 16#ff01 +/exclamsmall 16#f721 +/existential 16#2203 +/ezh 16#0292 +/ezhcaron 16#01ef +/ezhcurl 16#0293 +/ezhreversed 16#01b9 +/ezhtail 16#01ba +/f 16#0066 +/fadeva 16#095e +/fagurmukhi 16#0a5e +/fahrenheit 16#2109 +/fathaarabic 16#064e +/fathalowarabic 16#064e +/fathatanarabic 16#064b +/fbopomofo 16#3108 +/fcircle 16#24d5 +/fdotaccent 16#1e1f +/feharabic 16#0641 +/feharmenian 16#0586 +/fehfinalarabic 16#fed2 +/fehinitialarabic 16#fed3 +/fehmedialarabic 16#fed4 +/feicoptic 16#03e5 +/female 16#2640 +/ff 16#fb00 +/ffi 16#fb03 +/ffl 16#fb04 +/fi 16#fb01 +/fifteencircle 16#246e +/fifteenparen 16#2482 +/fifteenperiod 16#2496 +/figuredash 16#2012 +/filledbox 16#25a0 +/filledrect 16#25ac +/finalkaf 16#05da +/finalkafdagesh 16#fb3a +/finalkafdageshhebrew 16#fb3a +/finalkafhebrew 16#05da +/finalmem 16#05dd +/finalmemhebrew 16#05dd +/finalnun 16#05df +/finalnunhebrew 16#05df +/finalpe 16#05e3 +/finalpehebrew 16#05e3 +/finaltsadi 16#05e5 +/finaltsadihebrew 16#05e5 +/firsttonechinese 16#02c9 +/fisheye 16#25c9 +/fitacyrillic 16#0473 +/five 16#0035 +/fivearabic 16#0665 +/fivebengali 16#09eb +/fivecircle 16#2464 +/fivecircleinversesansserif 16#278e +/fivedeva 16#096b +/fiveeighths 16#215d +/fivegujarati 16#0aeb +/fivegurmukhi 16#0a6b +/fivehackarabic 16#0665 +/fivehangzhou 16#3025 +/fiveideographicparen 16#3224 +/fiveinferior 16#2085 +/fivemonospace 16#ff15 +/fiveoldstyle 16#f735 +/fiveparen 16#2478 +/fiveperiod 16#248c +/fivepersian 16#06f5 +/fiveroman 16#2174 +/fivesuperior 16#2075 +/fivethai 16#0e55 +/fl 16#fb02 +/florin 16#0192 +/fmonospace 16#ff46 +/fmsquare 16#3399 +/fofanthai 16#0e1f +/fofathai 16#0e1d +/fongmanthai 16#0e4f +/forall 16#2200 +/four 16#0034 +/fourarabic 16#0664 +/fourbengali 16#09ea +/fourcircle 16#2463 +/fourcircleinversesansserif 16#278d +/fourdeva 16#096a +/fourgujarati 16#0aea +/fourgurmukhi 16#0a6a +/fourhackarabic 16#0664 +/fourhangzhou 16#3024 +/fourideographicparen 16#3223 +/fourinferior 16#2084 +/fourmonospace 16#ff14 +/fournumeratorbengali 16#09f7 +/fouroldstyle 16#f734 +/fourparen 16#2477 +/fourperiod 16#248b +/fourpersian 16#06f4 +/fourroman 16#2173 +/foursuperior 16#2074 +/fourteencircle 16#246d +/fourteenparen 16#2481 +/fourteenperiod 16#2495 +/fourthai 16#0e54 +/fourthtonechinese 16#02cb +/fparen 16#24a1 +/fraction 16#2044 +/franc 16#20a3 +/g 16#0067 +/gabengali 16#0997 +/gacute 16#01f5 +/gadeva 16#0917 +/gafarabic 16#06af +/gaffinalarabic 16#fb93 +/gafinitialarabic 16#fb94 +/gafmedialarabic 16#fb95 +/gagujarati 16#0a97 +/gagurmukhi 16#0a17 +/gahiragana 16#304c +/gakatakana 16#30ac +/gamma 16#03b3 +/gammalatinsmall 16#0263 +/gammasuperior 16#02e0 +/gangiacoptic 16#03eb +/gbopomofo 16#310d +/gbreve 16#011f +/gcaron 16#01e7 +/gcedilla 16#0123 +/gcircle 16#24d6 +/gcircumflex 16#011d +/gcommaaccent 16#0123 +/gdot 16#0121 +/gdotaccent 16#0121 +/gecyrillic 16#0433 +/gehiragana 16#3052 +/gekatakana 16#30b2 +/geometricallyequal 16#2251 +/gereshaccenthebrew 16#059c +/gereshhebrew 16#05f3 +/gereshmuqdamhebrew 16#059d +/germandbls 16#00df +/gershayimaccenthebrew 16#059e +/gershayimhebrew 16#05f4 +/getamark 16#3013 +/ghabengali 16#0998 +/ghadarmenian 16#0572 +/ghadeva 16#0918 +/ghagujarati 16#0a98 +/ghagurmukhi 16#0a18 +/ghainarabic 16#063a +/ghainfinalarabic 16#fece +/ghaininitialarabic 16#fecf +/ghainmedialarabic 16#fed0 +/ghemiddlehookcyrillic 16#0495 +/ghestrokecyrillic 16#0493 +/gheupturncyrillic 16#0491 +/ghhadeva 16#095a +/ghhagurmukhi 16#0a5a +/ghook 16#0260 +/ghzsquare 16#3393 +/gihiragana 16#304e +/gikatakana 16#30ae +/gimarmenian 16#0563 +/gimel 16#05d2 +/gimeldagesh 16#fb32 +/gimeldageshhebrew 16#fb32 +/gimelhebrew 16#05d2 +/gjecyrillic 16#0453 +/glottalinvertedstroke 16#01be +/glottalstop 16#0294 +/glottalstopinverted 16#0296 +/glottalstopmod 16#02c0 +/glottalstopreversed 16#0295 +/glottalstopreversedmod 16#02c1 +/glottalstopreversedsuperior 16#02e4 +/glottalstopstroke 16#02a1 +/glottalstopstrokereversed 16#02a2 +/gmacron 16#1e21 +/gmonospace 16#ff47 +/gohiragana 16#3054 +/gokatakana 16#30b4 +/gparen 16#24a2 +/gpasquare 16#33ac +/gradient 16#2207 +/grave 16#0060 +/gravebelowcmb 16#0316 +/gravecmb 16#0300 +/gravecomb 16#0300 +/gravedeva 16#0953 +/gravelowmod 16#02ce +/gravemonospace 16#ff40 +/gravetonecmb 16#0340 +/greater 16#003e +/greaterequal 16#2265 +/greaterequalorless 16#22db +/greatermonospace 16#ff1e +/greaterorequivalent 16#2273 +/greaterorless 16#2277 +/greateroverequal 16#2267 +/greatersmall 16#fe65 +/gscript 16#0261 +/gstroke 16#01e5 +/guhiragana 16#3050 +/guillemotleft 16#00ab +/guillemotright 16#00bb +/guilsinglleft 16#2039 +/guilsinglright 16#203a +/gukatakana 16#30b0 +/guramusquare 16#3318 +/gysquare 16#33c9 +/h 16#0068 +/haabkhasiancyrillic 16#04a9 +/haaltonearabic 16#06c1 +/habengali 16#09b9 +/hadescendercyrillic 16#04b3 +/hadeva 16#0939 +/hagujarati 16#0ab9 +/hagurmukhi 16#0a39 +/haharabic 16#062d +/hahfinalarabic 16#fea2 +/hahinitialarabic 16#fea3 +/hahiragana 16#306f +/hahmedialarabic 16#fea4 +/haitusquare 16#332a +/hakatakana 16#30cf +/hakatakanahalfwidth 16#ff8a +/halantgurmukhi 16#0a4d +/hamzaarabic 16#0621 +/hamzalowarabic 16#0621 +/hangulfiller 16#3164 +/hardsigncyrillic 16#044a +/harpoonleftbarbup 16#21bc +/harpoonrightbarbup 16#21c0 +/hasquare 16#33ca +/hatafpatah 16#05b2 +/hatafpatah16 16#05b2 +/hatafpatah23 16#05b2 +/hatafpatah2f 16#05b2 +/hatafpatahhebrew 16#05b2 +/hatafpatahnarrowhebrew 16#05b2 +/hatafpatahquarterhebrew 16#05b2 +/hatafpatahwidehebrew 16#05b2 +/hatafqamats 16#05b3 +/hatafqamats1b 16#05b3 +/hatafqamats28 16#05b3 +/hatafqamats34 16#05b3 +/hatafqamatshebrew 16#05b3 +/hatafqamatsnarrowhebrew 16#05b3 +/hatafqamatsquarterhebrew 16#05b3 +/hatafqamatswidehebrew 16#05b3 +/hatafsegol 16#05b1 +/hatafsegol17 16#05b1 +/hatafsegol24 16#05b1 +/hatafsegol30 16#05b1 +/hatafsegolhebrew 16#05b1 +/hatafsegolnarrowhebrew 16#05b1 +/hatafsegolquarterhebrew 16#05b1 +/hatafsegolwidehebrew 16#05b1 +/hbar 16#0127 +/hbopomofo 16#310f +/hbrevebelow 16#1e2b +/hcedilla 16#1e29 +/hcircle 16#24d7 +/hcircumflex 16#0125 +/hdieresis 16#1e27 +/hdotaccent 16#1e23 +/hdotbelow 16#1e25 +/he 16#05d4 +/heart 16#2665 +/heartsuitblack 16#2665 +/heartsuitwhite 16#2661 +/hedagesh 16#fb34 +/hedageshhebrew 16#fb34 +/hehaltonearabic 16#06c1 +/heharabic 16#0647 +/hehebrew 16#05d4 +/hehfinalaltonearabic 16#fba7 +/hehfinalalttwoarabic 16#feea +/hehfinalarabic 16#feea +/hehhamzaabovefinalarabic 16#fba5 +/hehhamzaaboveisolatedarabic 16#fba4 +/hehinitialaltonearabic 16#fba8 +/hehinitialarabic 16#feeb +/hehiragana 16#3078 +/hehmedialaltonearabic 16#fba9 +/hehmedialarabic 16#feec +/heiseierasquare 16#337b +/hekatakana 16#30d8 +/hekatakanahalfwidth 16#ff8d +/hekutaarusquare 16#3336 +/henghook 16#0267 +/herutusquare 16#3339 +/het 16#05d7 +/hethebrew 16#05d7 +/hhook 16#0266 +/hhooksuperior 16#02b1 +/hieuhacirclekorean 16#327b +/hieuhaparenkorean 16#321b +/hieuhcirclekorean 16#326d +/hieuhkorean 16#314e +/hieuhparenkorean 16#320d +/hihiragana 16#3072 +/hikatakana 16#30d2 +/hikatakanahalfwidth 16#ff8b +/hiriq 16#05b4 +/hiriq14 16#05b4 +/hiriq21 16#05b4 +/hiriq2d 16#05b4 +/hiriqhebrew 16#05b4 +/hiriqnarrowhebrew 16#05b4 +/hiriqquarterhebrew 16#05b4 +/hiriqwidehebrew 16#05b4 +/hlinebelow 16#1e96 +/hmonospace 16#ff48 +/hoarmenian 16#0570 +/hohipthai 16#0e2b +/hohiragana 16#307b +/hokatakana 16#30db +/hokatakanahalfwidth 16#ff8e +/holam 16#05b9 +/holam19 16#05b9 +/holam26 16#05b9 +/holam32 16#05b9 +/holamhebrew 16#05b9 +/holamnarrowhebrew 16#05b9 +/holamquarterhebrew 16#05b9 +/holamwidehebrew 16#05b9 +/honokhukthai 16#0e2e +/hookabovecomb 16#0309 +/hookcmb 16#0309 +/hookpalatalizedbelowcmb 16#0321 +/hookretroflexbelowcmb 16#0322 +/hoonsquare 16#3342 +/horicoptic 16#03e9 +/horizontalbar 16#2015 +/horncmb 16#031b +/hotsprings 16#2668 +/house 16#2302 +/hparen 16#24a3 +/hsuperior 16#02b0 +/hturned 16#0265 +/huhiragana 16#3075 +/huiitosquare 16#3333 +/hukatakana 16#30d5 +/hukatakanahalfwidth 16#ff8c +/hungarumlaut 16#02dd +/hungarumlautcmb 16#030b +/hv 16#0195 +/hyphen 16#002d +/hypheninferior 16#f6e5 +/hyphenmonospace 16#ff0d +/hyphensmall 16#fe63 +/hyphensuperior 16#f6e6 +/hyphentwo 16#2010 +/i 16#0069 +/iacute 16#00ed +/iacyrillic 16#044f +/ibengali 16#0987 +/ibopomofo 16#3127 +/ibreve 16#012d +/icaron 16#01d0 +/icircle 16#24d8 +/icircumflex 16#00ee +/icyrillic 16#0456 +/idblgrave 16#0209 +/ideographearthcircle 16#328f +/ideographfirecircle 16#328b +/ideographicallianceparen 16#323f +/ideographiccallparen 16#323a +/ideographiccentrecircle 16#32a5 +/ideographicclose 16#3006 +/ideographiccomma 16#3001 +/ideographiccommaleft 16#ff64 +/ideographiccongratulationparen 16#3237 +/ideographiccorrectcircle 16#32a3 +/ideographicearthparen 16#322f +/ideographicenterpriseparen 16#323d +/ideographicexcellentcircle 16#329d +/ideographicfestivalparen 16#3240 +/ideographicfinancialcircle 16#3296 +/ideographicfinancialparen 16#3236 +/ideographicfireparen 16#322b +/ideographichaveparen 16#3232 +/ideographichighcircle 16#32a4 +/ideographiciterationmark 16#3005 +/ideographiclaborcircle 16#3298 +/ideographiclaborparen 16#3238 +/ideographicleftcircle 16#32a7 +/ideographiclowcircle 16#32a6 +/ideographicmedicinecircle 16#32a9 +/ideographicmetalparen 16#322e +/ideographicmoonparen 16#322a +/ideographicnameparen 16#3234 +/ideographicperiod 16#3002 +/ideographicprintcircle 16#329e +/ideographicreachparen 16#3243 +/ideographicrepresentparen 16#3239 +/ideographicresourceparen 16#323e +/ideographicrightcircle 16#32a8 +/ideographicsecretcircle 16#3299 +/ideographicselfparen 16#3242 +/ideographicsocietyparen 16#3233 +/ideographicspace 16#3000 +/ideographicspecialparen 16#3235 +/ideographicstockparen 16#3231 +/ideographicstudyparen 16#323b +/ideographicsunparen 16#3230 +/ideographicsuperviseparen 16#323c +/ideographicwaterparen 16#322c +/ideographicwoodparen 16#322d +/ideographiczero 16#3007 +/ideographmetalcircle 16#328e +/ideographmooncircle 16#328a +/ideographnamecircle 16#3294 +/ideographsuncircle 16#3290 +/ideographwatercircle 16#328c +/ideographwoodcircle 16#328d +/ideva 16#0907 +/idieresis 16#00ef +/idieresisacute 16#1e2f +/idieresiscyrillic 16#04e5 +/idotbelow 16#1ecb +/iebrevecyrillic 16#04d7 +/iecyrillic 16#0435 +/ieungacirclekorean 16#3275 +/ieungaparenkorean 16#3215 +/ieungcirclekorean 16#3267 +/ieungkorean 16#3147 +/ieungparenkorean 16#3207 +/igrave 16#00ec +/igujarati 16#0a87 +/igurmukhi 16#0a07 +/ihiragana 16#3044 +/ihookabove 16#1ec9 +/iibengali 16#0988 +/iicyrillic 16#0438 +/iideva 16#0908 +/iigujarati 16#0a88 +/iigurmukhi 16#0a08 +/iimatragurmukhi 16#0a40 +/iinvertedbreve 16#020b +/iishortcyrillic 16#0439 +/iivowelsignbengali 16#09c0 +/iivowelsigndeva 16#0940 +/iivowelsigngujarati 16#0ac0 +/ij 16#0133 +/ikatakana 16#30a4 +/ikatakanahalfwidth 16#ff72 +/ikorean 16#3163 +/ilde 16#02dc +/iluyhebrew 16#05ac +/imacron 16#012b +/imacroncyrillic 16#04e3 +/imageorapproximatelyequal 16#2253 +/imatragurmukhi 16#0a3f +/imonospace 16#ff49 +/increment 16#2206 +/infinity 16#221e +/iniarmenian 16#056b +/integral 16#222b +/integralbottom 16#2321 +/integralbt 16#2321 +/integralex 16#f8f5 +/integraltop 16#2320 +/integraltp 16#2320 +/intersection 16#2229 +/intisquare 16#3305 +/invbullet 16#25d8 +/invcircle 16#25d9 +/invsmileface 16#263b +/iocyrillic 16#0451 +/iogonek 16#012f +/iota 16#03b9 +/iotadieresis 16#03ca +/iotadieresistonos 16#0390 +/iotalatin 16#0269 +/iotatonos 16#03af +/iparen 16#24a4 +/irigurmukhi 16#0a72 +/ismallhiragana 16#3043 +/ismallkatakana 16#30a3 +/ismallkatakanahalfwidth 16#ff68 +/issharbengali 16#09fa +/istroke 16#0268 +/isuperior 16#f6ed +/iterationhiragana 16#309d +/iterationkatakana 16#30fd +/itilde 16#0129 +/itildebelow 16#1e2d +/iubopomofo 16#3129 +/iucyrillic 16#044e +/ivowelsignbengali 16#09bf +/ivowelsigndeva 16#093f +/ivowelsigngujarati 16#0abf +/izhitsacyrillic 16#0475 +/izhitsadblgravecyrillic 16#0477 +/j 16#006a +/jaarmenian 16#0571 +/jabengali 16#099c +/jadeva 16#091c +/jagujarati 16#0a9c +/jagurmukhi 16#0a1c +/jbopomofo 16#3110 +/jcaron 16#01f0 +/jcircle 16#24d9 +/jcircumflex 16#0135 +/jcrossedtail 16#029d +/jdotlessstroke 16#025f +/jecyrillic 16#0458 +/jeemarabic 16#062c +/jeemfinalarabic 16#fe9e +/jeeminitialarabic 16#fe9f +/jeemmedialarabic 16#fea0 +/jeharabic 16#0698 +/jehfinalarabic 16#fb8b +/jhabengali 16#099d +/jhadeva 16#091d +/jhagujarati 16#0a9d +/jhagurmukhi 16#0a1d +/jheharmenian 16#057b +/jis 16#3004 +/jmonospace 16#ff4a +/jparen 16#24a5 +/jsuperior 16#02b2 +/k 16#006b +/kabashkircyrillic 16#04a1 +/kabengali 16#0995 +/kacute 16#1e31 +/kacyrillic 16#043a +/kadescendercyrillic 16#049b +/kadeva 16#0915 +/kaf 16#05db +/kafarabic 16#0643 +/kafdagesh 16#fb3b +/kafdageshhebrew 16#fb3b +/kaffinalarabic 16#feda +/kafhebrew 16#05db +/kafinitialarabic 16#fedb +/kafmedialarabic 16#fedc +/kafrafehebrew 16#fb4d +/kagujarati 16#0a95 +/kagurmukhi 16#0a15 +/kahiragana 16#304b +/kahookcyrillic 16#04c4 +/kakatakana 16#30ab +/kakatakanahalfwidth 16#ff76 +/kappa 16#03ba +/kappasymbolgreek 16#03f0 +/kapyeounmieumkorean 16#3171 +/kapyeounphieuphkorean 16#3184 +/kapyeounpieupkorean 16#3178 +/kapyeounssangpieupkorean 16#3179 +/karoriisquare 16#330d +/kashidaautoarabic 16#0640 +/kashidaautonosidebearingarabic 16#0640 +/kasmallkatakana 16#30f5 +/kasquare 16#3384 +/kasraarabic 16#0650 +/kasratanarabic 16#064d +/kastrokecyrillic 16#049f +/katahiraprolongmarkhalfwidth 16#ff70 +/kaverticalstrokecyrillic 16#049d +/kbopomofo 16#310e +/kcalsquare 16#3389 +/kcaron 16#01e9 +/kcedilla 16#0137 +/kcircle 16#24da +/kcommaaccent 16#0137 +/kdotbelow 16#1e33 +/keharmenian 16#0584 +/kehiragana 16#3051 +/kekatakana 16#30b1 +/kekatakanahalfwidth 16#ff79 +/kenarmenian 16#056f +/kesmallkatakana 16#30f6 +/kgreenlandic 16#0138 +/khabengali 16#0996 +/khacyrillic 16#0445 +/khadeva 16#0916 +/khagujarati 16#0a96 +/khagurmukhi 16#0a16 +/khaharabic 16#062e +/khahfinalarabic 16#fea6 +/khahinitialarabic 16#fea7 +/khahmedialarabic 16#fea8 +/kheicoptic 16#03e7 +/khhadeva 16#0959 +/khhagurmukhi 16#0a59 +/khieukhacirclekorean 16#3278 +/khieukhaparenkorean 16#3218 +/khieukhcirclekorean 16#326a +/khieukhkorean 16#314b +/khieukhparenkorean 16#320a +/khokhaithai 16#0e02 +/khokhonthai 16#0e05 +/khokhuatthai 16#0e03 +/khokhwaithai 16#0e04 +/khomutthai 16#0e5b +/khook 16#0199 +/khorakhangthai 16#0e06 +/khzsquare 16#3391 +/kihiragana 16#304d +/kikatakana 16#30ad +/kikatakanahalfwidth 16#ff77 +/kiroguramusquare 16#3315 +/kiromeetorusquare 16#3316 +/kirosquare 16#3314 +/kiyeokacirclekorean 16#326e +/kiyeokaparenkorean 16#320e +/kiyeokcirclekorean 16#3260 +/kiyeokkorean 16#3131 +/kiyeokparenkorean 16#3200 +/kiyeoksioskorean 16#3133 +/kjecyrillic 16#045c +/klinebelow 16#1e35 +/klsquare 16#3398 +/kmcubedsquare 16#33a6 +/kmonospace 16#ff4b +/kmsquaredsquare 16#33a2 +/kohiragana 16#3053 +/kohmsquare 16#33c0 +/kokaithai 16#0e01 +/kokatakana 16#30b3 +/kokatakanahalfwidth 16#ff7a +/kooposquare 16#331e +/koppacyrillic 16#0481 +/koreanstandardsymbol 16#327f +/koroniscmb 16#0343 +/kparen 16#24a6 +/kpasquare 16#33aa +/ksicyrillic 16#046f +/ktsquare 16#33cf +/kturned 16#029e +/kuhiragana 16#304f +/kukatakana 16#30af +/kukatakanahalfwidth 16#ff78 +/kvsquare 16#33b8 +/kwsquare 16#33be +/l 16#006c +/labengali 16#09b2 +/lacute 16#013a +/ladeva 16#0932 +/lagujarati 16#0ab2 +/lagurmukhi 16#0a32 +/lakkhangyaothai 16#0e45 +/lamaleffinalarabic 16#fefc +/lamalefhamzaabovefinalarabic 16#fef8 +/lamalefhamzaaboveisolatedarabic 16#fef7 +/lamalefhamzabelowfinalarabic 16#fefa +/lamalefhamzabelowisolatedarabic 16#fef9 +/lamalefisolatedarabic 16#fefb +/lamalefmaddaabovefinalarabic 16#fef6 +/lamalefmaddaaboveisolatedarabic 16#fef5 +/lamarabic 16#0644 +/lambda 16#03bb +/lambdastroke 16#019b +/lamed 16#05dc +/lameddagesh 16#fb3c +/lameddageshhebrew 16#fb3c +/lamedhebrew 16#05dc +/lamfinalarabic 16#fede +/lamhahinitialarabic 16#fcca +/laminitialarabic 16#fedf +/lamjeeminitialarabic 16#fcc9 +/lamkhahinitialarabic 16#fccb +/lamlamhehisolatedarabic 16#fdf2 +/lammedialarabic 16#fee0 +/lammeemhahinitialarabic 16#fd88 +/lammeeminitialarabic 16#fccc +/largecircle 16#25ef +/lbar 16#019a +/lbelt 16#026c +/lbopomofo 16#310c +/lcaron 16#013e +/lcedilla 16#013c +/lcircle 16#24db +/lcircumflexbelow 16#1e3d +/lcommaaccent 16#013c +/ldot 16#0140 +/ldotaccent 16#0140 +/ldotbelow 16#1e37 +/ldotbelowmacron 16#1e39 +/leftangleabovecmb 16#031a +/lefttackbelowcmb 16#0318 +/less 16#003c +/lessequal 16#2264 +/lessequalorgreater 16#22da +/lessmonospace 16#ff1c +/lessorequivalent 16#2272 +/lessorgreater 16#2276 +/lessoverequal 16#2266 +/lesssmall 16#fe64 +/lezh 16#026e +/lfblock 16#258c +/lhookretroflex 16#026d +/lira 16#20a4 +/liwnarmenian 16#056c +/lj 16#01c9 +/ljecyrillic 16#0459 +/ll 16#f6c0 +/lladeva 16#0933 +/llagujarati 16#0ab3 +/llinebelow 16#1e3b +/llladeva 16#0934 +/llvocalicbengali 16#09e1 +/llvocalicdeva 16#0961 +/llvocalicvowelsignbengali 16#09e3 +/llvocalicvowelsigndeva 16#0963 +/lmiddletilde 16#026b +/lmonospace 16#ff4c +/lmsquare 16#33d0 +/lochulathai 16#0e2c +/logicaland 16#2227 +/logicalnot 16#00ac +/logicalnotreversed 16#2310 +/logicalor 16#2228 +/lolingthai 16#0e25 +/longs 16#017f +/lowlinecenterline 16#fe4e +/lowlinecmb 16#0332 +/lowlinedashed 16#fe4d +/lozenge 16#25ca +/lparen 16#24a7 +/lslash 16#0142 +/lsquare 16#2113 +/lsuperior 16#f6ee +/ltshade 16#2591 +/luthai 16#0e26 +/lvocalicbengali 16#098c +/lvocalicdeva 16#090c +/lvocalicvowelsignbengali 16#09e2 +/lvocalicvowelsigndeva 16#0962 +/lxsquare 16#33d3 +/m 16#006d +/mabengali 16#09ae +/macron 16#00af +/macronbelowcmb 16#0331 +/macroncmb 16#0304 +/macronlowmod 16#02cd +/macronmonospace 16#ffe3 +/macute 16#1e3f +/madeva 16#092e +/magujarati 16#0aae +/magurmukhi 16#0a2e +/mahapakhhebrew 16#05a4 +/mahapakhlefthebrew 16#05a4 +/mahiragana 16#307e +/maichattawalowleftthai 16#f895 +/maichattawalowrightthai 16#f894 +/maichattawathai 16#0e4b +/maichattawaupperleftthai 16#f893 +/maieklowleftthai 16#f88c +/maieklowrightthai 16#f88b +/maiekthai 16#0e48 +/maiekupperleftthai 16#f88a +/maihanakatleftthai 16#f884 +/maihanakatthai 16#0e31 +/maitaikhuleftthai 16#f889 +/maitaikhuthai 16#0e47 +/maitholowleftthai 16#f88f +/maitholowrightthai 16#f88e +/maithothai 16#0e49 +/maithoupperleftthai 16#f88d +/maitrilowleftthai 16#f892 +/maitrilowrightthai 16#f891 +/maitrithai 16#0e4a +/maitriupperleftthai 16#f890 +/maiyamokthai 16#0e46 +/makatakana 16#30de +/makatakanahalfwidth 16#ff8f +/male 16#2642 +/mansyonsquare 16#3347 +/maqafhebrew 16#05be +/mars 16#2642 +/masoracirclehebrew 16#05af +/masquare 16#3383 +/mbopomofo 16#3107 +/mbsquare 16#33d4 +/mcircle 16#24dc +/mcubedsquare 16#33a5 +/mdotaccent 16#1e41 +/mdotbelow 16#1e43 +/meemarabic 16#0645 +/meemfinalarabic 16#fee2 +/meeminitialarabic 16#fee3 +/meemmedialarabic 16#fee4 +/meemmeeminitialarabic 16#fcd1 +/meemmeemisolatedarabic 16#fc48 +/meetorusquare 16#334d +/mehiragana 16#3081 +/meizierasquare 16#337e +/mekatakana 16#30e1 +/mekatakanahalfwidth 16#ff92 +/mem 16#05de +/memdagesh 16#fb3e +/memdageshhebrew 16#fb3e +/memhebrew 16#05de +/menarmenian 16#0574 +/merkhahebrew 16#05a5 +/merkhakefulahebrew 16#05a6 +/merkhakefulalefthebrew 16#05a6 +/merkhalefthebrew 16#05a5 +/mhook 16#0271 +/mhzsquare 16#3392 +/middledotkatakanahalfwidth 16#ff65 +/middot 16#00b7 +/mieumacirclekorean 16#3272 +/mieumaparenkorean 16#3212 +/mieumcirclekorean 16#3264 +/mieumkorean 16#3141 +/mieumpansioskorean 16#3170 +/mieumparenkorean 16#3204 +/mieumpieupkorean 16#316e +/mieumsioskorean 16#316f +/mihiragana 16#307f +/mikatakana 16#30df +/mikatakanahalfwidth 16#ff90 +/minus 16#2212 +/minusbelowcmb 16#0320 +/minuscircle 16#2296 +/minusmod 16#02d7 +/minusplus 16#2213 +/minute 16#2032 +/miribaarusquare 16#334a +/mirisquare 16#3349 +/mlonglegturned 16#0270 +/mlsquare 16#3396 +/mmcubedsquare 16#33a3 +/mmonospace 16#ff4d +/mmsquaredsquare 16#339f +/mohiragana 16#3082 +/mohmsquare 16#33c1 +/mokatakana 16#30e2 +/mokatakanahalfwidth 16#ff93 +/molsquare 16#33d6 +/momathai 16#0e21 +/moverssquare 16#33a7 +/moverssquaredsquare 16#33a8 +/mparen 16#24a8 +/mpasquare 16#33ab +/mssquare 16#33b3 +/msuperior 16#f6ef +/mturned 16#026f +/mu 16#00b5 +/mu1 16#00b5 +/muasquare 16#3382 +/muchgreater 16#226b +/muchless 16#226a +/mufsquare 16#338c +/mugreek 16#03bc +/mugsquare 16#338d +/muhiragana 16#3080 +/mukatakana 16#30e0 +/mukatakanahalfwidth 16#ff91 +/mulsquare 16#3395 +/multiply 16#00d7 +/mumsquare 16#339b +/munahhebrew 16#05a3 +/munahlefthebrew 16#05a3 +/musicalnote 16#266a +/musicalnotedbl 16#266b +/musicflatsign 16#266d +/musicsharpsign 16#266f +/mussquare 16#33b2 +/muvsquare 16#33b6 +/muwsquare 16#33bc +/mvmegasquare 16#33b9 +/mvsquare 16#33b7 +/mwmegasquare 16#33bf +/mwsquare 16#33bd +/n 16#006e +/nabengali 16#09a8 +/nabla 16#2207 +/nacute 16#0144 +/nadeva 16#0928 +/nagujarati 16#0aa8 +/nagurmukhi 16#0a28 +/nahiragana 16#306a +/nakatakana 16#30ca +/nakatakanahalfwidth 16#ff85 +/napostrophe 16#0149 +/nasquare 16#3381 +/nbopomofo 16#310b +/nbspace 16#00a0 +/ncaron 16#0148 +/ncedilla 16#0146 +/ncircle 16#24dd +/ncircumflexbelow 16#1e4b +/ncommaaccent 16#0146 +/ndotaccent 16#1e45 +/ndotbelow 16#1e47 +/nehiragana 16#306d +/nekatakana 16#30cd +/nekatakanahalfwidth 16#ff88 +/newsheqelsign 16#20aa +/nfsquare 16#338b +/ngabengali 16#0999 +/ngadeva 16#0919 +/ngagujarati 16#0a99 +/ngagurmukhi 16#0a19 +/ngonguthai 16#0e07 +/nhiragana 16#3093 +/nhookleft 16#0272 +/nhookretroflex 16#0273 +/nieunacirclekorean 16#326f +/nieunaparenkorean 16#320f +/nieuncieuckorean 16#3135 +/nieuncirclekorean 16#3261 +/nieunhieuhkorean 16#3136 +/nieunkorean 16#3134 +/nieunpansioskorean 16#3168 +/nieunparenkorean 16#3201 +/nieunsioskorean 16#3167 +/nieuntikeutkorean 16#3166 +/nihiragana 16#306b +/nikatakana 16#30cb +/nikatakanahalfwidth 16#ff86 +/nikhahitleftthai 16#f899 +/nikhahitthai 16#0e4d +/nine 16#0039 +/ninearabic 16#0669 +/ninebengali 16#09ef +/ninecircle 16#2468 +/ninecircleinversesansserif 16#2792 +/ninedeva 16#096f +/ninegujarati 16#0aef +/ninegurmukhi 16#0a6f +/ninehackarabic 16#0669 +/ninehangzhou 16#3029 +/nineideographicparen 16#3228 +/nineinferior 16#2089 +/ninemonospace 16#ff19 +/nineoldstyle 16#f739 +/nineparen 16#247c +/nineperiod 16#2490 +/ninepersian 16#06f9 +/nineroman 16#2178 +/ninesuperior 16#2079 +/nineteencircle 16#2472 +/nineteenparen 16#2486 +/nineteenperiod 16#249a +/ninethai 16#0e59 +/nj 16#01cc +/njecyrillic 16#045a +/nkatakana 16#30f3 +/nkatakanahalfwidth 16#ff9d +/nlegrightlong 16#019e +/nlinebelow 16#1e49 +/nmonospace 16#ff4e +/nmsquare 16#339a +/nnabengali 16#09a3 +/nnadeva 16#0923 +/nnagujarati 16#0aa3 +/nnagurmukhi 16#0a23 +/nnnadeva 16#0929 +/nohiragana 16#306e +/nokatakana 16#30ce +/nokatakanahalfwidth 16#ff89 +/nonbreakingspace 16#00a0 +/nonenthai 16#0e13 +/nonuthai 16#0e19 +/noonarabic 16#0646 +/noonfinalarabic 16#fee6 +/noonghunnaarabic 16#06ba +/noonghunnafinalarabic 16#fb9f +/nooninitialarabic 16#fee7 +/noonjeeminitialarabic 16#fcd2 +/noonjeemisolatedarabic 16#fc4b +/noonmedialarabic 16#fee8 +/noonmeeminitialarabic 16#fcd5 +/noonmeemisolatedarabic 16#fc4e +/noonnoonfinalarabic 16#fc8d +/notcontains 16#220c +/notelement 16#2209 +/notelementof 16#2209 +/notequal 16#2260 +/notgreater 16#226f +/notgreaternorequal 16#2271 +/notgreaternorless 16#2279 +/notidentical 16#2262 +/notless 16#226e +/notlessnorequal 16#2270 +/notparallel 16#2226 +/notprecedes 16#2280 +/notsubset 16#2284 +/notsucceeds 16#2281 +/notsuperset 16#2285 +/nowarmenian 16#0576 +/nparen 16#24a9 +/nssquare 16#33b1 +/nsuperior 16#207f +/ntilde 16#00f1 +/nu 16#03bd +/nuhiragana 16#306c +/nukatakana 16#30cc +/nukatakanahalfwidth 16#ff87 +/nuktabengali 16#09bc +/nuktadeva 16#093c +/nuktagujarati 16#0abc +/nuktagurmukhi 16#0a3c +/numbersign 16#0023 +/numbersignmonospace 16#ff03 +/numbersignsmall 16#fe5f +/numeralsigngreek 16#0374 +/numeralsignlowergreek 16#0375 +/numero 16#2116 +/nun 16#05e0 +/nundagesh 16#fb40 +/nundageshhebrew 16#fb40 +/nunhebrew 16#05e0 +/nvsquare 16#33b5 +/nwsquare 16#33bb +/nyabengali 16#099e +/nyadeva 16#091e +/nyagujarati 16#0a9e +/nyagurmukhi 16#0a1e +/o 16#006f +/oacute 16#00f3 +/oangthai 16#0e2d +/obarred 16#0275 +/obarredcyrillic 16#04e9 +/obarreddieresiscyrillic 16#04eb +/obengali 16#0993 +/obopomofo 16#311b +/obreve 16#014f +/ocandradeva 16#0911 +/ocandragujarati 16#0a91 +/ocandravowelsigndeva 16#0949 +/ocandravowelsigngujarati 16#0ac9 +/ocaron 16#01d2 +/ocircle 16#24de +/ocircumflex 16#00f4 +/ocircumflexacute 16#1ed1 +/ocircumflexdotbelow 16#1ed9 +/ocircumflexgrave 16#1ed3 +/ocircumflexhookabove 16#1ed5 +/ocircumflextilde 16#1ed7 +/ocyrillic 16#043e +/odblacute 16#0151 +/odblgrave 16#020d +/odeva 16#0913 +/odieresis 16#00f6 +/odieresiscyrillic 16#04e7 +/odotbelow 16#1ecd +/oe 16#0153 +/oekorean 16#315a +/ogonek 16#02db +/ogonekcmb 16#0328 +/ograve 16#00f2 +/ogujarati 16#0a93 +/oharmenian 16#0585 +/ohiragana 16#304a +/ohookabove 16#1ecf +/ohorn 16#01a1 +/ohornacute 16#1edb +/ohorndotbelow 16#1ee3 +/ohorngrave 16#1edd +/ohornhookabove 16#1edf +/ohorntilde 16#1ee1 +/ohungarumlaut 16#0151 +/oi 16#01a3 +/oinvertedbreve 16#020f +/okatakana 16#30aa +/okatakanahalfwidth 16#ff75 +/okorean 16#3157 +/olehebrew 16#05ab +/omacron 16#014d +/omacronacute 16#1e53 +/omacrongrave 16#1e51 +/omdeva 16#0950 +/omega 16#03c9 +/omega1 16#03d6 +/omegacyrillic 16#0461 +/omegalatinclosed 16#0277 +/omegaroundcyrillic 16#047b +/omegatitlocyrillic 16#047d +/omegatonos 16#03ce +/omgujarati 16#0ad0 +/omicron 16#03bf +/omicrontonos 16#03cc +/omonospace 16#ff4f +/one 16#0031 +/onearabic 16#0661 +/onebengali 16#09e7 +/onecircle 16#2460 +/onecircleinversesansserif 16#278a +/onedeva 16#0967 +/onedotenleader 16#2024 +/oneeighth 16#215b +/onefitted 16#f6dc +/onegujarati 16#0ae7 +/onegurmukhi 16#0a67 +/onehackarabic 16#0661 +/onehalf 16#00bd +/onehangzhou 16#3021 +/oneideographicparen 16#3220 +/oneinferior 16#2081 +/onemonospace 16#ff11 +/onenumeratorbengali 16#09f4 +/oneoldstyle 16#f731 +/oneparen 16#2474 +/oneperiod 16#2488 +/onepersian 16#06f1 +/onequarter 16#00bc +/oneroman 16#2170 +/onesuperior 16#00b9 +/onethai 16#0e51 +/onethird 16#2153 +/oogonek 16#01eb +/oogonekmacron 16#01ed +/oogurmukhi 16#0a13 +/oomatragurmukhi 16#0a4b +/oopen 16#0254 +/oparen 16#24aa +/openbullet 16#25e6 +/option 16#2325 +/ordfeminine 16#00aa +/ordmasculine 16#00ba +/orthogonal 16#221f +/oshortdeva 16#0912 +/oshortvowelsigndeva 16#094a +/oslash 16#00f8 +/oslashacute 16#01ff +/osmallhiragana 16#3049 +/osmallkatakana 16#30a9 +/osmallkatakanahalfwidth 16#ff6b +/ostrokeacute 16#01ff +/osuperior 16#f6f0 +/otcyrillic 16#047f +/otilde 16#00f5 +/otildeacute 16#1e4d +/otildedieresis 16#1e4f +/oubopomofo 16#3121 +/overline 16#203e +/overlinecenterline 16#fe4a +/overlinecmb 16#0305 +/overlinedashed 16#fe49 +/overlinedblwavy 16#fe4c +/overlinewavy 16#fe4b +/overscore 16#00af +/ovowelsignbengali 16#09cb +/ovowelsigndeva 16#094b +/ovowelsigngujarati 16#0acb +/p 16#0070 +/paampssquare 16#3380 +/paasentosquare 16#332b +/pabengali 16#09aa +/pacute 16#1e55 +/padeva 16#092a +/pagedown 16#21df +/pageup 16#21de +/pagujarati 16#0aaa +/pagurmukhi 16#0a2a +/pahiragana 16#3071 +/paiyannoithai 16#0e2f +/pakatakana 16#30d1 +/palatalizationcyrilliccmb 16#0484 +/palochkacyrillic 16#04c0 +/pansioskorean 16#317f +/paragraph 16#00b6 +/parallel 16#2225 +/parenleft 16#0028 +/parenleftaltonearabic 16#fd3e +/parenleftbt 16#f8ed +/parenleftex 16#f8ec +/parenleftinferior 16#208d +/parenleftmonospace 16#ff08 +/parenleftsmall 16#fe59 +/parenleftsuperior 16#207d +/parenlefttp 16#f8eb +/parenleftvertical 16#fe35 +/parenright 16#0029 +/parenrightaltonearabic 16#fd3f +/parenrightbt 16#f8f8 +/parenrightex 16#f8f7 +/parenrightinferior 16#208e +/parenrightmonospace 16#ff09 +/parenrightsmall 16#fe5a +/parenrightsuperior 16#207e +/parenrighttp 16#f8f6 +/parenrightvertical 16#fe36 +/partialdiff 16#2202 +/paseqhebrew 16#05c0 +/pashtahebrew 16#0599 +/pasquare 16#33a9 +/patah 16#05b7 +/patah11 16#05b7 +/patah1d 16#05b7 +/patah2a 16#05b7 +/patahhebrew 16#05b7 +/patahnarrowhebrew 16#05b7 +/patahquarterhebrew 16#05b7 +/patahwidehebrew 16#05b7 +/pazerhebrew 16#05a1 +/pbopomofo 16#3106 +/pcircle 16#24df +/pdotaccent 16#1e57 +/pe 16#05e4 +/pecyrillic 16#043f +/pedagesh 16#fb44 +/pedageshhebrew 16#fb44 +/peezisquare 16#333b +/pefinaldageshhebrew 16#fb43 +/peharabic 16#067e +/peharmenian 16#057a +/pehebrew 16#05e4 +/pehfinalarabic 16#fb57 +/pehinitialarabic 16#fb58 +/pehiragana 16#307a +/pehmedialarabic 16#fb59 +/pekatakana 16#30da +/pemiddlehookcyrillic 16#04a7 +/perafehebrew 16#fb4e +/percent 16#0025 +/percentarabic 16#066a +/percentmonospace 16#ff05 +/percentsmall 16#fe6a +/period 16#002e +/periodarmenian 16#0589 +/periodcentered 16#00b7 +/periodhalfwidth 16#ff61 +/periodinferior 16#f6e7 +/periodmonospace 16#ff0e +/periodsmall 16#fe52 +/periodsuperior 16#f6e8 +/perispomenigreekcmb 16#0342 +/perpendicular 16#22a5 +/perthousand 16#2030 +/peseta 16#20a7 +/pfsquare 16#338a +/phabengali 16#09ab +/phadeva 16#092b +/phagujarati 16#0aab +/phagurmukhi 16#0a2b +/phi 16#03c6 +/phi1 16#03d5 +/phieuphacirclekorean 16#327a +/phieuphaparenkorean 16#321a +/phieuphcirclekorean 16#326c +/phieuphkorean 16#314d +/phieuphparenkorean 16#320c +/philatin 16#0278 +/phinthuthai 16#0e3a +/phisymbolgreek 16#03d5 +/phook 16#01a5 +/phophanthai 16#0e1e +/phophungthai 16#0e1c +/phosamphaothai 16#0e20 +/pi 16#03c0 +/pieupacirclekorean 16#3273 +/pieupaparenkorean 16#3213 +/pieupcieuckorean 16#3176 +/pieupcirclekorean 16#3265 +/pieupkiyeokkorean 16#3172 +/pieupkorean 16#3142 +/pieupparenkorean 16#3205 +/pieupsioskiyeokkorean 16#3174 +/pieupsioskorean 16#3144 +/pieupsiostikeutkorean 16#3175 +/pieupthieuthkorean 16#3177 +/pieuptikeutkorean 16#3173 +/pihiragana 16#3074 +/pikatakana 16#30d4 +/pisymbolgreek 16#03d6 +/piwrarmenian 16#0583 +/plus 16#002b +/plusbelowcmb 16#031f +/pluscircle 16#2295 +/plusminus 16#00b1 +/plusmod 16#02d6 +/plusmonospace 16#ff0b +/plussmall 16#fe62 +/plussuperior 16#207a +/pmonospace 16#ff50 +/pmsquare 16#33d8 +/pohiragana 16#307d +/pointingindexdownwhite 16#261f +/pointingindexleftwhite 16#261c +/pointingindexrightwhite 16#261e +/pointingindexupwhite 16#261d +/pokatakana 16#30dd +/poplathai 16#0e1b +/postalmark 16#3012 +/postalmarkface 16#3020 +/pparen 16#24ab +/precedes 16#227a +/prescription 16#211e +/primemod 16#02b9 +/primereversed 16#2035 +/product 16#220f +/projective 16#2305 +/prolongedkana 16#30fc +/propellor 16#2318 +/propersubset 16#2282 +/propersuperset 16#2283 +/proportion 16#2237 +/proportional 16#221d +/psi 16#03c8 +/psicyrillic 16#0471 +/psilipneumatacyrilliccmb 16#0486 +/pssquare 16#33b0 +/puhiragana 16#3077 +/pukatakana 16#30d7 +/pvsquare 16#33b4 +/pwsquare 16#33ba +/q 16#0071 +/qadeva 16#0958 +/qadmahebrew 16#05a8 +/qafarabic 16#0642 +/qaffinalarabic 16#fed6 +/qafinitialarabic 16#fed7 +/qafmedialarabic 16#fed8 +/qamats 16#05b8 +/qamats10 16#05b8 +/qamats1a 16#05b8 +/qamats1c 16#05b8 +/qamats27 16#05b8 +/qamats29 16#05b8 +/qamats33 16#05b8 +/qamatsde 16#05b8 +/qamatshebrew 16#05b8 +/qamatsnarrowhebrew 16#05b8 +/qamatsqatanhebrew 16#05b8 +/qamatsqatannarrowhebrew 16#05b8 +/qamatsqatanquarterhebrew 16#05b8 +/qamatsqatanwidehebrew 16#05b8 +/qamatsquarterhebrew 16#05b8 +/qamatswidehebrew 16#05b8 +/qarneyparahebrew 16#059f +/qbopomofo 16#3111 +/qcircle 16#24e0 +/qhook 16#02a0 +/qmonospace 16#ff51 +/qof 16#05e7 +/qofdagesh 16#fb47 +/qofdageshhebrew 16#fb47 +/qofhebrew 16#05e7 +/qparen 16#24ac +/quarternote 16#2669 +/qubuts 16#05bb +/qubuts18 16#05bb +/qubuts25 16#05bb +/qubuts31 16#05bb +/qubutshebrew 16#05bb +/qubutsnarrowhebrew 16#05bb +/qubutsquarterhebrew 16#05bb +/qubutswidehebrew 16#05bb +/question 16#003f +/questionarabic 16#061f +/questionarmenian 16#055e +/questiondown 16#00bf +/questiondownsmall 16#f7bf +/questiongreek 16#037e +/questionmonospace 16#ff1f +/questionsmall 16#f73f +/quotedbl 16#0022 +/quotedblbase 16#201e +/quotedblleft 16#201c +/quotedblmonospace 16#ff02 +/quotedblprime 16#301e +/quotedblprimereversed 16#301d +/quotedblright 16#201d +/quoteleft 16#2018 +/quoteleftreversed 16#201b +/quotereversed 16#201b +/quoteright 16#2019 +/quoterightn 16#0149 +/quotesinglbase 16#201a +/quotesingle 16#0027 +/quotesinglemonospace 16#ff07 +/r 16#0072 +/raarmenian 16#057c +/rabengali 16#09b0 +/racute 16#0155 +/radeva 16#0930 +/radical 16#221a +/radicalex 16#f8e5 +/radoverssquare 16#33ae +/radoverssquaredsquare 16#33af +/radsquare 16#33ad +/rafe 16#05bf +/rafehebrew 16#05bf +/ragujarati 16#0ab0 +/ragurmukhi 16#0a30 +/rahiragana 16#3089 +/rakatakana 16#30e9 +/rakatakanahalfwidth 16#ff97 +/ralowerdiagonalbengali 16#09f1 +/ramiddlediagonalbengali 16#09f0 +/ramshorn 16#0264 +/ratio 16#2236 +/rbopomofo 16#3116 +/rcaron 16#0159 +/rcedilla 16#0157 +/rcircle 16#24e1 +/rcommaaccent 16#0157 +/rdblgrave 16#0211 +/rdotaccent 16#1e59 +/rdotbelow 16#1e5b +/rdotbelowmacron 16#1e5d +/referencemark 16#203b +/reflexsubset 16#2286 +/reflexsuperset 16#2287 +/registered 16#00ae +/registersans 16#f8e8 +/registerserif 16#f6da +/reharabic 16#0631 +/reharmenian 16#0580 +/rehfinalarabic 16#feae +/rehiragana 16#308c +/rekatakana 16#30ec +/rekatakanahalfwidth 16#ff9a +/resh 16#05e8 +/reshdageshhebrew 16#fb48 +/reshhebrew 16#05e8 +/reversedtilde 16#223d +/reviahebrew 16#0597 +/reviamugrashhebrew 16#0597 +/revlogicalnot 16#2310 +/rfishhook 16#027e +/rfishhookreversed 16#027f +/rhabengali 16#09dd +/rhadeva 16#095d +/rho 16#03c1 +/rhook 16#027d +/rhookturned 16#027b +/rhookturnedsuperior 16#02b5 +/rhosymbolgreek 16#03f1 +/rhotichookmod 16#02de +/rieulacirclekorean 16#3271 +/rieulaparenkorean 16#3211 +/rieulcirclekorean 16#3263 +/rieulhieuhkorean 16#3140 +/rieulkiyeokkorean 16#313a +/rieulkiyeoksioskorean 16#3169 +/rieulkorean 16#3139 +/rieulmieumkorean 16#313b +/rieulpansioskorean 16#316c +/rieulparenkorean 16#3203 +/rieulphieuphkorean 16#313f +/rieulpieupkorean 16#313c +/rieulpieupsioskorean 16#316b +/rieulsioskorean 16#313d +/rieulthieuthkorean 16#313e +/rieultikeutkorean 16#316a +/rieulyeorinhieuhkorean 16#316d +/rightangle 16#221f +/righttackbelowcmb 16#0319 +/righttriangle 16#22bf +/rihiragana 16#308a +/rikatakana 16#30ea +/rikatakanahalfwidth 16#ff98 +/ring 16#02da +/ringbelowcmb 16#0325 +/ringcmb 16#030a +/ringhalfleft 16#02bf +/ringhalfleftarmenian 16#0559 +/ringhalfleftbelowcmb 16#031c +/ringhalfleftcentered 16#02d3 +/ringhalfright 16#02be +/ringhalfrightbelowcmb 16#0339 +/ringhalfrightcentered 16#02d2 +/rinvertedbreve 16#0213 +/rittorusquare 16#3351 +/rlinebelow 16#1e5f +/rlongleg 16#027c +/rlonglegturned 16#027a +/rmonospace 16#ff52 +/rohiragana 16#308d +/rokatakana 16#30ed +/rokatakanahalfwidth 16#ff9b +/roruathai 16#0e23 +/rparen 16#24ad +/rrabengali 16#09dc +/rradeva 16#0931 +/rragurmukhi 16#0a5c +/rreharabic 16#0691 +/rrehfinalarabic 16#fb8d +/rrvocalicbengali 16#09e0 +/rrvocalicdeva 16#0960 +/rrvocalicgujarati 16#0ae0 +/rrvocalicvowelsignbengali 16#09c4 +/rrvocalicvowelsigndeva 16#0944 +/rrvocalicvowelsigngujarati 16#0ac4 +/rsuperior 16#f6f1 +/rtblock 16#2590 +/rturned 16#0279 +/rturnedsuperior 16#02b4 +/ruhiragana 16#308b +/rukatakana 16#30eb +/rukatakanahalfwidth 16#ff99 +/rupeemarkbengali 16#09f2 +/rupeesignbengali 16#09f3 +/rupiah 16#f6dd +/ruthai 16#0e24 +/rvocalicbengali 16#098b +/rvocalicdeva 16#090b +/rvocalicgujarati 16#0a8b +/rvocalicvowelsignbengali 16#09c3 +/rvocalicvowelsigndeva 16#0943 +/rvocalicvowelsigngujarati 16#0ac3 +/s 16#0073 +/sabengali 16#09b8 +/sacute 16#015b +/sacutedotaccent 16#1e65 +/sadarabic 16#0635 +/sadeva 16#0938 +/sadfinalarabic 16#feba +/sadinitialarabic 16#febb +/sadmedialarabic 16#febc +/sagujarati 16#0ab8 +/sagurmukhi 16#0a38 +/sahiragana 16#3055 +/sakatakana 16#30b5 +/sakatakanahalfwidth 16#ff7b +/sallallahoualayhewasallamarabic 16#fdfa +/samekh 16#05e1 +/samekhdagesh 16#fb41 +/samekhdageshhebrew 16#fb41 +/samekhhebrew 16#05e1 +/saraaathai 16#0e32 +/saraaethai 16#0e41 +/saraaimaimalaithai 16#0e44 +/saraaimaimuanthai 16#0e43 +/saraamthai 16#0e33 +/saraathai 16#0e30 +/saraethai 16#0e40 +/saraiileftthai 16#f886 +/saraiithai 16#0e35 +/saraileftthai 16#f885 +/saraithai 16#0e34 +/saraothai 16#0e42 +/saraueeleftthai 16#f888 +/saraueethai 16#0e37 +/saraueleftthai 16#f887 +/sarauethai 16#0e36 +/sarauthai 16#0e38 +/sarauuthai 16#0e39 +/sbopomofo 16#3119 +/scaron 16#0161 +/scarondotaccent 16#1e67 +/scedilla 16#015f +/schwa 16#0259 +/schwacyrillic 16#04d9 +/schwadieresiscyrillic 16#04db +/schwahook 16#025a +/scircle 16#24e2 +/scircumflex 16#015d +/scommaaccent 16#0219 +/sdotaccent 16#1e61 +/sdotbelow 16#1e63 +/sdotbelowdotaccent 16#1e69 +/seagullbelowcmb 16#033c +/second 16#2033 +/secondtonechinese 16#02ca +/section 16#00a7 +/seenarabic 16#0633 +/seenfinalarabic 16#feb2 +/seeninitialarabic 16#feb3 +/seenmedialarabic 16#feb4 +/segol 16#05b6 +/segol13 16#05b6 +/segol1f 16#05b6 +/segol2c 16#05b6 +/segolhebrew 16#05b6 +/segolnarrowhebrew 16#05b6 +/segolquarterhebrew 16#05b6 +/segoltahebrew 16#0592 +/segolwidehebrew 16#05b6 +/seharmenian 16#057d +/sehiragana 16#305b +/sekatakana 16#30bb +/sekatakanahalfwidth 16#ff7e +/semicolon 16#003b +/semicolonarabic 16#061b +/semicolonmonospace 16#ff1b +/semicolonsmall 16#fe54 +/semivoicedmarkkana 16#309c +/semivoicedmarkkanahalfwidth 16#ff9f +/sentisquare 16#3322 +/sentosquare 16#3323 +/seven 16#0037 +/sevenarabic 16#0667 +/sevenbengali 16#09ed +/sevencircle 16#2466 +/sevencircleinversesansserif 16#2790 +/sevendeva 16#096d +/seveneighths 16#215e +/sevengujarati 16#0aed +/sevengurmukhi 16#0a6d +/sevenhackarabic 16#0667 +/sevenhangzhou 16#3027 +/sevenideographicparen 16#3226 +/seveninferior 16#2087 +/sevenmonospace 16#ff17 +/sevenoldstyle 16#f737 +/sevenparen 16#247a +/sevenperiod 16#248e +/sevenpersian 16#06f7 +/sevenroman 16#2176 +/sevensuperior 16#2077 +/seventeencircle 16#2470 +/seventeenparen 16#2484 +/seventeenperiod 16#2498 +/seventhai 16#0e57 +/sfthyphen 16#00ad +/shaarmenian 16#0577 +/shabengali 16#09b6 +/shacyrillic 16#0448 +/shaddaarabic 16#0651 +/shaddadammaarabic 16#fc61 +/shaddadammatanarabic 16#fc5e +/shaddafathaarabic 16#fc60 +/shaddakasraarabic 16#fc62 +/shaddakasratanarabic 16#fc5f +/shade 16#2592 +/shadedark 16#2593 +/shadelight 16#2591 +/shademedium 16#2592 +/shadeva 16#0936 +/shagujarati 16#0ab6 +/shagurmukhi 16#0a36 +/shalshelethebrew 16#0593 +/shbopomofo 16#3115 +/shchacyrillic 16#0449 +/sheenarabic 16#0634 +/sheenfinalarabic 16#feb6 +/sheeninitialarabic 16#feb7 +/sheenmedialarabic 16#feb8 +/sheicoptic 16#03e3 +/sheqel 16#20aa +/sheqelhebrew 16#20aa +/sheva 16#05b0 +/sheva115 16#05b0 +/sheva15 16#05b0 +/sheva22 16#05b0 +/sheva2e 16#05b0 +/shevahebrew 16#05b0 +/shevanarrowhebrew 16#05b0 +/shevaquarterhebrew 16#05b0 +/shevawidehebrew 16#05b0 +/shhacyrillic 16#04bb +/shimacoptic 16#03ed +/shin 16#05e9 +/shindagesh 16#fb49 +/shindageshhebrew 16#fb49 +/shindageshshindot 16#fb2c +/shindageshshindothebrew 16#fb2c +/shindageshsindot 16#fb2d +/shindageshsindothebrew 16#fb2d +/shindothebrew 16#05c1 +/shinhebrew 16#05e9 +/shinshindot 16#fb2a +/shinshindothebrew 16#fb2a +/shinsindot 16#fb2b +/shinsindothebrew 16#fb2b +/shook 16#0282 +/sigma 16#03c3 +/sigma1 16#03c2 +/sigmafinal 16#03c2 +/sigmalunatesymbolgreek 16#03f2 +/sihiragana 16#3057 +/sikatakana 16#30b7 +/sikatakanahalfwidth 16#ff7c +/siluqhebrew 16#05bd +/siluqlefthebrew 16#05bd +/similar 16#223c +/sindothebrew 16#05c2 +/siosacirclekorean 16#3274 +/siosaparenkorean 16#3214 +/sioscieuckorean 16#317e +/sioscirclekorean 16#3266 +/sioskiyeokkorean 16#317a +/sioskorean 16#3145 +/siosnieunkorean 16#317b +/siosparenkorean 16#3206 +/siospieupkorean 16#317d +/siostikeutkorean 16#317c +/six 16#0036 +/sixarabic 16#0666 +/sixbengali 16#09ec +/sixcircle 16#2465 +/sixcircleinversesansserif 16#278f +/sixdeva 16#096c +/sixgujarati 16#0aec +/sixgurmukhi 16#0a6c +/sixhackarabic 16#0666 +/sixhangzhou 16#3026 +/sixideographicparen 16#3225 +/sixinferior 16#2086 +/sixmonospace 16#ff16 +/sixoldstyle 16#f736 +/sixparen 16#2479 +/sixperiod 16#248d +/sixpersian 16#06f6 +/sixroman 16#2175 +/sixsuperior 16#2076 +/sixteencircle 16#246f +/sixteencurrencydenominatorbengali 16#09f9 +/sixteenparen 16#2483 +/sixteenperiod 16#2497 +/sixthai 16#0e56 +/slash 16#002f +/slashmonospace 16#ff0f +/slong 16#017f +/slongdotaccent 16#1e9b +/smileface 16#263a +/smonospace 16#ff53 +/sofpasuqhebrew 16#05c3 +/softhyphen 16#00ad +/softsigncyrillic 16#044c +/sohiragana 16#305d +/sokatakana 16#30bd +/sokatakanahalfwidth 16#ff7f +/soliduslongoverlaycmb 16#0338 +/solidusshortoverlaycmb 16#0337 +/sorusithai 16#0e29 +/sosalathai 16#0e28 +/sosothai 16#0e0b +/sosuathai 16#0e2a +/space 16#0020 +/spacehackarabic 16#0020 +/spade 16#2660 +/spadesuitblack 16#2660 +/spadesuitwhite 16#2664 +/sparen 16#24ae +/squarebelowcmb 16#033b +/squarecc 16#33c4 +/squarecm 16#339d +/squarediagonalcrosshatchfill 16#25a9 +/squarehorizontalfill 16#25a4 +/squarekg 16#338f +/squarekm 16#339e +/squarekmcapital 16#33ce +/squareln 16#33d1 +/squarelog 16#33d2 +/squaremg 16#338e +/squaremil 16#33d5 +/squaremm 16#339c +/squaremsquared 16#33a1 +/squareorthogonalcrosshatchfill 16#25a6 +/squareupperlefttolowerrightfill 16#25a7 +/squareupperrighttolowerleftfill 16#25a8 +/squareverticalfill 16#25a5 +/squarewhitewithsmallblack 16#25a3 +/srsquare 16#33db +/ssabengali 16#09b7 +/ssadeva 16#0937 +/ssagujarati 16#0ab7 +/ssangcieuckorean 16#3149 +/ssanghieuhkorean 16#3185 +/ssangieungkorean 16#3180 +/ssangkiyeokkorean 16#3132 +/ssangnieunkorean 16#3165 +/ssangpieupkorean 16#3143 +/ssangsioskorean 16#3146 +/ssangtikeutkorean 16#3138 +/ssuperior 16#f6f2 +/sterling 16#00a3 +/sterlingmonospace 16#ffe1 +/strokelongoverlaycmb 16#0336 +/strokeshortoverlaycmb 16#0335 +/subset 16#2282 +/subsetnotequal 16#228a +/subsetorequal 16#2286 +/succeeds 16#227b +/suchthat 16#220b +/suhiragana 16#3059 +/sukatakana 16#30b9 +/sukatakanahalfwidth 16#ff7d +/sukunarabic 16#0652 +/summation 16#2211 +/sun 16#263c +/superset 16#2283 +/supersetnotequal 16#228b +/supersetorequal 16#2287 +/svsquare 16#33dc +/syouwaerasquare 16#337c +/t 16#0074 +/tabengali 16#09a4 +/tackdown 16#22a4 +/tackleft 16#22a3 +/tadeva 16#0924 +/tagujarati 16#0aa4 +/tagurmukhi 16#0a24 +/taharabic 16#0637 +/tahfinalarabic 16#fec2 +/tahinitialarabic 16#fec3 +/tahiragana 16#305f +/tahmedialarabic 16#fec4 +/taisyouerasquare 16#337d +/takatakana 16#30bf +/takatakanahalfwidth 16#ff80 +/tatweelarabic 16#0640 +/tau 16#03c4 +/tav 16#05ea +/tavdages 16#fb4a +/tavdagesh 16#fb4a +/tavdageshhebrew 16#fb4a +/tavhebrew 16#05ea +/tbar 16#0167 +/tbopomofo 16#310a +/tcaron 16#0165 +/tccurl 16#02a8 +/tcedilla 16#0163 +/tcheharabic 16#0686 +/tchehfinalarabic 16#fb7b +/tchehinitialarabic 16#fb7c +/tchehmedialarabic 16#fb7d +/tcircle 16#24e3 +/tcircumflexbelow 16#1e71 +/tcommaaccent 16#0163 +/tdieresis 16#1e97 +/tdotaccent 16#1e6b +/tdotbelow 16#1e6d +/tecyrillic 16#0442 +/tedescendercyrillic 16#04ad +/teharabic 16#062a +/tehfinalarabic 16#fe96 +/tehhahinitialarabic 16#fca2 +/tehhahisolatedarabic 16#fc0c +/tehinitialarabic 16#fe97 +/tehiragana 16#3066 +/tehjeeminitialarabic 16#fca1 +/tehjeemisolatedarabic 16#fc0b +/tehmarbutaarabic 16#0629 +/tehmarbutafinalarabic 16#fe94 +/tehmedialarabic 16#fe98 +/tehmeeminitialarabic 16#fca4 +/tehmeemisolatedarabic 16#fc0e +/tehnoonfinalarabic 16#fc73 +/tekatakana 16#30c6 +/tekatakanahalfwidth 16#ff83 +/telephone 16#2121 +/telephoneblack 16#260e +/telishagedolahebrew 16#05a0 +/telishaqetanahebrew 16#05a9 +/tencircle 16#2469 +/tenideographicparen 16#3229 +/tenparen 16#247d +/tenperiod 16#2491 +/tenroman 16#2179 +/tesh 16#02a7 +/tet 16#05d8 +/tetdagesh 16#fb38 +/tetdageshhebrew 16#fb38 +/tethebrew 16#05d8 +/tetsecyrillic 16#04b5 +/tevirhebrew 16#059b +/tevirlefthebrew 16#059b +/thabengali 16#09a5 +/thadeva 16#0925 +/thagujarati 16#0aa5 +/thagurmukhi 16#0a25 +/thalarabic 16#0630 +/thalfinalarabic 16#feac +/thanthakhatlowleftthai 16#f898 +/thanthakhatlowrightthai 16#f897 +/thanthakhatthai 16#0e4c +/thanthakhatupperleftthai 16#f896 +/theharabic 16#062b +/thehfinalarabic 16#fe9a +/thehinitialarabic 16#fe9b +/thehmedialarabic 16#fe9c +/thereexists 16#2203 +/therefore 16#2234 +/theta 16#03b8 +/theta1 16#03d1 +/thetasymbolgreek 16#03d1 +/thieuthacirclekorean 16#3279 +/thieuthaparenkorean 16#3219 +/thieuthcirclekorean 16#326b +/thieuthkorean 16#314c +/thieuthparenkorean 16#320b +/thirteencircle 16#246c +/thirteenparen 16#2480 +/thirteenperiod 16#2494 +/thonangmonthothai 16#0e11 +/thook 16#01ad +/thophuthaothai 16#0e12 +/thorn 16#00fe +/thothahanthai 16#0e17 +/thothanthai 16#0e10 +/thothongthai 16#0e18 +/thothungthai 16#0e16 +/thousandcyrillic 16#0482 +/thousandsseparatorarabic 16#066c +/thousandsseparatorpersian 16#066c +/three 16#0033 +/threearabic 16#0663 +/threebengali 16#09e9 +/threecircle 16#2462 +/threecircleinversesansserif 16#278c +/threedeva 16#0969 +/threeeighths 16#215c +/threegujarati 16#0ae9 +/threegurmukhi 16#0a69 +/threehackarabic 16#0663 +/threehangzhou 16#3023 +/threeideographicparen 16#3222 +/threeinferior 16#2083 +/threemonospace 16#ff13 +/threenumeratorbengali 16#09f6 +/threeoldstyle 16#f733 +/threeparen 16#2476 +/threeperiod 16#248a +/threepersian 16#06f3 +/threequarters 16#00be +/threequartersemdash 16#f6de +/threeroman 16#2172 +/threesuperior 16#00b3 +/threethai 16#0e53 +/thzsquare 16#3394 +/tihiragana 16#3061 +/tikatakana 16#30c1 +/tikatakanahalfwidth 16#ff81 +/tikeutacirclekorean 16#3270 +/tikeutaparenkorean 16#3210 +/tikeutcirclekorean 16#3262 +/tikeutkorean 16#3137 +/tikeutparenkorean 16#3202 +/tilde 16#02dc +/tildebelowcmb 16#0330 +/tildecmb 16#0303 +/tildecomb 16#0303 +/tildedoublecmb 16#0360 +/tildeoperator 16#223c +/tildeoverlaycmb 16#0334 +/tildeverticalcmb 16#033e +/timescircle 16#2297 +/tipehahebrew 16#0596 +/tipehalefthebrew 16#0596 +/tippigurmukhi 16#0a70 +/titlocyrilliccmb 16#0483 +/tiwnarmenian 16#057f +/tlinebelow 16#1e6f +/tmonospace 16#ff54 +/toarmenian 16#0569 +/tohiragana 16#3068 +/tokatakana 16#30c8 +/tokatakanahalfwidth 16#ff84 +/tonebarextrahighmod 16#02e5 +/tonebarextralowmod 16#02e9 +/tonebarhighmod 16#02e6 +/tonebarlowmod 16#02e8 +/tonebarmidmod 16#02e7 +/tonefive 16#01bd +/tonesix 16#0185 +/tonetwo 16#01a8 +/tonos 16#0384 +/tonsquare 16#3327 +/topatakthai 16#0e0f +/tortoiseshellbracketleft 16#3014 +/tortoiseshellbracketleftsmall 16#fe5d +/tortoiseshellbracketleftvertical 16#fe39 +/tortoiseshellbracketright 16#3015 +/tortoiseshellbracketrightsmall 16#fe5e +/tortoiseshellbracketrightvertical 16#fe3a +/totaothai 16#0e15 +/tpalatalhook 16#01ab +/tparen 16#24af +/trademark 16#2122 +/trademarksans 16#f8ea +/trademarkserif 16#f6db +/tretroflexhook 16#0288 +/triagdn 16#25bc +/triaglf 16#25c4 +/triagrt 16#25ba +/triagup 16#25b2 +/ts 16#02a6 +/tsadi 16#05e6 +/tsadidagesh 16#fb46 +/tsadidageshhebrew 16#fb46 +/tsadihebrew 16#05e6 +/tsecyrillic 16#0446 +/tsere 16#05b5 +/tsere12 16#05b5 +/tsere1e 16#05b5 +/tsere2b 16#05b5 +/tserehebrew 16#05b5 +/tserenarrowhebrew 16#05b5 +/tserequarterhebrew 16#05b5 +/tserewidehebrew 16#05b5 +/tshecyrillic 16#045b +/tsuperior 16#f6f3 +/ttabengali 16#099f +/ttadeva 16#091f +/ttagujarati 16#0a9f +/ttagurmukhi 16#0a1f +/tteharabic 16#0679 +/ttehfinalarabic 16#fb67 +/ttehinitialarabic 16#fb68 +/ttehmedialarabic 16#fb69 +/tthabengali 16#09a0 +/tthadeva 16#0920 +/tthagujarati 16#0aa0 +/tthagurmukhi 16#0a20 +/tturned 16#0287 +/tuhiragana 16#3064 +/tukatakana 16#30c4 +/tukatakanahalfwidth 16#ff82 +/tusmallhiragana 16#3063 +/tusmallkatakana 16#30c3 +/tusmallkatakanahalfwidth 16#ff6f +/twelvecircle 16#246b +/twelveparen 16#247f +/twelveperiod 16#2493 +/twelveroman 16#217b +/twentycircle 16#2473 +/twentyhangzhou 16#5344 +/twentyparen 16#2487 +/twentyperiod 16#249b +/two 16#0032 +/twoarabic 16#0662 +/twobengali 16#09e8 +/twocircle 16#2461 +/twocircleinversesansserif 16#278b +/twodeva 16#0968 +/twodotenleader 16#2025 +/twodotleader 16#2025 +/twodotleadervertical 16#fe30 +/twogujarati 16#0ae8 +/twogurmukhi 16#0a68 +/twohackarabic 16#0662 +/twohangzhou 16#3022 +/twoideographicparen 16#3221 +/twoinferior 16#2082 +/twomonospace 16#ff12 +/twonumeratorbengali 16#09f5 +/twooldstyle 16#f732 +/twoparen 16#2475 +/twoperiod 16#2489 +/twopersian 16#06f2 +/tworoman 16#2171 +/twostroke 16#01bb +/twosuperior 16#00b2 +/twothai 16#0e52 +/twothirds 16#2154 +/u 16#0075 +/uacute 16#00fa +/ubar 16#0289 +/ubengali 16#0989 +/ubopomofo 16#3128 +/ubreve 16#016d +/ucaron 16#01d4 +/ucircle 16#24e4 +/ucircumflex 16#00fb +/ucircumflexbelow 16#1e77 +/ucyrillic 16#0443 +/udattadeva 16#0951 +/udblacute 16#0171 +/udblgrave 16#0215 +/udeva 16#0909 +/udieresis 16#00fc +/udieresisacute 16#01d8 +/udieresisbelow 16#1e73 +/udieresiscaron 16#01da +/udieresiscyrillic 16#04f1 +/udieresisgrave 16#01dc +/udieresismacron 16#01d6 +/udotbelow 16#1ee5 +/ugrave 16#00f9 +/ugujarati 16#0a89 +/ugurmukhi 16#0a09 +/uhiragana 16#3046 +/uhookabove 16#1ee7 +/uhorn 16#01b0 +/uhornacute 16#1ee9 +/uhorndotbelow 16#1ef1 +/uhorngrave 16#1eeb +/uhornhookabove 16#1eed +/uhorntilde 16#1eef +/uhungarumlaut 16#0171 +/uhungarumlautcyrillic 16#04f3 +/uinvertedbreve 16#0217 +/ukatakana 16#30a6 +/ukatakanahalfwidth 16#ff73 +/ukcyrillic 16#0479 +/ukorean 16#315c +/umacron 16#016b +/umacroncyrillic 16#04ef +/umacrondieresis 16#1e7b +/umatragurmukhi 16#0a41 +/umonospace 16#ff55 +/underscore 16#005f +/underscoredbl 16#2017 +/underscoremonospace 16#ff3f +/underscorevertical 16#fe33 +/underscorewavy 16#fe4f +/union 16#222a +/universal 16#2200 +/uogonek 16#0173 +/uparen 16#24b0 +/upblock 16#2580 +/upperdothebrew 16#05c4 +/upsilon 16#03c5 +/upsilondieresis 16#03cb +/upsilondieresistonos 16#03b0 +/upsilonlatin 16#028a +/upsilontonos 16#03cd +/uptackbelowcmb 16#031d +/uptackmod 16#02d4 +/uragurmukhi 16#0a73 +/uring 16#016f +/ushortcyrillic 16#045e +/usmallhiragana 16#3045 +/usmallkatakana 16#30a5 +/usmallkatakanahalfwidth 16#ff69 +/ustraightcyrillic 16#04af +/ustraightstrokecyrillic 16#04b1 +/utilde 16#0169 +/utildeacute 16#1e79 +/utildebelow 16#1e75 +/uubengali 16#098a +/uudeva 16#090a +/uugujarati 16#0a8a +/uugurmukhi 16#0a0a +/uumatragurmukhi 16#0a42 +/uuvowelsignbengali 16#09c2 +/uuvowelsigndeva 16#0942 +/uuvowelsigngujarati 16#0ac2 +/uvowelsignbengali 16#09c1 +/uvowelsigndeva 16#0941 +/uvowelsigngujarati 16#0ac1 +/v 16#0076 +/vadeva 16#0935 +/vagujarati 16#0ab5 +/vagurmukhi 16#0a35 +/vakatakana 16#30f7 +/vav 16#05d5 +/vavdagesh 16#fb35 +/vavdagesh65 16#fb35 +/vavdageshhebrew 16#fb35 +/vavhebrew 16#05d5 +/vavholam 16#fb4b +/vavholamhebrew 16#fb4b +/vavvavhebrew 16#05f0 +/vavyodhebrew 16#05f1 +/vcircle 16#24e5 +/vdotbelow 16#1e7f +/vecyrillic 16#0432 +/veharabic 16#06a4 +/vehfinalarabic 16#fb6b +/vehinitialarabic 16#fb6c +/vehmedialarabic 16#fb6d +/vekatakana 16#30f9 +/venus 16#2640 +/verticalbar 16#007c +/verticallineabovecmb 16#030d +/verticallinebelowcmb 16#0329 +/verticallinelowmod 16#02cc +/verticallinemod 16#02c8 +/vewarmenian 16#057e +/vhook 16#028b +/vikatakana 16#30f8 +/viramabengali 16#09cd +/viramadeva 16#094d +/viramagujarati 16#0acd +/visargabengali 16#0983 +/visargadeva 16#0903 +/visargagujarati 16#0a83 +/vmonospace 16#ff56 +/voarmenian 16#0578 +/voicediterationhiragana 16#309e +/voicediterationkatakana 16#30fe +/voicedmarkkana 16#309b +/voicedmarkkanahalfwidth 16#ff9e +/vokatakana 16#30fa +/vparen 16#24b1 +/vtilde 16#1e7d +/vturned 16#028c +/vuhiragana 16#3094 +/vukatakana 16#30f4 +/w 16#0077 +/wacute 16#1e83 +/waekorean 16#3159 +/wahiragana 16#308f +/wakatakana 16#30ef +/wakatakanahalfwidth 16#ff9c +/wakorean 16#3158 +/wasmallhiragana 16#308e +/wasmallkatakana 16#30ee +/wattosquare 16#3357 +/wavedash 16#301c +/wavyunderscorevertical 16#fe34 +/wawarabic 16#0648 +/wawfinalarabic 16#feee +/wawhamzaabovearabic 16#0624 +/wawhamzaabovefinalarabic 16#fe86 +/wbsquare 16#33dd +/wcircle 16#24e6 +/wcircumflex 16#0175 +/wdieresis 16#1e85 +/wdotaccent 16#1e87 +/wdotbelow 16#1e89 +/wehiragana 16#3091 +/weierstrass 16#2118 +/wekatakana 16#30f1 +/wekorean 16#315e +/weokorean 16#315d +/wgrave 16#1e81 +/whitebullet 16#25e6 +/whitecircle 16#25cb +/whitecircleinverse 16#25d9 +/whitecornerbracketleft 16#300e +/whitecornerbracketleftvertical 16#fe43 +/whitecornerbracketright 16#300f +/whitecornerbracketrightvertical 16#fe44 +/whitediamond 16#25c7 +/whitediamondcontainingblacksmalldiamond 16#25c8 +/whitedownpointingsmalltriangle 16#25bf +/whitedownpointingtriangle 16#25bd +/whiteleftpointingsmalltriangle 16#25c3 +/whiteleftpointingtriangle 16#25c1 +/whitelenticularbracketleft 16#3016 +/whitelenticularbracketright 16#3017 +/whiterightpointingsmalltriangle 16#25b9 +/whiterightpointingtriangle 16#25b7 +/whitesmallsquare 16#25ab +/whitesmilingface 16#263a +/whitesquare 16#25a1 +/whitestar 16#2606 +/whitetelephone 16#260f +/whitetortoiseshellbracketleft 16#3018 +/whitetortoiseshellbracketright 16#3019 +/whiteuppointingsmalltriangle 16#25b5 +/whiteuppointingtriangle 16#25b3 +/wihiragana 16#3090 +/wikatakana 16#30f0 +/wikorean 16#315f +/wmonospace 16#ff57 +/wohiragana 16#3092 +/wokatakana 16#30f2 +/wokatakanahalfwidth 16#ff66 +/won 16#20a9 +/wonmonospace 16#ffe6 +/wowaenthai 16#0e27 +/wparen 16#24b2 +/wring 16#1e98 +/wsuperior 16#02b7 +/wturned 16#028d +/wynn 16#01bf +/x 16#0078 +/xabovecmb 16#033d +/xbopomofo 16#3112 +/xcircle 16#24e7 +/xdieresis 16#1e8d +/xdotaccent 16#1e8b +/xeharmenian 16#056d +/xi 16#03be +/xmonospace 16#ff58 +/xparen 16#24b3 +/xsuperior 16#02e3 +/y 16#0079 +/yaadosquare 16#334e +/yabengali 16#09af +/yacute 16#00fd +/yadeva 16#092f +/yaekorean 16#3152 +/yagujarati 16#0aaf +/yagurmukhi 16#0a2f +/yahiragana 16#3084 +/yakatakana 16#30e4 +/yakatakanahalfwidth 16#ff94 +/yakorean 16#3151 +/yamakkanthai 16#0e4e +/yasmallhiragana 16#3083 +/yasmallkatakana 16#30e3 +/yasmallkatakanahalfwidth 16#ff6c +/yatcyrillic 16#0463 +/ycircle 16#24e8 +/ycircumflex 16#0177 +/ydieresis 16#00ff +/ydotaccent 16#1e8f +/ydotbelow 16#1ef5 +/yeharabic 16#064a +/yehbarreearabic 16#06d2 +/yehbarreefinalarabic 16#fbaf +/yehfinalarabic 16#fef2 +/yehhamzaabovearabic 16#0626 +/yehhamzaabovefinalarabic 16#fe8a +/yehhamzaaboveinitialarabic 16#fe8b +/yehhamzaabovemedialarabic 16#fe8c +/yehinitialarabic 16#fef3 +/yehmedialarabic 16#fef4 +/yehmeeminitialarabic 16#fcdd +/yehmeemisolatedarabic 16#fc58 +/yehnoonfinalarabic 16#fc94 +/yehthreedotsbelowarabic 16#06d1 +/yekorean 16#3156 +/yen 16#00a5 +/yenmonospace 16#ffe5 +/yeokorean 16#3155 +/yeorinhieuhkorean 16#3186 +/yerahbenyomohebrew 16#05aa +/yerahbenyomolefthebrew 16#05aa +/yericyrillic 16#044b +/yerudieresiscyrillic 16#04f9 +/yesieungkorean 16#3181 +/yesieungpansioskorean 16#3183 +/yesieungsioskorean 16#3182 +/yetivhebrew 16#059a +/ygrave 16#1ef3 +/yhook 16#01b4 +/yhookabove 16#1ef7 +/yiarmenian 16#0575 +/yicyrillic 16#0457 +/yikorean 16#3162 +/yinyang 16#262f +/yiwnarmenian 16#0582 +/ymonospace 16#ff59 +/yod 16#05d9 +/yoddagesh 16#fb39 +/yoddageshhebrew 16#fb39 +/yodhebrew 16#05d9 +/yodyodhebrew 16#05f2 +/yodyodpatahhebrew 16#fb1f +/yohiragana 16#3088 +/yoikorean 16#3189 +/yokatakana 16#30e8 +/yokatakanahalfwidth 16#ff96 +/yokorean 16#315b +/yosmallhiragana 16#3087 +/yosmallkatakana 16#30e7 +/yosmallkatakanahalfwidth 16#ff6e +/yotgreek 16#03f3 +/yoyaekorean 16#3188 +/yoyakorean 16#3187 +/yoyakthai 16#0e22 +/yoyingthai 16#0e0d +/yparen 16#24b4 +/ypogegrammeni 16#037a +/ypogegrammenigreekcmb 16#0345 +/yr 16#01a6 +/yring 16#1e99 +/ysuperior 16#02b8 +/ytilde 16#1ef9 +/yturned 16#028e +/yuhiragana 16#3086 +/yuikorean 16#318c +/yukatakana 16#30e6 +/yukatakanahalfwidth 16#ff95 +/yukorean 16#3160 +/yusbigcyrillic 16#046b +/yusbigiotifiedcyrillic 16#046d +/yuslittlecyrillic 16#0467 +/yuslittleiotifiedcyrillic 16#0469 +/yusmallhiragana 16#3085 +/yusmallkatakana 16#30e5 +/yusmallkatakanahalfwidth 16#ff6d +/yuyekorean 16#318b +/yuyeokorean 16#318a +/yyabengali 16#09df +/yyadeva 16#095f +/z 16#007a +/zaarmenian 16#0566 +/zacute 16#017a +/zadeva 16#095b +/zagurmukhi 16#0a5b +/zaharabic 16#0638 +/zahfinalarabic 16#fec6 +/zahinitialarabic 16#fec7 +/zahiragana 16#3056 +/zahmedialarabic 16#fec8 +/zainarabic 16#0632 +/zainfinalarabic 16#feb0 +/zakatakana 16#30b6 +/zaqefgadolhebrew 16#0595 +/zaqefqatanhebrew 16#0594 +/zarqahebrew 16#0598 +/zayin 16#05d6 +/zayindagesh 16#fb36 +/zayindageshhebrew 16#fb36 +/zayinhebrew 16#05d6 +/zbopomofo 16#3117 +/zcaron 16#017e +/zcircle 16#24e9 +/zcircumflex 16#1e91 +/zcurl 16#0291 +/zdot 16#017c +/zdotaccent 16#017c +/zdotbelow 16#1e93 +/zecyrillic 16#0437 +/zedescendercyrillic 16#0499 +/zedieresiscyrillic 16#04df +/zehiragana 16#305c +/zekatakana 16#30bc +/zero 16#0030 +/zeroarabic 16#0660 +/zerobengali 16#09e6 +/zerodeva 16#0966 +/zerogujarati 16#0ae6 +/zerogurmukhi 16#0a66 +/zerohackarabic 16#0660 +/zeroinferior 16#2080 +/zeromonospace 16#ff10 +/zerooldstyle 16#f730 +/zeropersian 16#06f0 +/zerosuperior 16#2070 +/zerothai 16#0e50 +/zerowidthjoiner 16#feff +/zerowidthnonjoiner 16#200c +/zerowidthspace 16#200b +/zeta 16#03b6 +/zhbopomofo 16#3113 +/zhearmenian 16#056a +/zhebrevecyrillic 16#04c2 +/zhecyrillic 16#0436 +/zhedescendercyrillic 16#0497 +/zhedieresiscyrillic 16#04dd +/zihiragana 16#3058 +/zikatakana 16#30b8 +/zinorhebrew 16#05ae +/zlinebelow 16#1e95 +/zmonospace 16#ff5a +/zohiragana 16#305e +/zokatakana 16#30be +/zparen 16#24b5 +/zretroflexhook 16#0290 +/zstroke 16#01b6 +/zuhiragana 16#305a +/zukatakana 16#30ba +.dicttomark readonly def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding .findencoding +/MacGlyphEncoding +/.notdef/.null/CR +4 index 32 95 getinterval aload pop +99 index 128 45 getinterval aload pop +/notequal/AE +/Oslash/infinity/plusminus/lessequal/greaterequal +/yen/mu1/partialdiff/summation/product +/pi/integral/ordfeminine/ordmasculine/Ohm +/ae/oslash/questiondown/exclamdown/logicalnot +/radical/florin/approxequal/increment/guillemotleft +/guillemotright/ellipsis/nbspace +174 index 203 12 getinterval aload pop +/lozenge +187 index 216 24 getinterval aload pop +/applelogo +212 index 241 7 getinterval aload pop +/overscore +220 index 249 7 getinterval aload pop +/Lslash/lslash/Scaron/scaron +/Zcaron/zcaron/brokenbar/Eth/eth +/Yacute/yacute/Thorn/thorn/minus +/multiply/onesuperior/twosuperior/threesuperior/onehalf +/onequarter/threequarters/franc/Gbreve/gbreve +/Idotaccent/Scedilla/scedilla/Cacute/cacute +/Ccaron/ccaron/dmacron +260 -1 roll pop +258 packedarray +7 1 index .registerencoding +.defineencoding +exec + +%%BeginResource: file (PDF CharProc obj_13) +13 0 obj +<>stream +85.2 0 4 -91 94 0 d1 +90 0 0 91 4 -91 cm +BI +/IM true +/W 90 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fjg7-m/Khs7m.V%1*"6s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W*_p&G'iLHu,t +J,fQKs8W-!s8TV=*98r"qu?V#D>4'7C>Wl4$\JV8$Y*\Y_hYVM$kP*q%)N9^OT~> +EI +endstream +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_15) +15 0 obj +<>stream +79.9 0 3 -92 77 -1 d1 +74 0 0 91 3 -92 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q98m=ruoeis8W-! +hYog9^YA^6p=F6L0#LtI+a)H,qr*6].0Dtj +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_16) +16 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_19) +19 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_22) +22 0 obj +<>stream +79.9 0 3 -91 77 0 d1 +74 0 0 91 3 -91 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q8NC6s8VX1+92B@ +s8W-!s0r%-huA0)ho#.0Y^XWJhZq!g%:`3~> +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_24) +24 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_27) +27 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_23) +23 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 74 91]/FirstChar 0/LastChar 0/Widths[ +79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_14) +14 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 90 92]/FirstChar 0/LastChar 1/Widths[ +85.2 79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_8) +8 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_10) +10 0 obj +<> +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_30) +30 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_9) +9 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_28) +28 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QT8#7''lVQqe5A+D`J0!5"2&A"\A]lVo+g/]e'Ub]#A->j-s$ +&dSPl5nR^M@H>ZQ!!4&M5`e7XAMBMQi2,p4#Teg3N>-F>4]Vl*_#RlaLlfu#3Z][MfuO0/Cc@a* +1]Z!V+u5+K%KJo$&G93D6pq7>$+.lc!^oFH"*r,TA%+`,#6U*Qi0#T97oc::&.3me!4*d]hIf!? +0E<00&:ac1!'J2@7;UXr!b0XZ&Gkl!W54u(VDE`(DudBJ*e4fp#F^$-iWqQK.#9q/O'jE:df9KN;$Y*< +af5E6&YR4p7R/XU!An`IOW/hd,=6FZ0&YapJ0C9a)1Y5p2Vthe9Jk"Z9ZRFeJ.bi"'7c8laTFF1 +3DA)5,iAe[!(!-t!6_#KBS&2jfDo+U&2XXm&h&R3!)'7:#)&V!!N#mPTF-/!3rf79!gk[/%OD)u +#Rgq<+a=L@4$WcT(Q^@2!"XU!0]ms3jff-pJ:JX+!!RoR+BSV0.$?>$!W\rG"9q,s&;?fhEEuY2 +ompORQ)Gf-KEZrC=952<5[5Dopn0/j)@,*W_S\6#$aWAY;]tQ?ki/+97+X@LW=M +3!NJ"r'=^$!.8Ga&+p+$5G>&%&,QJ*L"i)!N9`r0[:S8E@ +-mSkY^uu$Z!+dsOE-`,+5o_+SY`=B5TE0kb(5)g#:5.U776BH@+p7$4&M3uN4SWjq`%u9B +Y!><9nHdTs(kMfs'oDuG"<9[O"c5JQ5R7$7+;tA`!+GiC#Nq[#RK.aHJ:%EReq"[R(jcchGWiD6 +oH%?bCB.f-f*@E,q]gUn%k\JVJ2$ER8L)@f_5mZm=.UF9ZcN2Uc(G:iTE.ED5`,OM34e,U$\0XE +BE>g!L?="*=o`@?!":`l0\"MQ6U2(I+>^MmbickoA.4Ft+:-?7+TiBT$n[Pp1]Y/lJ/DPmEC;Fd +!4E"q(g.4W-nKts#;X(3=)#KR[fo$oiW>lXRc"T'!MBW26@]gOTgTND0VAMuJ-DGc$n'>N$5:4b +!sue#%KK=qf`GhYEmrA9K\$JC!.=GGJA_JA\_IhOE(Z`f'I>Y/oDl`n7m[5"Z;D_K&V;O!#gGAZ +JA;O^5Suq>O8&bZ8-fdD&/YD@%BS!>"qX*$%KN1+Z31/D!^J=l!+>o["7UUD5U\j3+Sq^\:ja'E +(d4N7(8$+2GRit749@bV*J:86;udar#:Mp>!'7Og_8&!e+Q9U.H>Wb!&-E.)\sn4(CuGDn1o3If +XFic>:+MK+!A>i=[?+o+>d,ts!6(de!#Z$XK9-8pP+VmN1(/X?&-^?F@_-M^ej3kk!2-W.!lkUQ +^_eO(^`W]1VgVqQ(b'ESTG+nU:t@oqUB%a0!J5M%B\+hp!2,UUJj:Xg5V7op@#j,p:e&e4'p/Kh +M6):?6"qm+!sC6fkC>6Oi;ihq"5p2MMa0B-6"gE(^utfMf00EY+<,6LBr:utS-CSo(h`nS$WI*Z ++TSph^7YlAJ5dWp>_!Lj!"91Zl[AiLQ/DY88[8@8p&T(3!s02g#W)N'4/`DeSJZ(m!8@ta5\jE) +j__k.0EqT_GRA1CliDWe%hcZF;8qH&=.obM!:TV@E/MWjJ4\`$*H2)\0h2?H3d(N;Zr$ft"!Q_Q +>Q>[E!>b_=1'g_q!'spob?8a9A_atco*/XI=cY=M>g8].7VU(_X#4MEh4+"jEQd]Nbm%VS>sgEe ++Y:\7!MFrF!$KTe6Tl!2:tbo.#VR$I:j)pP!!G,jN!98U#_EU3$$da5H()i#Dt4 +J`If$1%uf&KE)!Kk)=fk"p^h%%03UF!PfOqe\EG%!"eLqJNsJA5YF?B%>"l$&0dYIcuomaAYT6U +jO(cUG7NTu4+WJ)(kBCE!0CRiJUe-4^q^/)5QV`fQo,(U6kP&J63TXrQ/+\n0FRE"6A>IA$%a-Z +J3h0r6cf-.UTf4RZTJs-pu;@RK``Oi.O+up0a#4Z;h4p#9S"q@'L4Vk$4maPK_Q2m+CGY8huY(!X>qsa(ig,Fr%X!$6lk)" +UP#/=dK#(`gOQTsK:jV'^o0I!_#+Rmn1YBga>j>g4;A+j3-E\KD*Io'f$+tcm!;j,F,nNAQJZkICTMq20+D_&\5aWY/ +(aBC'gaL-dq]DQt3X28>"p9Zg)2UHcJ.N>XK^a[(@AkN+n>$p%&<.d,YWR_\W"]D[UD@=[+,CL% +'uLmM"@.cX&(/$I6XXI6To_/E+pJXSDjAJ%=R_b'tQ +PQG5P#lkA7i+`=$+9A-o0Hb*45R[\o":-,4kFpPl?t@rNM$%Ul#E>_blNHKjN9Lh8lU:LMi'(-/ +lL=k?('#$UJ?Ti_!%J1^+C^uG_>Y8ODuq/"#6;%F^g7-%*WtA/<=R=3D;*h73X/u&!l-;U:Dhqr +B_)3l!77>-@#P`W/c['c#Q[I,Tk5)!0HZtq&0Qi;T[jO&":ldq%j_Z!%09 +E!&of*.d;nJbTJ0U]:C$fs9W>m\p>lZkbn,"(237OB`-S=oi$0$ZKS$TE,8'&-GaM#B4ts+_VJG +2AQ9N!)^c+D]807+pP1%h9j=9Z2ZVQ#TeOLojE7WnA7+MoE[^d%:I0e,g%3ZV%(f1%R:.#@.GD5 +-5aPL'>[cN+h&!/ro!mt!.f7jAnD-q!">NO$DJ7Rd4$">.M3dO!:R$iiC#i&h\24;m'>!.fS!!Ib$bIK8>U!C:oI?6B\i4ToY>>KA&(1]TeF)F778_1i"VmK!?Y(?"fpJSGosi>phf!$G)[_36j! +OpqPI!!9Y5+92^uJ-;SN!['N)5R8'S1]]m5!e!$DaW'dMG/i$8As +"9LoA!amJ^+@lU>-3<%4"]9+"!Qe2VW$"a_Ki#i':gL=Q2e,4+:.pR('"=e!!$1.&LJ)4 +(]_Ab!^SpLJDe4NHifsa!?caji+)p)#goar4jJs_i#i+EJ--q0Jh>7NY>$'[1A#SR6uh>h'MX>? +";QIF$Xg=O+Q')Yc@H"hU9q8h/1m%+D:u0 +7K?l2%KI%H@#>:-c2hAO*jFc35qWhe4<-Yq$DBiobPV[^Qk!O+&KpWdJX54*g(9re(>pPQAkE7[ +&cc?:!2I)UTY(O13WeiQ6r2;45Tr10\,a;I'_k&ri$.p2$C"ou#8fiMJ9_4TQl:O44cLNbiTMAD +L_u,V)#5a;Es46R%0f9n0h+\9)*]k7C^K#T$fEcNkTUD--^F'Kd]XNEnbkiH2"Equ'1c##QT5P5q2mY3Z%n+'8InF+9DjNml)BS&R^D%^pFdnRMPIQ+5u!a9`P=S!$gI8#QV:6@0cpb +-36CF<^B.9ZF0dA&ZS0T_qMU$/6l4B"p+&d!Pg25!L[GZ4&EcH";Ws$(+]h/0E@g$";WZl!SasX +6Cg2!#$X$nHU5#(&$qQg(-i?1ErHH>J-SE,"^i#Kn*0ng&D"W,65m?7J1q"a.8nGq@),_C+A`-/ +E!FJ?!.](jJ;sU0NW:2V!+:N]J;aL/PQ?<;!!'/&+L2#u1Nfl30@5m=&`L.u7ii93"EOD?J=mrL +O?J.5N59raJ\iC8j<)3c%Y+Zi5l74-ard:"hbF215Qh`dq@)(r2^*bQ6#cb;!!d+L$'3YJJ?)@O +!!9q[!<<`6EbGL47!.BS!l6u"TG,7P:TK"Z!i%t],ecS1O"$lkf%hX#N575c1n[VpI&=3]r#RQ%@!5P66JERQ\Jfh5&'MT,CJQ@_; +Z2fDe+2N[=TV`TXC*17%RQtTu+aOUUen$'gr<"enoXfZ^/&G\E^gU1C+=0d6:QH-q$"+2ni"uLq +-NP(m.T5+-=p36<&^pd5)hHYrJ//7F0(,CJ!oY1%iEu`XCSP$B*j8$5cQM7.>?%;@%KN40i8+q$ +SdHUuB(3eLn?iXS$4;>_-&YTI^hU&5,;k"Q2*K+=\+n/RC>bkK\V@nVIBr +K428_TM^4ZcDLbk0=*Pk@obU"ei@8'Lt::i!Id/8i#2W(*!"SqVh"aM@6Oj'IKaLb!?b8@5Z.Vj +=93qS!ME1'GDT)'-J,*+;tn9 +*"sG['-KUT+@Hkc7MR$Y'd+2*+;P\7(_n/3'd+J2+@$Ya65:V2'd,sNOi;JDB6I'FG*d%9F[sSU +HiQ*V*3mcl^q^F&*"p'h%=mRI+OUlg8eQ^5+$dIWT`P]H&eQ8e/HC;.@3QU55TdiA+2QqF@D"U. +;@_X]$"/\t!/q"F8d-@n&4'J7+?foOr#UCB%D[i,5])-]8d:tK&Rf>f@\J`g2BTb?!(?45VG[O> +J-#NC0JTLK#V](#!!N@Q!+;IP;2FQF%RqQ@KCQIi#`_D"!4_e*4TL:)Tg0//2J=fF6`ZLT'WBAI +'nHhGo*!bIRfIs?p\TmV7KWeo'EJI>N^+4J!20t>Gt82L.074!&.JU>;$2gYK^_Mj4p?uK?m2IJ ++p8/O#6H$#dF^2l3b+VGVh#Fki:V7&G`% +J5"._1;V,p=/hNb?jlqUrZ$J-i'B=&2un2b$\7jl5Tf%k"$f-4,hP'o$iknC:FL05KF3=WTI_Dk +i349r!bi2q-3=]c*N2"pbo.a&lE(.noD/r0Q?$3l%]E!?W!!13t`6_L@`$ikh!/d?n-Qll_;Zlgn4Jmg&U)M2Cr-lrHKi%Q2S ++lG0u"(C+I,6J!$1+@faQmaHe!jFEj!V@3[!=PtO$E17(TP=je^^E+DY\ZWk_#ec#.M71upg?K" +@>OCtNZ]0n+c%=m;'cDkQio1*i!:aH +^aUT3R\0X1!"%Wb;?i;7=X468J;=\,JL$<]3s$[H$9<]G#jdBKJ<1`bJH1j^'`pWs7KWX@!)N\! +5dJtN(l.$oE\BqVg_h_iEU7lia7AeA+3,L3=omQk4pum7+D)OHCc`<)YtVlg>_4,d.PM\#p^.n$ +-gOAfOX*Nr6ChW-#]YnQnN^l^_$PLYR5VE +J,k$@"!@Ue$]i(?)FoB(n/):h?l7f2J\[?a%4EAJ$jM?"=kII,Ol@Pj*/CCf]]Qk?)AiR/GW7a7 +6eF.WK1,Jog=;Sc64bm;3'nJ_J@c:-!%a37a9#&nDqG/sr%j-#!t`BF,_-JE!(5+e!$HegL[\%p +Kh0o9K2?Fl;0iSb#c\m)J,kHM!?a6&_#tU\?t@DM,!:otea'njIZVBj49phi,S0,HP"0OY#:TuIJ,j*f_2pnd +6%BgX!+[=jPNr2q0GuJ9Qt;^'&MrR&Z8pT..7"Q?PV.5fal"]N#1uN_J]q>V=%"4LpcSsmGVfZq +qBuI@4pjT)?]WSGl!684'EP^0'eo1sK*]dA,P5`RTE7923+rpK(k.MpYr8K?hOFW.^k\%'(IG?9 +D1DTu!!'5'#2fLfJ-9=:0E`RIa9!?;O9(C"#SR1\U&^kM!f4W!1Oq0F!5e4-JRAs@J41+UJ072Z +O:aQ>!B;4n[%ICZg&PG`D+8V^P>Z^(8\dJ<-GW*:;Xa[:$4RoKZa><_!!EFT!!knbJG-1./j`.8 +'`ih!!!(O59Ia%8WKfB><;N:]f`9N=N.I'fdGQ'9q#;\Y^^sMUBE/nN2PkOcQI]ft9rX=m-krtU +d`QK38[nbu:tPam0Gdi\ANt$ikR3K&!!9+G%O+.<"qXhg;@0XMUc$S[f^`j;b;]J-JX1!R@-SHD +-uob?Qkk>thAZPC@;V`*`)eFX7VYl.*Yi^_Y##]L+cXk3^c0%9p!J78P7)#kW7&0$-"G>NlF";!B+jF@4hE(S+R'Z9ii!)["6 +Y7LmGcEm]ZH[fET75Sk3#VQR:@Oq\-\dRFY*Y2'I#OPH+)Im:]!f>ZaE-V0c"7U;\iMlrF9<>sO +BRkU~> +endstream +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_11) +11 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_29) +29 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QkTX7''lVQqe5A+Up^?!A=joA"\Ao1KD+4/]]%<-tYFVc)u-j +`JG^s_%C:#@H>ZQ!!4D'!RZGEAMBMR.7N`L#Y5_!7`L$+.lc/jr()"*r,T5U6Fb7g"m3%!.YQVN-YJ0!#8j7kS9Nd'$,m)!#k>L!$OA> +:]Of%#06j3J-@%sC4HEM!(O;5RfprcYbP1J$rH:YC4N44!5Q,4/3aVp^n]C:1GE$&;DcbtL&d)r +(r-02^^.0tZ_.V(!Jq:8$IjTY"Hifhnmn7733;_T'S&F^B[/J5TE&SS6Jqt\ac[?6'h`IDp)^up +j9m0IXRi@kSLo'j`?9]P$=JAc:_"cO^gI3G!:[4kdgoh'AcS#[17U$bTH+6e$-b:\-NGhN2ulCd +YRCTHmQ^af"9=!\!?B;SJ.<,+#[(O>O!+OCJ"P_NYQ=o7 +.'cqTT]'8ZKV1V=!X,27_d6Eq"bgDfejYj9=k8*7E7P(rNF!JH.#D#+'p+;,#aZs:/65hpee$FL +:g00XJ2l84.DPp-%\G)apc&J1c@`q"b#XJ63"]l,D%j$36pLA-(t' +)0)^Cq-e-+(:djdQ53V3@TWoo.:V[]!#].0("uepQ5+ph#$$pR?j]ncJ0+7^PrcHQRhXfM##]3t +)+64[V&idYJ7T$<#6:S+8cb.Y^_?j7*4\6ZJ7S-l!L'3r##5a1n-Vp%K\80f!2S7.o5nNb1!1.l +\M;>/]sn8?B*>sr!g>/q@%D +!5r*_&OI`UJ643"`)AW-/u/Qb^]ktc3"Z.nVA$$cJ.Mt\"GIs,6G3p;+^)/!!+H?E!&4U&J/eOh +@K8/C_#VX\phY*Sr!\*0r#]1:IVSCpER4ltQ55lr=U9Nd/2G#Db6#$K$EUH\ZXBTd6AnngO^KRoYats4(et>[!$M=rR+$Xc +2@1L^"9;8^&->4##iH0E"En)`J<0j=TF&kr=IKg')qYFZ/0TZo@7!3r63o7LLB'?c!^J=N!,n0_ +_VfqY^`Yjt!;HTscjC;8BEJL4nYu]C5S!nMS#(WD*]&[_!5[#B!^IG?1k9TV+]UQ'FT;GpG'XUc +?o8.J:`?XTBFNb:92NFGc.)du%"XBTWg-nO6Q361_140@!#-8E0O>-;W!07f$l?Zd>R-eTBE2GN +j9![@irNs]"b<_T!lmP5kF`!^J.*1!J5nl8-n8iEU_Gs7;@l)1.&!O>9FR0VD0EqgL%AU;sid(SY63o(Y+_^q,&&PAT?6?BnXoK6kJ1s1X.t@^(bhrt_0Eqb05T9iV +$k36(U^!qT)7"HG!J,u-"meJjAUmq2JP[cF!3D([J5,B9n-0%6`T.#,9$)W3qZ.^f&S6u^fDu<4 +"7*H#!V$-p=YLi=!,[Ou^^LFRJ/HH0?&/Mi!$"P6'n/DH9`?XB5"Wk!0.(5b +SWDD0V@:B;9)q6$!E#NtA&)b#!5Jjp^]4QUi!+L]ciea4Gf1MQYS_lj+e&")0EPWM&:kBcSO!Nn +5%F(BJ1rlG#;/sUi&H)p+QNQ`+TjTP!o>*I!'u0d5Qa8&"FtFq)o*k2!?qLDLA\mp!'gklq02mS +!$VDo#S$nK2?._5o;H^+B/s99md(2LqX\@#UA]@<$&qR +"TSS)234sc5)8Wc,R;\GN\C__^`lT25bJ)^i.)3NfHC9'B/_3roEI^N#SGug&;]76,=(aZ"Mui! +L&`&3J8bQb^]@Mg+;tUfcjp*VScF>76j8-<.Fho>G%Rsh%#5r:*Pb&L"-@T*a)L)]g=UIdX_n8d +pF,(56kTM#<#`YMGQe0L'`^MlbeOM"!(-_eN(.gg7N_mPJ5ftY@>G*,!#QOQA7,G2)AbXL:^4A$ +"'sh9%)J#`c="j'Je2Z!J.8F[eL2@=5.h=*2cKeS",=TDD+2X*\M?)3Y +7Y'nm^^*Mf:u!1DJ6r]de12!Uc2^1Mi=<]f2i&Us!(GiE)F:;^KV48W"TYA7_'D.\JAa=]81>Kg +8:dG,!!*=Ji;a$B5m#sS"$iLt4l?GNLeng&?!&$I:"TH$TG/Ufck-MU9F_->$j4=R'*R5M*<8hG +!J*;(!'n=1C9biA36&&[5EAs"c"[EuOSg-SCQ8F7EXW,U0*C22%uUEPM`QA]('%;`"bCt"!'D@^ +J72hK!!hAZ!,`#AZIc4-fI_jFY205Q,3t9%fC%#NOQBeY!$EHeJ.1d0:=m9DmEW!BTE=Hf +:]O+P!`%SRm=YP6!s7CKlC]Qjm]m%i#R4`4*?`cI!3ck3,S7cf'L=>U_+kMLL`[f0(ngR:i,&S4 +r"B)X&V1o7+X.N7(_UGJ++Ud>U%/?%9H2p:$it5_JK>5M^&T9n+$oN!+D_GDa:uG@+2Jd1iKP;_ +\f64=)))8%J8X,7#TI,)@oRW'7^]e76Ue2$3]8k"b6XZ5TBrX ++9^U>"lM5fD-A!3a<,qWej'3=njWkF^uI[jjUOEOhu`pD(B:T;"%V3VEbkhS"T]/K(4cAd@:01F +"TL.L-@c+E:^/%_Erb,C!?eZJ/F*@t^?ct1ltq:*;(i[bC^."l!(!VT_-A(u1^7AVn)7"U^]Fo% +^(4%>'EjdFJ;+M!GRZpp)'Q-_5]R7(^pC(!<<`6Z>9VN!oY8$"-Pq"mOB*9q'9qW!Wi61:0%W%Xok>I"/,X:@@dH" +ScBq*!(!1XTq5C>T]uuA(%/:1^hs?r6j,aTWC*7$!"K1\W)*I"$GlKWiC"?pne5Cp&qF()Tn4:. +r#D@2!l;er+9DO/VuXXX&HMeC5Thku&/sN9&)d:!n2^b^r#_&%+2P)q+`nNoHl"G<2.J0Am2Q2% +-3sTH!T=(]+TMPA!!)CEdd8dkD)q]*r8""e!Pg)a5S6AV$pJ&i!^IILi'P&;nC>@Rif/(,N^22* +DBH]Neh^XaNK4+gY0Rf'.h9)B+aa9@N"9@nm@jFg@.k\X"s1eU8:]t3: +1c%fC.BjKhZD@T(KE*/d'uB_e+^u30!Y$i&g)tqP"Pk.beFl-C!!"W\J:I]/!"n-+!5Ta51H#=C +Qi`q:!Ad7K&jY!2#A1-#?G"L2GOO^%t'00,5dlMpps_`A5--kbJk&s\e$J^>LT +bQ&b@*?im8Jc$MGN#b4**0mX1U!sKgg`OB1!$Geo_4=h^r'0<1WQ^B?lfhD +,11ol&V(c#2=qQ4(IS6+?XOu[J0Y..3!FgP"opFhc7mfMM+0AJ(r;0k5Tgoh:ur-1#6m!d!!>D8 +kQ$P+!h^[JJ1^m'0dFRc#QOo3!!EQ72?88X!2,,LTR[*ZJ-+YZ!u)Fl?j1'SiWK5_"98Q)dt]8* +Mbh,E:a-,"NS..6SJ&_.3`%O4DS&EC*tu_A)Ju2T^m5Q5+r[0O)6c+'^ha`NoECo-!.[rh_<_Kd +S/6`a+4,K@TVr;CH4Af`!R8(G^]Y&G$SYRB5sUWH?j6WS,S*-g'7_4_pADgG%KV)T!cO_5+CR]5 +>T\O61tHnEa- +VuT(,!YJ,l1_:@OKHJ$n*Pj!C68T.E!YRa"#pAj?+=Io]iWPsh)'RiX_<`3$:)a1@!$N*r+g)6* +1]SXZ(4ZGoJ-$HnJ-[=r'`iPqVWMZfE$)o"'B)&^Dd3;#]_4Tu!!-#S?pFfZ-39bF!6-Jg?k*:3 ++:tS)%mX#+N:$cJ."EEM%nB;*J49U[-3GA;!C1r3J4*?:&-\CK!5O$bi-GJJ:'.Vn#N/D^J5cXO +:'?)L"MeCL2BdR57t6M%eh(@kN^"fIGl5?f*RE*nE``Arh#5JA!FU?\5e[Ffh?H7g#!lY7[nTZ% +rWY;\c)fZ7:_cqP?3*;t!FT48lGORu'H,gE);m+bmZ[o@''^#OG&T6Q0J)TG>FFt1!]>OtQF$_( +RKCI,#,+Wu_+k\q9h@W9$io,p@0.,Dr$Y^mSJfoWM^eOsHrW8b7HiPE$+AN=_';M3e"/$2,i#Vrm"Q;TW"X#8pi(49k!!2!\"\pE(YJ4QW +2\?N_20\p/+l).(7/c&0?=46E!$!#j\#]ACX'i496"C#s=*1+H#QPVC!*0:(JC.BjNa"]B4\HOL'UG>Q)\#QX&l!#,SZ('Pft"X"]e+?frO5Qr8s"X$263fS9"CRAn5`u.UPQ?;t!MGMVi0"3COp!5r$Qp,k+;P>- +(^hH)$Qq]7g#L"i'%,q3kN05">Ztn^ubWj +Fr0+J(LZ5<_29/I?PF[I%0>r1JDpVR@MYY"'VP4=+`\H4jrHbc*ME*Ji/dp]W(93D&YT[DJER3q +FpK7E'd7rC5[">"r"q^^JDg,1@.X\SD?lk]'B-59Jfl6j=t\an9Ahce@"8Bq%s=+29V;@fL[G6e +j)Of1!mM:,d&jIP\T6(1=hjT>iFHVeh5Pd&Tgl3Q84C$[o=fn +SX0>^(?HAA'@I-U3X`S!loZ7b;P%/bm1%Tk"qS0\qI!#Aq&Xf9'"I!"BTV!ol*=!#cI--oYQ+!5J^NJ1(g+ +0rs4V!$GC=&h,+!@F)-nF.o"c/Rp&e_+(eG-.lu45T;-%j>*G7?9g6MEh!CBdK&250u+8#TFoC5 +9E>-"""9NKi%bu(1''YO!e!]CD!BGJNIqn0.ZVLfTgTS\EW@P]'YnAf^lSge";,#R);l'YF/*#M')f?kVk$ +##h/t'AsA;TE5ed"9Ao\!apDg?l/p;(]k.A!^M,6^=3J!l2W@`![&B]bZ,g=k?pt;!am>/)Ebk& +.`GEW!2(?C_5J64h#+HL,u;ph?t$+/Z)cdi*O!kki"-pD1%RnDo"\i-T/lL-2tS$6(-o^4DPDjo +=`f0F!Ec]3S]h+";0N!A#G;b9+=7AcB=@jf$K)U+^a9JT-36B[!at6eTG.o%-4rKW!l,4SXN1B2 +H]+I'6@]IF5S%7F9"\urA0;"di$W&c$3C29=$SA=!$V:W($]0B!rs/>bK'a89E5&h3+*@%^_?oZ +(TG2LcG1bL!aq\b!':1A^dIT.r!5LgO2/[&39Uo8"HGc8Y[HB-3!g(HA!!B$!(?mM5m1"U(_fFC +P!ObOBcnNh#a,6WJ=.6&;#h:1,leNB##G@8!2TZM5RpTn'EKL&;,A$1#o/&'0VL`_@K75F-3+X> +#%RcP!2]`NJ.>ri(]bs+;32Q*$(-=!!3t#RGQ==#8'i.G#^HKC5f\sHkR]uiSj=`3;8a5m"s&8m +?uag?G6f5+-ZG3p-?fe@JLHUY!%`@IJ.&$3#Y[]F&;.;hi:MOo>^_EJB,G*!!iR:J%3:S0JH<(r"+A[G^pG/ +^`Xa,J7&@48cbU\-j,&GcmC`&"4Gm-Oamug(':.Z"quM1?iV*tJC"uF"@.P%FrlD^p`9Zq+CYlpkO5Usa&V,B;\e9a*W'VDRc-SiZ#,.\8)2:D\/dSr%*3^(Z +@1WhSJq15:)ZYGW@"/gjYtdHLLWT$pO(C:eO8o92".S]ZQ9ZRK!!OJGZ60E/+9W;[+n-@6b%YOlP(L%3Rn3@P8 +J?T)OJ->o[7tfg*64/qWd2iT+JN1F[";UDm%Y4Vi=pfnUn/_]8i2DSI!'t9>P(cb)Lis]!ZumDk +;>bn]!YK6M*1b-Th&aW==JdVLi.)ejhr$[-Iu>H^A.SoP%%8:H!B<7VKE4&!'8/Y27P+X-ck\26 +K$YDf"6.Zm/Hd9E6nAIO0Kqi,">E/0"@Oq59*=7Z5YD5*YXD+eAM?;H"9gJG;ZoNC7Lk4T=T0&# +i1XHaQ/JoR$^KYd?4<1YTmd?8i3@_=Qf,]/%"ZZJ\f6BtQokAn;\378Ktn,$)bY5;EP+u/1scb` +4-\"m9S"n[2#r;D'L!'pq(b:!,MB/)MM9Et`K:8$kW=\j3@%7ZV`C&!R"%E18OQtdY.^%33F#P#kP(.3=,Ll7o7WA5Y?+93A??3G-D18]0A%"YWA!.]/)NT"8+ +#OpjU+D>j$;32Y_=;;FB$qcA-/gZ.[NWVZh<=:/95C`b6!$K2rK)tm4"CQa"j-XltJG:3m8H1^N +j8oSX\c'!+;t;H0EV;@kQQK&3!=p$Duu[l"\(0U!EC+G!K2%,JA;?o5_.?$ +O1YaNP^Ok0\i0kHYR?(/F>\e0Q^!ET(bc^0"99k;PO&h`%bY,=,ugrM9G)t'kdiiX@'X2ollZJ) +/d*@PB`KIS!W[0\LB0pL"YZ\c!3f3#JN+/C^d'FN&>fGZWC[)`<2G+QV?+Q<$4=R"1]S7;=pn/; +!9)Q1*FS@:KCAsR^^rO,;!;@R89b/di!+su*$%:hFTMTr#_ueE*Iudc"+[)RJ5C-$NNouPPYBlI +i'[m&4)f(/VuVaKN'Dr^GlT(b<<*dW$H2]?&`MMp!K^h5K6T$X@)su$?ucbY\3h*B_uYhWg'L"U +gH9!4.L3bt"9<\i#_;7_T-Zr>L[aO.,8:+f0E;.u&3uBnA-,4S!!,?H!!$CR8Zq1=]uH_h8)V/j +KAZeA>FJLki@$>_JVjL3LlrV6'O?Mk8h.l[>#Zlr*KT-[!36m*HY!HW&ZJRjoD!1X7G!(ctfO>7f+aV?Ic2N;(2mZ\"E +Ij=$)/Hbbo()7-&J/AjR!MX'tXEKHP"L\Gs3!+("S-YqoU^Y$EUefu-5mZ!J/d7%3%4T7VO+HdT +'>f&;USM"B+HRL2!6H3JE,L[:PV#7+M$rA=ALQO81/sA7")!Tj!!.\"^^/*`"1S=2YQ,.:TFCnA +a9G3jpb;hPYQA6$/.5"L=-7_=7H%eq$U=n55Y,;#kc5YcPo(^g?=Y82`jD@IQ=>]@t2@"c=9 +%Dm'Z#2nPh#(U]V_8](R[6T5%PN2a2cik>coDjL4J.Y%[$iiOD1'%A!":LS'!C0.3J=n&#!#Ph= +EHWi5!"#1tBF9S]/-KT>hhM:F&ca)f!!'eY!l1=\!\mdaJ90oVJ=%V,^_?c$F?$o;+T*43&.#I. +l)2ACU6A-lG$F2m-fhq't:%DYLo!C6PdK9-o\^gK/'T`9n"i-kdEp^d_H,U@oEX9(`0 +$O^>r/V)3s3IkLU!J-mJkS!M.Ve?>H!%r^ri>r/R95Vs8-],K!ZlkgN.<$=*e?")$NMjk"b9A&"/#o-+$_1R!3cJ+!'H-9[CepqOaLC:Ae,,cmZZ]% +j%4CY$jEjg"6'.gMZ?!"2<_7G])uIBmC9+1n,W2k")r)GB&"$p[K8Bt,'6S,FPHj2k^cQ/$NL5H +!LTVkK"t:l62U`dpg4Ou!(.(ne,_l9C*0-O2?r-)22CD8;!626M",RFLDT%PfDu`g +!&LrR3/%&6'0$4"p]c7f$G[g(J9!8m3F;at#(c7H2kiJ[85Fai"0gubJCji%4:H`A\2G6dJB/0" +&.O3[$R;SsUaQ=q!!3-c%03U6]Dt(p^]B,H$%R=m!'i[IL]me2%$9HpJ862M91+`t"FuRAJE!ni +j%g9W)$,(`JWU`on/3&><[CC?V5m^pP?B3$=@1bF_WtANq1\kWC,VR82ToM/j4p@C3'HkF[Wio" +!!3-#"[GJ8d#h!%WRZ/:_[j!2q[aVuqZ;#6R3uVuSr1W'Z"77=]=a1Z/D1 +ZEg^m#Cn32J1:*jg(M4M%0.4RJ635P-jG4##Ct$$!72('fG#''&-*7W!#Q?!=;$-l'EDl]JMLs? +J.hp='S+7=JC"s[fGo]K>7HhhuJDf!<_6\KAa[uBKL``3WOCc!.[*1 +LcPO/4926D8"@rWJ?j23k"p@I$KLc=N3!Y*r$3W$iKJ3gf0F\.=%>*9ANL8TO +Tt->C\,]d+Y7%"_^]=M0DhN?8KZgA#(]].q7>L@>KK+%.5XbqI2?[[nJLH!OkWs_)D1hTa"A-.b +(k3uR)jE;^Jae-n'X\(:!/:"L&"!>$WsK"*!JAQ'J,ft-!"XY]#I0'fJ>b/PHPq@L#r(YaJAOmR +kSYJ!pQ)h9@e:[etC +"R,tq,).(jKKt"k(aah_@/pQsKKoTm!$DGA5_8]3LO^t.KaZ8K/ ++.J05SXpf7M/*ee9Q;!9!T>n#*9&\kOj]0LGL=:B]c5F@fGK_dERYYTeJ$R6JnK_hMF +68?8("JZe?J>!C%W#l"kV#Y`^,0UaOW$[&"E?jI*U[S;*%T@`<'qR(QpOr`Roo_8>o75[^Y+GJ +dOp&D_Z6rZU!%8$O.h2Pu!!%)ZJ3XEk>IaaA)uu?0===K+?jV@!^DJM(!8%VY^^>V%$NWKqJNsA> +5Qu]m#?K1eJ:J@7L_ToO'nDtef&.?pfGafu)ZXOj!,rp.J/X7M$A%s]\EG+:?m5Sa+olR+J=%m< +81Xa;/-&ss!jDr^YcE;A1]U'&!+7S_Ck"tU1Ot!0J;>n0O>-a&14Z#R!3u$G_L8n<"bY/-"2G1p +^^1+I$%pS3KNJP6=:,1%$A:qX"F(C-QqIF0>_#@N!)Qr$=Bkj1.N<%8S&cJ](_F7MSrMO!RtW5m +p]1FmIYZi[03Vfh!)/E_>7P$@KV2"ok^!BM[Y0H857@":jIl_CZNf?:L6T(LW'c@0Bg8j$.gR:q +;0;un+9:$sJ1Gu!GQWR3\hl)E(D$WJGQRqb&cb9e1qGMC6:qi'@Qa5A6Ajb-TRR"#@KD_l[I`-I +gL@C5!.]]54npR^O:Snnfs[,%K%k-L:gdX!o0\^\JcGt*GR/p&mJr&>!/P!4L]W1oSrNLNgj%^; ++97'VU]O(MJ1)39fRErqX+2==.\JI#n5'?\I=Pi(O-7Bk]#?a5rr<$DJcHF7#QfO5"23Vb=0P:0 +TKN8m$%pS0$ZJQ8PZ%QfS&Nk=+p]"t5nu!*hN:bcOf9:dfcDb3qiX8DJ\B)f.Ck"mm8P:taoDF* +6Kp+r1C%L:05tARK)$)$Ig!@V0.QRX/_3-/2O%,B0LH!G-.TSQrNGMdL/;6WJ,g.Jq1Zd&0YeWZ +"AOD#2h4.J6b#(LYQ05"l[UqqJKP#F$Q?/5:/$"5/b;o($JU)E-idp7!,+=lBKuQ6!rt&&P'ip- +D9.55I0K+hKudU)n,WSM?PGTkJ-dW=V:Yo,iJ@V($ro8#J2e)? +3cK]iG/3_Ve*mfs+:WiL$Hs=j6g,6b+;Fl)'`^c>&MOFj^]4CcRc.'I`l(2q^]ss$!(;?!!$F?' +-p)r54?97EVsk0Vj.FHe=64s^"3QcU16a4SQ)SYhO'83V)"EY>56E&*J1so!:^MXP3!'8GJ:n=r +_PJ_Y-@gUKJ.?FH(cQtA!eV/Y"+>\"8.nohgji_7J:-iC\toB<&Cf1SJW]]>p:!AE@kJmN4VHSa +6nF]OA8B.pQuf!hO9Yb= +83Dq]AEDH$LY+B_+;^(UI07Ol#>fi%mLbMSW@FQ\bKT8_i"6"k%]]")!sf)2-A6mP:k4W.[*9[7 +K\`H'*/8LBX*V;(E!(W\bbM8aS3jh<_S$)6+3aZ5blB)klG'D-_13X3bmPjm>6f[Tq#EYtd81/M +#YP4$FUOmI$Q:dNB)0s5A<&&CAon"QGVTff$35$#5WJQ>TEVgq5Cb:$`9TA_0*MDj#A5ao6-SbI +-o]I0j,c](65`udT*6Iu;1O&4[)ciGK@%rO.Dj&3kBo#IP$0`@(8[0oV:Z)3WO;:!"(O_ +)R@i]"Mf)hJ3kqYN'2[s$NLbKJ>`MLa92La"Rn:'JA;AY=;(Z7'*&:O!"]eD(_hKC&ccd1!N6#" +TE0VJ"bEc9PX\X!2cT*^ki;&Cm8#V5re.tAHgJ0h"CbEDpF07\:#J:K;' +LbF:?07]ECJ=nQGZpoZr!.u[#""42&5QV$I!eW00"#'k13!BCD\q"DoK.KQDGVoJO2#rFh!2)Bt +^]E[J3e0IVN/.W>W!.g`"p:TLJ9X6XJ3Esh4Fj(T3T\?llAH+5)9O?>J1qDG^f:X/Jj>Phq2!q0>GbNLAV!#5L8*/"S'jZ#N1 +hun];X(ogEJ=&S%=?fO4"sVU\!2Ec9\.Se*2X*6qU=C*N`prU=Td<*Js):Lh?s=n!%&P'X>h32 +O92H"$pE6"Jca5JJ.&0'"PCL!KQmgLAfX1Q:4W*J!GDik+9MVJ)ZY3=!FQ*4J.L1tE_M:5,hX.A +,#F"J#R5?I&d-[8!n.7%&3Z776X+C-r&90(^N&jaKqLGV\2f)Tq?$*K1*5[Ri"HQpibk3DW7e]? +\/PIIAqCj9JT)ca#T*Se+b=>jK.p_f=JuC+"fIOSd(BP^'!H8j,&0V;J4`)#qKcjZP +#S;aC0ETTaKFU4D-uFb?"jR9dJ,oWMkl;V(K)lBGQoGd*!!.[<%7VSH,WQ]l!Y7b.jDlp\O+8J% +#g=7h"/JN,Ae5+CM#n%)lGO8,>4O7q!$DB"!!!3k_#OM?!I0,I$_RMCn5pY7"#kitVBErZ+p.h7 +_'e0.!%86g!eWaH+&d:!Rq*lIN8Ii9;=5?bT\8MLdIgiLkeKsdtC2!;%A@[XpU\#bMWsQHijIg2bW?!ja?uS09&4n +!NalNIK4ngVq;"!C&oHLVrLb_!rj`7MSLRP(aoABO98m@GU@lM!h4d,cq1kc@L40/THJI\a:8K- +JH2]&@NU@M!02X9@HbE\#P!`YUd9M4-'eO-W%8aX!%IsS$1oq\+6EQB#_qNVt!;NP3!kbIh(kU"E9l$.6^Fl`[Uh-+3(h?:)-2h2Dl#`5nZAR7'hp7 +QR0HT:BEetL/Ju1P(aAR5RG"(Pe[jKM?!WrBE8)Am6YDM`hAc_1r0I)",VfQ$8E*rjO=86.PNOV +K`V71#RlWA&d8:Y?krbD6QdEU!T9Un#d+/^>R1D=fUDjA.c;=5.V!]?X+J-E]!-`NBGLWq!&,Z+ +XT5Bf\HIi+168WZi-8;m\.!3!%'M]dPU$B5%9ou[?/BGJaB?r.[B!MD+d!s.=6+9MZf^_P%ETPu@c +k]D&#$.iT^'G>t*-lN!BUgE.eIP!/Q.3 +#QU6B$4$XYV?I>-=Khu:TP1>1$35=T#R^WgdKPUQ@*/\4TQ&*[N'Kcb!?f/\_Z1A]+=oa-Yjqku +p^@YJ1ck]qliY/H&.]mO+be8CB@XPo2#meb)KXDDed8]A`q\aQ`quI5R<'Q'br(Y+5a<"7 +E(Z2Mn?eLS_AiOY!tXA_3!\rn*8h*M$5"s=70;d\Tr`6m&V)kHkhV'XBE/R=coh@Wn,NG:!!e%) +#65q6!5K9LL.Qh-:#VWCTGTM9J-$_+!!rY`7(E:?(4]3m`%]>q@Na_Og"T%&!0,!:[rbT'&WdAf +89/bOZp'LI+d3$/!"],A?33E;$35X"'`bTjL$)>j-hF/D:;F/O9i(utTTmhBBKuP_+T<9e"?$Oc +(`IoIg)+9-Fq:8=/(!4K+2\3^#ga!)^h<]MKI?rN:^e=L%(@`p#R:t3pb;f4"s8MOOan!:!/l@? +#2iG_;nsO)BaF;P"5nH]TaW)teK56n"DiT"`W/@P:^s+S2%SXE5D:$"X&O&1M&JPXKC'l`'U0'? +"U78l?jd#Y*\niLA326J3$a%()Z_/@!.d*e;>'9HM4kD&`6e.ToR-j:&&1cq[%)?TuP[fA!>">eCI!'lVR"/LsdU5$=Z*G8Q +8-&b/ph'VX(dE[5!Y+,&^doISTR7'$5U744^*`s>UcJJUapE\K!t?A80ESID#I,[%"Z#!JJ7&dg +m4>aK5R8+["ZMUgKuI!q%0Va.fE;C9aW8NoP$O/[Y*J"\!fI()Job1XQ&L4rb0\M9/'7mC3$T:! +e8'cs[QT=@S/28YIh$`L*CfgA%KInY$/mWj7Bj!(i5euWnKD;YW!s4:'MAMC>VAN2LDHP5%1R;X +1e.6q#%.QG#luG*7*r.RTpSB-+U0./!.I:dK+7lh`)37RD?pa2N><'<+^,]l!/*$bJG&sHK)cei +C)jY^```ZKO9&2B_DR[e#WWG6K0[>:Yr5$FE>83n(4^cAL&a+3O\-5f8@2J"1gl8meE84VZjfd; +7#;)?O98sEER0G-C&ic"bb/PZ6/pf&!=\F1J:(^S+HS7qf]=*IlsG8Tn1UTc%-#1S!f!J756p-G +**djkJ`$`R_cZh@_Q84s?igQ5#ZG(](cgmn4(ouumfebo!!_UI)h>j#$ikq]W1XeA$s +E"#,'9`P`^!(;Qjmbp,*Kb+:uOH4r7_Rt@LO_s'p=Cgi)XBLNY!bHuq@lr4[=c_OY)uQ`3!!!:S +O$\L#7bL7=`(X3b!29H>n--3b"9E$W,[K(;^B+>@!BLh69R\&,pH5F"%!!*J2Q6d'0l[' +M!uLZO:Ye&!eF/J5UmCTqA^YP&#&h3JGKt1"9Y;"(r>nJUQ,dloFdpr!$I@F_/Q0($jZ)Z((3B8 +`8D0[6O$ +OO>e=[VZQ%S*&T,`pfR3p_LY114U8G!#tuQn3T_=69lAW"=+#Q&f(UV7O0Sf6phI*Vp +!&+F]!cMIc!$IGuMLkoF"9f$b!'kK(5`Xel"Tgpj![H4,j'j;Z;DnV^!)2k^5R&"?q?m>^+0/9O +_2Rqnr#B/'=?m&m622G9quFO^!$FlCTEZHgp]3Y2+2PCB!!!GF]E!mO#_2o7#f[3f7Kd*/!amW( +J3Xa(E">2^]"mtV!@S!M(]cn;!+?!3JN*d_#R,`2!alE>j6d)$!!])W"$db.5Y*P:k\B%#CEs_h%:52jp)McIK@FmTJ8&7JC4E_bQ/ghK8BF_WYE)'U]<\;+/.[' +5R%Y5q@(.B#XHrJdps7#5RP@&'-Vs18RMtDKE0to@t4W.!0.+gaS12p!^Og-%sgJLfVDmt!8n=e +`c;,g,b*!`.Y&(D5Tg)Z\./$j!6'*_@\a(ccif%`"G3u^+<"-#8-**)4lc*J?p\V6(`eU5*/pa7 +K*DQ-\g).30h0#7!+]omlS;r/S.Foai#ZfTp(7V$/O1?Y5V`>t0EOL'!`/@ji$8IK-3YM?#66"S +i\gjGEWUcS!8rq?5b8$BPQG6W!f#24!$hs1,RZja$U?*L+:\h\,RrZW%3Qu,+=I`X%M/1maA]&5 +^a9'^-j%0o!gKP`?q^R[dKJ(*!e>(ei+;uiC'%dX\mQ!RTF_BZ-FuIB!8sdV!34j?.63Tb%"KZ5 +?mlM8%M#-C%Y,l9?mlQd1_\e((#Unbi%tRu,W#f51pLFGW(8g=(50MO)'Atr?j-74(]Y^5(u]oc +TlB"A!"kq&!!mO(+ncj1dLB]\3a`4)61u>W#Qc1C3tfULbW#TQngM:;!"Vs1UNcm6n?n$B%Y,T/ +TI:5A%9%fF!!'q +i&o[X!<;_>"6nlG.5;RBC#NVJ-]Nc*RV/(209G25`+DkK4'34 +J,f[:5fTHD%=f]7/6cNJ=90sj$iis&J.s2^h!h_SgJ1L]9('MXY5m9_5'usP^(GD@DB0nt!!3#WJ[c$F>ROrt!MKW*TnMEVHkF>f&_F#r!!Et.QLKDA*OHU8C;?E`T5/]"ePB@)N%!]96b9QO8\^`idZ-38WDpo7e7VIBTL;?;;G!MGqbi1'oMS-0r[lAX8)Z;^gI8loC#8Jb^k +N4&fJ:PS;E!'r^Z\C(t_*YQ:C(EeMKJCkh:-6L(QGbP'Q^kE[#Q4%*[!J(@_f;&](iG1`AI\EhC +6/d0ArFt61+2Qe6+S#LT]Ds)d!$PWr!UL5pZ5Zr<&G:,Wp\;1i7XOK4F.g]IeY3-JGZS8cF?gTD +&f.X;6KpaClE7;U+@PO'/kk[, +_,qeq>I*Ok'*&(C_Ria?r?ob+&mIqqjt[/#N%#Oj&HI=f#<$45RKS,KMoI3-\Fa0^&P;#f+Rd!OD6(5TLu%m_QUU +@JU[lW#hY>*MHXYT_&4,:(m>R'&ia-+9W[W-4=4W+2EdP_6sq@U*$(B3bWOP!Ib\J@KbCe'$N-& +idgZ8BSiN?#G?SL.'Yn-`0UbB!%1s/Ls9cZ,)ni=g-mj?af]G(pbG)I"op7^igKr-4p'b*l@Fujr"K20`Zflo ++iXMUL9q\s#l1Y=i#:5j&e2au&)]JWJ-HIu2+\q,=4Su)gUI?p$?Q8#"J@sBc)Fr.lKMI@61F^R +!+5p0ScfP#!'3^T$AEVuJ-P>T2*_V*4N^Yh#Qip/F!*pk_2MP@r0%0Z%O%>MXRZ?7a:P'C)6XSd +_>Fa"3WL;.&.r.\?&0;81)??3+2Mh:_-@3W4:ia')IT$A@86eXUQRo8#@Mcu_)q\us(=UA=$[T% +^rQRB9ueG@$m:uD00CWDp)BY/?fhD5L'V2,&-_$_@:gDZAf_=F"pokU@\tb*q4(/eION?24J5.f +cX?GNfe0T!0-L>H5S=VA!;\qj!C._hFqk@a@Nu88Rj'c#_<`8m+;g:g^8BjU0E1uZ2,fULp*L3N +&B[mBE1G:TUnAb8i#Vo!(q_,N(5VlH5e$f&7,rgk!.d*OJA'unoEbRFVI6gXU"gP0r"bI:)B]5* +^]Xe@5To@@4D#'(!7E%m.=r`p)N&.Ki^&77[:]MYT&g@>SFfQUejJW>L"Z8Kj^dHMNf(r$+U&YJ'"t]ct!1#lNVuR#% +'bCEh.1Ck2!W\EL5QaOi=oeY^fn5F._uL?p1BmufR:$L9!jZJr1<>7Q1B<6H5pZXK5otEC@_`8d +W!M_j*5KQc!!)AnMub7j5_Dq%34$p2"LWb*WGVqU$Y>%U!!rU4A +9)sDt+cQc`0%Z$3n-OQZ@'GsTR8YW(+D*CQ%,MC+9)sK:i".'^r2d'9OT6'6D'S$VM#fm(G +!uQi$*IK6=;'i@mDq]"(m'AEW^ls3%P/d!'#!$Tn@:a-8M5B +YH"6$1lHn4Uq\TW1C+LF#%=5W$\Q79Qm%2MW,*IZ_@V;A#N4fA.L.,9)BskX5`?H]JS8EkLS6D@ +S-XXi6lUtk5QD6"1ACtaJtSJ>#QTD-(_m/r8/qY]5eqOHJq/Xa&qWC,/07JbEiLDh@/)te#m#H] +>ZWf5G;'QE$+9>/9h:5<4'B6dj9)RJ.k"`$\/6H!"=AZ?iV@#!K[:"J,ukS +*<6-0!$M=D#QW8-huGe<:DIhh!!U.<)?:&9!)`dt!!%rX"b6SD!!T"uVMkbQ!)*@t!!7+t#_2mr +!&m3Tg&P"6[(/b0$"ud.!h]N?!)(+Zq@.rT@RL2!+93#S!Qt0O!!<3$FoVPN"L&/^!%7g[J,kZ2 +%KHL5!ERhKFMoI*!E]=4J/+e0,QJRnT<;t@p:mh5Fn.2\9"Qi105&'#LbarW#cp(E@jpCpN6T># +!0S69_d6_Nal-a_FiB.e1B=/"!'#L`0+\32!`09)nM@su!Z.@l"@]'#.3$8,7"0:\)E^7h +Bn-7d7F_ClW9+2Fh,"GAJ-B<`HZ_Rp2B@=fc=>":'[Qh?J=WX_!YD:*pWdr.W-@Bk+=N>$SQq4T +!YBP72ujki&SM.P5UE^Lr*TOL!dEVU$7fcg#^-7,*,h'ig28WVeH$K%'EXa%#^[ZOn`GZ>$pL1h +!sYOu.Y(C5iu@Jk!3d;"J5F2E!%QYD5Rj`N-oCbX\,[+[HqjZMHiO6K#'=:t!fV-u4^e%LGV:5" +Kcgq%*(nm!d!S*pnIl/HA3>M(*!7MFiW4[1N%;(Da#kOt" +endstream +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_12) +12 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF object obj_1) +1 0 obj +<<>>endobj +%%EndResource +%%EndProlog +userdict/PStoPSxform PStoPSmatrix matrix currentmatrix + matrix invertmatrix matrix concatmatrix + matrix invertmatrix put +%%Page: (0) 1 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +4.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 2382.000000 0 rlineto 0 3369.000000 rlineto -2382.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +4 0 obj +<> +/Contents 7 0 R +>> +endobj +%%EndPageSetup +7 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R8 24 Tf +1 0 0 1 34.3477 774.039 Tm +[(La)1(ngua)1(ge a)1(nd So)1(ft)1(w)0.998942(a)1(r)1(e St)1(udi)0.998942(es)1(, by)]TJ +28.1953 TL +T*[(F)1(l)1(o)1(r)1(i)1(a)1(n C)1(r)1(a)1(mer)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 712.965 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 712.965 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 712.965 Tm +[(F)1(l)1(ori)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.207 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.02 712.965 Tm +[(Crame)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.309 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.125 712.965 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.098 712.965 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.289 712.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.359 712.965 Tm +[( )0.998942(are)1( )1(i)0.998942(nt)0.998942(ri)1(nsi)0.998942(cal)1(l)0.996908(y)1( )1(re)0.996908(l)1(at)1(e)1(d )1(,)1( )1(si)0.996908(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 698.996 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 698.996 Tm +[( )1(may)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.199 698.996 Tm +[(proce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.98 698.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.793 698.996 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.863 698.996 Tm +[( )0.998942(,)0.998942( )0.998942(and )1(i)0.998942(s )1(const)0.998942(ruct)1(e)1(d )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.137 698.996 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.203 698.996 Tm +[( )1(.)1( )1(Y)87.0117(e)1(t)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.266 698.996 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.332 698.996 Tm +[( )1(me)0.996908(ans )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 685.027 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 45.8 685 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 54.3754 685.027 Tm +[(e)1(re)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.8828 685.027 Tm +[( )1(t)1(hi)1(ngs )1(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.316 685.027 Tm +[(cont)1(e)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.504 685.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.797 685.027 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.602 685.027 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.273 685.027 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.047 685.027 Tm +[( )0.998942(l)0.998942(anguage)1(s )1(i)1(n )0.996908(w)1(hi)1(ch )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.387 685.027 Tm +[(al)1(gori)0.996908(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.945 685.027 Tm +[( )1]TJ +-508.598 -13.9688 Td +[(are)1( )1(e)1(x)1(pre)1(sse)1(d )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.836 671.059 Tm +[(soft)1(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.746 671.059 Tm +[( )0.998942(i)0.998942(s )1(i)0.998942(mpl)0.998942(e)1(me)1(nt)0.998942(e)1(d )0.998942(,)0.998942( )1(and )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.227 671.059 Tm +[(so-)1(cal)0.998942(l)0.998942(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.996 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.813 671.059 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.945 671.059 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.762 671.059 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.922 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.738 671.059 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.871 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.688 671.059 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.852 671.059 Tm +[( )1]TJ +-487.504 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.016 657.09 Tm +[(T)1(he)1(re)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.688 657.09 Tm +[( )1(are)1( )1(at)1( )1(l)1(e)1(ast)1( )0.998942(t)0.998942(w)1(o )0.998942(l)0.998942(ay)1(e)1(rs )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.184 657.09 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.957 657.09 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.773 657.09 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.84 657.09 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.035 657.09 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.945 657.09 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 643.121 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 643.121 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 643.121 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 643.121 Tm +[( )1(i)1(n )1(w)1(hi)0.998942(ch )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.215 643.121 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.125 643.121 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(ri)1(t)0.998942(t)1(e)0.998942(n )1(,)0.998942( )0.998942(and )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.359 643.121 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.426 643.121 Tm +[( )1]TJ +-458.078 -13.9688 Td +[(i)1(mpl)1(e)1(me)1(nt)1(e)1(d)-318(w)1(i)1(t)1(hi)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.32 629.152 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.23 629.152 Tm +[( )0.998942(as )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.805 629.152 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.426 629.152 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(.)1( )0.998942(In )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.887 629.152 Tm +[(case)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.02 629.152 Tm +[( )1(of )1(compi)1(l)1(e)0.996908(rs )1(,)1( )1]TJ +-426.672 -13.9688 Td +[(she)1(l)1(l)1(s )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.992 615.184 Tm +(macro)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.207 615.184 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.906 615.184 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.93 615.184 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1(se)1( )0.998942(l)0.998942(ay)1(e)0.998942(rs )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.102 615.184 Tm +[(ov)1(e)1(rl)0.996908(ap)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.617 615.184 Tm +[( )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.059 615.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.195 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.008 615.184 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.941 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.758 615.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.891 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 601.215 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 601.215 Tm +[( )1(i)1(s )1(w)1(hat)1( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.25 601.215 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.031 601.215 Tm +[( )1(proce)1(sse)1(d )1(as )0.998942(dat)1(a )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.254 601.215 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.164 601.215 Tm +[( )0.998942(;)0.998942( )1(si)0.998942(nce)0.996908( )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.559 601.215 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 509.59 601.215 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 587.246 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 587.246 Tm +[( )1(,)1( )1(how)1(e)1(v)1(e)1(r )1(,)1( )1(i)1(t)1( )1(i)1(s )1(re)1(st)1(ri)1(ct)0.998942(e)1(d )0.998942(t)0.998942(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.629 587.246 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.367 587.246 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(.)0.998942( )0.998942(W)0.996908(hi)1(l)0.996908(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.949 587.246 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 450.4 587.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 458.977 587.246 Tm +[(e)1(re)0.996908(nt)1(i)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 587.246 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 573.277 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 573.277 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 573.277 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 573.277 Tm +[( )1(l)1(anguage)1(s )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.758 573.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.895 573.277 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.707 573.277 Tm +[(art)1(i)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 298.2 573.2 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 306.227 573.277 Tm +[(ci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.813 573.277 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9420>1(from )0.996908(l)1(anguage)0.992839(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 559.309 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.0781 559.309 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.02 559.309 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.156 559.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.969 559.309 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.133 559.309 Tm +[( )1(l)1(anguage)1(s )0.998942<9420>1(i)0.998942(s )0.998942(conce)0.998942(pt)1(ual)0.998942(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.898 559.309 Tm +[(i)0.998942(mport)1(ant)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.285 559.309 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.48 559.309 Tm +[(undi)0.992839(sput)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.629 559.309 Tm +[( )1(,)1( )1(i)1(t)1( )1]TJ +-454.281 -13.9688 Td +[(re)1(mai)1(ns )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 545.34 Tm +[(probl)1(e)1(mat)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.434 545.34 Tm +[( )1(i)1(n )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.262 545.34 Tm +[(pure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.512 545.34 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.324 545.34 Tm +[(t)0.998942(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.68 545.34 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.352 545.34 Tm +[(T)1(he)0.998942(re)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.023 545.34 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.648 545.34 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.398 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.215 545.34 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.348 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.164 545.34 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.324 545.34 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.141 545.34 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.273 545.34 Tm +[( )1(about)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 531.371 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.5117 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.3281 531.371 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.395 531.371 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.32 531.371 Tm +[(cul)1(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.887 531.371 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.703 531.371 Tm +[(const)1(ruct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.363 531.371 Tm +[( )0.998942(and )1(t)0.998942(hus )1(just)0.998942( )1(as )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.18 531.371 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.316 531.371 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.129 531.371 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 430.7 531.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 438.649 531.371 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.234 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.051 531.371 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.184 531.371 Tm +[( )1(as )1(any)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.602 531.371 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.375 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 517.402 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8125 517.402 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 133.105 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.922 517.402 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.988 517.402 Tm +[( )1(.)1( )1(T)77.9928(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.543 517.402 Tm +[(cal)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.094 517.402 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.91 517.402 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.129 517.402 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9320>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.934 517.402 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.586 517.402 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 503.434 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.2422 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.0547 503.434 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.8711 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.6836 503.434 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5078 503.434 Tm +[( )1(sol)1(v)1(e)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.703 503.434 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.348 503.434 Tm +[( )1(e)1(i)0.998942(t)0.998942(he)1(r )1(,)0.998942( )0.998942(as )1(i)0.998942(t)0.998942( )0.998942(obscure)1.00301(s )0.998942(t)1(hat)0.998942( )1<9320>0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.148 503.434 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.801 503.434 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 489.465 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 489.465 Tm +[( )1(cre)1(at)1(i)1(ons )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.809 489.465 Tm +[(Hi)1(gh-)1.00199(l)1(e)1(v)1(e)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.234 489.465 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.047 489.465 Tm +[(machi)0.998942(ne)1(-)1(i)0.998942(nde)1(pe)1(nde)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.949 489.465 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.762 489.465 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.984 489.465 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.84 489.465 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.176 489.465 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 475.496 Tm +[(F)56.0117(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.418 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.8633 475.496 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.043 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.488 475.496 Tm +[(J)1(av)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.387 475.496 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.207 475.496 Tm +[(B)1(asi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.898 475.496 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(e)1(v)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.633 475.496 Tm +[(di)0.998942(re)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.535 475.496 Tm +[( )0.998942(mappi)1(ngs )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.945 475.496 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.598 475.496 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.41 475.496 Tm +[(l)1(ogi)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.715 475.496 Tm +[( )1(.)1( )1(If )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 461.527 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 461.527 Tm +[( )1(l)1(anguage)1.00199(s )1(are)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.23 461.527 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.949 461.527 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.02 461.527 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.672 461.527 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.484 461.527 Tm +[(cont)1(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.781 461.527 Tm +[( )1(,)1( )1(t)1(he)1(y)0.996908( )1(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.477 461.527 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.262 461.527 Tm +[( )1]TJ +-501.914 -13.9688 Td +[(cal)1(l)1(e)1(d )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 447.559 Tm +[(cy)1(be)1(rne)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.727 447.559 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(.)0.998942( )0.998942(B)1(ut)0.998942( )1(t)0.998942(he)1(se)1( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(can )0.998942(al)0.998942(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.77 447.559 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.551 447.559 Tm +[( )1(use)1(d )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 448.852 447.559 Tm +[(out)1(si)1(de)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.406 447.559 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.219 447.559 Tm +[(machi)0.996908(ne)0.996908(s)]TJ +-462.871 -13.9688 Td +[<9769>1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.9141 433.59 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.7266 433.59 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.949 433.59 Tm +[( )1(handbook)1(s )1(,)0.998942( )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.277 433.59 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.301 433.59 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.125 433.59 Tm +[(programme)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.934 433.59 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.75 433.59 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.563 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.379 433.59 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.535 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.352 433.59 Tm +[(di)0.996908(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.164 433.59 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.98 433.59 Tm +[(t)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.578 433.59 Tm +[( )1(jok)1.00505(e)1(s )1(,)1( )1(or )1.00505]TJ +-463.23 -13.9688 Td +[(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.4727 419.621 Tm +[(abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.723 419.621 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.539 419.621 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.313 419.621 Tm +[( )1(l)1(anguage)1(s )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.383 419.621 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.336 419.621 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.152 419.621 Tm +[(l)0.998942(ogi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.445 419.621 Tm +[( )0.998942(const)1(ruct)1(s )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.523 419.621 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.859 419.621 Tm +[( )1(as )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.184 419.621 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.785 419.621 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 405.652 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.3867 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.1992 405.652 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0156 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8281 405.652 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.9883 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.8008 405.652 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.789 405.652 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.551 405.652 Tm +[(P)46.0144(ascal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.113 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.926 405.652 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.148 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.961 405.652 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.031 405.652 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 405.652 Tm +[(e)1(x)0.998942(pl)0.998942(ai)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.816 405.652 Tm +[( )1(aspe)1(ct)1(s )1.00505(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 391.684 Tm +[(st)1(ruct)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.9023 391.684 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.195 391.684 Tm +[(Samue)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.617 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.434 391.684 Tm +[(B)1(e)1(ck)0.998942(e)1(t)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.09 391.684 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.906 391.684 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.719 391.684 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.508 391.684 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng.)0.998942(1)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.871 391.684 Tm +[( )0.998942(In )0.998942(t)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.332 391.684 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.578 391.684 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.023 391.684 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.418 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 391.684 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.527 391.684 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-446.18 -13.9688 Td +[(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3555 377.715 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.1367 377.715 Tm +[( )1(more)1( )1(broadl)1(y)1( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 189.8 377.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 197.809 377.715 Tm +[(ne)1(d )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.359 377.715 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.094 377.715 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(as )1(oppose)1(d )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.508 377.715 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.41 377.715 Tm +[( )1]TJ +-485.063 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(B)0.998942(ut)1( )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.563 363.746 Tm +[(t)1(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.914 363.746 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(i)0.998942(t)1(s )0.998942(probl)1(e)1(ms )0.998942(e)0.996908(i)1(t)1(he)1(r )0.996908(.)1.00505( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.398 363.746 Tm +(Common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.516 363.746 Tm +[( )1]TJ +-471.168 -13.9688 Td +[(l)1(anguage)1(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.25 349.777 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.984 349.777 Tm +[( )1(are)1( )1(bot)0.998942(h )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.875 349.777 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.648 349.777 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.844 349.777 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.746 349.777 Tm +[( )0.998942(;)0.998942( )1(al)0.998942(t)0.998942(hough )0.996908(t)1.00505(he)0.996908(i)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.18 349.777 Tm +[(scope)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.066 349.777 Tm +[( )1(e)1(x)1(t)1(e)1(nds )0.996908]TJ +-458.719 -13.9688 Td +[(be)1(y)1(ond )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.824 335.809 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.598 335.809 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.043 335.809 Tm +[(any)1(t)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.504 335.809 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.078 335.809 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.859 335.809 Tm +[( )0.998942(e)1(x)0.998942(pre)1(sse)1.00301(d )0.998942(i)0.998942(n )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.328 335.809 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.723 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.535 335.809 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.832 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.645 335.809 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.715 335.809 Tm +[( )1]TJ +-509.367 -13.9688 Td +[(can )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.9531 321.84 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 321.84 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.234 321.84 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.891 321.84 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.707 321.84 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.773 321.84 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.998942(fol)0.996908(l)1(ow)0.998942(s )0.998942(t)1(hat)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.746 321.84 Tm +[(comput)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.141 321.84 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.957 321.84 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.25 321.84 Tm +[( )1]TJ +-469.902 -13.9688 Td +[(l)1(anguage)1(s )1(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.164 307.871 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.938 307.871 Tm +[( )1(\( )1(and )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.754 307.871 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.09 307.871 Tm +[( )0.998942(rat)1(he)1(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.996 307.871 Tm +[(pri)1(mi)0.998942(t)0.998942(i)1(v)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.012 307.871 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.32 307.871 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.973 307.871 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.266 307.871 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.922 307.871 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.738 307.871 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.457 307.871 Tm +[( )1]TJ +-494.109 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)78.9948(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.129 293.902 Tm +[(compl)1(i)1(cat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.609 293.902 Tm +[( )1(t)1(hi)0.998942(ngs )1(e)0.998942(v)1(e)1(n )0.998942(furt)1(he)0.998942(r )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.457 293.902 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.852 293.902 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.668 293.902 Tm +[(sci)0.998942(e)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 293.902 Tm +[( )1(has )1(i)0.996908(t)1.00505(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.34 293.902 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.563 293.902 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 279.934 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.117 279.934 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.41 279.934 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.547 279.934 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.359 279.934 Tm +[(ope)1(rat)1(i)1(onal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.863 279.934 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942<9420>1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.883 279.934 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.105 279.934 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.805 279.934 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 548.828 279.934 Tm +[( )1]TJ +-514.48 -13.9688 Td +[(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.1953 265.965 Tm +[(const)1(ruct)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.648 265.965 Tm +[( )1(of )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.91 265.965 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.133 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.945 265.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.016 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.828 265.965 Tm +[(i)0.998942(nt)1(e)0.998942(rpre)1.00301(t)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.234 265.965 Tm +[( )0.998942(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.824 265.965 Tm +[(compi)1(l)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.344 265.965 Tm +[( )1(.)1( )1(J)1(ust)1( )1(as )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 251.996 Tm +[(i)1(nt)1(e)1(rpre)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.754 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.566 251.996 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.277 251.996 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.09 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.906 251.996 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.727 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.543 251.996 Tm +[(pe)1(rform)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.844 251.996 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.656 251.996 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.793 251.996 Tm +[( )0.998942(i)0.998942(nt)1(e)1(rpre)1(t)1(at)0.998942(i)0.998942(ons )1<9420>0.998942(i)1(n )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.215 251.996 Tm +[(he)1(rme)1(ne)1(ut)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.199 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.016 251.996 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.262 251.996 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.559 251.996 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 238.027 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8594 238.027 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.6758 238.027 Tm +[(e)1(x)1(pl)1(i)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.391 238.027 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.301 238.027 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.695 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.508 238.027 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.879 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.691 238.027 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.258 238.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.555 238.027 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.688 238.027 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.379 238.027 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 238.027 Tm +[( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 432.1 237.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 440.08 238.027 Tm +[(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.188 238.027 Tm +[(l)1(i)0.996908(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.379 238.027 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 224.059 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 224.059 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.066 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.879 224.059 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.648 224.059 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.41 224.059 Tm +[(w)0.998942(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.324 224.059 Tm +[( )0.998942(,)0.998942( )0.998942(si)1(nce)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.129 224.059 Tm +[(compi)0.998942(l)0.998942(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.648 224.059 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.465 224.059 Tm +[(const)1(ruct)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.918 224.059 Tm +[( )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 210.09 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 210.09 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.906 210.09 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.125 210.09 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(de)1(not)1(e)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.457 210.09 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.207 210.09 Tm +[( )0.998942(but)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.07 210.09 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.805 210.09 Tm +[( )1]TJ +-442.457 -13.9688 Td +[(mani)1(pul)1(at)1(i)1(ons )1(of )1(sy)1(mbol)1(s )1(.)1( )1(W)1(hat)0.998942( )0.998942(mi)1(ght)0.998942( )1(more)1( )0.998942(sui)0.998942(t)1(abl)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.766 196.121 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.547 196.121 Tm +[( )0.998942(cal)0.998942(l)0.998942(e)0.996908(d )1(t)1(he)1( )1(se)1(mant)0.996908(i)1(cs )1(of )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 182.152 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 182.152 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 182.152 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 182.152 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(re)1(si)1(de)1(s )0.998942(i)0.998942(n )0.998942(t)1(he)1( )0.998942(sy)1(mbol)0.998942(s )0.998942(w)1(i)0.998942(t)0.998942(h )1(w)0.998942(hi)0.998942(ch )1(t)1(hose)1( )1(ope)1(rat)1(i)1(ons )1(are)0.996908( )1]TJ +-105.504 -13.9688 Td +[(de)1(not)1(e)1(d )1(i)1(n )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.281 168.184 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.504 168.184 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.215 168.184 Tm +[(E)1(ngl)0.998942(i)0.998942(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.949 168.184 Tm +[( )0.998942(w)1(ords )1(l)0.998942(i)0.998942(k)0.998942(e)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.648 168.184 Tm +[( )1(i)1(f )1(,)1( )1<9420>0.996908<9320>1(t)1(he)1(n )0.996908(,)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.906 168.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.043 168.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.855 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.992 168.184 Tm +[( )1(e)1(l)0.996908(se)1( )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.4297 154.215 Tm +[( )1(for )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.0898 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2266 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.0391 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.1758 154.215 Tm +[( )1(w)1(hi)1(l)1(e)1( )1(,)1( )1<9420>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.16 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.293 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.109 154.215 Tm +[(got)1(o)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.063 154.215 Tm +[( )1(,)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.504 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.641 154.215 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.832 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.969 154.215 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.781 154.215 Tm +[(pri)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.59 154.215 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.031 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.168 154.215 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.363 154.215 Tm +[(conjunct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.547 154.215 Tm +[( )0.998942(w)1(i)0.998942(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.836 154.215 Tm +[(ari)0.996908(t)1.00505(hme)0.992839(t)1.00505(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.969 154.215 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 140.246 Tm +[(punct)1(uat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.523 140.246 Tm +[( )1(sy)1(mbol)1(s )1(;)0.998942( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.609 140.246 Tm +[(al)1(phabe)1(t)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.332 140.246 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.145 140.246 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.055 140.246 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942(w)0.998942(ords )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.652 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.465 140.246 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.121 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.566 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.699 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.648 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 140.246 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.949 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.391 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.527 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.34 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.477 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 126.277 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.7539 126.277 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1953 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.332 126.277 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.523 126.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.66 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.473 126.277 Tm +[(past)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.391 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.207 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.34 126.277 Tm +[( )1(;)1( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 126.277 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.926 126.277 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.742 126.277 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.652 126.277 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.363 126.277 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.699 126.277 Tm +[( )0.998942(as )1(sy)1(mbol)0.996908(s )1(l)1(i)0.996908(k)1(e)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.004 126.277 Tm +[(t)1(rash)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 552.602 126.277 Tm +[( )1]TJ +-518.254 -13.9688 Td +[(can )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.3945 112.309 Tm +[(F)56.0115(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.715 112.309 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.125 112.309 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.113 112.309 Tm +[( )0.998942(st)1(at)0.998942(e)1(s )1(t)0.998942(hat)1( )0.998942(t)0.998942(he)1( )0.998942(si)1(gns )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.625 112.309 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.281 112.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.098 112.309 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.816 112.309 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.629 112.309 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.699 112.309 Tm +[( )1(are)1( )1]TJ +-477.352 -13.9688 Td +[(arbi)1(t)1(rary)1(2 )1(be)1(cause)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174 98.3398 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.156 98.3398 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.621 98.3398 Tm +[(cul)0.998942(t)1(ural)0.998942(-)1(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 324.176 98.3398 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.988 98.3398 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.887 98.3398 Tm +[( )0.998942(t)1(hat)1( )1(assi)1(gns )0.996908(phone)0.996908(me)1(s )1(t)1(o )1.00505]TJ +-360.539 -13.9688 Td +[(conce)1(pt)1(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9492 84.3711 Tm +[(Li)1(k)0.998942(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.496 84.3711 Tm +[( )1(,)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.043 84.3711 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.203 84.3711 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.664 84.3711 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.23 84.3711 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.047 84.3711 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.941 84.3711 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.617 84.3711 Tm +[(assi)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.336 84.3711 Tm +[( )1(sy)1(mbol)0.996908(s )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.047 84.3711 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.695 84.3711 Tm +[( )1]TJ +-515.348 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(.)1( )1(B)0.998942(ut)1( )1(just)1( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.48 70.4023 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.047 70.4023 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.863 70.4023 Tm +[(choi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.195 70.4023 Tm +[( )0.998942(of )0.998942(phone)1(me)1(s )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.789 70.4023 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.957 70.4023 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.77 70.4023 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.84 70.4023 Tm +[( )1(i)1(s )1]TJ +-462.492 -13.9688 Td +[(re)1(st)1(rai)1(ne)1(d )1(by)1( )1(w)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.754 56.4336 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.473 56.4336 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.285 56.4336 Tm +[(v)1(oi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.949 56.4336 Tm +[( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 283.184 56.4336 Tm +[(pronounce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.059 56.4336 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.969 56.4336 Tm +[(assi)1(gnme)0.992839(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.719 56.4336 Tm +[( )1(of )1(sy)1(mbol)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 42.4648 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 42.4648 Tm +[( )1(ope)1(rat)1(i)1(ons )1(i)1(s )1(l)1(i)1(mi)1(t)1(e)1(d )0.998942(t)1(o )0.998942(w)0.998942(hat)1( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.488 42.4648 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.273 42.4648 Tm +[( )0.998942(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 319.1 42.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 327.689 42.4648 Tm +[(i)0.998942(ci)0.998942(e)1(nt)0.998942(l)0.998942(y)1( )0.998942(proce)1(sse)1(d )1(by)0.996908( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.316 42.4648 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.965 42.4648 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Page: (1) 2 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +4.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 2382.000000 0 rlineto 0 3369.000000 rlineto -2382.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +17 0 obj +<> +/Contents 18 0 R +>> +endobj +%%EndPageSetup +18 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(and )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.207 801.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.02 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.832 801.516 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.82 801.516 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.496 801.516 Tm +[(humans.)1.00199(3)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.824 801.516 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.18 801.516 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.625 801.516 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.063 801.516 Tm +[(ope)1(rabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.758 801.516 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 801.516 Tm +[(usabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.789 801.516 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(obv)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.9805 787.547 Tm +[( )1(i)1(n )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.023 787.547 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.047 787.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.488 787.547 Tm +[(U)1(ni)0.998942(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.938 787.547 Tm +[( )0.998942(commands )1(.)0.998942( )0.998942(O)0.998942(ri)1(gi)0.998942(nal)0.998942(l)1(y)0.998942( )0.998942(use)1(d )1(on )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.957 787.547 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.203 787.547 Tm +[( )1(t)1(e)1(rmi)0.996908(nal)0.996908(s )1(,)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(ope)1(rat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.8594 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6719 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.809 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.621 773.578 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.844 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.977 773.578 Tm +[( )1(w)1(as )1(abbre)1(v)0.998942(i)0.998942(at)1(e)1(d )0.998942(t)1(o )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.066 773.578 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.332 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.148 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.281 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.098 773.578 Tm +(cp)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.5 773.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.941 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.078 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.891 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.84 773.578 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.324 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.141 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.273 773.578 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.086 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.898 773.578 Tm +[(mv)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.059 773.578 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.5 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.637 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.449 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.586 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.398 773.578 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.055 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.1563 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.1055 759.609 Tm +[(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.1016 759.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.5469 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.6797 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.496 759.609 Tm +[(e)1(t)1(c.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.953 759.609 Tm +[( )1(,)1( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.777 759.609 Tm +[(orde)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.258 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.934 759.609 Tm +[(cut)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 223.207 759.609 Tm +[( )0.998942(dow)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.742 759.609 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.391 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.207 759.609 Tm +[(me)1(mory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.805 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.621 759.609 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.609 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.051 759.609 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.301 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.113 759.609 Tm +[(pape)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.469 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 745.641 Tm +[(consumpt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.582 745.641 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.402 745.641 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.121 745.641 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 195.938 745.641 Tm +[(t)1(y)0.998942(pi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.469 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.281 745.641 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 245.3 745.6 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 253.893 745.641 Tm +[(ort)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.691 745.641 Tm +[( )0.998942(at)1( )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.766 745.641 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.559 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.371 745.641 Tm +[(t)0.998942(i)1(me)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.512 745.641 Tm +[( )0.998942(.)0.998942( )0.998942(Any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.945 745.641 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.34 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.152 745.641 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.449 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(i)1(s )1(t)1(hus )1.00199(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.262 731.672 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.828 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.641 731.672 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.086 731.672 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1(t)0.998942(he)1( )0.998942(const)1(rai)0.998942(nt)1(s )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.375 731.672 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.027 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.84 731.672 Tm +[(de)0.996908(si)1<676E97>]TJ +-466.492 -13.9688 Td +[(w)1(hi)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.6328 717.703 Tm +[( )1(i)1(s )1(far )1(from )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142 717.703 Tm +[(obje)1(ct)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.992 717.703 Tm +[( )1(,)1( )0.998942(but)1( )0.998942(base)1.00301(d )0.998942(on )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.84 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.559 717.703 Tm +[( )0.998942(choi)0.998942(ce)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.309 717.703 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.984 717.703 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.809 717.703 Tm +[(t)1(hi)0.996908(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 525.445 717.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 529.258 717.703 Tm +[(st)1(y)1(l)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.957 717.703 Tm +[( )1]TJ +-523.609 -13.9688 Td +[(i)1(t)1(se)1(l)1(f )1(4\227and )1(t)1(he)1( )1(e)1(qual)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.777 703.734 Tm +[(subje)1(ct)0.998942(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.43 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.242 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.969 703.734 Tm +[( )0.998942(pre)1(fe)1(re)1(nce)0.998942(s )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.836 703.734 Tm +[(i)0.998942(nv)1(ol)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.27 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.086 703.734 Tm +[(fuz)1(z)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.68 703.734 Tm +[( )1(fact)1.00505(ors )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(re)1(adabi)1(l)1(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9727 689.766 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 111.414 689.766 Tm +[(e)1(l)1(e)1(gance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.844 689.766 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.664 689.766 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.488 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.305 689.766 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 250.3 689.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 258.917 689.766 Tm +[(i)0.998942(ci)0.998942(e)1(ncy)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.656 689.766 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)1( )0.998942(sy)1(mbol)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.262 689.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.656 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.473 689.766 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.766 689.766 Tm +[( )1]TJ +-479.418 -13.9688 Td +[(l)1(anguage)1(s )1(i)1(ne)1(v)1(i)1(t)0.998942(abl)1(y)1( )1(do )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.484 675.797 Tm +[(hav)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.246 675.797 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.063 675.797 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.965 675.797 Tm +[( )0.998942(connot)1(at)0.998942(i)0.998942(ons )1(si)0.998942(mpl)0.998942(y)1( )0.998942(be)1(cause)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.918 675.797 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.406 675.797 Tm +[( )1(e)1(x)1(i)1(st)1( )1(no )1]TJ +-451.059 -13.9688 Td +[(sy)1(mbol)1(s )1(w)1(i)1(t)1(h )1(w)1(hi)1(ch )1(humans )1(w)0.998942(oul)0.998942(d )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.797 661.828 Tm +[(associ)0.998942(at)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.129 661.828 Tm +[( )0.998942(some)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.621 661.828 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.23 661.828 Tm +[( )1(.)1( )1(B)1(ut)1( )1(sy)1(mbol)0.996908(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.309 661.828 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.125 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.938 661.828 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.762 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(de)1(not)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0078 647.859 Tm +[( )1(any)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.297 647.859 Tm +[(se)1(mant)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.199 647.859 Tm +[( )1(st)1(at)1(e)1(me)1(nt)0.998942(s )1(,)0.998942( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(,)0.998942( )0.998942(t)1(he)1(y)0.998942( )0.998942(do )1(not)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.043 647.859 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.75 647.859 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.563 647.859 Tm +[(me)0.996908(ani)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.176 647.859 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908(i)0.996908(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.41 647.859 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.637 647.859 Tm +[( )1]TJ +-511.289 -13.9688 Td +[(t)1(e)1(rms )1(;)1( )1(humans )1.00199(me)1(t)1(aphori)1(cal)0.996908(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.719 633.891 Tm +[(re)1(ad)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.391 633.891 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.207 633.891 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.816 633.891 Tm +[( )0.998942(i)0.998942(nt)1(o )0.998942(t)0.998942(he)1(m )0.998942(t)1(hrough )0.996908(associ)1.00505(at)1(i)1(ons )1(t)1(he)0.996908(y)1( )1]TJ +-277.469 -13.9688 Td +[(mak)1(e)1( )1(.)1( )1(Language)1.00199(s )1(w)0.998942(i)1(t)1(hout)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.117 619.922 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.02 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.836 619.922 Tm +[(de)1(not)0.998942(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.16 619.922 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(hi)0.998942(st)1(ori)0.996908(cal)1(l)1(y)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.863 619.922 Tm +[(ne)0.996908(w)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.965 619.922 Tm +[( )1(phe)0.996908(nome)0.996908(na )1(;)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 605.953 Tm +[( )1(formul)1(as )1(are)1( )1(t)1(he)1(i)0.998942(r )0.998942(ol)0.998942(de)1(st)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.215 605.953 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.238 605.953 Tm +[( )0.998942(.)0.998942( )0.998942(In )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.965 605.953 Tm +[(compari)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.813 605.953 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.488 605.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.145 605.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.957 605.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.676 605.953 Tm +[( )1]TJ +-508.328 -13.9688 Td +[(l)1(anguage)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.484 591.984 Tm +[(mul)1(t)1(i)1(t)1(ude)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.422 591.984 Tm +[( )1(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.719 591.984 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.938 591.984 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(i)0.998942(s )1(of )0.996908(l)1(e)0.998942(sse)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.992 591.984 Tm +[(si)1(gni)0.992839]TJ +/R14 1 Tf +0.1 0 0 -0.1 461.2 591.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 469.204 591.984 Tm +[(cance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.668 591.984 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(cri)1(t)1(e)1(ri)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.0938 578.016 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.387 578.016 Tm +[(T)1(uri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.105 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.918 578.016 Tm +[(compl)1(e)1(t)1(e)0.998942(ne)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.934 578.016 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.199 578.016 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.418 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.234 578.016 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.301 578.016 Tm +[( )1(,)1( )1(t)1(hat)1( )1(i)1(s )1(,)1( )1(t)1.00505(hat)0.996908( )1(any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(comput)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.672 564.047 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.902 564.047 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.688 564.047 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )0.998942(i)0.998942(n )0.998942(i)0.998942(t)1( )0.998942(,)0.998942( )0.998942(me)1(ans )1(t)0.998942(hat)1( )0.998942(e)1(v)0.998942(e)1(ry)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.277 564.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.5 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.313 564.047 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.383 564.047 Tm +[( )1(i)1(s )1(,)1( )1]TJ +-477.035 -13.9688 Td +[(formal)1(l)1(y)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.5508 550.078 Tm +[(spe)1(ak)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.168 550.078 Tm +[( )1(,)1( )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.824 550.078 Tm +[(ri)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 201.3 550.1 Tm +<00>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.922 550.078 Tm +[( )0.998942(on )0.998942(e)1(v)1(e)0.998942(ry)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.816 550.078 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.43 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.246 550.078 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.465 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.281 550.078 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.348 550.078 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.793 550.078 Tm +[(Not)1.00505(hi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.316 550.078 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 539.547 550.078 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.332 550.078 Tm +[( )1]TJ +-519.984 -13.9688 Td +[(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126 536.109 Tm +[(T)1(uri)1(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.586 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.398 536.109 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.469 536.109 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.281 536.109 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.617 536.109 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.559 536.109 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.742 536.109 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.898 536.109 Tm +[(coul)0.998942(dn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.82 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.633 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.449 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.262 536.109 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 434.086 536.109 Tm +[( )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.09 536.109 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.871 536.109 Tm +[( )1(e)1(x)1(pre)0.996908(sse)1(d )1]TJ +-446.523 -13.9688 Td +[(i)1(n )1(anot)1(he)1(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.039 522.141 Tm +[(T)1(uri)1(ngcompl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.625 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.438 522.141 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.508 522.141 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.32 522.141 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.656 522.141 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.598 522.141 Tm +[(Li)0.998942(sp)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.246 522.141 Tm +[( )0.998942(\( )1(or )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.332 522.141 Tm +[(F)56.011(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.402 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.848 522.141 Tm +[(Smal)1(l)0.996908(t)1(al)1(k)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.363 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.805 522.141 Tm +[(J)1(av)0.996908(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.703 522.141 Tm +[( )1(.)1(.)1(.)1( )1(\) )1]TJ +-483.355 -13.9688 Td +[(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.7266 508.172 Tm +[(v)1(i)1(ce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.1641 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.9805 508.172 Tm +[(v)1(e)1(rsa)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.91 508.172 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.895 508.172 Tm +[(ul)1(t)1(i)1(mat)0.998942(e)1(l)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.195 508.172 Tm +[( )0.998942(prov)1(e)1(s )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.973 508.172 Tm +[(i)0.998942(mport)1(ance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 508.172 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.656 508.172 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.375 508.172 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.566 508.172 Tm +[(cul)1(t)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.133 508.172 Tm +[( )1(fact)1.00505(ors )1]TJ +-469.785 -13.9688 Td +[(i)1(n )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.7266 494.203 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.949 494.203 Tm +[( )1(l)1(anguage)1.00199(s )1(:)0.998942( )1(w)0.998942(hi)0.998942(l)0.998942(e)1( )0.998942(t)1(he)0.998942(y)1( )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.305 494.203 Tm +[(i)0.998942(nt)1(e)0.998942(rchange)1.00301(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.422 494.203 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.617 494.203 Tm +[(re)1(gard)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.711 494.203 Tm +[( )1(t)1(o )1.00505(t)1(he)1(i)0.996908(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.426 494.203 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.723 494.203 Tm +[( )1]TJ +-522.375 -13.9688 Td +[(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 480.234 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.477 480.234 Tm +[( )1(funct)1(i)1(ons )1(,)1( )1(t)1(he)1(i)1(r )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.168 480.234 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 217.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 226.196 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.703 480.234 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.516 480.234 Tm +[(st)1(ruct)1(ure)1(s\227se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.133 480.234 Tm +[( )0.998942(de)1(scri)0.996908(pt)1(ors )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.25 480.234 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.469 480.234 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(st)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.0469 466.266 Tm +[( )1(i)1(n )1(w)1(hi)1(ch )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.344 466.266 Tm +[(al)1(gori)1(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.902 466.266 Tm +[( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.137 466.266 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.918 466.266 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.734 466.266 Tm +[(e)1(x)0.998942(pre)1(sse)1<64976C>1(e)0.998942(nd)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.57 466.266 Tm +[( )0.998942(t)1(he)0.998942(mse)1(l)1(v)0.998942(e)1(s )1(not)1( )1.00505(onl)0.996908(y)0.996908( )1.00505(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.203 466.266 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 491.6 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 500.231 466.266 Tm +[(e)1(re)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.738 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9883 452.297 Tm +[( )1(se)1(t)1(s )1(,)1( )1(but)1( )1(al)1(so )1(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.586 452.297 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 204 452.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 212.614 452.297 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.121 452.297 Tm +[( )0.998942(st)1(y)1(l)0.998942(e)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.086 452.297 Tm +[(t)0.998942(hi)1(nk)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.723 452.297 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.168 452.297 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.688 452.297 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.629 452.297 Tm +[(programmi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.848 452.297 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-458.5 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 438.328 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.773 438.328 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.066 438.328 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.723 438.328 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.207 438.328 Tm +[(T)1(uri)0.998942(ngi)1(ncompl)0.998942(e)1(t)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.176 438.328 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.57 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.383 438.328 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.68 438.328 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-440.332 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 424.359 Tm +[(const)1(rai)1(ne)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.016 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.832 424.359 Tm +[(subse)1.00199(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.48 424.359 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.777 424.359 Tm +[(T)1(uri)0.998942(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.363 424.359 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(T)1(hi)0.998942(s )1(promi)0.996908(ne)1(nt)0.996908(l)1(y)0.996908( )1(i)1(ncl)1(ude)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(mark)1(up)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.2969 410.391 Tm +[( )1(l)1(anguage)1.00199(s )1(\( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.648 410.391 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.984 410.391 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.926 410.391 Tm +[(HT)0.998942(M)0.998942(L)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.652 410.391 Tm +[( )0.998942(\) )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 267.6 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 275.582 410.391 Tm +[(l)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.535 410.391 Tm +[( )0.998942(format)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.707 410.391 Tm +[(ne)1(t)0.998942(w)1(ork)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.863 410.391 Tm +[( )0.998942(prot)1(ocol)1.00505(s )1(,)1( )1(and )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.531 410.391 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.254 410.391 Tm +[( )1]TJ +-522.906 -13.9688 Td +[(cont)1(rol)1(s )1(\( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.1094 396.422 Tm +[(se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.473 396.422 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.754 396.422 Tm +[(e)1(nt)1(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.922 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.734 396.422 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.871 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.684 396.422 Tm +[(Int)1(e)1(rface)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.23 396.422 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.047 396.422 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.18 396.422 Tm +[( )0.998942(\) )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.973 396.422 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.367 396.422 Tm +[( )0.998942(programs )1.00301(.)1( )1(In )1(most)1( )1(case)1(s )1.00505(,)1( )1]TJ +-307.02 -13.9688 Td +[(l)1(anguage)1(s )1(of )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.23 382.453 Tm +[(t)1(y)1(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.613 382.453 Tm +[( )1(are)1( )1(re)1(st)0.998942(rai)1(ne)1(d )0.998942(from )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.703 382.453 Tm +[(de)1(not)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.512 382.453 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.324 382.453 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.285 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 368.484 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 368.484 Tm +[(se)1(curi)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.441 368.484 Tm +[( )1(re)1(asons\227t)0.998942(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.379 368.484 Tm +[(pre)1(v)1(e)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.328 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.145 368.484 Tm +[(v)1(i)0.998942(rus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.383 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.199 368.484 Tm +[(i)0.998942(nfe)1(ct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.641 368.484 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.836 368.484 Tm +[(re)1(mot)1.00505(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.199 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.016 368.484 Tm +[(t)1(ak)1(e)1(ov)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.207 368.484 Tm +[( )1(.)1( )1(T)1(hi)0.996908(s )1]TJ +-458.859 -13.9688 Td +[(show)1(s )1(how)1( )1(t)0.998942(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.418 354.516 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.609 354.516 Tm +[( )1(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.871 354.516 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.645 354.516 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.461 354.516 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.527 354.516 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.121 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.313 354.516 Tm +[( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.344 354.516 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.992 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.809 354.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.102 354.516 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(Acce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8711 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5469 340.547 Tm +[(hardw)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.113 340.547 Tm +[( )1(funct)1(i)1(ons )0.998942(i)0.998942(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.941 340.547 Tm +[(l)0.998942(i)0.998942(mi)0.998942(t)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.441 340.547 Tm +[( )0.998942(not)1( )0.998942(onl)0.998942(y)1( )0.998942(t)0.998942(hrough )1.00301(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 340.547 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.07 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.887 340.547 Tm +[(appl)0.996908(i)0.996908(cat)1.00505(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.566 340.547 Tm +[( )1(,)1( )1]TJ +-497.219 -13.9688 Td +[(but)1( )1(t)1(hrough )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.324 326.578 Tm +[(sy)1(nt)1(ax)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.734 326.578 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.016 326.578 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.926 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.742 326.578 Tm +[(appl)1(i)0.998942(cat)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.422 326.578 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.363 326.578 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.352 326.578 Tm +[( )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.383 326.578 Tm +[(st)1(ori)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.574 326.578 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.766 326.578 Tm +[(t)1(ransmi)0.996908(t)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.477 326.578 Tm +[( )1]TJ +-519.129 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 312.609 Tm +[(i)1(nformat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.93 312.609 Tm +[( )1(i)1(t)1( )1(proce)1(sse)1(s )1(.)0.998942( )0.998942(T)78.9887(o)]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.813 312.609 Tm +[(name)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.176 312.609 Tm +[( )0.998942(one)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.859 312.609 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.254 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.07 312.609 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 403.363 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.18 312.609 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.246 312.609 Tm +[( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.031 312.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.164 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 298.641 Tm +[( )1(,)1( )1<9420>1(anot)1(he)0.998942(r )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.121 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.258 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.07 298.641 Tm +[(prot)1(ocol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.543 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.988 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.121 298.641 Tm +[( )0.998942(and )1(y)0.998942(e)1(t)1( )0.998942(anot)1(he)1(r )0.996908(a )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.113 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.246 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 464.1 298.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 472.054 298.641 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.004 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.82 298.641 Tm +[(format)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.578 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.391 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.527 298.641 Tm +[( )1(i)1(s )1]TJ +-503.18 -13.9688 Td +[(me)1(re)1(l)1(y)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.0664 284.672 Tm +[(conv)1(e)1(nt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.961 284.672 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.375 284.672 Tm +[(nome)1(ncl)0.998942(at)0.998942(ure)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.637 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.453 284.672 Tm +[(i)0.998942(ndi)1(cat)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.484 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.297 284.672 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 344.7 284.7 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 353.325 284.672 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.832 284.672 Tm +[( )0.998942(de)1(gre)1(e)1(s )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.504 284.672 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.25 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(re)1(st)1(rai)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.4453 270.703 Tm +[( )1(bui)1(l)1(t)1( )1(i)1(nt)1(o )1(t)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.086 270.703 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.277 270.703 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.539 270.703 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.934 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.75 270.703 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.043 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.859 270.703 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.926 270.703 Tm +[( )1(.)1( )1(In )1(i)0.996908(t)1(s )1.00505(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 256.734 Tm +[(pow)1(e)1(rful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.3711 256.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.1836 256.734 Tm +[(T)1(uri)1(ng-)1(compl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.824 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.641 256.734 Tm +[(supe)1(rse)1.00301(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.129 256.734 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.57 256.734 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.965 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.781 256.734 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.074 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.891 256.734 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.957 256.734 Tm +[( )1(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.582 256.734 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.652 256.734 Tm +[( )1(t)1(hat)1( )1]TJ +-465.305 -13.9688 Td +[(e)1(x)1(e)1(cut)1(e)1(s )1(.)1( )1(As )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.406 242.766 Tm +[(magi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.172 242.766 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.363 242.766 Tm +[(spe)1(cul)0.998942(at)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.289 242.766 Tm +[( )0.998942(conce)1(pt)0.998942(s )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.555 242.766 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.625 242.766 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.535 242.766 Tm +[(w)1(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.449 242.766 Tm +[( )1]TJ +-460.102 -13.9688 Td +[(aut)1(omat)1(i)1(cal)1(l)1(y)1( )1(pe)1(rforms )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.355 228.797 Tm +[(ope)1(rat)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.867 228.797 Tm +[( )0.998942(.)0.998942( )0.998942(Y)87.0097(e)1(t)0.998942( )0.998942(t)1(hi)0.998942(s )0.998942(i)1(s )0.998942(not)1( )0.998942(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.551 228.797 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.332 228.797 Tm +[( )0.998942(confuse)0.996908(d )1(w)1(i)0.996908(t)1.00505(h )0.996908(w)1(hat)1( )1]TJ +-355.984 -13.9688 Td +[(l)1(i)1(ngui)1(st)1(i)1(cs )1(cal)1(l)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.004 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.137 214.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.953 214.828 Tm +[(pe)1(rformat)0.998942(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.949 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.762 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.898 214.828 Tm +[( )0.998942(or )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.488 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.621 214.828 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.438 214.828 Tm +[(i)0.998942(l)0.998942(l)0.998942(ocut)1(i)0.998942(onary)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.906 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.723 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.855 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.672 214.828 Tm +[(spe)1(e)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.164 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.977 214.828 Tm +[(act)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.676 214.828 Tm +[( )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.336 214.828 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.359 214.828 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +-477.012 -13.9688 Td +[(w)1(ords )1(of )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.684 200.859 Tm +[(judge)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.598 200.859 Tm +[( )1(w)1(ho )1(pronounce)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.266 200.859 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.945 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.359 200.859 Tm +[(l)0.998942(e)1(ade)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.973 200.859 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.785 200.859 Tm +[(gi)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.332 200.859 Tm +[( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.117 200.859 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.383 200.859 Tm +[( )1(,)1( )1(or )1.00505(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 186.891 Tm +[(l)1(e)1(gi)1(sl)1(at)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.7383 186.891 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5547 186.891 Tm +[(passi)1.00199(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.953 186.891 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.738 186.891 Tm +[(l)1(aw)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.816 186.891 Tm +[(.)1( )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.094 186.891 Tm +[(e)1(x)0.998942(e)1(cut)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.125 186.891 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.422 186.891 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.816 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.629 186.891 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.926 186.891 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 172.922 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.543 172.922 Tm +[(mani)1(pul)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.66 172.922 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.922 172.922 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.574 172.922 Tm +[( )0.998942(,)0.998942( )0.998942(not)1( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.574 172.922 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.508 172.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.324 172.922 Tm +[(pe)1(rformance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.328 172.922 Tm +[( )1(base)1(d )0.996908(on )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 158.953 Tm +[( )1(conv)1(e)1(nt)1(i)1(ons )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.75 158.953 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.086 158.953 Tm +[( )1(as )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.027 158.953 Tm +[(acce)0.998942(pt)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.477 158.953 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.258 158.953 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.938 158.953 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.383 158.953 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.238 158.953 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.094 158.953 Tm +[(be)0.996908(come)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.301 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 144.984 Tm +[(pe)1(rformat)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.344 144.984 Tm +[( )1(onl)1(y)1( )1(t)1(hrough )1.00199(t)1(he)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.473 144.984 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.406 144.984 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.223 144.984 Tm +[(i)0.998942(mpact)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.816 144.984 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942(proce)1(sse)1.00301(s )0.998942(t)1(he)0.996908(y)0.996908( )1.00505(t)1(ri)0.996908(gge)0.996908(r )1(,)1( )1(e)1(spe)0.996908(ci)1(al)1(l)1(y)0.996908( )1]TJ +-268.469 -13.9688 Td +[(w)1(he)1(n )1(t)1(he)1(i)1(r )1(out)1(put)1(s )1(are)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.547 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.363 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 193.176 131.016 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.813 131.016 Tm +[(cri)0.998942(t)1(i)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(che)1(ck)0.998942(e)0.998942(d )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.684 131.016 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.387 131.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.203 131.016 Tm +[(W)83.0129(e)1(i)0.998942(z)0.998942(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.594 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.406 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.223 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.035 131.016 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.195 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.008 131.016 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.918 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(psy)1(chot)1(he)1(rapi)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.684 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.496 117.047 Tm +[(E)1(l)1(i)1(z)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.41 117.047 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.82 117.047 Tm +[(si)1(mpl)0.998942(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.816 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.633 117.047 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.227 117.047 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(sy)1(nt)1(act)0.998942(i)1(cal)0.998942(l)0.998942(y)0.998942( )1(t)0.998942(ransforms )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.902 117.047 Tm +[(i)1(nput)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.703 117.047 Tm +[( )1(phrase)0.996908(s )1(,)1( )1]TJ +-464.355 -13.9688 Td +[(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 59.125 103.078 Tm +[(cl)1(assi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.707 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.52 103.078 Tm +[(e)1(x)1(ampl)1(e)1(,)1(5)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.992 103.078 Tm +[( )1(as )1(i)1(s )0.998942(t)1(he)0.998942( )1(1987 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.566 103.078 Tm +[(Ne)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.254 103.078 Tm +[(Y)86.9853(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.363 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.18 103.078 Tm +[(St)0.998942(ock)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.254 103.078 Tm +[(E)1(x)0.998942(change)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.895 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.711 103.078 Tm +(crash)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.207 103.078 Tm +[( )1(t)1(hat)1( )1(i)1(nv)0.996908(ol)1(v)0.996908(e)1(d )1]TJ +-432.859 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 89.1094 Tm +[(chai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.4844 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.3008 89.1094 Tm +[(re)1(act)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.625 89.1094 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.922 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.055 89.1094 Tm +[( )1(se)1(l)1(l)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.621 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.754 89.1094 Tm +[( )1(re)0.998942(comme)1(ndat)1(i)0.998942(ons )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.637 89.1094 Tm +[(day)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.254 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.066 89.1094 Tm +[(t)0.998942(radi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.711 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.523 89.1094 Tm +[(soft)1.00505(w)1(are)0.996908(.)1.00505(6)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.883 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.699 89.1094 Tm +[(W)46(ri)0.996908(t)1.00505(i)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.137 89.1094 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 75.1406 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.59 75.1406 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.66 75.1406 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.285 75.1406 Tm +[(phrasi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.992 75.1406 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(for )0.996908(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.039 75.1406 Tm +[(ut)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.25 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.063 75.1406 Tm +[(i)1(di)0.996908(ot)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.469 75.1406 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 61.1719 Tm +[(proje)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.3555 61.1719 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6484 61.1719 Tm +[(Art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 119.7 61.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 127.68 61.1719 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.266 61.1719 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.082 61.1719 Tm +[(Int)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.32 61.1719 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.809 61.1719 Tm +[(prov)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.332 61.1719 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.488 61.1719 Tm +[(i)0.998942(nt)1(e)0.998942(l)1(l)0.998942(i)0.998942(ge)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.824 61.1719 Tm +[( )0.998942(i)0.998942(s )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.664 61.1719 Tm +[(mat)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.68 61.1719 Tm +[( )1(of )1(a )1.00505]TJ +-458.332 -13.9688 Td +(su)Tj +/R14 1 Tf +0.1 0 0 -0.1 48.1 47.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 56.7516 47.2031 Tm +[(i)1(ci)1(e)1(nt)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.238 47.2031 Tm +[(massi)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.809 47.2031 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.621 47.2031 Tm +[(l)1(ay)1(e)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 207.48 47.2031 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.773 47.2031 Tm +[(fool)0.998942(proof)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.813 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 47.2031 Tm +[(re)1(ci)0.998942(pe)1<739769>0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.531 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.344 47.2031 Tm +[(l)0.998942(i)0.998942(ngui)1(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.535 47.2031 Tm +[( )1(t)1(e)1(rms )1(,)1( )1(t)1(hat)1( )1(se)1(mant)0.996908(i)1(cs )1]TJ +-379.188 -13.9688 Td +[(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 48.1563 33.2344 Tm +[(not)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.9102 33.2344 Tm +[( )1(e)1(l)1(se)1( )1(but)1( )1(\( )1(more)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.535 33.2344 Tm +[(e)1(l)1(aborat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.352 33.2344 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.66 33.2344 Tm +[(sy)1(nt)1(ax)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.07 33.2344 Tm +[( )0.998942(.)0.998942( )0.998942(As )0.998942(l)1(ong )0.998942(as )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.566 33.2344 Tm +[(A.)0.998942(I)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.789 33.2344 Tm +[( )0.998942(.)0.998942( )1(fai)1(l)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.336 33.2344 Tm +[(de)0.996908(l)1(i)1(v)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.414 33.2344 Tm +[( )1(t)1(hi)0.996908(s )1.00505]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Page: (2) 3 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +4.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 2382.000000 0 rlineto 0 3369.000000 rlineto -2382.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +20 0 obj +<> +/Contents 21 0 R +>> +endobj +%%EndPageSetup +21 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +(proof)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.6563 801.516 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.566 801.516 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 113 801.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 121.594 801.516 Tm +[(e)1(re)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.102 801.516 Tm +[( )1(be)1(t)1(w)1(e)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.539 801.516 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.195 801.516 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.43 801.516 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.824 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.637 801.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.934 801.516 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-441.586 -13.9688 Td +[(cont)1(i)1(nue)1(s )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.074 787.547 Tm +[(e)1(x)1(i)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.762 787.547 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.582 787.547 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.652 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.465 787.547 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.496 787.547 Tm +[( )0.998942(t)1(hrough )1(comput)0.998942(e)1(rs )0.996908(re)1(mai)0.996908(ns )1(re)0.996908(st)1.00505(rai)0.996908(ne)1(d )0.996908]TJ +-271.148 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 773.578 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9805 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.7969 773.578 Tm +[(st)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.762 773.578 Tm +[( )1(mani)1(pul)1(at)1(i)1(ons )1(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.262 773.578 Tm +[(fact)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.398 773.578 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(aft)1(e)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.625 773.578 Tm +[(i)0.998942(ni)0.998942(t)1(i)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.684 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 773.578 Tm +[(e)1(nt)0.998942(husi)0.996908(asm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.293 773.578 Tm +[( )1(has )1(made)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.094 773.578 Tm +[(many)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.137 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +[(e)1(x)1(pe)1(ri)1(me)1(nt)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.598 759.609 Tm +[( )1(poe)1(t)1(s )1(si)1(nce)1( )1(t)1(he)0.998942( )0.998942(1950s )1.00301(abandon )1(t)0.998942(he)1(i)0.998942(r )1(e)1(x)0.998942(pe)1(ri)0.998942(me)1(nt)1(s )1(w)1.00505(i)0.996908(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.469 759.609 Tm +[(comput)1(e)1(r-)0.996908]TJ +-419.121 -13.9688 Td +[(ge)1(ne)1(rat)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.457 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.27 745.641 Tm +[(t)1(e)1(x)1(t)1(s.)1(7)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.391 745.641 Tm +[( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.855 745.641 Tm +[(hi)1(st)1(ory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.141 745.641 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.438 745.641 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.242 745.641 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.867 745.641 Tm +[(ri)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.891 745.641 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(confusi)0.996908(ons )1(of )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.426 745.641 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.199 745.641 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 731.672 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.535 731.672 Tm +[( )1(l)1(anguage)1.00199(s )1(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.398 731.672 Tm +[(fal)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.094 731.672 Tm +[( )0.998942(hope)1(s )1(and )0.998942(promi)1(se)1(s )0.998942(t)1(hat)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.43 731.672 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.203 731.672 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-426.855 -13.9688 Td +[(w)1(oul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.9063 717.703 Tm +[(be)1(come)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.113 717.703 Tm +[( )1(more)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.184 717.703 Tm +[(l)1(i)1(k)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.234 717.703 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.047 717.703 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.703 717.703 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.52 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.238 717.703 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Among )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.684 717.703 Tm +[(unre)0.996908(al)0.996908(i)1(z)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.914 717.703 Tm +[( )1(hope)1(s )1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 703.734 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 55.9 703.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 63.8676 703.734 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.4531 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2656 703.734 Tm +[(i)1(nt)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.605 703.734 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 172.047 703.734 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.582 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.395 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.121 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.934 703.734 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.578 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.395 703.734 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.582 703.734 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(i)1(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.504 703.734 Tm +[(promi)0.996908(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.625 703.734 Tm +[( )1(of )1(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.617 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.75 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(i)1(nt)1(ui)1(t)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8438 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6563 689.766 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 689.766 Tm +[( )1(or )1(,)1( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.871 689.766 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.859 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.676 689.766 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.027 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.844 689.766 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.305 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.117 689.766 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.934 689.766 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.746 689.766 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.906 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 246.719 689.766 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.758 689.766 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.203 689.766 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.336 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.152 689.766 Tm +[(humane)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.973 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.785 689.766 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.43 689.766 Tm +[( )0.998942(,)1( )1<9420>1(8 )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.652 689.766 Tm +(major)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.867 689.766 Tm +[( )1(curre)0.996908(nt)1(s )1]TJ +-464.52 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 675.797 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6797 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.4961 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.207 675.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.652 675.797 Tm +[(D)1(i)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.445 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.258 675.797 Tm +[(i)1(nst)1(al)1(l)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.402 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.219 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.93 675.797 Tm +[( )0.998942(t)1(y)0.998942(pi)1(cal)0.998942(l)0.998942(y)1( )0.998942(mi)0.998942(spe)1(rce)1(i)0.998942(v)1(e)0.998942(s )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.051 675.797 Tm +[(programme)0.992839(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.809 675.797 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(be)1(hav)1(i)1(ori)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.41 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.223 661.828 Tm +[(bl)1(ack)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.891 661.828 Tm +[( )1(box)1(e)1(s )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.578 661.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.715 661.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.527 661.828 Tm +[(i)0.998942(nt)1(e)0.998942(ract)1(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.172 661.828 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.613 661.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.75 661.828 Tm +[( )0.998942(and )1(some)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.621 661.828 Tm +[(di)0.998942(gi)1(t)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.473 661.828 Tm +[( )0.998942(art)1(i)1(st)1(s )1(are)1( )1(caught)0.996908( )1(i)1(n )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(mi)1(sconce)1(pt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.512 647.859 Tm +[( )1(t)1(hat)1( )1(t)1(he)1(y)1( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.332 647.859 Tm +[(ov)1(e)0.998942(rcome)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.602 647.859 Tm +[( )0.998942(w)1(hat)0.998942( )0.998942(t)1(he)1(y)0.998942( )1(se)0.998942(e)1( )0.998942(as )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.223 647.859 Tm +[(W)83.0119(e)1(st)1(e)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.227 647.859 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.039 647.859 Tm +[(mal)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.512 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.328 647.859 Tm +[(bi)0.996908(nari)0.996908(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.84 647.859 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 633.891 Tm +[( )1(l)1(anguage)1.00199(s )1(by)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.871 633.891 Tm +[(re)1(shapi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.68 633.891 Tm +[( )0.998942(t)1(he)0.998942(m )1(aft)0.998942(e)0.998942(r )1(romant)1(i)0.998942(ci)0.998942(z)1(e)0.998942(d )1(i)0.998942(mage)0.996908(s )1.00505(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.379 633.891 Tm +[(i)1(ndi)0.992839(ge)1(nous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 633.891 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 619.922 Tm +[( )1(l)1(anguage)1.00199(s )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.199 619.922 Tm +[(di)1(gi)1(t)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.051 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.867 619.922 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.262 619.922 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.855 619.922 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.473 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.289 619.922 Tm +[(machi)0.998942(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.938 619.922 Tm +[( )1(t)1(hat)1( )1(comput)1(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 605.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.898 605.953 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.965 605.953 Tm +[( )1(and )1(proce)1(sse)1(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.016 605.953 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.797 605.953 Tm +[( )0.998942(sy)1(mbol)0.998942(s )1(;)1( )1(i)0.996908(t)1( )1.00505(t)1(re)0.996908(at)1.00505(s )1(al)0.996908(l)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.23 605.953 Tm +[(dat)1<6197>]TJ +-449.883 -13.9688 Td +[(i)1(ncl)1(udi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.1289 591.984 Tm +[( )1(i)1(mage)1(s )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.449 591.984 Tm +(sounds\227as)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.441 591.984 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.258 591.984 Tm +[(t)0.998942(e)1(x)0.998942(t)1(ual)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.492 591.984 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hat)1( )0.998942(i)0.998942(s )0.998942(,)0.998942( )1(as )0.998942(chunk)1(s )0.998942(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.473 591.984 Tm +[(code)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.883 591.984 Tm +[( )1(sy)1(mbol)0.996908(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(Ne)1(l)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.8984 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.7109 578.016 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.691 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.504 578.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.32 578.016 Tm +[( )1(s )1(cri)1(t)1(e)1(ri)1(a )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.348 578.016 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.266 578.016 Tm +[( )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.207 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.34 578.016 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.156 578.016 Tm +[(di)0.998942(sjunct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.555 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.367 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.504 578.016 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.695 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.832 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.645 578.016 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.805 578.016 Tm +[( )1(,)1( )1<9420>1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.973 578.016 Tm +[(consi)1(st)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.871 578.016 Tm +[( )1]TJ +-512.523 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 564.047 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.551 564.047 Tm +[(si)1(ngl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.898 564.047 Tm +[( )1(e)1(nt)1(i)1(t)1(i)1(e)1(s )1(t)1(hat)0.998942( )1(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 235.6 564 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 244.19 564.047 Tm +[(e)1(r )0.998942(from )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.57 564.047 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.184 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.91 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.723 564.047 Tm +[(si)0.998942(ngl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.07 564.047 Tm +[( )1(e)1(nt)1(i)0.996908(t)1.00505(i)0.996908(e)1(s )1(,)1( )1(al)1(so )1.00505(appl)0.992839(i)1(e)1(s )1]TJ +-388.723 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 550.078 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.0625 550.078 Tm +[( )1]TJ +/R14 1 Tf +0.1 0 0 -0.1 92.9 550 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 100.858 550.078 Tm +[(l)1(e)1(s.)1(9 )1(T)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.102 550.078 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.711 550.078 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.008 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.141 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.957 550.078 Tm +[(di)0.998942(gi)1(t)0.998942(i)0.998942(z)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.746 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.559 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.695 550.078 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.18 550.078 Tm +[(st)1(ruct)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.734 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.551 550.078 Tm +[(anal)0.996908(og)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.332 550.078 Tm +[( )1(dat)1(a )1(as )1]TJ +-450.984 -13.9688 Td +[(numbe)1(rs )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.055 536.109 Tm +[(st)1(ore)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.098 536.109 Tm +[( )1(t)1(he)1(m )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.883 536.109 Tm +[(nume)1(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.109 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.922 536.109 Tm +[(t)0.998942(e)1(x)0.998942(t)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.594 536.109 Tm +[( )0.998942(compose)1(d )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.875 536.109 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 536.109 Tm +[( )1(part)1(s )1(.)1( )1(Al)1(l)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.004 536.109 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.398 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 522.141 Tm +[( )1(cont)1(rol)1(s )1(are)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.145 522.141 Tm +[(l)1(i)1(ngui)1.00199(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.336 522.141 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.152 522.141 Tm +[(re)1(gardl)1(e)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.5 522.141 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1(i)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.836 522.141 Tm +[(pe)1(rce)1(i)0.998942(v)1(abl)0.998942(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.57 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.383 522.141 Tm +[(shape)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.207 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(al)1(phanume)1(ri)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.129 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.941 508.172 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.859 508.172 Tm +[( )1(,)1( )1(graphi)1(cs)-317.985(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.445 508.172 Tm +(sound)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.965 508.172 Tm +[( )0.998942(si)1(gnal)0.998942(s )0.998942(,)1( )0.998942(or )0.998942(w)1(hat)0.998942(e)1(v)1(e)0.996908(r )1(e)1(l)0.996908(se)1( )1(.)1.00505( )1(T)0.996908(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.355 508.172 Tm +[(U)1(ni)0.996908(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.805 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.6133 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.4297 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.563 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.379 494.203 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.492 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 128.3 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 136.3 494.203 Tm +[(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.25 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.066 494.203 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.199 494.203 Tm +[( )1(i)1(s )1(ope)1(rat)1(i)0.998942(onal)0.998942(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.762 494.203 Tm +[(i)0.998942(de)1(nt)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.484 494.203 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.16 494.203 Tm +[(draggi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.344 494.203 Tm +[( )0.998942(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 413.6 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 421.617 494.203 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.566 494.203 Tm +[( )1(i)1(nt)0.996908(o )1.00505(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.277 494.203 Tm +[(t)1(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 540.48 494.203 Tm +[( )1(on )1]TJ +-506.133 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 480.234 Tm +[(de)1(sk)1(t)1(op)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.2578 480.234 Tm +[( )1(.)1( )1(B)1(ot)0.998942(h )1(are)1( )1(just)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.16 480.234 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 198.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 207.188 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.695 480.234 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.871 480.234 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.664 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.477 480.234 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.988 480.234 Tm +[( )1(,)1( )1(just)1.00505( )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(al)1(phabe)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.0664 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.883 466.266 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.949 466.266 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.145 466.266 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.742 466.266 Tm +[( )0.998942(be)1(e)1(ps )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.902 466.266 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 304.3 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 312.93 466.266 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.438 466.266 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.613 466.266 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.406 466.266 Tm +[( )1]TJ +-457.059 -13.9688 Td +[(charact)1(e)1(rs )1(.)1( )1(As )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.43 452.297 Tm +[(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.051 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.863 452.297 Tm +[(handl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.098 452.297 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.902 452.297 Tm +[(e)1(ncodi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.605 452.297 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.547 452.297 Tm +[(e)1(nabl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.152 452.297 Tm +[( )1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.742 452.297 Tm +[(re)1(st)1(rai)0.996908(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.02 452.297 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.832 452.297 Tm +[(ce)1(rt)1(ai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.934 452.297 Tm +[( )1(use)1(s )1]TJ +-487.586 -13.9688 Td +[(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.293 438.328 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.363 438.328 Tm +[( )1(.)1( )1(In )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.449 438.328 Tm +[(re)1(spe)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.773 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 275 438.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 283.649 438.328 Tm +[(e)1(re)1(nce)0.998942(s )1(be)1(t)0.998942(w)1(e)0.998942(e)1(n)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.813 438.328 Tm +[(i)0.998942(de)1(ographi)0.996908(c-)1(pi)0.996908(ct)1.00505(ori)0.996908(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.109 438.328 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(abst)1(ract)1(-)1(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.27 424.359 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.086 424.359 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.742 424.359 Tm +[( )1(l)0.998942(anguage)1.00301(s )0.998942(al)0.998942(so )1(appl)0.998942(y)1( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.598 424.359 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.992 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.805 424.359 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.102 424.359 Tm +[( )1(l)1(anguage)0.992839(s )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(P)1(i)1(ct)1(ori)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.5938 410.391 Tm +[( )1(sy)1(mbol)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.441 410.391 Tm +[(si)1(mpl)1(i)1(fy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.207 410.391 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.504 410.391 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(t)1(hrough )1(pre)1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 395 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 403.02 410.391 Tm +[(ne)0.996908(d )1(obje)1(ct)1.00505(s )1(and )1]TJ +-368.672 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(,)1( )1(but)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.508 396.422 Tm +[(mak)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.414 396.422 Tm +[( )1(i)1(t)1( )1(more)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.957 396.422 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 230.4 396.4 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 238.985 396.422 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 396.422 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 396.422 Tm +[(l)0.998942(i)0.998942(nk)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.301 396.422 Tm +[( )0.998942(t)1(he)0.998942(m )1(t)0.998942(hrough )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.395 396.422 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.617 396.422 Tm +[( )1(and )0.996908(t)1.00505(hus )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(e)1(x)1(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.0508 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8672 382.453 Tm +[(cust)1(om)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.898 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.828 382.453 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.348 382.453 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.258 382.453 Tm +[(pi)0.998942(ct)1(ogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.496 382.453 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.758 382.453 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.699 382.453 Tm +[( )0.998942(i)0.998942(s )1(e)1(asi)0.996908(e)1(r )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.09 382.453 Tm +[(unde)0.996908(rst)1(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.613 382.453 Tm +[( )1]TJ +-502.266 -13.9688 Td +[(t)1(han )1(t)1(he)1( )1(l)1(e)1(t)1(t)1(e)1(rs )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.457 368.484 Tm +[(h-)1(o-)1(u-)1(s-)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.617 368.484 Tm +[( )1(,)1( )1(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.527 368.484 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.32 368.484 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.945 368.484 Tm +[(t)0.998942(rue)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.332 368.484 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.832 368.484 Tm +[(t)0.998942(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.035 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.848 368.484 Tm +[(i)0.998942(con)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.359 368.484 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.555 368.484 Tm +[(compari)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.402 368.484 Tm +[( )1(t)1(o )1.00505(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 354.516 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 354.516 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.4102 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.2266 354.516 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3594 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.1758 354.516 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 354.516 Tm +[( )1(.)1( )1(B)1(ut)1( )1(i)1(t)1( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.355 354.516 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 208.8 354.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 217.384 354.516 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.348 354.516 Tm +[( )0.998942(t)1(o )0.998942(pre)1(ci)0.998942(se)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.793 354.516 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 354.516 Tm +[( )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.777 354.516 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.289 354.516 Tm +[( )1<9320>1(If )0.996908(I )1(am )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.953 354.516 Tm +[(home)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.387 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(t)1(omorrow)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.9648 340.547 Tm +[( )1(at)0.998942( )1(si)1(x)1( )1(,)1( )1(I )1(w)1(i)1(l)1(l)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.934 340.547 Tm +[(cl)1(e)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.477 340.547 Tm +[( )0.998942(up )1(e)0.998942(v)1(e)1(ry)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.828 340.547 Tm +[(se)1(cond)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.441 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.258 340.547 Tm +(room)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.82 340.547 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.484 340.547 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.426 340.547 Tm +[( )1<9420>1(t)1(hrough )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.621 340.547 Tm +[(se)1(ri)0.996908(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.715 340.547 Tm +[( )1(of )1]TJ +-504.367 -13.9688 Td +[(pi)1(ct)1(ograms )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.188 326.578 Tm +[(Abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.949 326.578 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.391 326.578 Tm +[(grammat)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.25 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.063 326.578 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.852 326.578 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )1(are)1( )1(more)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.77 326.578 Tm +[(sui)0.996908(t)1(abl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.094 326.578 Tm +[( )1(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 312.609 Tm +[(compl)1(e)1(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.0586 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.875 312.609 Tm +[(comput)1(at)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.191 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.004 312.609 Tm +[(i)1(nst)1(ruct)1(i)0.998942(ons.)0.998942(10)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.594 312.609 Tm +[( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.055 312.609 Tm +[(ut)1(opi)0.998942(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.504 312.609 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.77 312.609 Tm +[(uni)0.998942(v)1(e)1(rsal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.832 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.645 312.609 Tm +[(pi)0.996908(ct)1.00505(ori)1(al)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 481.5 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.313 312.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.707 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.457 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.523 298.641 Tm +[( )1(\( )1(w)1(i)1(t)1(h )1(i)1(cons )0.998942(,)0.998942( )1(w)0.998942(i)0.998942(ndow)1(s )0.998942(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.418 298.641 Tm +[(poi)0.998942(nt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.551 298.641 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(\) )0.996908(i)1(s )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.125 298.641 Tm +[(re)1(e)0.996908(nact)1.00505(me)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.523 298.641 Tm +[( )1(of )1]TJ +-507.176 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 284.672 Tm +[(ri)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.6484 284.672 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.84 284.672 Tm +[(e)1(v)1(e)1(nt)1(ual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.094 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.91 284.672 Tm +[(fal)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.18 284.672 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.477 284.672 Tm +[(uni)0.998942(v)1(e)1(rsal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.539 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.352 284.672 Tm +[(pi)0.998942(ct)1(ori)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.207 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.02 284.672 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.09 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.902 284.672 Tm +[(ut)1(opi)0.996908(as)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.512 284.672 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.172 284.672 Tm +[(R)0.996908(e)1(nai)0.996908(ssance)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.051 284.672 Tm +[( )1(,)1( )1]TJ +-508.703 -13.9688 Td +[(from )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 270.703 Tm +[(T)79.0116(ommaso)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.535 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.348 270.703 Tm +[(Campane)1.00199(l)1(l)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.559 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.375 270.703 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.188 270.703 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.977 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.109 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.926 270.703 Tm +[(Ci)0.998942(t)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.742 270.703 Tm +[( )0.998942(de)1(l)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.992 270.703 Tm +[(sol)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.316 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.129 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.266 270.703 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.941 270.703 Tm +[(Come)1(ni)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.281 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.094 270.703 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.91 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.723 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.859 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.672 270.703 Tm +[(O)1(rbi)0.992839(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.926 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.738 270.703 Tm +[(pi)0.996908(ct)1.00505(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.688 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.504 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 507.637 270.703 Tm +[( )1<97>]TJ +-473.289 -13.9688 Td +[(al)1(t)1(hough )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.535 256.734 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.387 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.199 256.734 Tm +[(proje)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.207 256.734 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.504 256.734 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.457 256.734 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.27 256.734 Tm +[(onl)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.84 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.656 256.734 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.305 256.734 Tm +[( )0.998942(ope)1(rat)1(i)1(ons )1(i)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.984 256.734 Tm +[(pi)0.996908(ct)1.00505(ograms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 535.383 256.734 Tm +[( )1]TJ +-501.035 -13.9688 Td +[(w)1(as )1(l)1(e)1(ss)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.8164 242.766 Tm +[(ambi)1(t)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.641 242.766 Tm +[( )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.73 242.766 Tm +[(conv)1(e)0.998942(rse)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.281 242.766 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.957 242.766 Tm +[(ut)1(opi)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.137 242.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.949 242.766 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.02 242.766 Tm +[( )0.998942(de)1(si)0.998942(gns )1.00505(occurs )1(w)1.00505(he)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.742 242.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 560.137 242.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 228.797 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 228.797 Tm +[( )1(l)1(anguage)1.00199(s )1(ge)1(t)1( )1(appropri)1(at)1(e)1(d )0.998942(and )0.998942(use)1.00301(d )0.998942(i)0.998942(nformal)0.998942(l)0.998942(y)1( )0.998942(i)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.242 228.797 Tm +[(e)1(v)0.998942(e)1(ry)0.996908(day)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.355 228.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.168 228.797 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.844 228.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 214.828 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.5117 214.828 Tm +[(Sw)1(i)1(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.105 214.828 Tm +[( )1(t)1(e)1(l)1(l)1(s )1(how)1( )1(sci)1(e)0.998942(nt)1(i)0.998942(st)1(s )0.998942(on )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R23 1 Tf +0.1 0 0 -0.1 289.9 214.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 297.918 214.828 Tm +[(y)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.957 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.773 214.828 Tm +[(i)0.998942(sl)0.998942(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.172 214.828 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.465 214.828 Tm +(Lagado)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.332 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.145 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.281 214.828 Tm +[( )1(w)1(oul)1(d )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 200.859 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.3711 200.859 Tm +[( )1(,)1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.8125 200.859 Tm +[(prai)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.484 200.859 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.766 200.859 Tm +[(be)1(aut)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.031 200.859 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.297 200.859 Tm +[(w)0.998942(oman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.055 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(any)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.75 200.859 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.363 200.859 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.176 200.859 Tm +[(ani)0.998942(mal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.27 200.859 Tm +[( )1(.)1(.)1(.)1( )1(by)0.996908( )1(rhombs )1(,)1( )1(ci)1(rcl)0.996908(e)1(s )1(,)1( )1.00505]TJ +-373.922 -13.9688 Td +[(paral)1(l)1(e)1(l)1(ograms )1(,)1( )1(e)1(l)1(l)1(i)1(pse)1(s )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.004 186.891 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.617 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.43 186.891 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.566 186.891 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.379 186.891 Tm +[(ge)1(ome)1(t)0.998942(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.977 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.793 186.891 Tm +[(t)0.998942(e)1(rms.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.805 186.891 Tm +[( )0.998942<9420>1(11 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.652 186.891 Tm +[(Li)1(k)1(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.199 186.891 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.645 186.891 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.133 186.891 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 172.922 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.266 172.922 Tm +[(poe)1(t)0.998942(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.609 172.922 Tm +[( )0.998942(w)1(hi)0.998942(ch )0.998942(,)0.998942( )0.998942(unl)1(i)0.998942(k)0.998942(e)1( )0.998942(most)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.875 172.922 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.836 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.648 172.922 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.996 172.922 Tm +[( )1(,)1( )1(w)1(ri)1(t)1(e)1(s )1(i)1(t)1(s)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.9414 158.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.7539 158.953 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.426 158.953 Tm +[( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.832 158.953 Tm +[(poe)1(t)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.215 158.953 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.027 158.953 Tm +[(w)0.998942(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.531 158.953 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(crossbre)1.00301(e)1(ds )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.023 158.953 Tm +[(cy)1(be)0.998942(rne)1(t)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.254 158.953 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.543 158.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.199 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.016 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.734 158.953 Tm +[( )1]TJ +-525.387 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)1(he)1(se)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.926 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.059 144.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.875 144.984 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.602 144.984 Tm +[( )1(poe)1(ms )0.998942<9420>1(or )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.5 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.637 144.984 Tm +[( )0.998942(code)1(w)0.998942(ork)1(s )0.998942<9420>1(oft)0.998942(e)1(n )0.998942(pl)0.998942(ay)0.996908( )1.00505(w)1(i)0.996908(t)1.00505(h )0.996908(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.945 144.984 Tm +[(i)1(nt)0.996908(e)1(rfe)1(re)0.996908(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.105 144.984 Tm +[( )1]TJ +-508.758 -13.9688 Td +[(be)1(t)1(w)1(e)1(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9688 131.016 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.688 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.504 131.016 Tm +[(age)1(ncy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.668 131.016 Tm +[( )1(and )1(programme)1.00301(d )0.998942(proce)1(sse)1(s )1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.668 131.016 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.063 131.016 Tm +[( )1(ne)0.996908(t)1.00505(w)1(ork)1(s )1.00505(.)1( )1(In )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 117.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 117.047 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.969 117.047 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.363 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.18 117.047 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.547 117.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.992 117.047 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.125 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.941 117.047 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.668 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.484 117.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.617 117.047 Tm +[( )0.998942(i)0.998942(s )1(oft)0.996908(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.375 117.047 Tm +[(unde)0.996908(rst)1(ood)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 117.047 Tm +[( )1(e)1(i)0.996908(t)1.00505(he)0.996908(r )1(as )1]TJ +-465.117 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 103.078 Tm +[(sy)1(nony)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0938 103.078 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.387 103.078 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.781 103.078 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.598 103.078 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.816 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.633 103.078 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.699 103.078 Tm +[( )0.998942(or )1(as )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.387 103.078 Tm +[(t)0.998942(e)1(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.898 103.078 Tm +[( )0.998942(w)1(ri)1(t)1(t)1(e)1(n )1(i)0.996908(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.23 103.078 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.566 103.078 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 89.1094 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 89.1094 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.402 89.1094 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.254 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.066 89.1094 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.891 89.1094 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.652 89.1094 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.691 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.508 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.641 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.457 89.1094 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.184 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.133 89.1094 Tm +[( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 357.3 89.1 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 365.965 89.1094 Tm +[(e)1(rs )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.867 89.1094 Tm +[(t)1(radi)0.996908(t)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.703 89.1094 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 75.1406 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.633 75.1406 Tm +[(cry)1(pt)1(ographi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.137 75.1406 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.953 75.1406 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.52 75.1406 Tm +[( )0.998942(of)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.813 75.1406 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.543 75.1406 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.453 75.1406 Tm +[(se)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.535 75.1406 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.828 75.1406 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.602 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.418 75.1406 Tm +[(t)1(ransformat)0.996908(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.566 75.1406 Tm +[( )1]TJ +-493.219 -13.9688 Td +[(rul)1(e)1(s )1(t)1(hat)1( )1(t)1(ranscri)1(be)1( )1(one)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.426 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.48 61.1719 Tm +[( )0.998942(of )0.998942(sy)1(mbol)0.998942(s )1(t)0.998942(o )0.998942(anot)1(he)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.98 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.031 61.1719 Tm +[( )0.998942(of )1(sy)1(mbol)0.996908(s )1(,)1( )1(for )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.207 61.1719 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.23 61.1719 Tm +[( )1(,)1( )1]TJ +-518.883 -13.9688 Td +[(w)1(ri)1(t)1(t)1(e)1(n )1(l)1(e)1(t)1(t)1(e)1(rs )1(i)1(nt)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.305 47.2031 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.902 47.2031 Tm +[( )1(be)1(e)1(ps )0.998942(.)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.535 47.2031 Tm +[(t)0.998942(ransl)1(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.738 47.2031 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(occurs )1(w)1(he)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.613 47.2031 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.125 47.2031 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 33.2344 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 33.2344 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 33.2344 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 33.2344 Tm +[( )1(ge)1(t)1(s )0.998942(compi)0.998942(l)0.998942(e)1(d )0.998942(i)0.998942(nt)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.551 33.2344 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.199 33.2344 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(i)1(s )1(not)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.43 33.2344 Tm +[(e)1(ncodi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.137 33.2344 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Page: (3) 4 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +4.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 2382.000000 0 rlineto 0 3369.000000 rlineto -2382.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +25 0 obj +<> +/Contents 26 0 R +>> +endobj +%%EndPageSetup +26 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.707 801.516 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.957 801.516 Tm +[( )1(be)1(cause)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.699 801.516 Tm +[(proce)0.998942(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.48 801.516 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.695 801.516 Tm +[(one)1(t)0.998942(o-)1(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.906 801.516 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.719 801.516 Tm +[(re)1(v)1(e)1(rsi)0.998942(bl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.793 801.516 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(hi)0.996908(s )1(i)1(s )1(w)1(hy)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.184 801.516 Tm +[(propri)0.996908(e)1(t)1(ary)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.676 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 787.547 Tm +[( )1(compani)1(e)1(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.289 787.547 Tm +[(k)1(e)1(e)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.445 787.547 Tm +[( )0.998942(t)1(he)0.998942(i)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.301 787.547 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.973 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.785 787.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.922 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.734 787.547 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.465 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.277 787.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.414 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.227 787.547 Tm +[(se)1(cre)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.867 787.547 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.996908(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.5 787.547 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.164 787.547 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 773.578 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.121 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.938 773.578 Tm +[(unde)1(rst)1(andi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.707 773.578 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 256 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.137 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 773.578 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.68 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.492 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.629 773.578 Tm +[( )0.998942(i)0.998942(s )1(hi)0.998942(st)1(ori)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(de)1(ri)1(v)0.996908(e)1(d )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.539 773.578 Tm +[(name)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.902 773.578 Tm +[( )1(of )1]TJ +-498.555 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 57.8 759.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 65.8043 759.609 Tm +[(rst)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.5352 759.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.3477 759.609 Tm +[(hi)1(gh-)1(l)1(e)1(v)1(e)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.039 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.852 759.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.246 759.609 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.063 759.609 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.281 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.098 759.609 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.164 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.609 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.742 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.559 759.609 Tm +[(Short)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.289 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.105 759.609 Tm +[(Code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.109 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.242 759.609 Tm +[( )1(from )1(1950.)0.992839(12 )1]TJ +-420.895 -13.9688 Td +[(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.9961 745.641 Tm +[(onl)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5664 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.3789 745.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.602 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.414 745.641 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.484 745.641 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.418 745.641 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.148 745.641 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.809 745.641 Tm +[(ori)1(gi)0.998942(nal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.848 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.664 745.641 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.91 745.641 Tm +[( )1(i)1(s )1(asse)1(mbl)0.996908(y)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 125.324 731.672 Tm +[(human-)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.098 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.914 731.672 Tm +[(re)1(adabl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.363 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.176 731.672 Tm +[(mne)1(moni)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.277 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.09 731.672 Tm +[(one)1(-)1(t)0.998942(o-)1(one)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.355 731.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.172 731.672 Tm +[(re)1(pre)1(se)1(nt)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.105 731.672 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.402 731.672 Tm +[(proce)1(ssor)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.145 731.672 Tm +[( )1]TJ +-501.797 -13.9688 Td +[(i)1(nst)1(ruct)1(i)1(ons )1(.)1( )1(Conv)1(e)1(rse)1(l)1(y)1( )1(,)1( )1(t)1(hose)1( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.953 717.703 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.734 717.703 Tm +[( )0.998942(code)1(d )0.998942(back)1( )1(,)1( )1.00505(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.82 717.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.957 717.703 Tm +[( )1(di)0.996908(sasse)1(mbl)0.996908(e)1(d )1(,)1( )1]TJ +-423.609 -13.9688 Td +[<9420>1(i)1(nt)1(o )1(asse)1(mbl)1(y)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.789 703.734 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.855 703.734 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.301 703.734 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.273 703.734 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.184 703.734 Tm +[(w)0.998942(hol)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.348 703.734 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(onl)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.945 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.082 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.895 703.734 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.625 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 435.438 703.734 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.574 703.734 Tm +[( )1(but)0.996908( )1.00505(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.402 703.734 Tm +[(sy)0.996908(mbol)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.023 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +(form)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.1289 689.766 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 689.766 Tm +[(i)1(nv)1(ol)1(v)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.379 689.766 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.191 689.766 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.758 689.766 Tm +[( )1(pract)1(i)0.998942(ce)1(s )0.998942(of )0.998942(i)0.998942(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.434 689.766 Tm +[(e)1(mpl)0.998942(oy)1(me)0.998942(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.469 689.766 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.664 689.766 Tm +[(appropri)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.164 689.766 Tm +[( )1(.)1( )1(B)1(ut)1( )1(si)1(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 675.797 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.2617 675.797 Tm +[( )1(i)1(n )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.426 675.797 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.82 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.637 675.797 Tm +[(cont)1(rol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.93 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.746 675.797 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.813 675.797 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(hat)1( )0.998942(mat)1(e)0.998942(ri)1(al)0.998942(l)0.998942(y)1( )0.998942(mak)1(e)1(s )1(up )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.789 675.797 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.699 675.797 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.141 675.797 Tm +[(cri)1(t)1(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.809 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(t)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9844 661.828 Tm +[( )1(about)1( )1(comput)1(e)1(rs )1(i)1(s )0.998942(not)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.992 661.828 Tm +[(possi)1(bl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.672 661.828 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(an )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.434 661.828 Tm +[(i)0.998942(nforme)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.566 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.379 661.828 Tm +[(unde)0.996908(rst)1(andi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 503.148 661.828 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(st)1(ruct)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.6055 647.859 Tm +[(formal)1(i)1(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.754 647.859 Tm +[( )1(of )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.684 647.859 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.977 647.859 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Art)1(i)0.998942(st)1(s )0.998942(and )1(act)0.998942(i)1(v)0.996908(i)1(st)1(s )1.00505(si)0.996908(nce)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.789 647.859 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.133 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 633.891 Tm +[( )1(poe)1(t)1(s )1(and )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.957 633.891 Tm +[(M)1(IT)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.988 633.891 Tm +[( )1(hack)1(e)0.998942(rs )1(i)0.998942(n )0.998942(t)1(he)1( )0.998942(1960s )1(hav)1(e)1( )0.998942(show)1(n )0.998942(how)1.00505( )1(t)1(he)1(i)0.996908(r )1(l)0.996908(i)1(mi)0.996908(t)1(at)1.00505(i)0.996908(ons )1(can )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.1289 619.922 Tm +[( )1(e)1(mbrace)1(d )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 619.922 Tm +[(cre)1(at)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.695 619.922 Tm +[( )1(chal)0.998942(l)0.998942(e)1(nge)1(s )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.004 619.922 Tm +[(Li)0.998942(k)0.998942(e)1(w)0.998942(i)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.555 619.922 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.281 619.922 Tm +[(i)0.998942(ncumbe)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.012 619.922 Tm +[( )1(upon )0.996908(cri)1(t)1(i)1(cs )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.512 619.922 Tm +[(re)1]TJ +/R23 1 Tf +0.1 0 0 -0.1 528.3 619.9 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 536.332 619.922 Tm +[(e)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(t)1(he)-317.004(some)1(t)1(i)1(me)1(s )1(more)1( )1(and )1(some)0.998942(t)1(i)0.998942(me)1(s )0.998942(l)0.998942(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.473 605.953 Tm +[(amusi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.141 605.953 Tm +[( )0.998942(const)1(rai)0.998942(nt)1(s )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.238 605.953 Tm +[(game)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.555 605.953 Tm +[( )1(rul)0.996908(e)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 591.984 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 591.984 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 591.984 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(w)1(ri)0.998942(t)1(e)0.998942( )0.998942(i)1(nt)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.719 591.984 Tm +[(cul)0.998942(t)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.395 591.984 Tm +[( )0.998942(.)0.998942( )0.998942(Not)1(e)1(s )0.998942(1 )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.535 591.984 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.141 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.953 591.984 Tm +[(K)27.0142(e)1(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.992 591.984 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.438 591.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.57 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.387 591.984 Tm +[(B)1(e)1(ck)1.00505(e)0.996908(t)1.00505(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.043 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(T)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.1641 578.016 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.6094 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.742 578.016 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.938 578.016 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.543 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.355 578.016 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.395 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.488 578.016 Tm +[(M)0.998942(e)1(chani)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.766 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.582 578.016 Tm +[(M)0.998942(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.855 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(83\226107 )1.00301(.)0.998942( )0.998942(2 )1(.)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.996 578.016 Tm +[(F)56.0099(e)1(rdi)0.996908(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.316 578.016 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.332 564.047 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.777 564.047 Tm +[(Course)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.906 564.047 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.102 564.047 Tm +[(G)1(e)1(ne)1(ral)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.348 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.164 564.047 Tm +[(Li)0.998942(ngui)0.998942(st)1(i)0.998942(cs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.645 564.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.086 564.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.223 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.035 564.047 Tm +[(Chapt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.441 564.047 Tm +[( )0.998942(I )0.998942(:)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.668 564.047 Tm +[(Nat)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.711 564.047 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.473 564.047 Tm +[(Li)1(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.797 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.609 564.047 Tm +[(Si)1(gn.)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.895 564.047 Tm +[( )1]TJ +-520.547 -13.9688 Td +[<9420>1(3 )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.375 550.078 Tm +[(Se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.7969 550.078 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.078 550.078 Tm +[(se)1(ct)0.998942(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.672 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.117 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.25 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.066 550.078 Tm +[(Saussure)1.00301(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.934 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.75 550.078 Tm +[(Si)0.998942(gns)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.375 550.078 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.57 550.078 Tm +[(M)0.998942(at)1(e)0.998942(ri)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.5 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.316 550.078 Tm +[(M)0.998942(at)1(t)0.998942(e)1(rs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.398 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.84 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.977 550.078 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.172 550.078 Tm +[(N)63.9974(.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.719 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.531 550.078 Tm +[(Kat)1.00505(he)0.996908(ri)0.996908(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.707 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 536.109 Tm +[(Hay)1(l)1(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8438 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2852 536.109 Tm +[(M)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.352 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.168 536.109 Tm +[(M)1(ot)1(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.066 536.109 Tm +[( )1(W)88.0015(as )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.27 536.109 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.125 536.109 Tm +[( )0.998942(,)0.998942( )0.998942(42\22645 )1.00301(.)0.998942( )0.998942(4 )1(.)0.998942( )0.998942(F)56.0038(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.074 536.109 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.098 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.539 536.109 Tm +[(St)1.00505(e)0.996908(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.566 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.379 536.109 Tm +[(W)69.0145(oz)1.00505(ni)0.996908(ak)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.438 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.254 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.066 536.109 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.5352 522.141 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.297 522.141 Tm +[(Appl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.266 522.141 Tm +[( )1(I )1(mai)1(nboard )1(w)1(as )0.998942(consi)0.998942(jde)1(re)1(d )1<9320>0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.852 522.141 Tm +[(be)1(aut)1(i)0.998942(ful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.188 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415 522.141 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.504 522.141 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.801 522.141 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.512 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.328 522.141 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.461 522.141 Tm +[( )1(i)1(n )0.996908(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.289 522.141 Tm +[(t)1(i)1(me)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.43 522.141 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(accordi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.832 508.172 Tm +[( )1(t)1(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.508 508.172 Tm +[(St)1(e)1(v)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.262 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.078 508.172 Tm +[(Le)1(v)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.707 508.172 Tm +[( )1(,)1( )1(Insane)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.191 508.172 Tm +[(G)0.998942(re)1(at)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.594 508.172 Tm +[( )0.998942(:)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.914 508.172 Tm +[(Li)0.998942(fe)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.262 508.172 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.457 508.172 Tm +[(T)1(i)0.998942(me)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.938 508.172 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 508.172 Tm +[(M)1(aci)1(nt)0.996908(osh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.895 508.172 Tm +[( )1(,)1( )1(81 )1(.)1( )1(5 )0.996908(.)1.00505( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.0508 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.8672 494.203 Tm +[(W)83.0129(e)1(i)1(z)1(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.258 494.203 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.699 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.836 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.648 494.203 Tm +[(E)1(LIZ)0.998942<419741>]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.789 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.602 494.203 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.457 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.273 494.203 Tm +[(P)1(rogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.258 494.203 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.758 494.203 Tm +[(St)1.00505(udy)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.988 494.203 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.285 494.203 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.219 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 480.234 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 480.234 Tm +[(Communi)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.309 480.234 Tm +[( )1(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.746 480.234 Tm +[(M)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.914 480.234 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.109 480.234 Tm +[(M)0.998942(achi)0.998942(ne)1(.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.48 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.297 480.234 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.43 480.234 Tm +[( )0.998942(6 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.324 480.234 Tm +[(M)1(arsha)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.543 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.355 480.234 Tm +[(P)46.0124(ascual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.645 480.234 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.09 480.234 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.223 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.039 480.234 Tm +[(B)1(l)1(ack)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.84 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(M)1(onday)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.2031 466.266 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.6445 466.266 Tm +[(Cause)1.00199(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.129 466.266 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.32 466.266 Tm +[(E)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 177 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 185.588 466.266 Tm +[(e)1(ct)1(s.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.223 466.266 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.039 466.266 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.172 466.266 Tm +[( )0.998942(7 )1(.)0.998942( )0.998942(Among )0.998942(t)0.998942(he)1(m )0.998942(concre)1(t)1(e)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.375 466.266 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.723 466.266 Tm +[( )1(w)1(ri)1(t)1(e)1(rs )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.645 466.266 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.984 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 452.297 Tm +[( )1(poe)1(t)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.207 452.297 Tm +[(G)1(e)1(rman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.895 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.707 452.297 Tm +[(poe)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.539 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.352 452.297 Tm +(Hans)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.859 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.672 452.297 Tm +[(M)0.998942(agnus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.41 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.227 452.297 Tm +[(E)1(nz)1(e)0.998942(nsbe)1(rge)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.063 452.297 Tm +[( )0.998942(,)1( )1(and )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.352 452.297 Tm +[(Aust)1(ri)0.996908(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.184 452.297 Tm +[( )1(poe)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 438.328 Tm +[(F)56.0117(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.668 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.48 438.328 Tm +[(Schmat)1(z)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.828 438.328 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.023 438.328 Tm +[(F)1(ranz)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.289 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.105 438.328 Tm +[(J)1(ose)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.84 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.656 438.328 Tm +[(Cz)1(e)0.998942(rni)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.293 438.328 Tm +[( )0.998942(.)0.998942( )0.998942(8 )1(.)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.813 438.328 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.168 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.98 438.328 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.441 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.535 438.328 Tm +[(Humane)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.09 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.906 438.328 Tm +[(Int)1(e)0.996908(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.453 438.328 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(Ne)1(w)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.2188 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.0352 424.359 Tm +[(D)1(i)1(re)1(ct)1(i)1(ons)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.824 424.359 Tm +[( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.855 424.359 Tm +[(D)1(e)1(si)1(gni)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.23 424.359 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.047 424.359 Tm +[(Int)0.998942(e)1(ract)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.59 424.359 Tm +[( )0.998942(Sy)1(st)0.998942(e)1(ms )1(.)0.998942( )0.998942(9 )0.998942(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.547 424.359 Tm +[(Accordi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.543 424.359 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.219 424.359 Tm +[(Ne)1(l)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.77 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.586 424.359 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.563 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 38.1602 410.391 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.9492 410.391 Tm +[(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 66.7 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 74.7129 410.391 Tm +[(ni)1(t)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.914 410.391 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.211 410.391 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.125 410.391 Tm +[( )1(i)1(n )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.969 410.391 Tm +[(Language)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.328 410.391 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.621 410.391 Tm +[(Art)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.848 410.391 Tm +[( )0.998942(,)0.998942( )0.998942(143 )1(.)1( )0.998942(10 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.352 410.391 Tm +[(Al)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.738 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.551 410.391 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.449 410.391 Tm +[( )1(,)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.59 410.391 Tm +[(i)1(nv)0.992839(e)1(nt)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.551 410.391 Tm +[( )1(of )1]TJ +-497.203 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 396.422 Tm +[(graphi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.348 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 119.16 396.422 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.887 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.699 396.422 Tm +[(i)1(nt)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.344 396.422 Tm +[( )0.998942(,)0.998942( )0.998942(conce)1(de)1(d )0.998942(i)0.998942(n )0.998942(1990 )1.00301(t)0.998942(hat)1( )0.998942<9320>1(i)0.998942(t)0.998942( )0.998942(w)1(oul)0.998942(d )1(not)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.211 396.422 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.996 396.422 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.809 396.422 Tm +[(surpri)0.992839(si)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.094 396.422 Tm +[( )1(i)1(f )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(v)1(i)1(sual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.8438 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.6563 382.453 Tm +[(sy)1(st)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.055 382.453 Tm +[( )1(w)1(e)1(re)1( )1(l)1(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.965 382.453 Tm +[(abl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.742 382.453 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.297 382.453 Tm +[(are)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 279.445 382.453 Tm +[( )0.998942(t)1(han )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.973 382.453 Tm +[(me)1(chani)0.998942(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 382.453 Tm +[( )1(t)1(hat)1( )1(sol)1(v)1(e)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.234 382.453 Tm +(noun)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.645 382.453 Tm +[( )1(phrase)0.996908(s )1]TJ +-470.297 -13.9688 Td +[(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 55.5625 368.484 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.7266 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.539 368.484 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.609 368.484 Tm +[( )1(.)1( )1(Al)1(t)1(hough )0.998942(i)0.998942(t)1( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.16 368.484 Tm +[(fai)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.328 368.484 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.004 368.484 Tm +[(say)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.098 368.484 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.254 368.484 Tm +[<91>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.066 368.484 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.883 368.484 Tm +[(i)0.998942(coni)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.953 368.484 Tm +[( )1(l)1(anguage)0.992839(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.227 368.484 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.039 368.484 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.855 368.484 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.676 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.492 368.484 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.996 368.484 Tm +[( )1]TJ +-524.648 -13.9688 Td +[<92>1( )1(just)1( )1(be)1(cause)1( )1(no )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.449 354.516 Tm +[(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.504 354.516 Tm +[( )1(has )1.00199(be)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.602 354.516 Tm +[(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.375 354.516 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.051 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.242 354.516 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.023 354.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.836 354.516 Tm +[( )0.998942(one)1( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.434 354.516 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.102 354.516 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 506.723 354.516 Tm +[(abov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.664 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(e)1(x)1(pl)1(anat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.387 340.547 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.012 340.547 Tm +[(cl)1(ose)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.055 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.73 340.547 Tm +[(t)1(rut)1(h.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.383 340.547 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.195 340.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.332 340.547 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.688 340.547 Tm +[(st)1(at)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.531 340.547 Tm +[( )0.998942(quo )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.797 340.547 Tm +(hasn)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.566 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.379 340.547 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.195 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 359.008 340.547 Tm +[(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.832 340.547 Tm +[( )0.998942(change)1(d )1(si)0.996908(nce)1( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.246 340.547 Tm +[(Al)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.633 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.449 340.547 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.348 340.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.789 340.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.926 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 326.578 Tm +[(U)1(se)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.457 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.2695 326.578 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.816 326.578 Tm +[( )1(:)1( )1(A )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.969 326.578 Tm +[(P)46.0144(e)1(rsonal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.445 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.262 326.578 Tm +[(V)17.9952(i)0.998942(e)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.926 326.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.371 326.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.504 326.578 Tm +[( )0.998942(i)0.998942(n )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.328 326.578 Tm +[(B)0.998942(re)1(nda)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.551 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.363 326.578 Tm +[(Laure)1(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.891 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 326.578 Tm +[(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.488 326.578 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.582 326.578 Tm +[(Art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.805 326.578 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.102 326.578 Tm +[(Human-)0.996908]TJ +-425.754 -13.9688 Td +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.2031 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0156 312.609 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.563 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.379 312.609 Tm +[(D)1(e)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.508 312.609 Tm +[( )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.949 312.609 Tm +[(R)1(e)1(adi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.172 312.609 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.844 312.609 Tm +[(Addi)0.998942(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.82 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.637 312.609 Tm +[(W)83.0129(e)1(sl)0.998942(e)1(y)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.969 312.609 Tm +[( )0.998942(,)0.998942( )0.998942(1989 )1.00505(,)1( )1(203 )0.996908(.)1( )1(11 )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.457 312.609 Tm +[(Sw)1.00505(i)0.996908(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.051 312.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 298.641 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.141 298.641 Tm +[(G)1(ul)1(l)1(i)1(v)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.586 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.402 298.641 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.215 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.031 298.641 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.188 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.004 298.641 Tm +[(T)1(rav)1(e)1(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.773 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.219 298.641 Tm +[(P)1(roje)0.998942(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.617 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.434 298.641 Tm +[(G)0.998942(ut)1(e)0.998942(nbe)1(rg)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.602 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.414 298.641 Tm +[(E)1(book)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.578 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.02 298.641 Tm +[(av)1(ai)0.996908(l)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.559 298.641 Tm +[( )1(at)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.164 298.641 Tm +[(ht)1(t)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.219 298.641 Tm +[( )1(:)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.891 298.641 Tm +[(/)1(/)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.977 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 284.672 Tm +[(w)1(w)1(w)120.004(.)1(gut)1(e)1(nbe)1(rg.)1(org)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.273 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.086 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.129 284.672 Tm +[( )1(di)1(rs )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.172 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.215 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.031 284.672 Tm +[(e)1(x)0.998942(t)0.998942(e)1(x)0.998942(t)1(197)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.316 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.133 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.176 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.988 284.672 Tm +[(gl)0.998942(t)1(rv)1(10.)1(t)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.344 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.156 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.199 284.672 Tm +[( )0.998942(.)0.998942( )0.998942(12 )1(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.355 284.672 Tm +[(Se)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.781 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.594 284.672 Tm +[(W)69.0145(ol)1(fgang)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.863 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.68 284.672 Tm +[(Hage)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.809 284.672 Tm +[( )1(,)1( )1<9320>1(T)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(St)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.1094 270.703 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.4023 270.703 Tm +[(Source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.137 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.949 270.703 Tm +[(Code)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.297 270.703 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.742 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.875 270.703 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Trailer +end +%%EOF diff --git a/pdf-toolkit/1.output.ps b/pdf-toolkit/1.output.ps new file mode 100644 index 0000000..ca2e867 --- /dev/null +++ b/pdf-toolkit/1.output.ps @@ -0,0 +1,30201 @@ +%!PS-Adobe-3.0 +%%BoundingBox: 0 0 595 841 +%%HiResBoundingBox: 0 0 595.00 841.00 +%%Creator: GPL Ghostscript 927 (ps2write) +%%LanguageLevel: 2 +%%CreationDate: D:20201028212343+01'00' +%%DocumentMedia: plain 1191 1684 0 () () +%%BoundingBox: 0 0 1191 1684 +%%Pages: 4 0 +%%EndComments +%%BeginProlog +%%BeginProcSet: PStoPS 1 15 +userdict begin +[/showpage/erasepage/copypage]{dup where{pop dup load + type/operatortype eq{ /PStoPSenablepage cvx 1 index load 1 array astore cvx {} bind /ifelse cvx 4 array astore cvx def}{pop}ifelse}{pop}ifelse}forall /PStoPSenablepage true def +[/letter/legal/executivepage/a4/a4small/b5/com10envelope + /monarchenvelope/c5envelope/dlenvelope/lettersmall/note + /folio/quarto/a5]{dup where{dup wcheck{exch{}put} + {pop{}def}ifelse}{pop}ifelse}forall +/setpagedevice {pop}bind 1 index where{dup wcheck{3 1 roll put} + {pop def}ifelse}{def}ifelse +/PStoPSmatrix matrix currentmatrix def +/PStoPSxform matrix def/PStoPSclip{clippath}def +/defaultmatrix{PStoPSmatrix exch PStoPSxform exch concatmatrix}bind def +/initmatrix{matrix defaultmatrix setmatrix}bind def +/initclip[{matrix currentmatrix PStoPSmatrix setmatrix + [{currentpoint}stopped{$error/newerror false put{newpath}} + {/newpath cvx 3 1 roll/moveto cvx 4 array astore cvx}ifelse] + {[/newpath cvx{/moveto cvx}{/lineto cvx} + {/curveto cvx}{/closepath cvx}pathforall]cvx exch pop} + stopped{$error/errorname get/invalidaccess eq{cleartomark + $error/newerror false put cvx exec}{stop}ifelse}if}bind aload pop + /initclip dup load dup type dup/operatortype eq{pop exch pop} + {dup/arraytype eq exch/packedarraytype eq or + {dup xcheck{exch pop aload pop}{pop cvx}ifelse} + {pop cvx}ifelse}ifelse + {newpath PStoPSclip clip newpath exec setmatrix} bind aload pop]cvx def +/initgraphics{initmatrix newpath initclip 1 setlinewidth + 0 setlinecap 0 setlinejoin []0 setdash 0 setgray + 10 setmiterlimit}bind def +end +%%EndProcSet +/DSC_OPDFREAD true def +/SetPageSize true def +/EPS2Write false def +currentdict/DSC_OPDFREAD known{ +currentdict/DSC_OPDFREAD get +}{ +false +}ifelse +10 dict begin +/DSC_OPDFREAD exch def +/this currentdict def +/y 720 def +/ebuf 200 string def +/prnt{ +36//this/y get moveto//ebuf cvs show +//this/y 2 copy get 12 sub put +}bind def +/newline{ +36//this/y get moveto +//this/y 2 copy get 12 sub put +}bind def +errordict/handleerror +{systemdict begin +$error begin +newerror +{(%%[ Error handled by opdfread.ps : )print errorname//ebuf cvs print(; OffendingCommand: ) +print/command load//ebuf cvs print( ]%%)= flush +/newerror false store vmstatus pop pop 0 ne +{grestoreall +}if +errorname(VMerror)ne +{showpage +}if +initgraphics +0 720 moveto +errorname(VMerror)eq +{//this/ehsave known +{clear//this/ehsave get restore 2 vmreclaim +}if +vmstatus exch pop exch pop +} +/Courier 12 selectfont +{ +(ERROR: )//prnt exec errorname//prnt exec +(OFFENDING COMMAND: )//prnt exec +/command load//prnt exec +$error/ostack known{ +(%%[STACK:)= +(STACK:)//prnt exec +$error/ostack get aload length{ +//newline exec +dup mark eq{ +(-mark-)dup = show +}{ +dup type/nametype eq{ +dup xcheck not{ +(/)show +(/)print +}if +}if +dup =//ebuf cvs show +}ifelse +}repeat +}if +}ifelse +(%%]%)= +//systemdict/showpage get exec +quit +}if +end +end +}bind readonly put +end +50 dict begin +/DefaultSwitch +{ +dup where{ +pop pop +}{ +false def +}ifelse +}bind def +/=string 256 string def +/=only{ +//=string cvs print +}bind def +/HexDigits(0123456789ABCDEF)readonly def +/PrintHex +{8{ +dup -28 bitshift 15 and//HexDigits exch 1 getinterval//=only exec +4 bitshift +}repeat +pop +}bind def +/PDFR_DEBUG DefaultSwitch +/PDFR_DUMP DefaultSwitch +/PDFR_STREAM DefaultSwitch +/TTFDEBUG DefaultSwitch +/RotatePages DefaultSwitch +/FitPages DefaultSwitch +/CenterPages DefaultSwitch +/SetPageSize DefaultSwitch +/error +{ +counttomark 1 sub -1 0{ +index dup type/arraytype eq{==}{=only}ifelse +}for +()= +cleartomark +....Undefined +}bind def +//SetPageSize{ +//RotatePages//FitPages or//CenterPages or{ +mark(/RotatePages, /FitPages and CenterPages are not allowed with /SetPageSize)//error exec +}if +} +{ +//FitPages//CenterPages and{ +mark(CenterPages is not allowed with /FitPages)//error exec +}if +} +ifelse +/knownget +{ +2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/IsUpper +{dup(A)0 get ge exch(Z)0 get le and +}bind def +/cpa2g{ +dup length array +0 1 2 index length 1 sub{ +dup 3 index exch get cp2g +3 copy put pop pop +}for +exch pop +}bind def +/cpd2g{ +dup length dict exch{ +cp2g 2 index 3 1 roll put +}forall +}bind def +/cps2g{ +dup length string copy +}bind def +/cp2gprocs +<> +def +/cp2g{ +dup gcheck not{ +dup//cp2gprocs 1 index type +2 copy known{ +get currentglobal 3 1 roll true setglobal exec exch setglobal +1 index wcheck not{readonly}if +1 index xcheck{cvx}if +exch pop +}{ +pop pop +}ifelse +}if +}bind def +/BlockBuffer 65535 string def +/PDFReader currentdict def +/ObjectRegistryMaxLength 50000 def +/ObjectRegistry 10 dict def +ObjectRegistry +begin +0 ObjectRegistryMaxLength dict def +end +/CurrentObject null def +/DoneDocumentStructure false def +/GraphicState 20 dict begin +/InitialTextMatrix matrix def +/InitialMatrix matrix currentmatrix def +currentdict end def +/TempMatrix matrix def +/GraphicStateStack 20 array def +/GraphicStateStackPointer 0 def +/InitialTextMatrixStack 20 array def +/InitialTextMatrixStackPointer 0 def +/PDFColorSpaces 50 dict def +/InstalledFonts 50 dict def +/MacRomanEncodingInverse null def +currentglobal false setglobal +userdict/PDFR_InitialGS gstate put +userdict/PDFR_Patterns 50 dict put +userdict/FuncDataReader 10 dict put +setglobal +/InitialExtGState 20 dict begin +/BG2 currentblackgeneration cp2g def +/UCR2 currentundercolorremoval cp2g def +/TR2 currentglobal false setglobal[currentcolortransfer]exch setglobal cp2g def +/HT currenthalftone cp2g def +currentdict end readonly def +/InitialGraphicState 20 dict begin +/FontSize 0 def +/CharacterSpacing 0 def +/TextLeading 0 def +/TextRenderingMode 0 def +/WordSpacing 0 def +currentdict end readonly def +/SimpleColorSpaceNames 15 dict begin +/DeviceGray true def +/DeviceRGB true def +/DeviceCMYK true def +currentdict end readonly def +/1_24_bitshift_1_sub 1 24 bitshift 1 sub def +/ReadFontProcs 10 dict def +/GetObject +{ +dup ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get exch knownget{ +exch knownget +}{ +pop false +}ifelse +}bind def +/PutObject +{ +1 index ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get 1 index knownget{ +exch pop +3 1 roll put +}{ +//PDFReader/ObjectRegistry get dup +begin +1 index ObjectRegistryMaxLength dict def +end +exch get +3 1 roll put +}ifelse +}bind def +/Register +{ +1 index GetObject{ +dup xcheck{ +4 3 roll pop +//PDFR_DEBUG{ +(Have a daemon for )print 2 index == +}if +exec +}{ +dup null ne{ +mark(The object )4 index(is already defined : )4 index//error exec +}{ +pop +}ifelse +3 2 roll +exec +}ifelse +}{ +3 2 roll +exec +}ifelse +PutObject +}bind def +/IsRegistered +{ +GetObject{ +null ne +}{ +false +}ifelse +}bind def +/GetRegistered +{ +dup GetObject not{ +exch mark exch(Object )exch( isn't defined before needed (1).)//error exec +}if +dup xcheck{ +exch mark exch(Object )exch( isn't defined before needed (2).)//error exec +}{ +dup null eq{ +exch mark exch(Object )exch( isn't defined before needed (3).)//error exec +}if +exch pop +}ifelse +}bind def +/StandardFontNames<< +/Times-Roman true +/Helvetica true +/Courier true +/Symbol true +/Times-Bold true +/Helvetica-Bold true +/Courier-Bold true +/ZapfDingbats true +/Times-Italic true +/Helvetica-Oblique true +/Courier-Oblique true +/Times-BoldItalic true +/Helvetica-BoldOblique true +/Courier-BoldOblique true +>>def +/CleanAllResources +{//PDFR_DEBUG{ +(CleanAllResources beg)= +}if +//PDFReader/ObjectRegistry get{ +dup length 0 exch 1 exch 1 sub{ +2 copy get dup xcheck{ +pop pop +}{ +dup null eq{ +pop pop +}{ +dup type/dicttype eq{/.Global known}{pop false}ifelse{ +pop +}{ +//PDFR_DEBUG{ +(Dropping )print dup = +}if +1 index exch/DroppedObject put +}ifelse +}ifelse +}ifelse +}for +pop +}forall +FontDirectory length dict begin +FontDirectory{ +pop +dup//StandardFontNames exch known not{ +dup null def +}if +pop +}forall +currentdict +end{ +pop +//PDFR_DEBUG{ +(Undefining font )print dup = +}if +undefinefont +}forall +//PDFR_DEBUG{ +(CleanAllResources end)= +}if +}bind def +/PrintReference +{ +//PDFR_DEBUG{ +({ )print +dup{ +=only( )print +}forall +( })= +}if +}bind def +/R +{ +0 ne{ +exch mark exch(A referred object generation )exch( isn't 0.)//error exec +}if +[ +exch//GetRegistered/exec load +]cvx +//PrintReference exec +}bind def +/IsObjRef +{ +dup type/arraytype eq{ +dup length 3 eq{ +dup xcheck exch +dup 0 get type/integertype eq 3 2 roll and exch +dup 1 get//GetRegistered eq 3 2 roll and exch +2 get/exec load eq and +}{ +pop false +}ifelse +}{ +pop false +}ifelse +}bind def +/DoNothing +{ +}def +/RunTypeDaemon +{ +dup type/dicttype eq{ +dup/Type//knownget exec{ +//PDFReader/TypeDaemons get exch +//knownget exec{ +exec +}if +}if +}if +}bind def +/obj +{ +//PDFR_DEBUG{ +(Defining )print 1 index =only( )print dup =only( obj)= +}if +0 ne{ +exch mark exch(An object generation )exch( isn't 0.)//error exec +}if +}bind def +/endobj +{ +//PDFR_DEBUG{ +(endobj )= +}if +count 1 eq{ +pop +}{ +dup type/dicttype eq{ +dup/.endobj_daemon//knownget exec{ +//PDFR_DEBUG{(.endobj_daemon for )print 2 index =}if +exec +}if +}if +dup type/dicttype eq{dup/ImmediateExec known}{false}ifelse{ +pop pop +}{ +//PDFR_DEBUG{ +(Storing )print 1 index = +}if +//RunTypeDaemon exec +//DoNothing 3 1 roll//Register exec +}ifelse +}ifelse +}bind def +/StoreBlock +{ +//PDFR_DEBUG{ +(StoreBlock )print//PDFReader/BlockCount get =only(, Length = )print dup length = +}if +dup length string copy +//PDFReader/BlockCount get exch +//PDFReader/CurrentObject get 3 1 roll +put +//PDFReader/BlockCount get 1 add +//PDFReader exch/BlockCount exch put +}bind def +/CheckLength +{dup type/integertype ne{ +mark(Object length isn't an integer.)//error exec +}if +}bind def +/ResolveD +{ +3 copy pop get +dup//IsObjRef exec{ +//PDFR_DEBUG{ +(Resolving )print//PrintReference exec +}if +exec +exch exec +}{ +exch pop +}ifelse +dup 4 1 roll +put +}bind def +/ResolveA +{2 index 2 index get +dup//IsObjRef exec{ +exec +exch exec +3 copy put +}{ +exch pop +}ifelse +exch pop exch pop +}bind def +/StoreStream +{ +dup//PDFReader exch/CurrentObject exch put +//PDFReader/BlockCount 0 put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(StoreStream Length = )print dup = +}if +currentfile exch()/SubFileDecode filter +{dup//BlockBuffer readstring{ +//StoreBlock exec +}{ +//StoreBlock exec +exit +}ifelse +}loop +pop +//PDFReader/CurrentObject null put +//PDFR_DEBUG{ +(StoreStream end.)= +}if +}bind def +/MakeStreamDumper +{ +//PDFR_DEBUG{ +(MakeStreamDumper beg.)= +}if +currentglobal exch dup gcheck setglobal +[exch +1 dict dup/c 0 put exch +1024 string +{readstring pop +(StreamDumper )print 1 index/c get =string cvs print( )print +dup length =string cvs print( <)print dup print(>\n)print +dup length +3 2 roll +dup/c get +3 2 roll +add/c exch put +}/exec load +] +cvx 0()/SubFileDecode filter +exch setglobal +//PDFR_DEBUG{ +(MakeStreamDumper end.)= +}if +}bind def +/ShortFilterNames 15 dict begin +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/AppendFilters +{ +//PDFR_DEBUG{ +(AppendFilters beg.)= +}if +dup 3 1 roll +/Filter//knownget exec{ +dup type/nametype eq{ +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +2 index/DecodeParms//knownget exec{ +exch +}if +filter +}{ +dup 0 exch 1 exch length 1 sub{ +2 copy get +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +3 1 roll +4 index/DecodeParms//knownget exec{ +exch get +}{ +pop null +}ifelse +dup null eq{ +pop 3 1 roll filter exch +}{ +3 1 roll +4 1 roll filter exch +}ifelse +}for +pop +}ifelse +//PDFR_DEBUG//PDFR_DUMP and{ +//MakeStreamDumper exec +}if +}if +exch pop +//PDFR_DEBUG{ +(AppendFilters end.)= +}if +}bind def +/ExecuteStream +{ +dup//PDFReader exch/CurrentObject exch put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(ExecuteStream id = )print 2 index =only( Length = )print dup = +}if +//PDFReader/InitialGraphicState get +//PDFReader/GraphicState get copy pop +//PDFReader/Operators get begin +currentfile exch()/SubFileDecode filter +1 index//AppendFilters exec +cvx mark exch +exec +counttomark 0 ne{ +mark(Data left on ostack after an immediate stream execution.)//error exec +}if +cleartomark +end +//PDFR_DEBUG{ +(ExecuteStream end.)= +}if +//PDFReader/CurrentObject null put +dup/IsPage known{ +dup/Context get/NumCopies//knownget exec{ +1 sub{ +copypage +}repeat +}if +EPS2Write not{showpage}if +pagesave restore +}if +}bind def +/stream +{ +//PDFR_DEBUG{ +1 index =only( stream)= +}if +1 index GetObject{ +dup xcheck{ +exec +1 index null PutObject +}{ +pop +}ifelse +}if +dup/ImmediateExec known{ +dup/GlobalExec//knownget exec{ +currentglobal 4 1 roll +setglobal +//ExecuteStream exec +3 2 roll setglobal +}{ +//ExecuteStream exec +}ifelse +}{ +//StoreStream exec +}ifelse +dup/.CleanResources//knownget exec{ +/All eq{ +//CleanAllResources exec +}if +}if +}bind def +/HookFont +{ +//PDFR_DEBUG{ +(Loaded the font )print dup/FontName get = +}if +{ +dup/FontFileType get dup/Type1 eq exch/MMType1 eq or{ +dup/FontName get +//PDFReader/RemoveFontNamePrefix get exec +findfont +exit +}if +dup/FontFileType get/TrueType eq{ +//PDFReader/MakeType42 get exec +//PDFR_DEBUG{ +(Font dict <<)= +dup{ +1 index/sfnts eq{ +exch pop +(/sfnts [)print +{ +(-string\()print length//=only exec(\)- )= +}forall +(])= +}{ +exch//=only exec( )print == +}ifelse +}forall +(>>)= +}if +dup/FontName get exch definefont +exit +}if +mark(FontHook has no proc for )2 index/FontFileType get//error exec +}loop +/Font exch put +}bind def +/endstream +{ +}bind def +/xref +{ +//PDFR_DEBUG{ +(xref)= +//PDFR_DUMP{ +//PDFReader/ObjectRegistry get == +}if +}if +end +count 0 ne{ +mark(Excessive data on estack at the end of the interpretation.)//error exec +}if +currentfile 1(%%EOF)/SubFileDecode filter +flushfile +cleardictstack +}bind def +/ResolveDict +{dup{ +pop 1 index exch +//DoNothing//ResolveD exec +pop +}forall +pop +}bind def +/SetupPageView +{ +//PDFR_DEBUG{ +(SetupPageView beg)= +}if +//DSC_OPDFREAD not{ +//GraphicState/InitialMatrix get setmatrix +}if +/MediaBox get aload pop +3 index neg 3 index neg translate +3 -1 roll sub 3 1 roll exch sub exch +userdict/.HWMargins//knownget exec{ +aload pop +}{ +currentpagedevice/.HWMargins//knownget exec{ +aload pop +}{ +0 0 0 0 +}ifelse +}ifelse +currentpagedevice/PageSize get aload pop +3 -1 roll sub 3 1 roll exch sub exch +exch 3 index sub exch 3 index sub +//SetPageSize{ +//PDFR_DEBUG{ +(Setting page size to )print 1 index//=only exec( )print dup = +}if +pop pop 3 index 3 index 2 copy +currentglobal false setglobal 3 1 roll +currentpagedevice dup/PageSize known{ +/PageSize get aload pop +}{ +0 0 +}ifelse +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(PageSize matches request)== flush}if +pop pop +}{ +/MediaRequested where{ +//PDFR_DEBUG{(MediaRequested is true, check against new request)== flush}if +/MediaRequested get aload pop +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(MediaRequested same as current request, ignore)== flush}if +pop pop false +}{ +//PDFR_DEBUG{(MediaRequested different to current request)== flush}if +true +}ifelse +}{ +//PDFR_DEBUG{(No MediaRequested yet)== flush}if +true +}ifelse +{ +//PDFR_DEBUG{(Setting pagesize)== flush}if +2 array astore +dup/MediaRequested exch def +<< exch/PageSize exch >>setpagedevice +}if +}ifelse +userdict/PDFR_InitialGS gstate put +setglobal +}if +//RotatePages{ +2 copy gt 6 index 6 index gt ne{ +1 index 5 index le 1 index 5 index le and not +}{ +false +}ifelse +}{ +false +}ifelse +{//CenterPages{ +//PDFR_DEBUG{ +(Rotating page, and then centering it)== +}if +90 rotate +0 5 index neg translate +5 index 1 index exch sub 2 div +2 index 6 index sub 2 div neg +translate +}{ +//FitPages{ +1 index 5 index div 1 index 7 index div +2 copy gt{ +exch +}if +pop dup scale +}if +90 rotate +0 5 index neg translate +}ifelse +}{ +//CenterPages{ +//PDFR_DEBUG{ +(Ccentering page)== +}if +1 index 6 index sub 2 div +1 index 6 index sub 2 div +translate +}{ +//FitPages{ +1 index 6 index div 1 index 6 index div +2 copy gt{ +exch +}if +pop dup scale +}if +}ifelse +}ifelse +pop pop +translate +pop pop +//PDFR_DEBUG{ +(SetupPageView end)= +}if +}bind def +/PageContentsDaemon +{ +//PDFR_DEBUG{ +(Executing PageContentsDaemon for )print 2 index = +}if +1 index exch/Context exch put +dup/ImmediateExec true put +dup/IsPage true put +SetPageSize{dup/Context get//SetupPageView exec}if +/pagesave save def +}bind def +/FontFileDaemon +{ +//PDFR_DEBUG{ +(Executing FontFileDaemon for )print 2 index = +}if +dup/FontFileType get +2 index exch +dup//ReadFontProcs exch//knownget exec{ +exch pop exec +}{ +mark(FontFile reader for )2 index( isn't implemented yet.)//error exec +}ifelse +//PDFR_DEBUG{ +(FontFileDaemon end)= +}if +pop +}bind def +/FontDescriptorDaemon +{ +//PDFR_DEBUG{ +(Executing FontDescriptorDaemon for )print 2 index = +}if +2 copy/FontResource exch put +/Subtype get 1 index exch/FontFileType exch put +}bind def +/UnPDFEscape{ +dup dup length string cvs +dup(#)search{ +{ +pop +(16#--)2 index 0 2 getinterval +1 index 3 2 getinterval copy pop +cvi +0 exch put +0 +1 index 2 1 index length 2 sub getinterval +3 copy putinterval +length +3 copy exch put +getinterval +(#)search not{ +pop exit +}if +}loop +(\0)search pop exch pop exch pop +cvn +exch pop +}{ +pop pop +}ifelse +}bind def +/TypeDaemons<< +/Page +{//PDFR_DEBUG{ +(Recognized a page.)= +}if +dup/Contents//knownget exec{ +0 get//DoNothing exch +[ +3 index//PageContentsDaemon/exec load +]cvx +//Register exec +}{ +(fixme: page with no Contents won't be printed.)= +}ifelse +}bind +/FontDescriptor +{//PDFR_DEBUG{ +(Recognized a font descriptor.)= +}if +dup/FontName//knownget exec{ +1 index/FontName 3 -1 roll//UnPDFEscape exec put +}if +dup dup/FontFile known{/FontFile}{/FontFile2}ifelse +//knownget exec{ +0 get//DoNothing exch +[ +3 index//FontFileDaemon/exec load +]cvx +//Register exec +}{ +(Font descriptor )print 1 index =only( has no FontFile.)= +}ifelse +}bind +/Font +{//PDFR_DEBUG{ +(Recognized a font resource.)= +}if +dup/BaseFont//knownget exec{ +//UnPDFEscape exec 2 copy/BaseFont exch put +//PDFReader/RemoveFontNamePrefix get exec +currentglobal exch +dup/Font resourcestatus{ +pop pop +//PDFReader/GetInstalledFont get exec pop +}{ +pop +}ifelse +setglobal +}if +dup/FontDescriptor//knownget exec{ +0 get +dup//IsRegistered exec{ +//PDFR_DEBUG{ +(already registered )print dup = +}if +pop +}{ +//DoNothing exch +[ +3 index//FontDescriptorDaemon/exec load +]cvx +//Register exec +}ifelse +}if +}bind +>>def +/MakeStreamReader +{dup +[ +exch +//PDFR_DEBUG{ +(Stream proc ) +/print load +//PDFR_STREAM{ +(<) +/print load +}if +}if +1 dict dup/i -1 put +/dup load +/i +/get load +1 +/add load +/dup load +3 +1 +/roll load +/i +/exch load +/put load +//knownget +/exec load +/not load +{()} +/if load +//PDFR_DEBUG{ +//PDFR_STREAM{ +/dup load +/print load +(>) +/print load +}if +( end of stream proc.\n) +/print load +}if +]cvx +//PDFR_DEBUG{ +(Stream reader )print dup == +}if +0()/SubFileDecode filter +exch//AppendFilters exec +}bind def +/RunDelayedStream +{ +//GraphicState/InitialTextMatrix get +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get +2 copy get null eq{ +2 copy currentglobal true setglobal matrix exch setglobal put +}if +get copy pop +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 add put +//MakeStreamReader exec +mark exch +cvx exec +counttomark 0 ne{ +mark(Data left on ostack after a delayed stream execution.)//error exec +}if +cleartomark +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 sub put +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get get +//GraphicState/InitialTextMatrix get +copy pop +}bind def +//ReadFontProcs begin +/Type1 +{//PDFR_DEBUG{ +(ReadFontProcs.Type1)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +dup/ImmediateExec true put +/GlobalExec true put +}bind def +/MMType1//Type1 def +/TrueType +{//PDFR_DEBUG{ +(ReadFontProcs.TrueType)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +pop +}bind def +end +/.opdloadttfontdict 50 dict def +.opdloadttfontdict begin +/maxstring 65400 def +end +/.InsertionSort +{ +/CompareProc exch def +/Array exch def +1 1 Array length 1 sub +{ +/Ix exch def +/Value1 Array Ix get def +/Jx Ix 1 sub def +{ +Jx 0 lt{ +exit +}if +/Value2 Array Jx get def +Value1 Value2 CompareProc{ +exit +}if +Array Jx 1 add Value2 put +/Jx Jx 1 sub def +}loop +Array Jx 1 add Value1 put +}for +Array +}bind def +/putu16{ +3 copy -8 bitshift put +exch 1 add exch 16#ff and put +}bind def +/putu32{ +3 copy -16 bitshift putu16 +exch 2 add exch 16#ffff and putu16 +}bind def +/.readtable{ +dup dup 1 and add string +dup 0 4 -1 roll getinterval +3 -1 roll exch +dup()ne{readstring}if pop pop +}bind def +/.readbigtable{ +dup maxstring lt{ +.readtable +}{ +currentuserparams/VMReclaim get -2 vmreclaim +[4 2 roll{ +dup maxstring le{exit}if +1 index maxstring string readstring pop 3 1 roll maxstring sub +}loop .readtable] +exch vmreclaim +}ifelse +}bind def +/ReadTTF +{ +.opdloadttfontdict begin +/TTFontFile exch def +/TableDir TTFontFile 12 string readstring pop def +/tables TTFontFile TableDir 4 getu16 16 mul string readstring pop def +/tabarray tables length 16 idiv array def +TableDir 0 4 getinterval(ttcf)eq{ +QUIET not{(Can't handle TrueType font Collections.)=}if +/.loadttfonttables cvx/invalidfont signalerror +}{ +0 16 tables length 1 sub{ +dup +tables exch 16 getinterval +exch 16 div cvi exch +tabarray 3 1 roll put +}for +}ifelse +tabarray{exch 8 getu32 exch 8 getu32 gt}.InsertionSort pop +/Read TableDir length tables length add def +/tabs[ +tabarray{ +dup 8 getu32 +Read sub +dup 0 gt{ +dup string TTFontFile exch readstring pop pop +Read add/Read exch def +}{ +pop +}ifelse +12 getu32 +dup Read add +/Read exch def +TTFontFile exch .readbigtable +}forall +]def +end +}bind def +/GetLocaType +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(head)eq{ +tabs exch get +50 gets16 +/LocaType exch def +exit +}{ +pop +}ifelse +}for +}bind def +/GetNumGlyphs +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(maxp)eq{ +tabs exch get +4 getu16 +/NumGlyphs exch def +exit +}{ +pop +}ifelse +}for +}bind def +/StringToLoca +{ +/LocaIndex exch def +/StringOffset 0 def +{ +dup length StringOffset gt{ +dup +LocaType 1 eq{ +StringOffset getu32 +LocaArray LocaIndex 3 -1 roll put +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 4 add +def +}{ +StringOffset getu16 2 mul +LocaArray length LocaIndex gt{ +LocaArray LocaIndex 3 -1 roll put +}{ +pop +}ifelse +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 2 add +def +}ifelse +}{ +pop +LocaIndex +exit +}ifelse +}loop +}bind def +/GetSortedLoca +{ +NumGlyphs 1 add array/LocaArray exch def +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(loca)eq{ +tabs exch get +exit +}{ +pop +}ifelse +}for +dup type/stringtype eq{ +0 StringToLoca pop +}{ +0 exch +{ +exch StringToLoca +}forall +pop +}ifelse +LocaArray{gt}.InsertionSort pop +}bind def +/GetWorkingString +{ +WorkString 0 +GlyfArray GlyfStringIndex get +putinterval +/WorkBytes GlyfArray GlyfStringIndex get length def +/GlyfStringIndex GlyfStringIndex 1 add def +}bind def +/GetWorkingBytes +{ +/BytesToRead exch def +WorkString 0 BytesToRead getinterval +dup length string copy +WorkString BytesToRead WorkBytes BytesToRead sub getinterval +dup length string copy +WorkString 0 3 -1 roll putinterval +/WorkBytes WorkBytes BytesToRead sub def +}bind def +/GetGlyfBytes +{ +/ToRead exch def +WorkBytes 0 eq{ +GetWorkingString +}if +WorkBytes ToRead ge{ +ToRead string dup 0 +ToRead GetWorkingBytes putinterval +}{ +ToRead string +dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +ToRead WorkBytes sub +GetWorkingString +GetWorkingBytes +putinterval +}ifelse +}bind def +/SplitGlyf +{ +/GlyfArray exch def +/DestArray GlyfArray length 2 mul array def +/DestArrayIndex 0 def +/LastLoca 0 def +/NextLocaIndex 0 def +/LastLocaIndex 0 def +/GlyfStringIndex 0 def +/WorkString maxstring string def +/WorkBytes 0 def +{ +LocaArray NextLocaIndex get +LastLoca sub maxstring gt +{ +LocaArray LastLocaIndex get LastLoca sub +GetGlyfBytes +DestArray DestArrayIndex 3 -1 roll put +/DestArrayIndex DestArrayIndex 1 add def +LocaArray LastLocaIndex get/LastLoca exch def +}{ +/LastLocaIndex NextLocaIndex def +/NextLocaIndex NextLocaIndex 1 add def +NextLocaIndex NumGlyphs gt +{ +WorkBytes +GlyfStringIndex GlyfArray length lt{ +GlyfArray GlyfStringIndex get length +add string dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +GetWorkingString +WorkString 0 WorkBytes getinterval +putinterval +}{ +pop +WorkString 0 WorkBytes getinterval +}ifelse +dup length string copy +DestArray DestArrayIndex 3 -1 roll put +exit +}if +}ifelse +}loop +DestArray +}bind def +/ProcessTTData +{ +.opdloadttfontdict begin +0 1 tabarray length 1 sub{ +/ix exch def +tabarray ix get +12 getu32 dup maxstring le{ +dup 4 mod 0 ne{ +4 div cvi 1 add 4 mul string/newstring exch def +/oldstring tabs ix get def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix newstring put +}{ +pop +}ifelse +}{ +dup 4 mod 0 ne{ +dup maxstring idiv maxstring mul sub +4 idiv 1 add 4 mul string/newstring exch def +tabs ix get +dup length 1 sub dup/iy exch def get/oldstring exch def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix get iy newstring put +}{ +pop +}ifelse +}ifelse +}for +0 1 tabarray length 1 sub{ +dup tabarray exch get +dup 12 getu32 maxstring gt{ +0 4 getinterval dup(glyf)eq{ +pop +GetLocaType +GetNumGlyphs +GetSortedLoca +dup tabs exch get +SplitGlyf +tabs 3 1 roll put +}{ +(Warning, table )print print( > 64Kb\n)print +pop +}ifelse +}{ +pop +pop +}ifelse +}for +end +}bind def +/Makesfnts +{ +.opdloadttfontdict begin +0 +tabs{ +dup type/stringtype eq{ +pop +1 add +}{ +{ +type/stringtype eq{ +1 add +}if +}forall +}ifelse +}forall +1 add +/TTOffset +TableDir length +tabarray length 16 mul add +def +0 +tabarray{ +exch dup 1 add +3 1 roll +dup +tabs exch get +dup type/stringtype eq{ +length +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}{ +0 exch +{ +dup type/stringtype eq{ +length add +}{ +pop +}ifelse +}forall +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}ifelse +}forall +pop +array +dup 0 +TableDir length +tables length add +string +dup 0 TableDir putinterval +dup 12 tables putinterval +put +dup +/ix 1 def +tabs{ +dup type/stringtype eq{ +ix exch +put dup +/ix ix 1 add def +}{ +{ +dup type/stringtype eq{ +ix exch put dup +/ix ix 1 add def +}{ +pop +}ifelse +}forall +}ifelse +}forall +pop +end +}bind def +/MakeType42 +{ +//PDFR_DEBUG{ +(MakeType42 beg)= +}if +10 dict begin +/FontName 1 index/FontName get def +/FontType 42 def +/FontMatrix[1 0 0 1 0 0]def +/FontBBox 1 index/FontBBox get def +dup/FontResource get +dup/Encoding known{ +//PDFReader/ObtainEncoding get exec +/Encoding get +}{ +pop null +}ifelse +/PDFEncoding exch def +/CharStrings 2 index//PDFReader/MakeTTCharStrings get exec def +/sfnts 2 index//MakeStreamReader exec +ReadTTF +ProcessTTData +Makesfnts +def +/Encoding StandardEncoding def +/PaintType 0 def +currentdict end +//PDFR_DEBUG{ +(MakeType42 end)= +}if +}bind def +/GetInstalledFont +{ +dup//InstalledFonts exch knownget{ +exch pop +}{ +dup findfont dup 3 1 roll +//InstalledFonts 3 1 roll put +}ifelse +}bind def +/RemoveFontNamePrefix +{//=string cvs true +0 1 5{ +2 index exch get//IsUpper exec not{ +pop false exit +}if +}for +{(+)search{ +pop pop +}if +}if +cvn +}bind def +/CheckFont +{dup/Type get/Font ne{ +mark(Resource )3 index( must have /Type/Font .)//error exec +}if +}bind def +/CheckEncoding +{dup type/nametype ne{ +dup/Type get/Encoding ne{ +mark(Resource )3 index( must have /Type/Encoding .)//error exec +}if +}if +}bind def +/ObtainEncoding +{dup/Encoding known{ +dup dup/Encoding//CheckEncoding//ResolveD exec +dup type dup/arraytype eq exch/packedarraytype eq or{ +pop pop +}{ +dup type/nametype eq{ +/Encoding findresource +}{ +dup/BaseEncoding//knownget exec not{ +/StandardEncoding +}if +/Encoding findresource +exch +/Differences//knownget exec{ +exch dup length array copy exch +0 exch +{ +dup type/integertype eq{ +exch pop +}{ +3 copy put pop +1 add +}ifelse +}forall +pop +}if +}ifelse +/Encoding exch put +}ifelse +}{ +dup/Encoding/StandardEncoding/Encoding findresource put +}ifelse +}bind def +/ObtainMetrics +{dup/Widths//knownget exec{ +1 index/Encoding get +256 dict +3 index/Subtype get/TrueType eq{ +1000 +}{ +1 +}ifelse +4 index/MissingWidth//knownget exec not{ +0 +}if +5 index/FirstChar//knownget exec not{ +0 +}if +6 5 roll +dup 0 exch 1 exch length 1 sub{ +2 copy get +exch 3 index add +7 index exch get +dup dup null ne exch/.notdef ne and{ +6 index 3 1 roll exch +6 index div +3 copy pop//knownget exec{ +0 eq +}{ +true +}ifelse +{put +}{ +pop pop pop +}ifelse +}{ +pop pop +}ifelse +}for +pop pop pop pop exch pop +1 index exch/Metrics exch put +}{ +dup/MissingWidth//knownget exec{ +256 dict +2 index/Encoding get{ +dup null ne{ +3 copy 3 2 roll put +}if +pop +}forall +exch pop +1 index exch/Metrics exch put +}if +}ifelse +}bind def +/NotDef +{ +FontMatrix aload pop pop pop exch pop exch pop +1 exch div exch +1 exch div exch +1 index 0 setcharwidth +0 setlinewidth +0 0 moveto +2 copy rlineto +1 index 0 rlineto +neg exch neg exch rlineto +closepath stroke +}bind def +/SaveResourcesToStack +{ +[ +//PDFReader/OldResources known{ +//PDFReader/OldResources get +}{ +null +}ifelse +//PDFReader/CurrentObject get/Context get/Resources get +] +//PDFReader/OldResources 3 -1 roll put +}bind def +/RestoreResourcesFromStack +{ +//PDFReader/OldResources get dup +0 get//PDFReader/OldResources 3 -1 roll put +1 get//PDFReader/CurrentObject get/Context get/Resources 3 -1 roll put +}bind def +/BuildChar +{//PDFR_DEBUG{ +(BuildChar )print dup//=only exec( )print +}if +exch begin +Encoding exch get +//PDFR_DEBUG{ +dup = +}if +dup null eq{ +pop//NotDef exec +} +{ +CharProcs exch//knownget exec +{ +currentfont/Font get/Resources//knownget exec{ +exec +SaveResourcesToStack +//PDFReader/CurrentObject get/Context get +/Resources 3 -1 roll put +//RunDelayedStream exec +RestoreResourcesFromStack +}{ +//RunDelayedStream exec +}ifelse +} +{ +//NotDef exec +}ifelse +}ifelse +end +}bind def +/printdict +{(<<)= +{exch = ==}forall +(>>)= +}bind def +/printfont +{ +dup{ +exch dup = +dup/Encoding eq{ +pop = +}{ +dup/FontInfo eq exch/Private eq or{ +//printdict exec +}{ +== +}ifelse +}ifelse +}forall +}bind def +/ScaleMetrics +{1 index{ +2 index div +3 index +3 1 roll put +}forall +pop +}bind def +/ResolveAndSetFontAux +{exch dup +//PDFReader/CurrentObject get/Context get/Resources get +/Font//DoNothing//ResolveD exec +exch//CheckFont//ResolveD exec +dup/Font//knownget exec{ +exch pop exch pop +}{ +{ +dup/Subtype get dup dup/Type1 eq exch/TrueType eq or exch/MMType1 eq or{ +exch pop +dup/BaseFont get +//RemoveFontNamePrefix exec +//PDFR_DEBUG{ +(Font )print dup = +}if +1 index/FontDescriptor known{ +//PDFR_DEBUG{ +(Font from a font descriptor.)= +}if +1 index +/FontDescriptor//DoNothing//ResolveD exec +/Font//knownget exec{ +exch pop +}{ +//PDFR_DEBUG{ +(Font descriptor has no Font resolved.)= +}if +//GetInstalledFont exec +}ifelse +}{ +//GetInstalledFont exec +}ifelse +exch +dup/Encoding known not{ +1 index/Encoding get 1 index exch/Encoding exch put +}if +//ObtainEncoding exec +//ObtainMetrics exec +exch +dup length dict copy +dup 2 index/Encoding get +/Encoding exch put +1 index/Metrics//knownget exec{ +2 index/Subtype get/TrueType ne{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +0.001 div +//ScaleMetrics exec +}{ +1 index/sfnts known not{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +//ScaleMetrics exec +}if +}ifelse +1 index exch/Metrics exch put +}if +1 index/BaseFont get +exch +dup/FID undef +dup/UniqueID undef +definefont +dup 3 1 roll +/Font exch put +exit +}if +dup/Subtype get/Type3 eq{ +//ObtainEncoding exec +2 copy exch/FontName exch put +dup/CharProcs get//ResolveDict exec +dup/FontType 3 put +dup/BuildChar//BuildChar put +dup dup/Font exch put +dup 3 1 roll +definefont +2 copy ne{ +2 copy/Font exch put +}if +exch pop +exit +}if +dup/Subtype get/Type0 eq{ +}if +dup/Subtype get/CIDFontType0 eq{ +}if +dup/Subtype get/CIDFontType2 eq{ +}if +mark(Unknown font type )2 index/Subtype get//error exec +}loop +}ifelse +exch scalefont setfont +}bind def +/ResolveAndSetFont +{ +//ResolveAndSetFontAux exec +}bind def +/.knownget +{2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/.min +{2 copy lt{ +exch +}if +pop +}bind def +/.max +{2 copy gt{ +exch +}if +pop +}bind def +/.dicttomark +{>> +}bind def +/getu16{ +2 copy get 8 bitshift 3 1 roll 1 add get add +}bind def +/gets16{ +getu16 16#8000 xor 16#8000 sub +}bind def +/getu32{ +2 copy getu16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/gets32{ +2 copy gets16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/cmapformats mark +0{ +6 256 getinterval{}forall 256 packedarray +}bind +2{ +/sHK_sz 2 def +/sH_sz 8 def +dup 2 getu16/cmapf2_tblen exch def +dup 4 getu16/cmapf2_lang exch def +dup 6 256 sHK_sz mul getinterval/sHKs exch def +0 +0 1 255{ +sHKs exch +2 mul getu16 +1 index +1 index +lt{exch}if pop +}for +/sH_len exch def +dup 6 256 sHK_sz mul add +cmapf2_tblen 1 index sub getinterval +/sH_gIA exch def +/cmapf2_glyph_array 65535 array def +/.cmapf2_putGID{ +/cmapf2_ch cmapf2_ch_hi 8 bitshift cmapf2_ch_lo add def +firstCode cmapf2_ch_lo le +cmapf2_ch_lo firstCode entryCount add lt +and{ +sH_offset idRangeOffset add +cmapf2_ch_lo firstCode sub 2 mul +add 6 add +sH_gIA exch getu16 +dup 0 gt{ +idDelta add +cmapf2_glyph_array exch cmapf2_ch exch put +}{ +pop +}ifelse +}{ +}ifelse +}def +16#00 1 16#ff{ +/cmapf2_ch_hi exch def +sHKs cmapf2_ch_hi sHK_sz mul getu16 +/sH_offset exch def +sH_gIA sH_offset sH_sz getinterval +dup 0 getu16/firstCode exch def +dup 2 getu16/entryCount exch def +dup 4 gets16/idDelta exch def +dup 6 getu16/idRangeOffset exch def +pop +sH_offset 0 eq{ +/cmapf2_ch_lo cmapf2_ch_hi def +/cmapf2_ch_hi 0 def +.cmapf2_putGID +}{ +16#00 1 16#ff{ +/cmapf2_ch_lo exch def +.cmapf2_putGID +}for +}ifelse +}for +pop +0 1 cmapf2_glyph_array length 1 sub{ +dup cmapf2_glyph_array exch get +null eq{cmapf2_glyph_array exch 0 put}{pop}ifelse +}for +cmapf2_glyph_array +}bind +4{ +/etab exch def +/nseg2 etab 6 getu16 def +14/endc etab 2 index nseg2 getinterval def +2 add +nseg2 add/startc etab 2 index nseg2 getinterval def +nseg2 add/iddelta etab 2 index nseg2 getinterval def +nseg2 add/idroff etab 2 index nseg2 getinterval def +pop +/firstcode startc 0 getu16 16#ff00 and dup 16#f000 ne{pop 0}if def +/lastcode firstcode def +/striptopbyte false def +/putglyph{ +glyphs code 3 -1 roll put/code code 1 add def +}bind def +/numcodes 0 def/glyphs 0 0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +ecode lastcode gt{ +/lastcode ecode def +}if +}for pop +firstcode 16#f000 ge lastcode firstcode sub 255 le and{ +lastcode 255 and +/striptopbyte true def +}{ +lastcode +}ifelse +1 add +array def +glyphs length 1024 ge{ +.array1024z 0 1024 glyphs length 1023 sub{glyphs exch 2 index putinterval}for +glyphs dup length 1024 sub 3 -1 roll +putinterval +}{ +0 1 glyphs length 1 sub{glyphs exch 0 put}for +}ifelse +/numcodes 0 def/code 0 def +0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +numcodes scode firstcode sub +exch sub 0 .max dup/code exch code exch add def +ecode scode sub 1 add add numcodes add/numcodes exch def +/delta iddelta i2 gets16 def +TTFDEBUG{ +(scode=)print scode =only +( ecode=)print ecode =only +( delta=)print delta =only +( droff=)print idroff i2 getu16 = +}if +idroff i2 getu16 dup 0 eq{ +pop scode delta add 65535 and 1 ecode delta add 65535 and +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +{putglyph}for +}{ +/gloff exch 14 nseg2 3 mul add 2 add i2 add add def +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +0 1 ecode scode sub{ +2 mul gloff add etab exch getu16 +dup 0 ne{delta add 65535 and}if putglyph +}for +}ifelse +}for glyphs/glyphs null def +}bind +6{ +dup 6 getu16/firstcode exch def dup 8 getu16/ng exch def +firstcode ng add array +0 1 firstcode 1 sub{2 copy 0 put pop}for +dup firstcode ng getinterval +0 1 ng 1 sub{ +dup 2 mul 10 add 4 index exch getu16 3 copy put pop pop +}for pop exch pop +}bind +.dicttomark readonly def +/cmaparray{ +dup 0 getu16 cmapformats exch .knownget{ +TTFDEBUG{ +(cmap: format )print 1 index 0 getu16 = flush +}if exec +}{ +(Can't handle format )print 0 getu16 = flush +0 1 255{}for 256 packedarray +}ifelse +TTFDEBUG{ +(cmap: length=)print dup length = dup == +}if +}bind def +/postremap mark +/Cdot/Cdotaccent +/Edot/Edotaccent +/Eoverdot/Edotaccent +/Gdot/Gdotaccent +/Ldot/Ldotaccent +/Zdot/Zdotaccent +/cdot/cdotaccent +/edot/edotaccent +/eoverdot/edotaccent +/gdot/gdotaccent +/ldot/ldotaccent +/zdot/zdotaccent +.dicttomark readonly def +/get_from_stringarray +{1 index type/stringtype eq{ +get +}{ +exch{ +2 copy length ge{ +length sub +}{ +exch get exit +}ifelse +}forall +}ifelse +}bind def +/getinterval_from_stringarray +{ +2 index type/stringtype eq{ +getinterval +}{ +string exch 0 +4 3 roll{ +dup length +dup 4 index lt{ +3 index exch sub +exch pop 3 1 roll exch pop +}{ +dup 3 1 roll +4 index sub +5 index length 4 index sub +2 copy gt{exch}if pop +dup 3 1 roll +5 index exch getinterval +5 index 4 index 3 index +getinterval +copy pop +exch pop add exch pop 0 exch +dup 3 index length ge{exit}if +}ifelse +}forall +pop pop +}ifelse +}bind def +/string_array_size +{dup type/stringtype eq{ +length +}{ +0 exch{length add}forall +}ifelse +}bind def +/postformats mark +16#00010000{ +pop MacGlyphEncoding +} +16#00020000{ +dup dup type/arraytype eq{0 get}if length 36 lt{ +TTFDEBUG{(post format 2.0 invalid.)= flush}if +pop[] +}{ +/postglyphs exch def +/post_first postglyphs dup type/arraytype eq{0 get}if def +post_first 32 getu16/numglyphs exch def +/glyphnames numglyphs 2 mul 34 add def +/postpos glyphnames def +/total_length postglyphs//string_array_size exec def +numglyphs array 0 1 numglyphs 1 sub{ +postpos total_length ge{ +1 numglyphs 1 sub{1 index exch/.notdef put}for +exit +}if +postglyphs postpos//get_from_stringarray exec +postglyphs postpos 1 add 2 index//getinterval_from_stringarray exec cvn +exch postpos add 1 add/postpos exch def +2 index 3 1 roll +put +}for +/postnames exch def +numglyphs array 0 1 numglyphs 1 sub{ +dup 2 mul 34 add postglyphs exch 2//getinterval_from_stringarray exec +dup 0 get 8 bitshift exch 1 get add dup 258 lt{ +MacGlyphEncoding exch get +}{ +dup 32768 ge{ +pop/.notdef +}{ +258 sub dup postnames length ge{ +TTFDEBUG{( *** warning: glyph index past end of 'post' table)= flush}if +pop +exit +}if +postnames exch get +postremap 1 index .knownget{exch pop}if +}ifelse +}ifelse +2 index 3 1 roll put +}for +} +ifelse +}bind +16#00030000{ +pop[] +}bind +.dicttomark readonly def +/first_post_string +{ +post dup type/arraytype eq{0 get}if +}bind def +/.getpost{ +/glyphencoding post null eq{ +TTFDEBUG{(post missing)= flush}if[] +}{ +postformats first_post_string 0 getu32 .knownget{ +TTFDEBUG{ +(post: format )print +first_post_string +dup 0 getu16 =only(,)print 2 getu16 = flush +}if +post exch exec +}{ +TTFDEBUG{(post: unknown format )print post 0 getu32 = flush}if[] +}ifelse +}ifelse def +}bind def +/MacRomanEncoding[ +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +]/Encoding defineresource pop +/TTParser<< +/Pos 0 +/post null +>>def +/readu8 +{read not{ +mark(Insufficient data in the stream.)//error exec +}if +}bind def +/readu16 +{dup//readu8 exec 8 bitshift exch//readu8 exec or +}bind def +/reads16 +{//readu16 exec 16#8000 xor 16#8000 sub +}bind def +/readu32 +{dup//readu16 exec 16 bitshift exch//readu16 exec or +}bind def +/reads32 +{dup//reads16 exec 16 bitshift exch//readu16 exec or +}bind def +/SkipToPosition +{dup//TTParser/Pos get +exch//TTParser exch/Pos exch put +sub +//PDFR_DEBUG{ +(Skipping )print dup//=only exec( bytes.)= +}if +dup 0 eq{ +pop pop +}{ +dup 3 1 roll +()/SubFileDecode filter +exch +{1 index//BlockBuffer readstring pop length +dup 0 eq{pop exch pop exit}if +sub +}loop +0 ne{ +mark(Insufficient data in the stream for SkipToPosition.)//error exec +}if +}ifelse +}bind def +/TagBuffer 4 string def +/ParseTTTableDirectory +{//PDFR_DEBUG{ +(ParseTTTableDirectory beg)= +}if +15 dict begin +dup//readu32 exec 16#00010000 ne{ +mark(Unknown True Type version.)//error exec +}if +dup//readu16 exec/NumTables exch def +dup//readu16 exec/SearchRange exch def +dup//readu16 exec/EntrySelector exch def +dup//readu16 exec/RangeShift exch def +//PDFR_DEBUG{ +(NumTables = )print NumTables = +}if +NumTables{ +dup//TagBuffer readstring not{ +mark(Could not read TT tag.)//error exec +}if +cvn +[2 index//readu32 exec pop +2 index//readu32 exec +3 index//readu32 exec +] +//PDFR_DEBUG{ +2 copy exch//=only exec( )print == +}if +def +}repeat +pop +//TTParser/Pos 12 NumTables 16 mul add put +currentdict end +//PDFR_DEBUG{ +(ParseTTTableDirectory end)= +}if +}bind def +/ParseTTcmap +{//PDFR_DEBUG{ +(ParseTTcmap beg)= +}if +/cmap get aload pop +3 1 roll +7 dict begin +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(cmap position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos get/TablePos exch def +dup//readu16 exec pop +dup//readu16 exec/NumEncodings exch def +//PDFR_DEBUG{ +(NumEncodings = )print NumEncodings = +}if +null +NumEncodings{ +1 index//readu32 exec +2 index//readu32 exec +3 array dup 3 2 roll 0 exch put +2 index null ne{ +dup 0 get 3 index 0 get sub +3 index exch 1 exch put +}if +dup 4 3 roll pop 3 1 roll +def +}repeat +dup 0 get +4 3 roll exch sub +1 exch put +//PDFR_DEBUG{ +currentdict{ +exch dup type/integertype eq{ +//PrintHex exec( )print == +}{ +pop pop +}ifelse +}forall +}if +4 NumEncodings 8 mul add/HeaderLength exch def +//TTParser/Pos//TTParser/Pos get HeaderLength add put +0 +NumEncodings{ +16#7FFFFFF null +currentdict{ +1 index type/integertype eq{ +exch pop dup 0 get +dup 5 index gt{ +dup 4 index lt{ +4 1 roll +exch pop exch pop +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}forall +//PDFR_DEBUG{ +(Obtaining subtable for )print dup == +}if +3 2 roll pop +3 copy pop +TablePos add//SkipToPosition exec +3 copy exch pop 1 get +//TTParser/Pos//TTParser/Pos get 3 index add put +string +readstring not{ +mark(Can't read a cmap subtable.)//error exec +}if +2 exch put +}repeat +pop pop +currentdict end +//PDFR_DEBUG{ +(ParseTTcmap end)= +}if +}bind def +/GetTTEncoding +{//PDFR_DEBUG{ +(GetTTEncoding beg)= +}if +get +exch pop +2 get +10 dict begin +/TTFDEBUG//PDFR_DEBUG def +//cmaparray exec +end +//PDFR_DEBUG{ +(GetTTEncoding end)= +dup == +}if +}bind def +/InverseEncoding +{ +256 dict begin +dup length 1 sub -1 0{ +2 copy get +exch +1 index currentdict exch//knownget exec{ +dup type/arraytype eq{ +aload length 1 add array astore +}{ +2 array astore +}ifelse +}if +def +}for +pop +currentdict end +}bind def +/GetMacRomanEncodingInverse +{//PDFReader/MacRomanEncodingInverse get +dup null eq{ +pop +MacRomanEncoding//InverseEncoding exec +dup//PDFReader exch/MacRomanEncodingInverse exch put +}if +}bind def +/PutCharStringSingle +{ +dup 3 index length lt{ +2 index exch get +dup 0 ne{ +def +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/PutCharString +{1 index type/nametype ne{ +mark(Bad charstring name)//error exec +}if +dup type/arraytype eq{ +{ +3 copy//PutCharStringSingle exec +pop pop +}forall +pop +}{ +//PutCharStringSingle exec +}ifelse +}bind def +/ComposeCharStrings +{ +//PDFR_DEBUG{ +(ComposeCharStrings beg)= +}if +1 index length 1 add dict begin +/.notdef 0 def +exch +//TTParser/post get +dup null ne{ +exch +1 index length 1 sub -1 0{ +dup 3 index exch get exch +dup 0 eq 2 index/.notdef eq or{ +pop pop +}{ +def +}ifelse +}for +}if +exch pop exch +{ +//PutCharString exec +}forall +pop +currentdict end +//PDFR_DEBUG{ +(ComposeCharStrings end)= +}if +}bind def +/ParseTTpost +{ +//PDFR_DEBUG{ +(ParseTTpost beg)= +}if +/post get aload pop +3 1 roll +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(post position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos//TTParser/Pos get 4 index add put +exch dup 65535 le{ +string +readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}{ +[3 1 roll +dup 16384 div floor cvi +exch 1 index 16384 mul +sub exch +1 sub 0 1 3 -1 roll +{ +1 add index +16384 string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}for +counttomark -2 roll +string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +] +}ifelse +1 dict begin +/post exch def +//.getpost exec +//TTParser/post glyphencoding put +//PDFR_DEBUG{ +(ParseTTpost end)= +glyphencoding == +}if +end +}bind def +/MakeTTCharStrings +{//MakeStreamReader exec +dup dup//ParseTTTableDirectory exec +//TTParser/post null put +dup/post//knownget exec{ +0 get +1 index/cmap get 0 get +lt{ +2 copy//ParseTTpost exec +//ParseTTcmap exec +}{ +2 copy//ParseTTcmap exec +3 1 roll +//ParseTTpost exec +}ifelse +}{ +//ParseTTcmap exec +}ifelse +{ +dup 16#00030001 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Windows Unicode.)= +}if +16#00030001//GetTTEncoding exec +AdobeGlyphList//ComposeCharStrings exec +exit +}if +dup 16#00010000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Macintosh Roman.)= +}if +16#00010000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +dup 16#00030000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding 3.0 - not sure why Ghostscript writes it since old versions.)= +}if +16#00030000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +mark(True Type cmap has no useful encodings.)//error exec +}loop +//PDFR_DEBUG{ +(CharStrings <<)= +dup{ +exch +dup type/nametype eq{ +//=only exec +}{ +== +}ifelse +( )print == +}forall +(>>)= +}if +}bind def +/ScaleVal +{ +aload pop +1 index sub +3 2 roll mul add +}bind def +/ScaleArg +{ +aload pop +1 index sub +3 1 roll +sub exch div +}bind def +/ScaleArgN +{ +dup length 2 sub -2 0{ +2 +2 index 3 1 roll getinterval +3 2 roll +exch//ScaleArg exec +1 index length 2 idiv 1 add 1 roll +}for +pop +}bind def +/ComputeFunction_10 +{ +//PDFR_DEBUG{ +(ComputeFunction_10 beg )print 1 index//=only exec( stack=)print count = +}if +exch +dup 1 eq{ +pop dup length 1 sub get +}{ +1 index length 1 sub mul +dup dup floor sub +dup 0 eq{ +pop cvi get +}{ +3 1 roll floor cvi +2 getinterval +aload pop +2 index mul 3 2 roll 1 exch sub 3 2 roll mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_10 end )print dup//=only exec( stack=)print count = +}if +}bind def +/ComputeFunction_n0 +{ +//PDFR_DEBUG{ +(ComputeFunction_n0 beg N=)print dup//=only exec( stack=)print count = +}if +dup 0 eq{ +pop +}{ +dup 2 add -1 roll +dup 3 index length 1 sub ge{ +pop 1 sub +exch dup length 1 sub get exch +//PDFReader/ComputeFunction_n0 get exec +}{ +dup floor cvi dup +4 index exch get +3 index dup +5 add copy +6 2 roll +pop pop pop pop +1 sub +//PDFReader/ComputeFunction_n0 get exec +3 2 roll pop +exch +4 3 roll exch +4 add 2 roll 1 add +3 2 roll exch get +exch 1 sub +//PDFReader/ComputeFunction_n0 get exec +1 index mul +3 1 roll +1 exch sub mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_n0 end )print dup//=only exec( stack=)print count = +}if +}bind def +/FunctionToProc_x01 +{ +dup/Domain get exch +dup/Data get 0 get exch +/Size get length +[4 1 roll +//PDFR_DEBUG{ +{(function beg, stack =)print count//=only exec(\n)print}/exec load +5 2 roll +}if +dup 1 gt{ +{mark exch +3 add 2 roll +//ScaleArgN exec +counttomark dup +3 add -2 roll +pop exch +//ComputeFunction_n0 exec +}/exec load +}{ +pop +3 1/roll load//ScaleArg/exec load +/exch load +//ComputeFunction_10/exec load +}ifelse +//PDFR_DEBUG{ +(function end, stack =)/print load/count load//=only/exec load(\n)/print load +}if +]cvx +//PDFR_DEBUG{ +(Made a procedure for the 1-result function :)= +dup == +}if +}bind def +/FunctionProcDebugBeg +{(FunctionProcDebugBeg )print count = +}bind def +/FunctionProcDebugEnd +{(FunctionProcDebugEnd )print count = +}bind def +/FunctionToProc_x0n +{ +PDFR_DEBUG{ +(FunctionToProc_x0n beg m=)print dup = +}if +1 index/Size get length exch +dup 7 mul 2 add array +PDFR_DEBUG{ +dup 0//FunctionProcDebugBeg put +}{ +dup 0//DoNothing put +}ifelse +dup 1/exec load put +dup 2 5 index/Domain get put +2 index 1 eq{ +dup 3//ScaleArg put +}{ +dup 3//ScaleArgN put +}ifelse +dup 4/exec load put +1 index 1 sub 0 exch 1 exch{ +dup 7 mul 5 add +1 index 4 index 1 sub ne{ +dup 3 index exch 6 index put 1 add +dup 3 index exch/copy load put 1 add +}if +[ +6 index/Data get 3 index get +6 index 1 eq{ +//ComputeFunction_10/exec load +}{ +6 index +//ComputeFunction_n0/exec load +}ifelse +]cvx +3 index exch 2 index exch put 1 add +2 index 1 index/exec load put 1 add +1 index 4 index 1 sub ne{ +2 index 1 index 6 index 1 add put 1 add +2 index 1 index 1 put 1 add +2 index 1 index/roll load put +}if +pop pop +}for +PDFR_DEBUG{ +dup dup length 2 sub//FunctionProcDebugEnd put +}{ +dup dup length 2 sub//DoNothing put +}ifelse +dup dup length 1 sub/exec load put +cvx exch pop exch pop exch pop +//PDFR_DEBUG{ +(Made a procedure for the n-argument function :)= +dup == +}if +PDFR_DEBUG{ +(FunctionToProc_x0n end)= +}if +}bind def +/MakeTableRec +{ +0 +exec +}bind def +/MakeTable +{//PDFR_DEBUG{ +(MakeTable beg )print count = +}if +1 index/Size get exch +1 sub dup +3 1 roll +get +array +1 index 0 eq{ +exch pop exch pop +}{ +dup length 1 sub -1 0{ +3 index 3 index//MakeTableRec exec +2 index 3 1 roll put +}for +exch pop exch pop +}ifelse +//PDFR_DEBUG{ +(MakeTable end )print count = +}if +}bind def +//MakeTableRec 0//MakeTable put +/StoreSample +{ +1 sub +dup 0 eq{ +pop +}{ +-1 1{ +I exch get get +}for +}ifelse +I 0 get 3 2 roll put +}bind def +/ReadSample32 +{ +4{ +File read not{ +mark(Insufficient data for function.)//error exec +}if +}repeat +pop +3 1 roll exch +256 mul add 256 mul add +//1_24_bitshift_1_sub div +}bind def +/ReadSample +{ +Buffer BitsLeft BitsPerSample +{2 copy ge{ +exit +}if +3 1 roll +8 add 3 1 roll +256 mul File read not{ +mark(Insufficient data for function.)//error exec +}if +add +3 1 roll +}loop +sub dup +2 index exch +neg bitshift +2 copy exch bitshift +4 3 roll exch sub +/Buffer exch def +exch/BitsLeft exch def +Div div +}bind def +/ReadSamplesRec +{0 +exec +}bind def +/ReadSamples +{ +//PDFR_DEBUG{ +(ReadSamples beg )print count = +}if +dup 1 eq{ +pop +0 1 Size 0 get 1 sub{ +I exch 0 exch put +0 1 M 1 sub{ +dup Range exch 2 mul 2 getinterval +//PDFR_DEBUG{ +(Will read a sample ... )print +}if +BitsPerSample 32 eq{//ReadSample32}{//ReadSample}ifelse +exec exch//ScaleVal exec +//PDFR_DEBUG{ +(value=)print dup = +}if +exch Table exch get +Size length//StoreSample exec +}for +}for +}{ +1 sub +dup Size exch get 0 exch 1 exch 1 sub{ +I exch 2 index exch put +dup//ReadSamplesRec exec +}for +pop +}ifelse +//PDFR_DEBUG{ +(ReadSamples end )print count = +}if +}bind def +//ReadSamplesRec 0//ReadSamples put +/StreamToArray +{//PDFR_DEBUG{ +(StreamToArray beg )print count = +}if +userdict/FuncDataReader get begin +dup/BitsPerSample get/BitsPerSample exch def +dup/Size get length/N exch def +dup/Range get length 2 idiv/M exch def +1 BitsPerSample bitshift 1 sub/Div exch def +/BitsLeft 0 def +/Buffer 0 def +dup/Size get/Size exch def +dup/Range get/Range exch def +/File 1 index//MakeStreamReader exec def +/I[N{0}repeat]def +M array +dup length 1 sub -1 0{ +2 index N//MakeTable exec +2 index 3 1 roll put +}for +/Table exch def +N//ReadSamples exec +PDFR_DEBUG{ +(Table = )print Table == +}if +/Data Table put +end +//PDFR_DEBUG{ +(StreamToArray end )print count = +}if +}bind def +/FunctionToProc10 +{ +PDFR_DEBUG{ +(FunctionToProc10 beg, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +PDFR_DEBUG{ +(FunctionToProc10 end)= +}if +}bind def +/FunctionToProc12 +{begin +currentdict/C0//knownget exec{length 1 eq}{true}ifelse{ +N +currentdict/C0//knownget exec{ +0 get +}{ +0 +}ifelse +currentdict/C1//knownget exec{ +0 get +}{ +1 +}ifelse +1 index sub +[4 1 roll +{ +4 2 roll +exp mul add +}aload pop +]cvx +}{ +[ +0 1 C0 length 1 sub{ +N +C0 2 index get +C1 3 index get +4 3 roll pop +1 index sub +[/dup load +5 2 roll +{ +4 2 roll +exp mul add +exch +}aload pop +]cvx +/exec load +}for +/pop load +]cvx +}ifelse +end +//PDFR_DEBUG{ +(FunctionType2Proc : )print dup == +}if +}bind def +/FunctionToProc14 +{//MakeStreamReader exec cvx exec +//PDFR_DEBUG{ +(FunctionType4Proc : )print dup == +}if +}bind def +/FunctionToProc1 +{ +dup/FunctionType get +{dup 0 eq{ +pop//FunctionToProc10 exec exit +}if +dup 2 eq{ +pop//FunctionToProc12 exec exit +}if +dup 4 eq{ +pop//FunctionToProc14 exec exit +}if +mark exch(Function type )exch( isn't implemented yet.)//error exec +}loop +}bind def +/FunctionToProc20 +{ +PDFR_DEBUG{ +(FunctionToProc20, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +}bind def +/FunctionToProc +{//PDFR_DEBUG{ +(FunctionToProc beg )print count = +}if +dup type/dicttype eq{ +dup/Domain get length 2 idiv +{ +dup 1 eq{ +pop//FunctionToProc1 exec exit +}if +dup 2 eq{ +pop//FunctionToProc20 exec exit +}if +mark(Functions with many arguments aren't implemented yet.)//error exec +}loop +}{ +//PDFR_DEBUG{(Not a function dict, assume already a procedure.)print}if +}ifelse +//PDFR_DEBUG{ +(FunctionToProc end )print count = +}if +}bind def +/spotfunctions mark +/Round{ +abs exch abs 2 copy add 1 le{ +dup mul exch dup mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +} +/Diamond{ +abs exch abs 2 copy add .75 le{ +dup mul exch dup mul add 1 exch sub +}{ +2 copy add 1.23 le{ +.85 mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +}ifelse +} +/Ellipse{ +abs exch abs 2 copy 3 mul exch 4 mul add 3 sub dup 0 lt{ +pop dup mul exch .75 div dup mul add 4 div 1 exch sub +}{ +dup 1 gt{ +pop 1 exch sub dup mul exch 1 exch sub +.75 div dup mul add 4 div 1 sub +}{ +.5 exch sub exch pop exch pop +}ifelse +}ifelse +} +/EllipseA{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseA{dup mul .9 mul exch dup mul add 1 sub} +/EllipseB{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub} +/EllipseC{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseC{dup mul .9 mul exch dup mul add 1 sub} +/Line{exch pop abs neg} +/LineX{pop} +/LineY{exch pop} +/Square{abs exch abs 2 copy lt{exch}if pop neg} +/Cross{abs exch abs 2 copy gt{exch}if pop neg} +/Rhomboid{abs exch abs 0.9 mul add 2 div} +/DoubleDot{2{360 mul sin 2 div exch}repeat add} +/InvertedDoubleDot{2{360 mul sin 2 div exch}repeat add neg} +/SimpleDot{dup mul exch dup mul add 1 exch sub} +/InvertedSimpleDot{dup mul exch dup mul add 1 sub} +/CosineDot{180 mul cos exch 180 mul cos add 2 div} +/Double{exch 2 div exch 2{360 mul sin 2 div exch}repeat add} +/InvertedDouble{ +exch 2 div exch 2{360 mul sin 2 div exch}repeat add neg +} +.dicttomark readonly def +/CheckColorSpace +{ +dup type/arraytype ne{ +mark(Resource )3 index( must be an array.)//error exec +}if +}bind def +/SubstitutePDFColorSpaceRec +{0 +exec +}bind def +/SubstitutePDFColorSpace +{ +{ +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup dup 1//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +1 exch put +}if +exit +}if +dup 0 get/Indexed eq{ +exit +}if +dup 0 get/Separation eq{ +dup dup 2//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +2 exch put +exit +}if +dup 0 get/CalGray eq{ +1 get +dup/Gamma//knownget exec{ +[exch[exch/exp load]cvx dup dup] +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedA exch] +exit +}if +dup 0 get/CalRGB eq{ +1 get +dup/Matrix//knownget exec{ +1 index exch/MatrixLMN exch put +}if +dup/Gamma//knownget exec{ +aload pop +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +3 array astore +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedABC exch] +exit +}if +dup 0 get/Lab eq{ +1 get +begin +currentdict/Range//knownget exec{aload pop}{-100 100 -100 100}ifelse +0 100 6 2 roll 6 array astore +/RangeABC exch def +/DecodeABC[{16 add 116 div}bind{500 div}bind{200 div}bind]def +/MatrixABC[1 1 1 1 0 0 0 0 -1]def +{dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108 841 div mul}ifelse} +/DecodeLMN[ +[3 index aload pop WhitePoint 0 get/mul load]cvx +[4 index aload pop WhitePoint 1 get/mul load]cvx +[5 index aload pop WhitePoint 2 get/mul load]cvx +]def pop +//PDFR_DEBUG{ +(Constructed from Lab <<)= +currentdict{exch = ==}forall +(>>)= +}if +[/CIEBasedABC currentdict] +end +exit +pop +}if +dup 0 get/CIEBasedA eq{exit}if +dup 0 get/CIEBasedABC eq{exit}if +mark exch(Unimplemented color space )exch//error exec +}loop +}bind def +//SubstitutePDFColorSpaceRec 0//SubstitutePDFColorSpace put +/ResolveArrayElement +{2 copy get +dup type dup/arraytype eq exch +/packedarraytype eq or{ +dup length 1 ge exch xcheck and{ +2 copy get +dup 0 get type/integertype eq +1 index 1 get type dup/arraytype +eq exch +/packedarraytype eq or +and{ +exec +2 index 4 1 roll put +}{ +pop pop +}ifelse +}{ +pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/ResolveColorSpaceArrayRec +{0 +exec +}bind def +/SetColorSpaceSafe +{ +PDFR_DEBUG{ +(SetColorSpaceSafe beg)= +}if +currentcolorspace dup type/arraytype eq{ +1 index type/arraytype eq{ +dup length 2 index length eq{ +false exch +dup length 0 exch 1 exch 1 sub{ +dup +4 index exch get exch +2 index exch get +ne{ +exch pop true exch exit +}if +}for +pop +{ +setcolorspace +}{ +pop +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +PDFR_DEBUG{ +(SetColorSpaceSafe end)= +}if +}bind def +/ResolveColorSpaceArray +{ +//PDFR_DEBUG{ +(ResolveColorSpaceArray beg )print dup == +}if +dup 0 get/Indexed eq{ +1//ResolveArrayElement exec +dup dup 1 get +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArrayRec exec +1 exch put +}{ +pop pop +}ifelse +}if +dup 0 get/Separation eq{ +dup dup 1 get UnPDFEscape 1 exch put +3//ResolveArrayElement exec +dup 3 get//FunctionToProc exec +2 copy 3 exch put +pop +}if +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup 1 get dup type/arraytype eq{ +ResolveColorSpaceArray +1 index 1 3 -1 roll put +}{ +pop +}ifelse +}if +}if +PDFR_DEBUG{ +(Construcrted color space :)= +dup == +}if +//PDFR_DEBUG{ +(ResolveColorSpaceArray end )print dup == +}if +}bind def +//ResolveColorSpaceArrayRec 0//ResolveColorSpaceArray put +/ResolveColorSpace +{ +//PDFR_DEBUG{ +(ResolveColorSpace beg )print dup = +}if +dup//SimpleColorSpaceNames exch known not{ +dup//PDFColorSpaces exch//knownget exec{ +exch pop +//PDFR_DEBUG{ +(ResolveColorSpace known )= +}if +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/ColorSpace//DoNothing//ResolveD exec +exch//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArray exec +dup//PDFColorSpaces 4 2 roll put +}if +}ifelse +}if +//PDFR_DEBUG{ +(ResolveColorSpace end )print dup == +}if +}bind def +/CheckPattern +{ +dup/PatternType//knownget exec{ +dup 1 ne{ +mark(Resource )4 index( is a shading, which can't be handled at level 2. )//error exec +}if +pop +}if +dup/Type knownget{ +/Pattern ne{ +mark(Resource )4 index( must have /Type/Pattern .)//error exec +}if +}if +}bind def +/PaintProc +{/Context get +//RunDelayedStream exec +}bind def +/ResolvePattern +{ +dup +userdict/PDFR_Patterns get +exch//knownget exec{ +exch pop +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/Pattern//DoNothing//ResolveD exec +exch//CheckPattern//ResolveD exec +dup dup/Context exch put +dup/Resources//DoNothing//ResolveD exec pop +dup/PaintProc//PaintProc put +gsave userdict/PDFR_InitialGS get setgstate +currentglobal exch false setglobal +dup/Matrix get +makepattern +exch setglobal +grestore +dup userdict/PDFR_Patterns get +4 2 roll +put +}ifelse +}bind def +/SetColor +{//PDFR_DEBUG{ +(SetColor beg)= +}if +currentcolorspace dup type/nametype eq{ +pop setcolor +}{ +0 get/Pattern eq{ +//ResolvePattern exec setpattern +}{ +setcolor +}ifelse +}ifelse +//PDFR_DEBUG{ +(SetColor end)= +}if +}bind def +/ImageKeys 15 dict begin +/BPC/BitsPerComponent def +/CS/ColorSpace def +/D/Decode def +/DP/DecodeParms def +/F/Filter def +/H/Height def +/IM/ImageMask def +/I/Interpolate def +/W/Width def +currentdict end readonly def +/ImageValues 15 dict begin +/G/DeviceGray def +/RGB/DeviceRGB def +/CMYK/DeviceCMYK def +/I/Indexed def +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/GetColorSpaceRange +{2 index/ColorSpace get +dup type/arraytype eq{ +1 get +}if +exch//knownget exec{ +exch pop +}if +}bind def +/DecodeArrays 15 dict begin +/DeviceGray{[0 1]}def +/DeviceRGB{[0 1 0 1 0 1]}def +/DeviceCMYK{[0 1 0 1 0 1 0 1]}def +/Indexed{ +dup/BitsPerComponent get 1 exch bitshift 1 sub[exch 0 exch] +}def +/Separation{[0 1]}def +/CIEBasedA{[0 1]/RangeA//GetColorSpaceRange exec}def +/CIEBasedABC{[0 1 0 1 0 1]/RangeABC//GetColorSpaceRange exec}def +currentdict end readonly def +/Substitute +{1 index//knownget exec{ +exch pop +}if +}bind def +/DebugImagePrinting +{ +//PDFR_DEBUG{ +(Image :)= +dup{exch//=only exec( )print == +}forall +}if +}bind def +/CompleteImage +{ +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec pop +}if +dup/Decode known not{ +dup/ColorSpace//knownget exec{ +dup type/arraytype eq{ +0 get +}if +//DecodeArrays exch get exec +}{ +[0 1] +}ifelse +1 index exch/Decode exch put +}if +dup/ImageMatrix[2 index/Width get 0 0 5 index/Height get neg +0 7 index/Height get]put +//DebugImagePrinting exec +}bind def +/CompleteInlineImage +{ +//PDFR_DEBUG{ +(CompleteInlineImage beg)= +}if +dup/ImageType known not{ +dup/ImageType 1 put +}if +dup length dict exch{ +exch//ImageKeys//Substitute exec +dup/Filter eq{ +exch//ImageValues//Substitute exec exch +}if +dup/ColorSpace eq{ +exch +dup//ImageValues exch//knownget exec{ +exch pop +}{ +//ResolveColorSpace exec +}ifelse +exch +}if +exch +2 index 3 1 roll put +}forall +//CompleteImage exec +dup/DataSource 2 copy get +2 index//AppendFilters exec put +//PDFR_DEBUG{ +(CompleteInlineImage end)= +}if +}bind def +/CompleteOutlineImage +{ +currentglobal exch dup gcheck setglobal +//PDFR_DEBUG{ +(CompleteOutlineImage beg)= +}if +dup dup//MakeStreamReader exec/DataSource exch put +dup/ImageType known not{ +//CompleteImage exec +dup/ImageType 1 put +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//ResolveColorSpaceArray exec +//SubstitutePDFColorSpace exec +1 index exch/ColorSpace exch put +}{ +pop +}ifelse +}if +}if +//PDFR_DEBUG{ +(CompleteOutlineImage end)= +}if +exch setglobal +}bind def +/DoImage +{ +//PDFR_DEBUG{ +(DoImage beg)= +}if +gsave +dup/ColorSpace//knownget exec{setcolorspace}if +dup/ImageMask//knownget exec not{false}if +{imagemask}{image}ifelse +grestore +//PDFR_DEBUG{ +(DoImage end)= +}if +}bind def +/GSave +{ +gsave +//PDFReader/GraphicStateStackPointer get +dup//GraphicStateStack exch get null eq{ +dup//GraphicStateStack exch//InitialGraphicState length dict put +}if +dup//GraphicStateStack exch get +//GraphicState exch copy pop +1 add//PDFReader exch/GraphicStateStackPointer exch put +}bind def +/GRestore +{ +grestore +//PDFReader/GraphicStateStackPointer get +1 sub dup +//PDFReader exch/GraphicStateStackPointer exch put +//GraphicStateStack exch get +//GraphicState copy pop +}bind def +/SetFont +{dup//GraphicState exch/FontSize exch put +//ResolveAndSetFont exec +//GraphicState/FontMatrixNonHV currentfont/FontMatrix get 1 get 0 ne put +}bind def +/ShowText +{//GraphicState/TextRenderingMode get 0 eq{ +//GraphicState/WordSpacing get 0 +32 +//GraphicState/CharacterSpacing get 0 +6 5 roll +//GraphicState/FontMatrixNonHV get{ +[ +7 -2 roll pop +5 -2 roll pop +5 -1 roll +{ +exch +pop +3 index add +exch 2 index eq{3 index add}if +4 1 roll +} +currentfont/FontMatrix get 0 get 0 ne{ +1 1 index length 1 sub getinterval cvx +}if +5 index +cshow +pop pop pop] +xshow +}{ +awidthshow +}ifelse +}{ +//GraphicState/CharacterSpacing get 0 eq +//GraphicState/FontMatrixNonHV get not and +//GraphicState/WordSpacing get 0 eq and{ +true charpath +}{ +{ +exch +pop 0 +currentpoint 5 4 roll +( )dup 0 3 index put true charpath +5 1 roll +moveto rmoveto +//GraphicState/CharacterSpacing get 0 rmoveto +32 eq{ +//GraphicState/WordSpacing get 0 rmoveto +}if +} +//GraphicState/FontMatrixNonHV get dup not exch{ +pop currentfont/FontMatrix get 0 get 0 ne +}if{ +1 1 index length 1 sub getinterval cvx +}if +exch cshow +}ifelse +}ifelse +}bind def +/ShowTextBeg +{//GraphicState/TextRenderingMode get 0 ne{ +currentpoint newpath moveto +}if +}bind def +/ShowTextEnd +{//GraphicState/TextRenderingMode get +{dup 1 eq{ +stroke exit +}if +dup 2 eq{ +gsave fill grestore stroke exit +}if +dup 3 eq{ +currentpoint newpath moveto +}if +dup 4 eq{ +gsave fill grestore clip exit +}if +dup 5 eq{ +gsave stroke grestore clip exit +}if +dup 6 eq{ +gsave fill grestore gsave stroke grestore fill exit +}if +dup 7 eq{ +clip exit +}if +exit +}loop +pop +}bind def +/ShowTextWithGlyphPositioning +{//ShowTextBeg exec +{dup type/stringtype eq{ +//ShowText exec +}{ +neg 1000 div//GraphicState/FontSize get mul 0 rmoveto +}ifelse +}forall +//ShowTextEnd exec +}bind def +/CheckFont +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/SetTransfer +{ +//PDFR_DEBUG{(SetTransfer beg )print count =}if +dup type/arraytype eq 1 index xcheck not and{ +0 4 getinterval aload pop +setcolortransfer +}{ +settransfer +}ifelse +//PDFR_DEBUG{(SetTransfer end )print count =}if +}bind def +/CheckExtGState +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/CheckHalftone +{dup/HalftoneType known not{ +mark(Resource )3 index( must have /HalftoneType.)//error exec +}if +}bind def +/ResolveFunction +{ +//PDFR_DEBUG{(ResolveFunction beg )print dup = count =}if +2 copy get//IsObjRef exec{ +2 copy//DoNothing//ResolveD exec +3 copy put pop +}if +2 copy get dup type/arraytype eq exch xcheck and not{ +2 copy get +dup type/arraytype eq 1 index xcheck not and{ +dup length 1 sub -1 0{ +2 copy//DoNothing ResolveA +dup/Identity eq{ +pop 2 copy{}put +}{ +//FunctionToProc exec +3 copy put pop +}ifelse +pop +}for +}{ +dup/Default eq{ +}{ +dup/Identity eq{ +pop{} +}{dup type/nametype eq{ +//spotfunctions exch get +}{ +//FunctionToProc exec +}ifelse +}ifelse +}ifelse +}ifelse +3 copy put +exch pop +}{ +1 index exch get +}ifelse +//PDFR_DEBUG{(ResolveFunction end )print dup == count =}if +}bind def +/ResolveFunctionSafe +{2 copy known{ +//ResolveFunction exec +}if +pop +}bind def +/CreateHalftoneThresholds +{ +dup/Thresholds known not{ +dup/HalftoneType get 10 eq{ +dup dup//MakeStreamReader exec +/Thresholds exch put +}if +dup/HalftoneType get dup 3 eq exch 6 eq or{ +dup dup//MakeStreamReader exec +//BlockBuffer readstring pop +dup length +dup 0 eq{ +mark(Could not read Thresholds)//error exec +}if +string copy/Thresholds exch put +dup/HalftoneType 3 put +}if +}if +}bind def +/SetExtGState +{ +//PDFReader/CurrentObject get/Context get/Resources get +/ExtGState//DoNothing//ResolveD exec +exch//CheckExtGState//ResolveD exec +dup/LW//knownget exec{ +setlinewidth +}if +dup/LC//knownget exec{ +setlinecap +}if +dup/LJ//knownget exec{ +setlinejoin +}if +dup/ML//knownget exec{ +setmeterlimit +}if +dup/D//knownget exec{ +setdash +}if +dup/RI//knownget exec{ +mark(Unimplemented ExtGState.RI)//error exec +}if +dup/OP//knownget exec{ +setoverprint +}if +dup/op//knownget exec{ +setoverprint +}if +dup/OPM//knownget exec{ +mark(Unimplemented ExtGState.OPM)//error exec +}if +dup/Font//knownget exec{ +mark(Unimplemented ExtGState.Font)//error exec +}if +dup/BG known{ +/BG//ResolveFunction exec +setblackgeneration +}if +dup/BG2 known{ +/BG2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/BG2 get +}if +setblackgeneration +}if +dup/UCR known{ +/UCR//ResolveFunction exec +setundercolorremoval +}if +dup/UCR2 known{ +/UCR2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/UCR2 get +}if +setundercolorremoval +}if +dup/TR known{ +/TR//ResolveFunction exec +//SetTransfer exec +}if +dup/TR2 known{ +/TR2//ResolveFunction exec +dup/Default eq{ +pop//InitialExtGState/TR2 get +aload pop setcolortransfer +}{ +//SetTransfer exec +}ifelse +}if +dup/HT//knownget exec{ +dup/Default eq{ +pop//InitialExtGState/HT get +sethalftone +}{ +//PDFR_DEBUG{(Ht beg)=}if +pop dup/HT//CheckHalftone//ResolveD exec +/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +null exch +dup/HalftoneType get dup 5 eq exch dup 4 eq exch 2 eq or or{ +dup{ +dup//IsObjRef exec{ +pop +1 index exch//CheckHalftone ResolveD +}if +dup type/dicttype eq{ +dup/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +//CreateHalftoneThresholds exec +dup/HalftoneType get 5 gt{ +4 3 roll pop +dup 4 1 roll +}if +}if +pop pop +}forall +}if +//CreateHalftoneThresholds exec +//PDFR_DEBUG{ +(HT:)= +dup{ +1 index/Default eq{ +(Default <<)= +exch pop +{exch = ==}forall +(>>)= +}{ +exch = == +}ifelse +}forall +(HT end)= flush +}if +exch dup null ne{ +(Warning: Ignoring a halftone with a Level 3 component halftone Type )print dup/HalftoneType get = +pop pop +}{ +pop +dup/HalftoneType get 5 gt{ +(Warning: Ignoring a Level 3 halftone Type )print dup/HalftoneType get = +pop +}{ +sethalftone +}ifelse +}ifelse +//PDFR_DEBUG{(HT set)= flush}if +}ifelse +}if +dup/FL//knownget exec{ +setflattness +}if +dup/SM//knownget exec{ +setsmoothness +}if +dup/SA//knownget exec{ +setstrokeadjust +}if +dup/BM//knownget exec{ +mark(Unimplemented ExtGState.BM)//error exec +}if +dup/SMask//knownget exec{ +mark(Unimplemented ExtGState.SMask)//error exec +}if +dup/CA//knownget exec{ +mark(Unimplemented ExtGState.CA)//error exec +}if +dup/ca//knownget exec{ +mark(Unimplemented ExtGState.ca)//error exec +}if +dup/AIS//knownget exec{ +mark(Unimplemented ExtGState.AIS)//error exec +}if +dup/TK//knownget exec{ +mark(Unimplemented ExtGState.TK)//error exec +}if +pop +}bind def +/CheckXObject +{dup/Subtype get dup/Image ne exch dup/Form ne exch/PS ne and and{ +mark(Resource )3 index( must have /Subtype /Image or /Form or /PS.)//error exec +}if +}bind def +/DoXObject +{ +//PDFReader/CurrentObject get/Context get/Resources get +/XObject//DoNothing//ResolveD exec +exch//CheckXObject//ResolveD exec +dup/Subtype get +dup/Image eq{ +pop +//CompleteOutlineImage exec +//DoImage exec +}{ +dup/PS eq{ +PDFR_DEBUG{ +(Executing a PS Xobject)= +}if +pop +//RunDelayedStream exec +}{ +dup/Form eq{ +pop +PDFR_DEBUG{ +(Executing a Form XObject)= +}if +//PDFReader/CurrentObject get exch +dup//PDFReader exch<< exch/Context exch >>/CurrentObject exch put +dup/Matrix get concat +dup/BBox get aload pop exch 3 index sub exch 2 index sub rectclip +//RunDelayedStream exec +//PDFReader exch/CurrentObject exch put +}{ +mark exch(unimplemented XObject type )exch//error exec +}ifelse +}ifelse +}ifelse +}bind def +/Operators 50 dict begin +/q{//GSave exec}bind def +/Q{//GRestore exec}bind def +/cm{//TempMatrix astore concat}bind def +/i{1 .min setflat}bind def +/J/setlinecap load def +/d/setdash load def +/j/setlinejoin load def +/w/setlinewidth load def +/M/setmiterlimit load def +/gs{SetExtGState}bind def +/g/setgray load def +/rg/setrgbcolor load def +/k/setcmykcolor load def +/cs{//ResolveColorSpace exec//SetColorSpaceSafe exec +}bind def +/sc/setcolor load def +/scn{//SetColor exec}bind def +/G/setgray load def +/RG/setrgbcolor load def +/K/setcmykcolor load def +/CS//cs def +/ri{SetColorRenderingIntent}bind def +/SC/setcolor load def +/SCN{//SetColor exec}bind def +/m/moveto load def +/l/lineto load def +/c/curveto load def +/v{currentpoint 6 2 roll curveto}bind def +/y{2 copy curveto}bind def +/re{ +4 2 roll moveto exch dup 0 rlineto 0 3 -1 roll rlineto neg 0 rlineto +closepath +}def +/h/closepath load def +/n/newpath load def +/S/stroke load def +/s{closepath stroke}bind def +/f/fill load def +/f*/eofill load def +/B{gsave fill grestore stroke}bind def +/b{closepath gsave fill grestore stroke}bind def +/B*{gsave eofill grestore stroke}bind def +/b*{closepath gsave eofill grestore stroke}bind def +/W/clip load def +/W*/eoclip load def +/sh{ +ResolveShading +dup/Background known{ +gsave +dup/ColorSpace get setcolorspace +dup/Background get aload pop setcolor +pathbbox +2 index sub exch 3 index sub exch +rectfill +grestore +}if +shfill +}bind def +/Do{//DoXObject exec}bind def +/BI{currentglobal false setglobal<<}bind def +/ID{>> +dup/DataSource currentfile +2 index/F//knownget exec{ +/A85 eq{ +0(~>)/SubFileDecode filter +}if +}if +put +//CompleteInlineImage exec +exch setglobal +//DoImage exec +}bind def +/EI{}bind def +/BT{gsave//GraphicState/InitialTextMatrix get currentmatrix pop}bind def +/ET{grestore}bind def +/Tc{//GraphicState exch/CharacterSpacing exch put}bind def +/TL{//GraphicState exch/TextLeading exch put}bind def +/Tr{//GraphicState exch/TextRenderingMode exch put}bind def +/Ts{ +mark(Unimplemented SetTextRise)//error exec +}bind def +/Tw{//GraphicState exch/WordSpacing exch put}bind def +/Tz{ +mark(Unimplemented SetHorizontalTextScaling)//error exec +}bind def +/Td{translate 0 0 moveto}bind def +/TD{dup neg//TL exec//Td exec}bind def +/Tm{//GraphicState/InitialTextMatrix get setmatrix +//TempMatrix astore concat +0 0 moveto}bind def +/T*{0//GraphicState/TextLeading get neg//Td exec}bind def +/Tj{//ShowTextBeg exec//ShowText exec//ShowTextEnd exec}bind def +/'{//T* exec//ShowText exec//ShowTextEnd exec}bind def +/"{3 2 roll//Tw exec exch//Tc exec//' exec}bind def +/TJ//ShowTextWithGlyphPositioning def +/Tf//SetFont def +/d0/setcharwidth load def +/d1/setcachedevice load def +/BDC{pop pop}bind def +/BMC{pop}bind def +/EMC{}bind def +/BX{BeginCompatibilitySection}bind def +/EX{EndCompatibilitySection}bind def +/DP{DefineMarkedContentPointWithPropertyList}bind def +/MP{DefineMarkedContentPoint}bind def +/PS{cvx exec}bind def +currentdict end def +//PDFR_STREAM{ +//Operators length dict begin +//Operators{ +exch dup +[exch//=only/exec load +( )/print load +8 7 roll +dup type/arraytype eq{ +/exec load +}if +( )/print load +]cvx +def +}forall +currentdict end/Operators exch def +}if +/.registerencoding +{pop pop +}bind def +/.defineencoding +{def +}bind def +/.findencoding +{load +}bind def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +256 packedarray +5 1 index .registerencoding +.defineencoding +exec +/AdobeGlyphList mark +/A 16#0041 +/AE 16#00c6 +/AEacute 16#01fc +/AEmacron 16#01e2 +/AEsmall 16#f7e6 +/Aacute 16#00c1 +/Aacutesmall 16#f7e1 +/Abreve 16#0102 +/Abreveacute 16#1eae +/Abrevecyrillic 16#04d0 +/Abrevedotbelow 16#1eb6 +/Abrevegrave 16#1eb0 +/Abrevehookabove 16#1eb2 +/Abrevetilde 16#1eb4 +/Acaron 16#01cd +/Acircle 16#24b6 +/Acircumflex 16#00c2 +/Acircumflexacute 16#1ea4 +/Acircumflexdotbelow 16#1eac +/Acircumflexgrave 16#1ea6 +/Acircumflexhookabove 16#1ea8 +/Acircumflexsmall 16#f7e2 +/Acircumflextilde 16#1eaa +/Acute 16#f6c9 +/Acutesmall 16#f7b4 +/Acyrillic 16#0410 +/Adblgrave 16#0200 +/Adieresis 16#00c4 +/Adieresiscyrillic 16#04d2 +/Adieresismacron 16#01de +/Adieresissmall 16#f7e4 +/Adotbelow 16#1ea0 +/Adotmacron 16#01e0 +/Agrave 16#00c0 +/Agravesmall 16#f7e0 +/Ahookabove 16#1ea2 +/Aiecyrillic 16#04d4 +/Ainvertedbreve 16#0202 +/Alpha 16#0391 +/Alphatonos 16#0386 +/Amacron 16#0100 +/Amonospace 16#ff21 +/Aogonek 16#0104 +/Aring 16#00c5 +/Aringacute 16#01fa +/Aringbelow 16#1e00 +/Aringsmall 16#f7e5 +/Asmall 16#f761 +/Atilde 16#00c3 +/Atildesmall 16#f7e3 +/Aybarmenian 16#0531 +/B 16#0042 +/Bcircle 16#24b7 +/Bdotaccent 16#1e02 +/Bdotbelow 16#1e04 +/Becyrillic 16#0411 +/Benarmenian 16#0532 +/Beta 16#0392 +/Bhook 16#0181 +/Blinebelow 16#1e06 +/Bmonospace 16#ff22 +/Brevesmall 16#f6f4 +/Bsmall 16#f762 +/Btopbar 16#0182 +/C 16#0043 +/Caarmenian 16#053e +/Cacute 16#0106 +/Caron 16#f6ca +/Caronsmall 16#f6f5 +/Ccaron 16#010c +/Ccedilla 16#00c7 +/Ccedillaacute 16#1e08 +/Ccedillasmall 16#f7e7 +/Ccircle 16#24b8 +/Ccircumflex 16#0108 +/Cdot 16#010a +/Cdotaccent 16#010a +/Cedillasmall 16#f7b8 +/Chaarmenian 16#0549 +/Cheabkhasiancyrillic 16#04bc +/Checyrillic 16#0427 +/Chedescenderabkhasiancyrillic 16#04be +/Chedescendercyrillic 16#04b6 +/Chedieresiscyrillic 16#04f4 +/Cheharmenian 16#0543 +/Chekhakassiancyrillic 16#04cb +/Cheverticalstrokecyrillic 16#04b8 +/Chi 16#03a7 +/Chook 16#0187 +/Circumflexsmall 16#f6f6 +/Cmonospace 16#ff23 +/Coarmenian 16#0551 +/Csmall 16#f763 +/D 16#0044 +/DZ 16#01f1 +/DZcaron 16#01c4 +/Daarmenian 16#0534 +/Dafrican 16#0189 +/Dcaron 16#010e +/Dcedilla 16#1e10 +/Dcircle 16#24b9 +/Dcircumflexbelow 16#1e12 +/Dcroat 16#0110 +/Ddotaccent 16#1e0a +/Ddotbelow 16#1e0c +/Decyrillic 16#0414 +/Deicoptic 16#03ee +/Delta 16#2206 +/Deltagreek 16#0394 +/Dhook 16#018a +/Dieresis 16#f6cb +/DieresisAcute 16#f6cc +/DieresisGrave 16#f6cd +/Dieresissmall 16#f7a8 +/Digammagreek 16#03dc +/Djecyrillic 16#0402 +/Dlinebelow 16#1e0e +/Dmonospace 16#ff24 +/Dotaccentsmall 16#f6f7 +/Dslash 16#0110 +/Dsmall 16#f764 +/Dtopbar 16#018b +/Dz 16#01f2 +/Dzcaron 16#01c5 +/Dzeabkhasiancyrillic 16#04e0 +/Dzecyrillic 16#0405 +/Dzhecyrillic 16#040f +/E 16#0045 +/Eacute 16#00c9 +/Eacutesmall 16#f7e9 +/Ebreve 16#0114 +/Ecaron 16#011a +/Ecedillabreve 16#1e1c +/Echarmenian 16#0535 +/Ecircle 16#24ba +/Ecircumflex 16#00ca +/Ecircumflexacute 16#1ebe +/Ecircumflexbelow 16#1e18 +/Ecircumflexdotbelow 16#1ec6 +/Ecircumflexgrave 16#1ec0 +/Ecircumflexhookabove 16#1ec2 +/Ecircumflexsmall 16#f7ea +/Ecircumflextilde 16#1ec4 +/Ecyrillic 16#0404 +/Edblgrave 16#0204 +/Edieresis 16#00cb +/Edieresissmall 16#f7eb +/Edot 16#0116 +/Edotaccent 16#0116 +/Edotbelow 16#1eb8 +/Efcyrillic 16#0424 +/Egrave 16#00c8 +/Egravesmall 16#f7e8 +/Eharmenian 16#0537 +/Ehookabove 16#1eba +/Eightroman 16#2167 +/Einvertedbreve 16#0206 +/Eiotifiedcyrillic 16#0464 +/Elcyrillic 16#041b +/Elevenroman 16#216a +/Emacron 16#0112 +/Emacronacute 16#1e16 +/Emacrongrave 16#1e14 +/Emcyrillic 16#041c +/Emonospace 16#ff25 +/Encyrillic 16#041d +/Endescendercyrillic 16#04a2 +/Eng 16#014a +/Enghecyrillic 16#04a4 +/Enhookcyrillic 16#04c7 +/Eogonek 16#0118 +/Eopen 16#0190 +/Epsilon 16#0395 +/Epsilontonos 16#0388 +/Ercyrillic 16#0420 +/Ereversed 16#018e +/Ereversedcyrillic 16#042d +/Escyrillic 16#0421 +/Esdescendercyrillic 16#04aa +/Esh 16#01a9 +/Esmall 16#f765 +/Eta 16#0397 +/Etarmenian 16#0538 +/Etatonos 16#0389 +/Eth 16#00d0 +/Ethsmall 16#f7f0 +/Etilde 16#1ebc +/Etildebelow 16#1e1a +/Euro 16#20ac +/Ezh 16#01b7 +/Ezhcaron 16#01ee +/Ezhreversed 16#01b8 +/F 16#0046 +/Fcircle 16#24bb +/Fdotaccent 16#1e1e +/Feharmenian 16#0556 +/Feicoptic 16#03e4 +/Fhook 16#0191 +/Fitacyrillic 16#0472 +/Fiveroman 16#2164 +/Fmonospace 16#ff26 +/Fourroman 16#2163 +/Fsmall 16#f766 +/G 16#0047 +/GBsquare 16#3387 +/Gacute 16#01f4 +/Gamma 16#0393 +/Gammaafrican 16#0194 +/Gangiacoptic 16#03ea +/Gbreve 16#011e +/Gcaron 16#01e6 +/Gcedilla 16#0122 +/Gcircle 16#24bc +/Gcircumflex 16#011c +/Gcommaaccent 16#0122 +/Gdot 16#0120 +/Gdotaccent 16#0120 +/Gecyrillic 16#0413 +/Ghadarmenian 16#0542 +/Ghemiddlehookcyrillic 16#0494 +/Ghestrokecyrillic 16#0492 +/Gheupturncyrillic 16#0490 +/Ghook 16#0193 +/Gimarmenian 16#0533 +/Gjecyrillic 16#0403 +/Gmacron 16#1e20 +/Gmonospace 16#ff27 +/Grave 16#f6ce +/Gravesmall 16#f760 +/Gsmall 16#f767 +/Gsmallhook 16#029b +/Gstroke 16#01e4 +/H 16#0048 +/H18533 16#25cf +/H18543 16#25aa +/H18551 16#25ab +/H22073 16#25a1 +/HPsquare 16#33cb +/Haabkhasiancyrillic 16#04a8 +/Hadescendercyrillic 16#04b2 +/Hardsigncyrillic 16#042a +/Hbar 16#0126 +/Hbrevebelow 16#1e2a +/Hcedilla 16#1e28 +/Hcircle 16#24bd +/Hcircumflex 16#0124 +/Hdieresis 16#1e26 +/Hdotaccent 16#1e22 +/Hdotbelow 16#1e24 +/Hmonospace 16#ff28 +/Hoarmenian 16#0540 +/Horicoptic 16#03e8 +/Hsmall 16#f768 +/Hungarumlaut 16#f6cf +/Hungarumlautsmall 16#f6f8 +/Hzsquare 16#3390 +/I 16#0049 +/IAcyrillic 16#042f +/IJ 16#0132 +/IUcyrillic 16#042e +/Iacute 16#00cd +/Iacutesmall 16#f7ed +/Ibreve 16#012c +/Icaron 16#01cf +/Icircle 16#24be +/Icircumflex 16#00ce +/Icircumflexsmall 16#f7ee +/Icyrillic 16#0406 +/Idblgrave 16#0208 +/Idieresis 16#00cf +/Idieresisacute 16#1e2e +/Idieresiscyrillic 16#04e4 +/Idieresissmall 16#f7ef +/Idot 16#0130 +/Idotaccent 16#0130 +/Idotbelow 16#1eca +/Iebrevecyrillic 16#04d6 +/Iecyrillic 16#0415 +/Ifraktur 16#2111 +/Igrave 16#00cc +/Igravesmall 16#f7ec +/Ihookabove 16#1ec8 +/Iicyrillic 16#0418 +/Iinvertedbreve 16#020a +/Iishortcyrillic 16#0419 +/Imacron 16#012a +/Imacroncyrillic 16#04e2 +/Imonospace 16#ff29 +/Iniarmenian 16#053b +/Iocyrillic 16#0401 +/Iogonek 16#012e +/Iota 16#0399 +/Iotaafrican 16#0196 +/Iotadieresis 16#03aa +/Iotatonos 16#038a +/Ismall 16#f769 +/Istroke 16#0197 +/Itilde 16#0128 +/Itildebelow 16#1e2c +/Izhitsacyrillic 16#0474 +/Izhitsadblgravecyrillic 16#0476 +/J 16#004a +/Jaarmenian 16#0541 +/Jcircle 16#24bf +/Jcircumflex 16#0134 +/Jecyrillic 16#0408 +/Jheharmenian 16#054b +/Jmonospace 16#ff2a +/Jsmall 16#f76a +/K 16#004b +/KBsquare 16#3385 +/KKsquare 16#33cd +/Kabashkircyrillic 16#04a0 +/Kacute 16#1e30 +/Kacyrillic 16#041a +/Kadescendercyrillic 16#049a +/Kahookcyrillic 16#04c3 +/Kappa 16#039a +/Kastrokecyrillic 16#049e +/Kaverticalstrokecyrillic 16#049c +/Kcaron 16#01e8 +/Kcedilla 16#0136 +/Kcircle 16#24c0 +/Kcommaaccent 16#0136 +/Kdotbelow 16#1e32 +/Keharmenian 16#0554 +/Kenarmenian 16#053f +/Khacyrillic 16#0425 +/Kheicoptic 16#03e6 +/Khook 16#0198 +/Kjecyrillic 16#040c +/Klinebelow 16#1e34 +/Kmonospace 16#ff2b +/Koppacyrillic 16#0480 +/Koppagreek 16#03de +/Ksicyrillic 16#046e +/Ksmall 16#f76b +/L 16#004c +/LJ 16#01c7 +/LL 16#f6bf +/Lacute 16#0139 +/Lambda 16#039b +/Lcaron 16#013d +/Lcedilla 16#013b +/Lcircle 16#24c1 +/Lcircumflexbelow 16#1e3c +/Lcommaaccent 16#013b +/Ldot 16#013f +/Ldotaccent 16#013f +/Ldotbelow 16#1e36 +/Ldotbelowmacron 16#1e38 +/Liwnarmenian 16#053c +/Lj 16#01c8 +/Ljecyrillic 16#0409 +/Llinebelow 16#1e3a +/Lmonospace 16#ff2c +/Lslash 16#0141 +/Lslashsmall 16#f6f9 +/Lsmall 16#f76c +/M 16#004d +/MBsquare 16#3386 +/Macron 16#f6d0 +/Macronsmall 16#f7af +/Macute 16#1e3e +/Mcircle 16#24c2 +/Mdotaccent 16#1e40 +/Mdotbelow 16#1e42 +/Menarmenian 16#0544 +/Mmonospace 16#ff2d +/Msmall 16#f76d +/Mturned 16#019c +/Mu 16#039c +/N 16#004e +/NJ 16#01ca +/Nacute 16#0143 +/Ncaron 16#0147 +/Ncedilla 16#0145 +/Ncircle 16#24c3 +/Ncircumflexbelow 16#1e4a +/Ncommaaccent 16#0145 +/Ndotaccent 16#1e44 +/Ndotbelow 16#1e46 +/Nhookleft 16#019d +/Nineroman 16#2168 +/Nj 16#01cb +/Njecyrillic 16#040a +/Nlinebelow 16#1e48 +/Nmonospace 16#ff2e +/Nowarmenian 16#0546 +/Nsmall 16#f76e +/Ntilde 16#00d1 +/Ntildesmall 16#f7f1 +/Nu 16#039d +/O 16#004f +/OE 16#0152 +/OEsmall 16#f6fa +/Oacute 16#00d3 +/Oacutesmall 16#f7f3 +/Obarredcyrillic 16#04e8 +/Obarreddieresiscyrillic 16#04ea +/Obreve 16#014e +/Ocaron 16#01d1 +/Ocenteredtilde 16#019f +/Ocircle 16#24c4 +/Ocircumflex 16#00d4 +/Ocircumflexacute 16#1ed0 +/Ocircumflexdotbelow 16#1ed8 +/Ocircumflexgrave 16#1ed2 +/Ocircumflexhookabove 16#1ed4 +/Ocircumflexsmall 16#f7f4 +/Ocircumflextilde 16#1ed6 +/Ocyrillic 16#041e +/Odblacute 16#0150 +/Odblgrave 16#020c +/Odieresis 16#00d6 +/Odieresiscyrillic 16#04e6 +/Odieresissmall 16#f7f6 +/Odotbelow 16#1ecc +/Ogoneksmall 16#f6fb +/Ograve 16#00d2 +/Ogravesmall 16#f7f2 +/Oharmenian 16#0555 +/Ohm 16#2126 +/Ohookabove 16#1ece +/Ohorn 16#01a0 +/Ohornacute 16#1eda +/Ohorndotbelow 16#1ee2 +/Ohorngrave 16#1edc +/Ohornhookabove 16#1ede +/Ohorntilde 16#1ee0 +/Ohungarumlaut 16#0150 +/Oi 16#01a2 +/Oinvertedbreve 16#020e +/Omacron 16#014c +/Omacronacute 16#1e52 +/Omacrongrave 16#1e50 +/Omega 16#2126 +/Omegacyrillic 16#0460 +/Omegagreek 16#03a9 +/Omegaroundcyrillic 16#047a +/Omegatitlocyrillic 16#047c +/Omegatonos 16#038f +/Omicron 16#039f +/Omicrontonos 16#038c +/Omonospace 16#ff2f +/Oneroman 16#2160 +/Oogonek 16#01ea +/Oogonekmacron 16#01ec +/Oopen 16#0186 +/Oslash 16#00d8 +/Oslashacute 16#01fe +/Oslashsmall 16#f7f8 +/Osmall 16#f76f +/Ostrokeacute 16#01fe +/Otcyrillic 16#047e +/Otilde 16#00d5 +/Otildeacute 16#1e4c +/Otildedieresis 16#1e4e +/Otildesmall 16#f7f5 +/P 16#0050 +/Pacute 16#1e54 +/Pcircle 16#24c5 +/Pdotaccent 16#1e56 +/Pecyrillic 16#041f +/Peharmenian 16#054a +/Pemiddlehookcyrillic 16#04a6 +/Phi 16#03a6 +/Phook 16#01a4 +/Pi 16#03a0 +/Piwrarmenian 16#0553 +/Pmonospace 16#ff30 +/Psi 16#03a8 +/Psicyrillic 16#0470 +/Psmall 16#f770 +/Q 16#0051 +/Qcircle 16#24c6 +/Qmonospace 16#ff31 +/Qsmall 16#f771 +/R 16#0052 +/Raarmenian 16#054c +/Racute 16#0154 +/Rcaron 16#0158 +/Rcedilla 16#0156 +/Rcircle 16#24c7 +/Rcommaaccent 16#0156 +/Rdblgrave 16#0210 +/Rdotaccent 16#1e58 +/Rdotbelow 16#1e5a +/Rdotbelowmacron 16#1e5c +/Reharmenian 16#0550 +/Rfraktur 16#211c +/Rho 16#03a1 +/Ringsmall 16#f6fc +/Rinvertedbreve 16#0212 +/Rlinebelow 16#1e5e +/Rmonospace 16#ff32 +/Rsmall 16#f772 +/Rsmallinverted 16#0281 +/Rsmallinvertedsuperior 16#02b6 +/S 16#0053 +/SF010000 16#250c +/SF020000 16#2514 +/SF030000 16#2510 +/SF040000 16#2518 +/SF050000 16#253c +/SF060000 16#252c +/SF070000 16#2534 +/SF080000 16#251c +/SF090000 16#2524 +/SF100000 16#2500 +/SF110000 16#2502 +/SF190000 16#2561 +/SF200000 16#2562 +/SF210000 16#2556 +/SF220000 16#2555 +/SF230000 16#2563 +/SF240000 16#2551 +/SF250000 16#2557 +/SF260000 16#255d +/SF270000 16#255c +/SF280000 16#255b +/SF360000 16#255e +/SF370000 16#255f +/SF380000 16#255a +/SF390000 16#2554 +/SF400000 16#2569 +/SF410000 16#2566 +/SF420000 16#2560 +/SF430000 16#2550 +/SF440000 16#256c +/SF450000 16#2567 +/SF460000 16#2568 +/SF470000 16#2564 +/SF480000 16#2565 +/SF490000 16#2559 +/SF500000 16#2558 +/SF510000 16#2552 +/SF520000 16#2553 +/SF530000 16#256b +/SF540000 16#256a +/Sacute 16#015a +/Sacutedotaccent 16#1e64 +/Sampigreek 16#03e0 +/Scaron 16#0160 +/Scarondotaccent 16#1e66 +/Scaronsmall 16#f6fd +/Scedilla 16#015e +/Schwa 16#018f +/Schwacyrillic 16#04d8 +/Schwadieresiscyrillic 16#04da +/Scircle 16#24c8 +/Scircumflex 16#015c +/Scommaaccent 16#0218 +/Sdotaccent 16#1e60 +/Sdotbelow 16#1e62 +/Sdotbelowdotaccent 16#1e68 +/Seharmenian 16#054d +/Sevenroman 16#2166 +/Shaarmenian 16#0547 +/Shacyrillic 16#0428 +/Shchacyrillic 16#0429 +/Sheicoptic 16#03e2 +/Shhacyrillic 16#04ba +/Shimacoptic 16#03ec +/Sigma 16#03a3 +/Sixroman 16#2165 +/Smonospace 16#ff33 +/Softsigncyrillic 16#042c +/Ssmall 16#f773 +/Stigmagreek 16#03da +/T 16#0054 +/Tau 16#03a4 +/Tbar 16#0166 +/Tcaron 16#0164 +/Tcedilla 16#0162 +/Tcircle 16#24c9 +/Tcircumflexbelow 16#1e70 +/Tcommaaccent 16#0162 +/Tdotaccent 16#1e6a +/Tdotbelow 16#1e6c +/Tecyrillic 16#0422 +/Tedescendercyrillic 16#04ac +/Tenroman 16#2169 +/Tetsecyrillic 16#04b4 +/Theta 16#0398 +/Thook 16#01ac +/Thorn 16#00de +/Thornsmall 16#f7fe +/Threeroman 16#2162 +/Tildesmall 16#f6fe +/Tiwnarmenian 16#054f +/Tlinebelow 16#1e6e +/Tmonospace 16#ff34 +/Toarmenian 16#0539 +/Tonefive 16#01bc +/Tonesix 16#0184 +/Tonetwo 16#01a7 +/Tretroflexhook 16#01ae +/Tsecyrillic 16#0426 +/Tshecyrillic 16#040b +/Tsmall 16#f774 +/Twelveroman 16#216b +/Tworoman 16#2161 +/U 16#0055 +/Uacute 16#00da +/Uacutesmall 16#f7fa +/Ubreve 16#016c +/Ucaron 16#01d3 +/Ucircle 16#24ca +/Ucircumflex 16#00db +/Ucircumflexbelow 16#1e76 +/Ucircumflexsmall 16#f7fb +/Ucyrillic 16#0423 +/Udblacute 16#0170 +/Udblgrave 16#0214 +/Udieresis 16#00dc +/Udieresisacute 16#01d7 +/Udieresisbelow 16#1e72 +/Udieresiscaron 16#01d9 +/Udieresiscyrillic 16#04f0 +/Udieresisgrave 16#01db +/Udieresismacron 16#01d5 +/Udieresissmall 16#f7fc +/Udotbelow 16#1ee4 +/Ugrave 16#00d9 +/Ugravesmall 16#f7f9 +/Uhookabove 16#1ee6 +/Uhorn 16#01af +/Uhornacute 16#1ee8 +/Uhorndotbelow 16#1ef0 +/Uhorngrave 16#1eea +/Uhornhookabove 16#1eec +/Uhorntilde 16#1eee +/Uhungarumlaut 16#0170 +/Uhungarumlautcyrillic 16#04f2 +/Uinvertedbreve 16#0216 +/Ukcyrillic 16#0478 +/Umacron 16#016a +/Umacroncyrillic 16#04ee +/Umacrondieresis 16#1e7a +/Umonospace 16#ff35 +/Uogonek 16#0172 +/Upsilon 16#03a5 +/Upsilon1 16#03d2 +/Upsilonacutehooksymbolgreek 16#03d3 +/Upsilonafrican 16#01b1 +/Upsilondieresis 16#03ab +/Upsilondieresishooksymbolgreek 16#03d4 +/Upsilonhooksymbol 16#03d2 +/Upsilontonos 16#038e +/Uring 16#016e +/Ushortcyrillic 16#040e +/Usmall 16#f775 +/Ustraightcyrillic 16#04ae +/Ustraightstrokecyrillic 16#04b0 +/Utilde 16#0168 +/Utildeacute 16#1e78 +/Utildebelow 16#1e74 +/V 16#0056 +/Vcircle 16#24cb +/Vdotbelow 16#1e7e +/Vecyrillic 16#0412 +/Vewarmenian 16#054e +/Vhook 16#01b2 +/Vmonospace 16#ff36 +/Voarmenian 16#0548 +/Vsmall 16#f776 +/Vtilde 16#1e7c +/W 16#0057 +/Wacute 16#1e82 +/Wcircle 16#24cc +/Wcircumflex 16#0174 +/Wdieresis 16#1e84 +/Wdotaccent 16#1e86 +/Wdotbelow 16#1e88 +/Wgrave 16#1e80 +/Wmonospace 16#ff37 +/Wsmall 16#f777 +/X 16#0058 +/Xcircle 16#24cd +/Xdieresis 16#1e8c +/Xdotaccent 16#1e8a +/Xeharmenian 16#053d +/Xi 16#039e +/Xmonospace 16#ff38 +/Xsmall 16#f778 +/Y 16#0059 +/Yacute 16#00dd +/Yacutesmall 16#f7fd +/Yatcyrillic 16#0462 +/Ycircle 16#24ce +/Ycircumflex 16#0176 +/Ydieresis 16#0178 +/Ydieresissmall 16#f7ff +/Ydotaccent 16#1e8e +/Ydotbelow 16#1ef4 +/Yericyrillic 16#042b +/Yerudieresiscyrillic 16#04f8 +/Ygrave 16#1ef2 +/Yhook 16#01b3 +/Yhookabove 16#1ef6 +/Yiarmenian 16#0545 +/Yicyrillic 16#0407 +/Yiwnarmenian 16#0552 +/Ymonospace 16#ff39 +/Ysmall 16#f779 +/Ytilde 16#1ef8 +/Yusbigcyrillic 16#046a +/Yusbigiotifiedcyrillic 16#046c +/Yuslittlecyrillic 16#0466 +/Yuslittleiotifiedcyrillic 16#0468 +/Z 16#005a +/Zaarmenian 16#0536 +/Zacute 16#0179 +/Zcaron 16#017d +/Zcaronsmall 16#f6ff +/Zcircle 16#24cf +/Zcircumflex 16#1e90 +/Zdot 16#017b +/Zdotaccent 16#017b +/Zdotbelow 16#1e92 +/Zecyrillic 16#0417 +/Zedescendercyrillic 16#0498 +/Zedieresiscyrillic 16#04de +/Zeta 16#0396 +/Zhearmenian 16#053a +/Zhebrevecyrillic 16#04c1 +/Zhecyrillic 16#0416 +/Zhedescendercyrillic 16#0496 +/Zhedieresiscyrillic 16#04dc +/Zlinebelow 16#1e94 +/Zmonospace 16#ff3a +/Zsmall 16#f77a +/Zstroke 16#01b5 +/a 16#0061 +/aabengali 16#0986 +/aacute 16#00e1 +/aadeva 16#0906 +/aagujarati 16#0a86 +/aagurmukhi 16#0a06 +/aamatragurmukhi 16#0a3e +/aarusquare 16#3303 +/aavowelsignbengali 16#09be +/aavowelsigndeva 16#093e +/aavowelsigngujarati 16#0abe +/abbreviationmarkarmenian 16#055f +/abbreviationsigndeva 16#0970 +/abengali 16#0985 +/abopomofo 16#311a +/abreve 16#0103 +/abreveacute 16#1eaf +/abrevecyrillic 16#04d1 +/abrevedotbelow 16#1eb7 +/abrevegrave 16#1eb1 +/abrevehookabove 16#1eb3 +/abrevetilde 16#1eb5 +/acaron 16#01ce +/acircle 16#24d0 +/acircumflex 16#00e2 +/acircumflexacute 16#1ea5 +/acircumflexdotbelow 16#1ead +/acircumflexgrave 16#1ea7 +/acircumflexhookabove 16#1ea9 +/acircumflextilde 16#1eab +/acute 16#00b4 +/acutebelowcmb 16#0317 +/acutecmb 16#0301 +/acutecomb 16#0301 +/acutedeva 16#0954 +/acutelowmod 16#02cf +/acutetonecmb 16#0341 +/acyrillic 16#0430 +/adblgrave 16#0201 +/addakgurmukhi 16#0a71 +/adeva 16#0905 +/adieresis 16#00e4 +/adieresiscyrillic 16#04d3 +/adieresismacron 16#01df +/adotbelow 16#1ea1 +/adotmacron 16#01e1 +/ae 16#00e6 +/aeacute 16#01fd +/aekorean 16#3150 +/aemacron 16#01e3 +/afii00208 16#2015 +/afii08941 16#20a4 +/afii10017 16#0410 +/afii10018 16#0411 +/afii10019 16#0412 +/afii10020 16#0413 +/afii10021 16#0414 +/afii10022 16#0415 +/afii10023 16#0401 +/afii10024 16#0416 +/afii10025 16#0417 +/afii10026 16#0418 +/afii10027 16#0419 +/afii10028 16#041a +/afii10029 16#041b +/afii10030 16#041c +/afii10031 16#041d +/afii10032 16#041e +/afii10033 16#041f +/afii10034 16#0420 +/afii10035 16#0421 +/afii10036 16#0422 +/afii10037 16#0423 +/afii10038 16#0424 +/afii10039 16#0425 +/afii10040 16#0426 +/afii10041 16#0427 +/afii10042 16#0428 +/afii10043 16#0429 +/afii10044 16#042a +/afii10045 16#042b +/afii10046 16#042c +/afii10047 16#042d +/afii10048 16#042e +/afii10049 16#042f +/afii10050 16#0490 +/afii10051 16#0402 +/afii10052 16#0403 +/afii10053 16#0404 +/afii10054 16#0405 +/afii10055 16#0406 +/afii10056 16#0407 +/afii10057 16#0408 +/afii10058 16#0409 +/afii10059 16#040a +/afii10060 16#040b +/afii10061 16#040c +/afii10062 16#040e +/afii10063 16#f6c4 +/afii10064 16#f6c5 +/afii10065 16#0430 +/afii10066 16#0431 +/afii10067 16#0432 +/afii10068 16#0433 +/afii10069 16#0434 +/afii10070 16#0435 +/afii10071 16#0451 +/afii10072 16#0436 +/afii10073 16#0437 +/afii10074 16#0438 +/afii10075 16#0439 +/afii10076 16#043a +/afii10077 16#043b +/afii10078 16#043c +/afii10079 16#043d +/afii10080 16#043e +/afii10081 16#043f +/afii10082 16#0440 +/afii10083 16#0441 +/afii10084 16#0442 +/afii10085 16#0443 +/afii10086 16#0444 +/afii10087 16#0445 +/afii10088 16#0446 +/afii10089 16#0447 +/afii10090 16#0448 +/afii10091 16#0449 +/afii10092 16#044a +/afii10093 16#044b +/afii10094 16#044c +/afii10095 16#044d +/afii10096 16#044e +/afii10097 16#044f +/afii10098 16#0491 +/afii10099 16#0452 +/afii10100 16#0453 +/afii10101 16#0454 +/afii10102 16#0455 +/afii10103 16#0456 +/afii10104 16#0457 +/afii10105 16#0458 +/afii10106 16#0459 +/afii10107 16#045a +/afii10108 16#045b +/afii10109 16#045c +/afii10110 16#045e +/afii10145 16#040f +/afii10146 16#0462 +/afii10147 16#0472 +/afii10148 16#0474 +/afii10192 16#f6c6 +/afii10193 16#045f +/afii10194 16#0463 +/afii10195 16#0473 +/afii10196 16#0475 +/afii10831 16#f6c7 +/afii10832 16#f6c8 +/afii10846 16#04d9 +/afii299 16#200e +/afii300 16#200f +/afii301 16#200d +/afii57381 16#066a +/afii57388 16#060c +/afii57392 16#0660 +/afii57393 16#0661 +/afii57394 16#0662 +/afii57395 16#0663 +/afii57396 16#0664 +/afii57397 16#0665 +/afii57398 16#0666 +/afii57399 16#0667 +/afii57400 16#0668 +/afii57401 16#0669 +/afii57403 16#061b +/afii57407 16#061f +/afii57409 16#0621 +/afii57410 16#0622 +/afii57411 16#0623 +/afii57412 16#0624 +/afii57413 16#0625 +/afii57414 16#0626 +/afii57415 16#0627 +/afii57416 16#0628 +/afii57417 16#0629 +/afii57418 16#062a +/afii57419 16#062b +/afii57420 16#062c +/afii57421 16#062d +/afii57422 16#062e +/afii57423 16#062f +/afii57424 16#0630 +/afii57425 16#0631 +/afii57426 16#0632 +/afii57427 16#0633 +/afii57428 16#0634 +/afii57429 16#0635 +/afii57430 16#0636 +/afii57431 16#0637 +/afii57432 16#0638 +/afii57433 16#0639 +/afii57434 16#063a +/afii57440 16#0640 +/afii57441 16#0641 +/afii57442 16#0642 +/afii57443 16#0643 +/afii57444 16#0644 +/afii57445 16#0645 +/afii57446 16#0646 +/afii57448 16#0648 +/afii57449 16#0649 +/afii57450 16#064a +/afii57451 16#064b +/afii57452 16#064c +/afii57453 16#064d +/afii57454 16#064e +/afii57455 16#064f +/afii57456 16#0650 +/afii57457 16#0651 +/afii57458 16#0652 +/afii57470 16#0647 +/afii57505 16#06a4 +/afii57506 16#067e +/afii57507 16#0686 +/afii57508 16#0698 +/afii57509 16#06af +/afii57511 16#0679 +/afii57512 16#0688 +/afii57513 16#0691 +/afii57514 16#06ba +/afii57519 16#06d2 +/afii57534 16#06d5 +/afii57636 16#20aa +/afii57645 16#05be +/afii57658 16#05c3 +/afii57664 16#05d0 +/afii57665 16#05d1 +/afii57666 16#05d2 +/afii57667 16#05d3 +/afii57668 16#05d4 +/afii57669 16#05d5 +/afii57670 16#05d6 +/afii57671 16#05d7 +/afii57672 16#05d8 +/afii57673 16#05d9 +/afii57674 16#05da +/afii57675 16#05db +/afii57676 16#05dc +/afii57677 16#05dd +/afii57678 16#05de +/afii57679 16#05df +/afii57680 16#05e0 +/afii57681 16#05e1 +/afii57682 16#05e2 +/afii57683 16#05e3 +/afii57684 16#05e4 +/afii57685 16#05e5 +/afii57686 16#05e6 +/afii57687 16#05e7 +/afii57688 16#05e8 +/afii57689 16#05e9 +/afii57690 16#05ea +/afii57694 16#fb2a +/afii57695 16#fb2b +/afii57700 16#fb4b +/afii57705 16#fb1f +/afii57716 16#05f0 +/afii57717 16#05f1 +/afii57718 16#05f2 +/afii57723 16#fb35 +/afii57793 16#05b4 +/afii57794 16#05b5 +/afii57795 16#05b6 +/afii57796 16#05bb +/afii57797 16#05b8 +/afii57798 16#05b7 +/afii57799 16#05b0 +/afii57800 16#05b2 +/afii57801 16#05b1 +/afii57802 16#05b3 +/afii57803 16#05c2 +/afii57804 16#05c1 +/afii57806 16#05b9 +/afii57807 16#05bc +/afii57839 16#05bd +/afii57841 16#05bf +/afii57842 16#05c0 +/afii57929 16#02bc +/afii61248 16#2105 +/afii61289 16#2113 +/afii61352 16#2116 +/afii61573 16#202c +/afii61574 16#202d +/afii61575 16#202e +/afii61664 16#200c +/afii63167 16#066d +/afii64937 16#02bd +/agrave 16#00e0 +/agujarati 16#0a85 +/agurmukhi 16#0a05 +/ahiragana 16#3042 +/ahookabove 16#1ea3 +/aibengali 16#0990 +/aibopomofo 16#311e +/aideva 16#0910 +/aiecyrillic 16#04d5 +/aigujarati 16#0a90 +/aigurmukhi 16#0a10 +/aimatragurmukhi 16#0a48 +/ainarabic 16#0639 +/ainfinalarabic 16#feca +/aininitialarabic 16#fecb +/ainmedialarabic 16#fecc +/ainvertedbreve 16#0203 +/aivowelsignbengali 16#09c8 +/aivowelsigndeva 16#0948 +/aivowelsigngujarati 16#0ac8 +/akatakana 16#30a2 +/akatakanahalfwidth 16#ff71 +/akorean 16#314f +/alef 16#05d0 +/alefarabic 16#0627 +/alefdageshhebrew 16#fb30 +/aleffinalarabic 16#fe8e +/alefhamzaabovearabic 16#0623 +/alefhamzaabovefinalarabic 16#fe84 +/alefhamzabelowarabic 16#0625 +/alefhamzabelowfinalarabic 16#fe88 +/alefhebrew 16#05d0 +/aleflamedhebrew 16#fb4f +/alefmaddaabovearabic 16#0622 +/alefmaddaabovefinalarabic 16#fe82 +/alefmaksuraarabic 16#0649 +/alefmaksurafinalarabic 16#fef0 +/alefmaksurainitialarabic 16#fef3 +/alefmaksuramedialarabic 16#fef4 +/alefpatahhebrew 16#fb2e +/alefqamatshebrew 16#fb2f +/aleph 16#2135 +/allequal 16#224c +/alpha 16#03b1 +/alphatonos 16#03ac +/amacron 16#0101 +/amonospace 16#ff41 +/ampersand 16#0026 +/ampersandmonospace 16#ff06 +/ampersandsmall 16#f726 +/amsquare 16#33c2 +/anbopomofo 16#3122 +/angbopomofo 16#3124 +/angkhankhuthai 16#0e5a +/angle 16#2220 +/anglebracketleft 16#3008 +/anglebracketleftvertical 16#fe3f +/anglebracketright 16#3009 +/anglebracketrightvertical 16#fe40 +/angleleft 16#2329 +/angleright 16#232a +/angstrom 16#212b +/anoteleia 16#0387 +/anudattadeva 16#0952 +/anusvarabengali 16#0982 +/anusvaradeva 16#0902 +/anusvaragujarati 16#0a82 +/aogonek 16#0105 +/apaatosquare 16#3300 +/aparen 16#249c +/apostrophearmenian 16#055a +/apostrophemod 16#02bc +/apple 16#f8ff +/approaches 16#2250 +/approxequal 16#2248 +/approxequalorimage 16#2252 +/approximatelyequal 16#2245 +/araeaekorean 16#318e +/araeakorean 16#318d +/arc 16#2312 +/arighthalfring 16#1e9a +/aring 16#00e5 +/aringacute 16#01fb +/aringbelow 16#1e01 +/arrowboth 16#2194 +/arrowdashdown 16#21e3 +/arrowdashleft 16#21e0 +/arrowdashright 16#21e2 +/arrowdashup 16#21e1 +/arrowdblboth 16#21d4 +/arrowdbldown 16#21d3 +/arrowdblleft 16#21d0 +/arrowdblright 16#21d2 +/arrowdblup 16#21d1 +/arrowdown 16#2193 +/arrowdownleft 16#2199 +/arrowdownright 16#2198 +/arrowdownwhite 16#21e9 +/arrowheaddownmod 16#02c5 +/arrowheadleftmod 16#02c2 +/arrowheadrightmod 16#02c3 +/arrowheadupmod 16#02c4 +/arrowhorizex 16#f8e7 +/arrowleft 16#2190 +/arrowleftdbl 16#21d0 +/arrowleftdblstroke 16#21cd +/arrowleftoverright 16#21c6 +/arrowleftwhite 16#21e6 +/arrowright 16#2192 +/arrowrightdblstroke 16#21cf +/arrowrightheavy 16#279e +/arrowrightoverleft 16#21c4 +/arrowrightwhite 16#21e8 +/arrowtableft 16#21e4 +/arrowtabright 16#21e5 +/arrowup 16#2191 +/arrowupdn 16#2195 +/arrowupdnbse 16#21a8 +/arrowupdownbase 16#21a8 +/arrowupleft 16#2196 +/arrowupleftofdown 16#21c5 +/arrowupright 16#2197 +/arrowupwhite 16#21e7 +/arrowvertex 16#f8e6 +/asciicircum 16#005e +/asciicircummonospace 16#ff3e +/asciitilde 16#007e +/asciitildemonospace 16#ff5e +/ascript 16#0251 +/ascriptturned 16#0252 +/asmallhiragana 16#3041 +/asmallkatakana 16#30a1 +/asmallkatakanahalfwidth 16#ff67 +/asterisk 16#002a +/asteriskaltonearabic 16#066d +/asteriskarabic 16#066d +/asteriskmath 16#2217 +/asteriskmonospace 16#ff0a +/asterisksmall 16#fe61 +/asterism 16#2042 +/asuperior 16#f6e9 +/asymptoticallyequal 16#2243 +/at 16#0040 +/atilde 16#00e3 +/atmonospace 16#ff20 +/atsmall 16#fe6b +/aturned 16#0250 +/aubengali 16#0994 +/aubopomofo 16#3120 +/audeva 16#0914 +/augujarati 16#0a94 +/augurmukhi 16#0a14 +/aulengthmarkbengali 16#09d7 +/aumatragurmukhi 16#0a4c +/auvowelsignbengali 16#09cc +/auvowelsigndeva 16#094c +/auvowelsigngujarati 16#0acc +/avagrahadeva 16#093d +/aybarmenian 16#0561 +/ayin 16#05e2 +/ayinaltonehebrew 16#fb20 +/ayinhebrew 16#05e2 +/b 16#0062 +/babengali 16#09ac +/backslash 16#005c +/backslashmonospace 16#ff3c +/badeva 16#092c +/bagujarati 16#0aac +/bagurmukhi 16#0a2c +/bahiragana 16#3070 +/bahtthai 16#0e3f +/bakatakana 16#30d0 +/bar 16#007c +/barmonospace 16#ff5c +/bbopomofo 16#3105 +/bcircle 16#24d1 +/bdotaccent 16#1e03 +/bdotbelow 16#1e05 +/beamedsixteenthnotes 16#266c +/because 16#2235 +/becyrillic 16#0431 +/beharabic 16#0628 +/behfinalarabic 16#fe90 +/behinitialarabic 16#fe91 +/behiragana 16#3079 +/behmedialarabic 16#fe92 +/behmeeminitialarabic 16#fc9f +/behmeemisolatedarabic 16#fc08 +/behnoonfinalarabic 16#fc6d +/bekatakana 16#30d9 +/benarmenian 16#0562 +/bet 16#05d1 +/beta 16#03b2 +/betasymbolgreek 16#03d0 +/betdagesh 16#fb31 +/betdageshhebrew 16#fb31 +/bethebrew 16#05d1 +/betrafehebrew 16#fb4c +/bhabengali 16#09ad +/bhadeva 16#092d +/bhagujarati 16#0aad +/bhagurmukhi 16#0a2d +/bhook 16#0253 +/bihiragana 16#3073 +/bikatakana 16#30d3 +/bilabialclick 16#0298 +/bindigurmukhi 16#0a02 +/birusquare 16#3331 +/blackcircle 16#25cf +/blackdiamond 16#25c6 +/blackdownpointingtriangle 16#25bc +/blackleftpointingpointer 16#25c4 +/blackleftpointingtriangle 16#25c0 +/blacklenticularbracketleft 16#3010 +/blacklenticularbracketleftvertical 16#fe3b +/blacklenticularbracketright 16#3011 +/blacklenticularbracketrightvertical 16#fe3c +/blacklowerlefttriangle 16#25e3 +/blacklowerrighttriangle 16#25e2 +/blackrectangle 16#25ac +/blackrightpointingpointer 16#25ba +/blackrightpointingtriangle 16#25b6 +/blacksmallsquare 16#25aa +/blacksmilingface 16#263b +/blacksquare 16#25a0 +/blackstar 16#2605 +/blackupperlefttriangle 16#25e4 +/blackupperrighttriangle 16#25e5 +/blackuppointingsmalltriangle 16#25b4 +/blackuppointingtriangle 16#25b2 +/blank 16#2423 +/blinebelow 16#1e07 +/block 16#2588 +/bmonospace 16#ff42 +/bobaimaithai 16#0e1a +/bohiragana 16#307c +/bokatakana 16#30dc +/bparen 16#249d +/bqsquare 16#33c3 +/braceex 16#f8f4 +/braceleft 16#007b +/braceleftbt 16#f8f3 +/braceleftmid 16#f8f2 +/braceleftmonospace 16#ff5b +/braceleftsmall 16#fe5b +/bracelefttp 16#f8f1 +/braceleftvertical 16#fe37 +/braceright 16#007d +/bracerightbt 16#f8fe +/bracerightmid 16#f8fd +/bracerightmonospace 16#ff5d +/bracerightsmall 16#fe5c +/bracerighttp 16#f8fc +/bracerightvertical 16#fe38 +/bracketleft 16#005b +/bracketleftbt 16#f8f0 +/bracketleftex 16#f8ef +/bracketleftmonospace 16#ff3b +/bracketlefttp 16#f8ee +/bracketright 16#005d +/bracketrightbt 16#f8fb +/bracketrightex 16#f8fa +/bracketrightmonospace 16#ff3d +/bracketrighttp 16#f8f9 +/breve 16#02d8 +/brevebelowcmb 16#032e +/brevecmb 16#0306 +/breveinvertedbelowcmb 16#032f +/breveinvertedcmb 16#0311 +/breveinverteddoublecmb 16#0361 +/bridgebelowcmb 16#032a +/bridgeinvertedbelowcmb 16#033a +/brokenbar 16#00a6 +/bstroke 16#0180 +/bsuperior 16#f6ea +/btopbar 16#0183 +/buhiragana 16#3076 +/bukatakana 16#30d6 +/bullet 16#2022 +/bulletinverse 16#25d8 +/bulletoperator 16#2219 +/bullseye 16#25ce +/c 16#0063 +/caarmenian 16#056e +/cabengali 16#099a +/cacute 16#0107 +/cadeva 16#091a +/cagujarati 16#0a9a +/cagurmukhi 16#0a1a +/calsquare 16#3388 +/candrabindubengali 16#0981 +/candrabinducmb 16#0310 +/candrabindudeva 16#0901 +/candrabindugujarati 16#0a81 +/capslock 16#21ea +/careof 16#2105 +/caron 16#02c7 +/caronbelowcmb 16#032c +/caroncmb 16#030c +/carriagereturn 16#21b5 +/cbopomofo 16#3118 +/ccaron 16#010d +/ccedilla 16#00e7 +/ccedillaacute 16#1e09 +/ccircle 16#24d2 +/ccircumflex 16#0109 +/ccurl 16#0255 +/cdot 16#010b +/cdotaccent 16#010b +/cdsquare 16#33c5 +/cedilla 16#00b8 +/cedillacmb 16#0327 +/cent 16#00a2 +/centigrade 16#2103 +/centinferior 16#f6df +/centmonospace 16#ffe0 +/centoldstyle 16#f7a2 +/centsuperior 16#f6e0 +/chaarmenian 16#0579 +/chabengali 16#099b +/chadeva 16#091b +/chagujarati 16#0a9b +/chagurmukhi 16#0a1b +/chbopomofo 16#3114 +/cheabkhasiancyrillic 16#04bd +/checkmark 16#2713 +/checyrillic 16#0447 +/chedescenderabkhasiancyrillic 16#04bf +/chedescendercyrillic 16#04b7 +/chedieresiscyrillic 16#04f5 +/cheharmenian 16#0573 +/chekhakassiancyrillic 16#04cc +/cheverticalstrokecyrillic 16#04b9 +/chi 16#03c7 +/chieuchacirclekorean 16#3277 +/chieuchaparenkorean 16#3217 +/chieuchcirclekorean 16#3269 +/chieuchkorean 16#314a +/chieuchparenkorean 16#3209 +/chochangthai 16#0e0a +/chochanthai 16#0e08 +/chochingthai 16#0e09 +/chochoethai 16#0e0c +/chook 16#0188 +/cieucacirclekorean 16#3276 +/cieucaparenkorean 16#3216 +/cieuccirclekorean 16#3268 +/cieuckorean 16#3148 +/cieucparenkorean 16#3208 +/cieucuparenkorean 16#321c +/circle 16#25cb +/circlemultiply 16#2297 +/circleot 16#2299 +/circleplus 16#2295 +/circlepostalmark 16#3036 +/circlewithlefthalfblack 16#25d0 +/circlewithrighthalfblack 16#25d1 +/circumflex 16#02c6 +/circumflexbelowcmb 16#032d +/circumflexcmb 16#0302 +/clear 16#2327 +/clickalveolar 16#01c2 +/clickdental 16#01c0 +/clicklateral 16#01c1 +/clickretroflex 16#01c3 +/club 16#2663 +/clubsuitblack 16#2663 +/clubsuitwhite 16#2667 +/cmcubedsquare 16#33a4 +/cmonospace 16#ff43 +/cmsquaredsquare 16#33a0 +/coarmenian 16#0581 +/colon 16#003a +/colonmonetary 16#20a1 +/colonmonospace 16#ff1a +/colonsign 16#20a1 +/colonsmall 16#fe55 +/colontriangularhalfmod 16#02d1 +/colontriangularmod 16#02d0 +/comma 16#002c +/commaabovecmb 16#0313 +/commaaboverightcmb 16#0315 +/commaaccent 16#f6c3 +/commaarabic 16#060c +/commaarmenian 16#055d +/commainferior 16#f6e1 +/commamonospace 16#ff0c +/commareversedabovecmb 16#0314 +/commareversedmod 16#02bd +/commasmall 16#fe50 +/commasuperior 16#f6e2 +/commaturnedabovecmb 16#0312 +/commaturnedmod 16#02bb +/compass 16#263c +/congruent 16#2245 +/contourintegral 16#222e +/control 16#2303 +/controlACK 16#0006 +/controlBEL 16#0007 +/controlBS 16#0008 +/controlCAN 16#0018 +/controlCR 16#000d +/controlDC1 16#0011 +/controlDC2 16#0012 +/controlDC3 16#0013 +/controlDC4 16#0014 +/controlDEL 16#007f +/controlDLE 16#0010 +/controlEM 16#0019 +/controlENQ 16#0005 +/controlEOT 16#0004 +/controlESC 16#001b +/controlETB 16#0017 +/controlETX 16#0003 +/controlFF 16#000c +/controlFS 16#001c +/controlGS 16#001d +/controlHT 16#0009 +/controlLF 16#000a +/controlNAK 16#0015 +/controlRS 16#001e +/controlSI 16#000f +/controlSO 16#000e +/controlSOT 16#0002 +/controlSTX 16#0001 +/controlSUB 16#001a +/controlSYN 16#0016 +/controlUS 16#001f +/controlVT 16#000b +/copyright 16#00a9 +/copyrightsans 16#f8e9 +/copyrightserif 16#f6d9 +/cornerbracketleft 16#300c +/cornerbracketlefthalfwidth 16#ff62 +/cornerbracketleftvertical 16#fe41 +/cornerbracketright 16#300d +/cornerbracketrighthalfwidth 16#ff63 +/cornerbracketrightvertical 16#fe42 +/corporationsquare 16#337f +/cosquare 16#33c7 +/coverkgsquare 16#33c6 +/cparen 16#249e +/cruzeiro 16#20a2 +/cstretched 16#0297 +/curlyand 16#22cf +/curlyor 16#22ce +/currency 16#00a4 +/cyrBreve 16#f6d1 +/cyrFlex 16#f6d2 +/cyrbreve 16#f6d4 +/cyrflex 16#f6d5 +/d 16#0064 +/daarmenian 16#0564 +/dabengali 16#09a6 +/dadarabic 16#0636 +/dadeva 16#0926 +/dadfinalarabic 16#febe +/dadinitialarabic 16#febf +/dadmedialarabic 16#fec0 +/dagesh 16#05bc +/dageshhebrew 16#05bc +/dagger 16#2020 +/daggerdbl 16#2021 +/dagujarati 16#0aa6 +/dagurmukhi 16#0a26 +/dahiragana 16#3060 +/dakatakana 16#30c0 +/dalarabic 16#062f +/dalet 16#05d3 +/daletdagesh 16#fb33 +/daletdageshhebrew 16#fb33 +/dalethebrew 16#05d3 +/dalfinalarabic 16#feaa +/dammaarabic 16#064f +/dammalowarabic 16#064f +/dammatanaltonearabic 16#064c +/dammatanarabic 16#064c +/danda 16#0964 +/dargahebrew 16#05a7 +/dargalefthebrew 16#05a7 +/dasiapneumatacyrilliccmb 16#0485 +/dblGrave 16#f6d3 +/dblanglebracketleft 16#300a +/dblanglebracketleftvertical 16#fe3d +/dblanglebracketright 16#300b +/dblanglebracketrightvertical 16#fe3e +/dblarchinvertedbelowcmb 16#032b +/dblarrowleft 16#21d4 +/dblarrowright 16#21d2 +/dbldanda 16#0965 +/dblgrave 16#f6d6 +/dblgravecmb 16#030f +/dblintegral 16#222c +/dbllowline 16#2017 +/dbllowlinecmb 16#0333 +/dbloverlinecmb 16#033f +/dblprimemod 16#02ba +/dblverticalbar 16#2016 +/dblverticallineabovecmb 16#030e +/dbopomofo 16#3109 +/dbsquare 16#33c8 +/dcaron 16#010f +/dcedilla 16#1e11 +/dcircle 16#24d3 +/dcircumflexbelow 16#1e13 +/dcroat 16#0111 +/ddabengali 16#09a1 +/ddadeva 16#0921 +/ddagujarati 16#0aa1 +/ddagurmukhi 16#0a21 +/ddalarabic 16#0688 +/ddalfinalarabic 16#fb89 +/dddhadeva 16#095c +/ddhabengali 16#09a2 +/ddhadeva 16#0922 +/ddhagujarati 16#0aa2 +/ddhagurmukhi 16#0a22 +/ddotaccent 16#1e0b +/ddotbelow 16#1e0d +/decimalseparatorarabic 16#066b +/decimalseparatorpersian 16#066b +/decyrillic 16#0434 +/degree 16#00b0 +/dehihebrew 16#05ad +/dehiragana 16#3067 +/deicoptic 16#03ef +/dekatakana 16#30c7 +/deleteleft 16#232b +/deleteright 16#2326 +/delta 16#03b4 +/deltaturned 16#018d +/denominatorminusonenumeratorbengali 16#09f8 +/dezh 16#02a4 +/dhabengali 16#09a7 +/dhadeva 16#0927 +/dhagujarati 16#0aa7 +/dhagurmukhi 16#0a27 +/dhook 16#0257 +/dialytikatonos 16#0385 +/dialytikatonoscmb 16#0344 +/diamond 16#2666 +/diamondsuitwhite 16#2662 +/dieresis 16#00a8 +/dieresisacute 16#f6d7 +/dieresisbelowcmb 16#0324 +/dieresiscmb 16#0308 +/dieresisgrave 16#f6d8 +/dieresistonos 16#0385 +/dihiragana 16#3062 +/dikatakana 16#30c2 +/dittomark 16#3003 +/divide 16#00f7 +/divides 16#2223 +/divisionslash 16#2215 +/djecyrillic 16#0452 +/dkshade 16#2593 +/dlinebelow 16#1e0f +/dlsquare 16#3397 +/dmacron 16#0111 +/dmonospace 16#ff44 +/dnblock 16#2584 +/dochadathai 16#0e0e +/dodekthai 16#0e14 +/dohiragana 16#3069 +/dokatakana 16#30c9 +/dollar 16#0024 +/dollarinferior 16#f6e3 +/dollarmonospace 16#ff04 +/dollaroldstyle 16#f724 +/dollarsmall 16#fe69 +/dollarsuperior 16#f6e4 +/dong 16#20ab +/dorusquare 16#3326 +/dotaccent 16#02d9 +/dotaccentcmb 16#0307 +/dotbelowcmb 16#0323 +/dotbelowcomb 16#0323 +/dotkatakana 16#30fb +/dotlessi 16#0131 +/dotlessj 16#f6be +/dotlessjstrokehook 16#0284 +/dotmath 16#22c5 +/dottedcircle 16#25cc +/doubleyodpatah 16#fb1f +/doubleyodpatahhebrew 16#fb1f +/downtackbelowcmb 16#031e +/downtackmod 16#02d5 +/dparen 16#249f +/dsuperior 16#f6eb +/dtail 16#0256 +/dtopbar 16#018c +/duhiragana 16#3065 +/dukatakana 16#30c5 +/dz 16#01f3 +/dzaltone 16#02a3 +/dzcaron 16#01c6 +/dzcurl 16#02a5 +/dzeabkhasiancyrillic 16#04e1 +/dzecyrillic 16#0455 +/dzhecyrillic 16#045f +/e 16#0065 +/eacute 16#00e9 +/earth 16#2641 +/ebengali 16#098f +/ebopomofo 16#311c +/ebreve 16#0115 +/ecandradeva 16#090d +/ecandragujarati 16#0a8d +/ecandravowelsigndeva 16#0945 +/ecandravowelsigngujarati 16#0ac5 +/ecaron 16#011b +/ecedillabreve 16#1e1d +/echarmenian 16#0565 +/echyiwnarmenian 16#0587 +/ecircle 16#24d4 +/ecircumflex 16#00ea +/ecircumflexacute 16#1ebf +/ecircumflexbelow 16#1e19 +/ecircumflexdotbelow 16#1ec7 +/ecircumflexgrave 16#1ec1 +/ecircumflexhookabove 16#1ec3 +/ecircumflextilde 16#1ec5 +/ecyrillic 16#0454 +/edblgrave 16#0205 +/edeva 16#090f +/edieresis 16#00eb +/edot 16#0117 +/edotaccent 16#0117 +/edotbelow 16#1eb9 +/eegurmukhi 16#0a0f +/eematragurmukhi 16#0a47 +/efcyrillic 16#0444 +/egrave 16#00e8 +/egujarati 16#0a8f +/eharmenian 16#0567 +/ehbopomofo 16#311d +/ehiragana 16#3048 +/ehookabove 16#1ebb +/eibopomofo 16#311f +/eight 16#0038 +/eightarabic 16#0668 +/eightbengali 16#09ee +/eightcircle 16#2467 +/eightcircleinversesansserif 16#2791 +/eightdeva 16#096e +/eighteencircle 16#2471 +/eighteenparen 16#2485 +/eighteenperiod 16#2499 +/eightgujarati 16#0aee +/eightgurmukhi 16#0a6e +/eighthackarabic 16#0668 +/eighthangzhou 16#3028 +/eighthnotebeamed 16#266b +/eightideographicparen 16#3227 +/eightinferior 16#2088 +/eightmonospace 16#ff18 +/eightoldstyle 16#f738 +/eightparen 16#247b +/eightperiod 16#248f +/eightpersian 16#06f8 +/eightroman 16#2177 +/eightsuperior 16#2078 +/eightthai 16#0e58 +/einvertedbreve 16#0207 +/eiotifiedcyrillic 16#0465 +/ekatakana 16#30a8 +/ekatakanahalfwidth 16#ff74 +/ekonkargurmukhi 16#0a74 +/ekorean 16#3154 +/elcyrillic 16#043b +/element 16#2208 +/elevencircle 16#246a +/elevenparen 16#247e +/elevenperiod 16#2492 +/elevenroman 16#217a +/ellipsis 16#2026 +/ellipsisvertical 16#22ee +/emacron 16#0113 +/emacronacute 16#1e17 +/emacrongrave 16#1e15 +/emcyrillic 16#043c +/emdash 16#2014 +/emdashvertical 16#fe31 +/emonospace 16#ff45 +/emphasismarkarmenian 16#055b +/emptyset 16#2205 +/enbopomofo 16#3123 +/encyrillic 16#043d +/endash 16#2013 +/endashvertical 16#fe32 +/endescendercyrillic 16#04a3 +/eng 16#014b +/engbopomofo 16#3125 +/enghecyrillic 16#04a5 +/enhookcyrillic 16#04c8 +/enspace 16#2002 +/eogonek 16#0119 +/eokorean 16#3153 +/eopen 16#025b +/eopenclosed 16#029a +/eopenreversed 16#025c +/eopenreversedclosed 16#025e +/eopenreversedhook 16#025d +/eparen 16#24a0 +/epsilon 16#03b5 +/epsilontonos 16#03ad +/equal 16#003d +/equalmonospace 16#ff1d +/equalsmall 16#fe66 +/equalsuperior 16#207c +/equivalence 16#2261 +/erbopomofo 16#3126 +/ercyrillic 16#0440 +/ereversed 16#0258 +/ereversedcyrillic 16#044d +/escyrillic 16#0441 +/esdescendercyrillic 16#04ab +/esh 16#0283 +/eshcurl 16#0286 +/eshortdeva 16#090e +/eshortvowelsigndeva 16#0946 +/eshreversedloop 16#01aa +/eshsquatreversed 16#0285 +/esmallhiragana 16#3047 +/esmallkatakana 16#30a7 +/esmallkatakanahalfwidth 16#ff6a +/estimated 16#212e +/esuperior 16#f6ec +/eta 16#03b7 +/etarmenian 16#0568 +/etatonos 16#03ae +/eth 16#00f0 +/etilde 16#1ebd +/etildebelow 16#1e1b +/etnahtafoukhhebrew 16#0591 +/etnahtafoukhlefthebrew 16#0591 +/etnahtahebrew 16#0591 +/etnahtalefthebrew 16#0591 +/eturned 16#01dd +/eukorean 16#3161 +/euro 16#20ac +/evowelsignbengali 16#09c7 +/evowelsigndeva 16#0947 +/evowelsigngujarati 16#0ac7 +/exclam 16#0021 +/exclamarmenian 16#055c +/exclamdbl 16#203c +/exclamdown 16#00a1 +/exclamdownsmall 16#f7a1 +/exclammonospace 16#ff01 +/exclamsmall 16#f721 +/existential 16#2203 +/ezh 16#0292 +/ezhcaron 16#01ef +/ezhcurl 16#0293 +/ezhreversed 16#01b9 +/ezhtail 16#01ba +/f 16#0066 +/fadeva 16#095e +/fagurmukhi 16#0a5e +/fahrenheit 16#2109 +/fathaarabic 16#064e +/fathalowarabic 16#064e +/fathatanarabic 16#064b +/fbopomofo 16#3108 +/fcircle 16#24d5 +/fdotaccent 16#1e1f +/feharabic 16#0641 +/feharmenian 16#0586 +/fehfinalarabic 16#fed2 +/fehinitialarabic 16#fed3 +/fehmedialarabic 16#fed4 +/feicoptic 16#03e5 +/female 16#2640 +/ff 16#fb00 +/ffi 16#fb03 +/ffl 16#fb04 +/fi 16#fb01 +/fifteencircle 16#246e +/fifteenparen 16#2482 +/fifteenperiod 16#2496 +/figuredash 16#2012 +/filledbox 16#25a0 +/filledrect 16#25ac +/finalkaf 16#05da +/finalkafdagesh 16#fb3a +/finalkafdageshhebrew 16#fb3a +/finalkafhebrew 16#05da +/finalmem 16#05dd +/finalmemhebrew 16#05dd +/finalnun 16#05df +/finalnunhebrew 16#05df +/finalpe 16#05e3 +/finalpehebrew 16#05e3 +/finaltsadi 16#05e5 +/finaltsadihebrew 16#05e5 +/firsttonechinese 16#02c9 +/fisheye 16#25c9 +/fitacyrillic 16#0473 +/five 16#0035 +/fivearabic 16#0665 +/fivebengali 16#09eb +/fivecircle 16#2464 +/fivecircleinversesansserif 16#278e +/fivedeva 16#096b +/fiveeighths 16#215d +/fivegujarati 16#0aeb +/fivegurmukhi 16#0a6b +/fivehackarabic 16#0665 +/fivehangzhou 16#3025 +/fiveideographicparen 16#3224 +/fiveinferior 16#2085 +/fivemonospace 16#ff15 +/fiveoldstyle 16#f735 +/fiveparen 16#2478 +/fiveperiod 16#248c +/fivepersian 16#06f5 +/fiveroman 16#2174 +/fivesuperior 16#2075 +/fivethai 16#0e55 +/fl 16#fb02 +/florin 16#0192 +/fmonospace 16#ff46 +/fmsquare 16#3399 +/fofanthai 16#0e1f +/fofathai 16#0e1d +/fongmanthai 16#0e4f +/forall 16#2200 +/four 16#0034 +/fourarabic 16#0664 +/fourbengali 16#09ea +/fourcircle 16#2463 +/fourcircleinversesansserif 16#278d +/fourdeva 16#096a +/fourgujarati 16#0aea +/fourgurmukhi 16#0a6a +/fourhackarabic 16#0664 +/fourhangzhou 16#3024 +/fourideographicparen 16#3223 +/fourinferior 16#2084 +/fourmonospace 16#ff14 +/fournumeratorbengali 16#09f7 +/fouroldstyle 16#f734 +/fourparen 16#2477 +/fourperiod 16#248b +/fourpersian 16#06f4 +/fourroman 16#2173 +/foursuperior 16#2074 +/fourteencircle 16#246d +/fourteenparen 16#2481 +/fourteenperiod 16#2495 +/fourthai 16#0e54 +/fourthtonechinese 16#02cb +/fparen 16#24a1 +/fraction 16#2044 +/franc 16#20a3 +/g 16#0067 +/gabengali 16#0997 +/gacute 16#01f5 +/gadeva 16#0917 +/gafarabic 16#06af +/gaffinalarabic 16#fb93 +/gafinitialarabic 16#fb94 +/gafmedialarabic 16#fb95 +/gagujarati 16#0a97 +/gagurmukhi 16#0a17 +/gahiragana 16#304c +/gakatakana 16#30ac +/gamma 16#03b3 +/gammalatinsmall 16#0263 +/gammasuperior 16#02e0 +/gangiacoptic 16#03eb +/gbopomofo 16#310d +/gbreve 16#011f +/gcaron 16#01e7 +/gcedilla 16#0123 +/gcircle 16#24d6 +/gcircumflex 16#011d +/gcommaaccent 16#0123 +/gdot 16#0121 +/gdotaccent 16#0121 +/gecyrillic 16#0433 +/gehiragana 16#3052 +/gekatakana 16#30b2 +/geometricallyequal 16#2251 +/gereshaccenthebrew 16#059c +/gereshhebrew 16#05f3 +/gereshmuqdamhebrew 16#059d +/germandbls 16#00df +/gershayimaccenthebrew 16#059e +/gershayimhebrew 16#05f4 +/getamark 16#3013 +/ghabengali 16#0998 +/ghadarmenian 16#0572 +/ghadeva 16#0918 +/ghagujarati 16#0a98 +/ghagurmukhi 16#0a18 +/ghainarabic 16#063a +/ghainfinalarabic 16#fece +/ghaininitialarabic 16#fecf +/ghainmedialarabic 16#fed0 +/ghemiddlehookcyrillic 16#0495 +/ghestrokecyrillic 16#0493 +/gheupturncyrillic 16#0491 +/ghhadeva 16#095a +/ghhagurmukhi 16#0a5a +/ghook 16#0260 +/ghzsquare 16#3393 +/gihiragana 16#304e +/gikatakana 16#30ae +/gimarmenian 16#0563 +/gimel 16#05d2 +/gimeldagesh 16#fb32 +/gimeldageshhebrew 16#fb32 +/gimelhebrew 16#05d2 +/gjecyrillic 16#0453 +/glottalinvertedstroke 16#01be +/glottalstop 16#0294 +/glottalstopinverted 16#0296 +/glottalstopmod 16#02c0 +/glottalstopreversed 16#0295 +/glottalstopreversedmod 16#02c1 +/glottalstopreversedsuperior 16#02e4 +/glottalstopstroke 16#02a1 +/glottalstopstrokereversed 16#02a2 +/gmacron 16#1e21 +/gmonospace 16#ff47 +/gohiragana 16#3054 +/gokatakana 16#30b4 +/gparen 16#24a2 +/gpasquare 16#33ac +/gradient 16#2207 +/grave 16#0060 +/gravebelowcmb 16#0316 +/gravecmb 16#0300 +/gravecomb 16#0300 +/gravedeva 16#0953 +/gravelowmod 16#02ce +/gravemonospace 16#ff40 +/gravetonecmb 16#0340 +/greater 16#003e +/greaterequal 16#2265 +/greaterequalorless 16#22db +/greatermonospace 16#ff1e +/greaterorequivalent 16#2273 +/greaterorless 16#2277 +/greateroverequal 16#2267 +/greatersmall 16#fe65 +/gscript 16#0261 +/gstroke 16#01e5 +/guhiragana 16#3050 +/guillemotleft 16#00ab +/guillemotright 16#00bb +/guilsinglleft 16#2039 +/guilsinglright 16#203a +/gukatakana 16#30b0 +/guramusquare 16#3318 +/gysquare 16#33c9 +/h 16#0068 +/haabkhasiancyrillic 16#04a9 +/haaltonearabic 16#06c1 +/habengali 16#09b9 +/hadescendercyrillic 16#04b3 +/hadeva 16#0939 +/hagujarati 16#0ab9 +/hagurmukhi 16#0a39 +/haharabic 16#062d +/hahfinalarabic 16#fea2 +/hahinitialarabic 16#fea3 +/hahiragana 16#306f +/hahmedialarabic 16#fea4 +/haitusquare 16#332a +/hakatakana 16#30cf +/hakatakanahalfwidth 16#ff8a +/halantgurmukhi 16#0a4d +/hamzaarabic 16#0621 +/hamzalowarabic 16#0621 +/hangulfiller 16#3164 +/hardsigncyrillic 16#044a +/harpoonleftbarbup 16#21bc +/harpoonrightbarbup 16#21c0 +/hasquare 16#33ca +/hatafpatah 16#05b2 +/hatafpatah16 16#05b2 +/hatafpatah23 16#05b2 +/hatafpatah2f 16#05b2 +/hatafpatahhebrew 16#05b2 +/hatafpatahnarrowhebrew 16#05b2 +/hatafpatahquarterhebrew 16#05b2 +/hatafpatahwidehebrew 16#05b2 +/hatafqamats 16#05b3 +/hatafqamats1b 16#05b3 +/hatafqamats28 16#05b3 +/hatafqamats34 16#05b3 +/hatafqamatshebrew 16#05b3 +/hatafqamatsnarrowhebrew 16#05b3 +/hatafqamatsquarterhebrew 16#05b3 +/hatafqamatswidehebrew 16#05b3 +/hatafsegol 16#05b1 +/hatafsegol17 16#05b1 +/hatafsegol24 16#05b1 +/hatafsegol30 16#05b1 +/hatafsegolhebrew 16#05b1 +/hatafsegolnarrowhebrew 16#05b1 +/hatafsegolquarterhebrew 16#05b1 +/hatafsegolwidehebrew 16#05b1 +/hbar 16#0127 +/hbopomofo 16#310f +/hbrevebelow 16#1e2b +/hcedilla 16#1e29 +/hcircle 16#24d7 +/hcircumflex 16#0125 +/hdieresis 16#1e27 +/hdotaccent 16#1e23 +/hdotbelow 16#1e25 +/he 16#05d4 +/heart 16#2665 +/heartsuitblack 16#2665 +/heartsuitwhite 16#2661 +/hedagesh 16#fb34 +/hedageshhebrew 16#fb34 +/hehaltonearabic 16#06c1 +/heharabic 16#0647 +/hehebrew 16#05d4 +/hehfinalaltonearabic 16#fba7 +/hehfinalalttwoarabic 16#feea +/hehfinalarabic 16#feea +/hehhamzaabovefinalarabic 16#fba5 +/hehhamzaaboveisolatedarabic 16#fba4 +/hehinitialaltonearabic 16#fba8 +/hehinitialarabic 16#feeb +/hehiragana 16#3078 +/hehmedialaltonearabic 16#fba9 +/hehmedialarabic 16#feec +/heiseierasquare 16#337b +/hekatakana 16#30d8 +/hekatakanahalfwidth 16#ff8d +/hekutaarusquare 16#3336 +/henghook 16#0267 +/herutusquare 16#3339 +/het 16#05d7 +/hethebrew 16#05d7 +/hhook 16#0266 +/hhooksuperior 16#02b1 +/hieuhacirclekorean 16#327b +/hieuhaparenkorean 16#321b +/hieuhcirclekorean 16#326d +/hieuhkorean 16#314e +/hieuhparenkorean 16#320d +/hihiragana 16#3072 +/hikatakana 16#30d2 +/hikatakanahalfwidth 16#ff8b +/hiriq 16#05b4 +/hiriq14 16#05b4 +/hiriq21 16#05b4 +/hiriq2d 16#05b4 +/hiriqhebrew 16#05b4 +/hiriqnarrowhebrew 16#05b4 +/hiriqquarterhebrew 16#05b4 +/hiriqwidehebrew 16#05b4 +/hlinebelow 16#1e96 +/hmonospace 16#ff48 +/hoarmenian 16#0570 +/hohipthai 16#0e2b +/hohiragana 16#307b +/hokatakana 16#30db +/hokatakanahalfwidth 16#ff8e +/holam 16#05b9 +/holam19 16#05b9 +/holam26 16#05b9 +/holam32 16#05b9 +/holamhebrew 16#05b9 +/holamnarrowhebrew 16#05b9 +/holamquarterhebrew 16#05b9 +/holamwidehebrew 16#05b9 +/honokhukthai 16#0e2e +/hookabovecomb 16#0309 +/hookcmb 16#0309 +/hookpalatalizedbelowcmb 16#0321 +/hookretroflexbelowcmb 16#0322 +/hoonsquare 16#3342 +/horicoptic 16#03e9 +/horizontalbar 16#2015 +/horncmb 16#031b +/hotsprings 16#2668 +/house 16#2302 +/hparen 16#24a3 +/hsuperior 16#02b0 +/hturned 16#0265 +/huhiragana 16#3075 +/huiitosquare 16#3333 +/hukatakana 16#30d5 +/hukatakanahalfwidth 16#ff8c +/hungarumlaut 16#02dd +/hungarumlautcmb 16#030b +/hv 16#0195 +/hyphen 16#002d +/hypheninferior 16#f6e5 +/hyphenmonospace 16#ff0d +/hyphensmall 16#fe63 +/hyphensuperior 16#f6e6 +/hyphentwo 16#2010 +/i 16#0069 +/iacute 16#00ed +/iacyrillic 16#044f +/ibengali 16#0987 +/ibopomofo 16#3127 +/ibreve 16#012d +/icaron 16#01d0 +/icircle 16#24d8 +/icircumflex 16#00ee +/icyrillic 16#0456 +/idblgrave 16#0209 +/ideographearthcircle 16#328f +/ideographfirecircle 16#328b +/ideographicallianceparen 16#323f +/ideographiccallparen 16#323a +/ideographiccentrecircle 16#32a5 +/ideographicclose 16#3006 +/ideographiccomma 16#3001 +/ideographiccommaleft 16#ff64 +/ideographiccongratulationparen 16#3237 +/ideographiccorrectcircle 16#32a3 +/ideographicearthparen 16#322f +/ideographicenterpriseparen 16#323d +/ideographicexcellentcircle 16#329d +/ideographicfestivalparen 16#3240 +/ideographicfinancialcircle 16#3296 +/ideographicfinancialparen 16#3236 +/ideographicfireparen 16#322b +/ideographichaveparen 16#3232 +/ideographichighcircle 16#32a4 +/ideographiciterationmark 16#3005 +/ideographiclaborcircle 16#3298 +/ideographiclaborparen 16#3238 +/ideographicleftcircle 16#32a7 +/ideographiclowcircle 16#32a6 +/ideographicmedicinecircle 16#32a9 +/ideographicmetalparen 16#322e +/ideographicmoonparen 16#322a +/ideographicnameparen 16#3234 +/ideographicperiod 16#3002 +/ideographicprintcircle 16#329e +/ideographicreachparen 16#3243 +/ideographicrepresentparen 16#3239 +/ideographicresourceparen 16#323e +/ideographicrightcircle 16#32a8 +/ideographicsecretcircle 16#3299 +/ideographicselfparen 16#3242 +/ideographicsocietyparen 16#3233 +/ideographicspace 16#3000 +/ideographicspecialparen 16#3235 +/ideographicstockparen 16#3231 +/ideographicstudyparen 16#323b +/ideographicsunparen 16#3230 +/ideographicsuperviseparen 16#323c +/ideographicwaterparen 16#322c +/ideographicwoodparen 16#322d +/ideographiczero 16#3007 +/ideographmetalcircle 16#328e +/ideographmooncircle 16#328a +/ideographnamecircle 16#3294 +/ideographsuncircle 16#3290 +/ideographwatercircle 16#328c +/ideographwoodcircle 16#328d +/ideva 16#0907 +/idieresis 16#00ef +/idieresisacute 16#1e2f +/idieresiscyrillic 16#04e5 +/idotbelow 16#1ecb +/iebrevecyrillic 16#04d7 +/iecyrillic 16#0435 +/ieungacirclekorean 16#3275 +/ieungaparenkorean 16#3215 +/ieungcirclekorean 16#3267 +/ieungkorean 16#3147 +/ieungparenkorean 16#3207 +/igrave 16#00ec +/igujarati 16#0a87 +/igurmukhi 16#0a07 +/ihiragana 16#3044 +/ihookabove 16#1ec9 +/iibengali 16#0988 +/iicyrillic 16#0438 +/iideva 16#0908 +/iigujarati 16#0a88 +/iigurmukhi 16#0a08 +/iimatragurmukhi 16#0a40 +/iinvertedbreve 16#020b +/iishortcyrillic 16#0439 +/iivowelsignbengali 16#09c0 +/iivowelsigndeva 16#0940 +/iivowelsigngujarati 16#0ac0 +/ij 16#0133 +/ikatakana 16#30a4 +/ikatakanahalfwidth 16#ff72 +/ikorean 16#3163 +/ilde 16#02dc +/iluyhebrew 16#05ac +/imacron 16#012b +/imacroncyrillic 16#04e3 +/imageorapproximatelyequal 16#2253 +/imatragurmukhi 16#0a3f +/imonospace 16#ff49 +/increment 16#2206 +/infinity 16#221e +/iniarmenian 16#056b +/integral 16#222b +/integralbottom 16#2321 +/integralbt 16#2321 +/integralex 16#f8f5 +/integraltop 16#2320 +/integraltp 16#2320 +/intersection 16#2229 +/intisquare 16#3305 +/invbullet 16#25d8 +/invcircle 16#25d9 +/invsmileface 16#263b +/iocyrillic 16#0451 +/iogonek 16#012f +/iota 16#03b9 +/iotadieresis 16#03ca +/iotadieresistonos 16#0390 +/iotalatin 16#0269 +/iotatonos 16#03af +/iparen 16#24a4 +/irigurmukhi 16#0a72 +/ismallhiragana 16#3043 +/ismallkatakana 16#30a3 +/ismallkatakanahalfwidth 16#ff68 +/issharbengali 16#09fa +/istroke 16#0268 +/isuperior 16#f6ed +/iterationhiragana 16#309d +/iterationkatakana 16#30fd +/itilde 16#0129 +/itildebelow 16#1e2d +/iubopomofo 16#3129 +/iucyrillic 16#044e +/ivowelsignbengali 16#09bf +/ivowelsigndeva 16#093f +/ivowelsigngujarati 16#0abf +/izhitsacyrillic 16#0475 +/izhitsadblgravecyrillic 16#0477 +/j 16#006a +/jaarmenian 16#0571 +/jabengali 16#099c +/jadeva 16#091c +/jagujarati 16#0a9c +/jagurmukhi 16#0a1c +/jbopomofo 16#3110 +/jcaron 16#01f0 +/jcircle 16#24d9 +/jcircumflex 16#0135 +/jcrossedtail 16#029d +/jdotlessstroke 16#025f +/jecyrillic 16#0458 +/jeemarabic 16#062c +/jeemfinalarabic 16#fe9e +/jeeminitialarabic 16#fe9f +/jeemmedialarabic 16#fea0 +/jeharabic 16#0698 +/jehfinalarabic 16#fb8b +/jhabengali 16#099d +/jhadeva 16#091d +/jhagujarati 16#0a9d +/jhagurmukhi 16#0a1d +/jheharmenian 16#057b +/jis 16#3004 +/jmonospace 16#ff4a +/jparen 16#24a5 +/jsuperior 16#02b2 +/k 16#006b +/kabashkircyrillic 16#04a1 +/kabengali 16#0995 +/kacute 16#1e31 +/kacyrillic 16#043a +/kadescendercyrillic 16#049b +/kadeva 16#0915 +/kaf 16#05db +/kafarabic 16#0643 +/kafdagesh 16#fb3b +/kafdageshhebrew 16#fb3b +/kaffinalarabic 16#feda +/kafhebrew 16#05db +/kafinitialarabic 16#fedb +/kafmedialarabic 16#fedc +/kafrafehebrew 16#fb4d +/kagujarati 16#0a95 +/kagurmukhi 16#0a15 +/kahiragana 16#304b +/kahookcyrillic 16#04c4 +/kakatakana 16#30ab +/kakatakanahalfwidth 16#ff76 +/kappa 16#03ba +/kappasymbolgreek 16#03f0 +/kapyeounmieumkorean 16#3171 +/kapyeounphieuphkorean 16#3184 +/kapyeounpieupkorean 16#3178 +/kapyeounssangpieupkorean 16#3179 +/karoriisquare 16#330d +/kashidaautoarabic 16#0640 +/kashidaautonosidebearingarabic 16#0640 +/kasmallkatakana 16#30f5 +/kasquare 16#3384 +/kasraarabic 16#0650 +/kasratanarabic 16#064d +/kastrokecyrillic 16#049f +/katahiraprolongmarkhalfwidth 16#ff70 +/kaverticalstrokecyrillic 16#049d +/kbopomofo 16#310e +/kcalsquare 16#3389 +/kcaron 16#01e9 +/kcedilla 16#0137 +/kcircle 16#24da +/kcommaaccent 16#0137 +/kdotbelow 16#1e33 +/keharmenian 16#0584 +/kehiragana 16#3051 +/kekatakana 16#30b1 +/kekatakanahalfwidth 16#ff79 +/kenarmenian 16#056f +/kesmallkatakana 16#30f6 +/kgreenlandic 16#0138 +/khabengali 16#0996 +/khacyrillic 16#0445 +/khadeva 16#0916 +/khagujarati 16#0a96 +/khagurmukhi 16#0a16 +/khaharabic 16#062e +/khahfinalarabic 16#fea6 +/khahinitialarabic 16#fea7 +/khahmedialarabic 16#fea8 +/kheicoptic 16#03e7 +/khhadeva 16#0959 +/khhagurmukhi 16#0a59 +/khieukhacirclekorean 16#3278 +/khieukhaparenkorean 16#3218 +/khieukhcirclekorean 16#326a +/khieukhkorean 16#314b +/khieukhparenkorean 16#320a +/khokhaithai 16#0e02 +/khokhonthai 16#0e05 +/khokhuatthai 16#0e03 +/khokhwaithai 16#0e04 +/khomutthai 16#0e5b +/khook 16#0199 +/khorakhangthai 16#0e06 +/khzsquare 16#3391 +/kihiragana 16#304d +/kikatakana 16#30ad +/kikatakanahalfwidth 16#ff77 +/kiroguramusquare 16#3315 +/kiromeetorusquare 16#3316 +/kirosquare 16#3314 +/kiyeokacirclekorean 16#326e +/kiyeokaparenkorean 16#320e +/kiyeokcirclekorean 16#3260 +/kiyeokkorean 16#3131 +/kiyeokparenkorean 16#3200 +/kiyeoksioskorean 16#3133 +/kjecyrillic 16#045c +/klinebelow 16#1e35 +/klsquare 16#3398 +/kmcubedsquare 16#33a6 +/kmonospace 16#ff4b +/kmsquaredsquare 16#33a2 +/kohiragana 16#3053 +/kohmsquare 16#33c0 +/kokaithai 16#0e01 +/kokatakana 16#30b3 +/kokatakanahalfwidth 16#ff7a +/kooposquare 16#331e +/koppacyrillic 16#0481 +/koreanstandardsymbol 16#327f +/koroniscmb 16#0343 +/kparen 16#24a6 +/kpasquare 16#33aa +/ksicyrillic 16#046f +/ktsquare 16#33cf +/kturned 16#029e +/kuhiragana 16#304f +/kukatakana 16#30af +/kukatakanahalfwidth 16#ff78 +/kvsquare 16#33b8 +/kwsquare 16#33be +/l 16#006c +/labengali 16#09b2 +/lacute 16#013a +/ladeva 16#0932 +/lagujarati 16#0ab2 +/lagurmukhi 16#0a32 +/lakkhangyaothai 16#0e45 +/lamaleffinalarabic 16#fefc +/lamalefhamzaabovefinalarabic 16#fef8 +/lamalefhamzaaboveisolatedarabic 16#fef7 +/lamalefhamzabelowfinalarabic 16#fefa +/lamalefhamzabelowisolatedarabic 16#fef9 +/lamalefisolatedarabic 16#fefb +/lamalefmaddaabovefinalarabic 16#fef6 +/lamalefmaddaaboveisolatedarabic 16#fef5 +/lamarabic 16#0644 +/lambda 16#03bb +/lambdastroke 16#019b +/lamed 16#05dc +/lameddagesh 16#fb3c +/lameddageshhebrew 16#fb3c +/lamedhebrew 16#05dc +/lamfinalarabic 16#fede +/lamhahinitialarabic 16#fcca +/laminitialarabic 16#fedf +/lamjeeminitialarabic 16#fcc9 +/lamkhahinitialarabic 16#fccb +/lamlamhehisolatedarabic 16#fdf2 +/lammedialarabic 16#fee0 +/lammeemhahinitialarabic 16#fd88 +/lammeeminitialarabic 16#fccc +/largecircle 16#25ef +/lbar 16#019a +/lbelt 16#026c +/lbopomofo 16#310c +/lcaron 16#013e +/lcedilla 16#013c +/lcircle 16#24db +/lcircumflexbelow 16#1e3d +/lcommaaccent 16#013c +/ldot 16#0140 +/ldotaccent 16#0140 +/ldotbelow 16#1e37 +/ldotbelowmacron 16#1e39 +/leftangleabovecmb 16#031a +/lefttackbelowcmb 16#0318 +/less 16#003c +/lessequal 16#2264 +/lessequalorgreater 16#22da +/lessmonospace 16#ff1c +/lessorequivalent 16#2272 +/lessorgreater 16#2276 +/lessoverequal 16#2266 +/lesssmall 16#fe64 +/lezh 16#026e +/lfblock 16#258c +/lhookretroflex 16#026d +/lira 16#20a4 +/liwnarmenian 16#056c +/lj 16#01c9 +/ljecyrillic 16#0459 +/ll 16#f6c0 +/lladeva 16#0933 +/llagujarati 16#0ab3 +/llinebelow 16#1e3b +/llladeva 16#0934 +/llvocalicbengali 16#09e1 +/llvocalicdeva 16#0961 +/llvocalicvowelsignbengali 16#09e3 +/llvocalicvowelsigndeva 16#0963 +/lmiddletilde 16#026b +/lmonospace 16#ff4c +/lmsquare 16#33d0 +/lochulathai 16#0e2c +/logicaland 16#2227 +/logicalnot 16#00ac +/logicalnotreversed 16#2310 +/logicalor 16#2228 +/lolingthai 16#0e25 +/longs 16#017f +/lowlinecenterline 16#fe4e +/lowlinecmb 16#0332 +/lowlinedashed 16#fe4d +/lozenge 16#25ca +/lparen 16#24a7 +/lslash 16#0142 +/lsquare 16#2113 +/lsuperior 16#f6ee +/ltshade 16#2591 +/luthai 16#0e26 +/lvocalicbengali 16#098c +/lvocalicdeva 16#090c +/lvocalicvowelsignbengali 16#09e2 +/lvocalicvowelsigndeva 16#0962 +/lxsquare 16#33d3 +/m 16#006d +/mabengali 16#09ae +/macron 16#00af +/macronbelowcmb 16#0331 +/macroncmb 16#0304 +/macronlowmod 16#02cd +/macronmonospace 16#ffe3 +/macute 16#1e3f +/madeva 16#092e +/magujarati 16#0aae +/magurmukhi 16#0a2e +/mahapakhhebrew 16#05a4 +/mahapakhlefthebrew 16#05a4 +/mahiragana 16#307e +/maichattawalowleftthai 16#f895 +/maichattawalowrightthai 16#f894 +/maichattawathai 16#0e4b +/maichattawaupperleftthai 16#f893 +/maieklowleftthai 16#f88c +/maieklowrightthai 16#f88b +/maiekthai 16#0e48 +/maiekupperleftthai 16#f88a +/maihanakatleftthai 16#f884 +/maihanakatthai 16#0e31 +/maitaikhuleftthai 16#f889 +/maitaikhuthai 16#0e47 +/maitholowleftthai 16#f88f +/maitholowrightthai 16#f88e +/maithothai 16#0e49 +/maithoupperleftthai 16#f88d +/maitrilowleftthai 16#f892 +/maitrilowrightthai 16#f891 +/maitrithai 16#0e4a +/maitriupperleftthai 16#f890 +/maiyamokthai 16#0e46 +/makatakana 16#30de +/makatakanahalfwidth 16#ff8f +/male 16#2642 +/mansyonsquare 16#3347 +/maqafhebrew 16#05be +/mars 16#2642 +/masoracirclehebrew 16#05af +/masquare 16#3383 +/mbopomofo 16#3107 +/mbsquare 16#33d4 +/mcircle 16#24dc +/mcubedsquare 16#33a5 +/mdotaccent 16#1e41 +/mdotbelow 16#1e43 +/meemarabic 16#0645 +/meemfinalarabic 16#fee2 +/meeminitialarabic 16#fee3 +/meemmedialarabic 16#fee4 +/meemmeeminitialarabic 16#fcd1 +/meemmeemisolatedarabic 16#fc48 +/meetorusquare 16#334d +/mehiragana 16#3081 +/meizierasquare 16#337e +/mekatakana 16#30e1 +/mekatakanahalfwidth 16#ff92 +/mem 16#05de +/memdagesh 16#fb3e +/memdageshhebrew 16#fb3e +/memhebrew 16#05de +/menarmenian 16#0574 +/merkhahebrew 16#05a5 +/merkhakefulahebrew 16#05a6 +/merkhakefulalefthebrew 16#05a6 +/merkhalefthebrew 16#05a5 +/mhook 16#0271 +/mhzsquare 16#3392 +/middledotkatakanahalfwidth 16#ff65 +/middot 16#00b7 +/mieumacirclekorean 16#3272 +/mieumaparenkorean 16#3212 +/mieumcirclekorean 16#3264 +/mieumkorean 16#3141 +/mieumpansioskorean 16#3170 +/mieumparenkorean 16#3204 +/mieumpieupkorean 16#316e +/mieumsioskorean 16#316f +/mihiragana 16#307f +/mikatakana 16#30df +/mikatakanahalfwidth 16#ff90 +/minus 16#2212 +/minusbelowcmb 16#0320 +/minuscircle 16#2296 +/minusmod 16#02d7 +/minusplus 16#2213 +/minute 16#2032 +/miribaarusquare 16#334a +/mirisquare 16#3349 +/mlonglegturned 16#0270 +/mlsquare 16#3396 +/mmcubedsquare 16#33a3 +/mmonospace 16#ff4d +/mmsquaredsquare 16#339f +/mohiragana 16#3082 +/mohmsquare 16#33c1 +/mokatakana 16#30e2 +/mokatakanahalfwidth 16#ff93 +/molsquare 16#33d6 +/momathai 16#0e21 +/moverssquare 16#33a7 +/moverssquaredsquare 16#33a8 +/mparen 16#24a8 +/mpasquare 16#33ab +/mssquare 16#33b3 +/msuperior 16#f6ef +/mturned 16#026f +/mu 16#00b5 +/mu1 16#00b5 +/muasquare 16#3382 +/muchgreater 16#226b +/muchless 16#226a +/mufsquare 16#338c +/mugreek 16#03bc +/mugsquare 16#338d +/muhiragana 16#3080 +/mukatakana 16#30e0 +/mukatakanahalfwidth 16#ff91 +/mulsquare 16#3395 +/multiply 16#00d7 +/mumsquare 16#339b +/munahhebrew 16#05a3 +/munahlefthebrew 16#05a3 +/musicalnote 16#266a +/musicalnotedbl 16#266b +/musicflatsign 16#266d +/musicsharpsign 16#266f +/mussquare 16#33b2 +/muvsquare 16#33b6 +/muwsquare 16#33bc +/mvmegasquare 16#33b9 +/mvsquare 16#33b7 +/mwmegasquare 16#33bf +/mwsquare 16#33bd +/n 16#006e +/nabengali 16#09a8 +/nabla 16#2207 +/nacute 16#0144 +/nadeva 16#0928 +/nagujarati 16#0aa8 +/nagurmukhi 16#0a28 +/nahiragana 16#306a +/nakatakana 16#30ca +/nakatakanahalfwidth 16#ff85 +/napostrophe 16#0149 +/nasquare 16#3381 +/nbopomofo 16#310b +/nbspace 16#00a0 +/ncaron 16#0148 +/ncedilla 16#0146 +/ncircle 16#24dd +/ncircumflexbelow 16#1e4b +/ncommaaccent 16#0146 +/ndotaccent 16#1e45 +/ndotbelow 16#1e47 +/nehiragana 16#306d +/nekatakana 16#30cd +/nekatakanahalfwidth 16#ff88 +/newsheqelsign 16#20aa +/nfsquare 16#338b +/ngabengali 16#0999 +/ngadeva 16#0919 +/ngagujarati 16#0a99 +/ngagurmukhi 16#0a19 +/ngonguthai 16#0e07 +/nhiragana 16#3093 +/nhookleft 16#0272 +/nhookretroflex 16#0273 +/nieunacirclekorean 16#326f +/nieunaparenkorean 16#320f +/nieuncieuckorean 16#3135 +/nieuncirclekorean 16#3261 +/nieunhieuhkorean 16#3136 +/nieunkorean 16#3134 +/nieunpansioskorean 16#3168 +/nieunparenkorean 16#3201 +/nieunsioskorean 16#3167 +/nieuntikeutkorean 16#3166 +/nihiragana 16#306b +/nikatakana 16#30cb +/nikatakanahalfwidth 16#ff86 +/nikhahitleftthai 16#f899 +/nikhahitthai 16#0e4d +/nine 16#0039 +/ninearabic 16#0669 +/ninebengali 16#09ef +/ninecircle 16#2468 +/ninecircleinversesansserif 16#2792 +/ninedeva 16#096f +/ninegujarati 16#0aef +/ninegurmukhi 16#0a6f +/ninehackarabic 16#0669 +/ninehangzhou 16#3029 +/nineideographicparen 16#3228 +/nineinferior 16#2089 +/ninemonospace 16#ff19 +/nineoldstyle 16#f739 +/nineparen 16#247c +/nineperiod 16#2490 +/ninepersian 16#06f9 +/nineroman 16#2178 +/ninesuperior 16#2079 +/nineteencircle 16#2472 +/nineteenparen 16#2486 +/nineteenperiod 16#249a +/ninethai 16#0e59 +/nj 16#01cc +/njecyrillic 16#045a +/nkatakana 16#30f3 +/nkatakanahalfwidth 16#ff9d +/nlegrightlong 16#019e +/nlinebelow 16#1e49 +/nmonospace 16#ff4e +/nmsquare 16#339a +/nnabengali 16#09a3 +/nnadeva 16#0923 +/nnagujarati 16#0aa3 +/nnagurmukhi 16#0a23 +/nnnadeva 16#0929 +/nohiragana 16#306e +/nokatakana 16#30ce +/nokatakanahalfwidth 16#ff89 +/nonbreakingspace 16#00a0 +/nonenthai 16#0e13 +/nonuthai 16#0e19 +/noonarabic 16#0646 +/noonfinalarabic 16#fee6 +/noonghunnaarabic 16#06ba +/noonghunnafinalarabic 16#fb9f +/nooninitialarabic 16#fee7 +/noonjeeminitialarabic 16#fcd2 +/noonjeemisolatedarabic 16#fc4b +/noonmedialarabic 16#fee8 +/noonmeeminitialarabic 16#fcd5 +/noonmeemisolatedarabic 16#fc4e +/noonnoonfinalarabic 16#fc8d +/notcontains 16#220c +/notelement 16#2209 +/notelementof 16#2209 +/notequal 16#2260 +/notgreater 16#226f +/notgreaternorequal 16#2271 +/notgreaternorless 16#2279 +/notidentical 16#2262 +/notless 16#226e +/notlessnorequal 16#2270 +/notparallel 16#2226 +/notprecedes 16#2280 +/notsubset 16#2284 +/notsucceeds 16#2281 +/notsuperset 16#2285 +/nowarmenian 16#0576 +/nparen 16#24a9 +/nssquare 16#33b1 +/nsuperior 16#207f +/ntilde 16#00f1 +/nu 16#03bd +/nuhiragana 16#306c +/nukatakana 16#30cc +/nukatakanahalfwidth 16#ff87 +/nuktabengali 16#09bc +/nuktadeva 16#093c +/nuktagujarati 16#0abc +/nuktagurmukhi 16#0a3c +/numbersign 16#0023 +/numbersignmonospace 16#ff03 +/numbersignsmall 16#fe5f +/numeralsigngreek 16#0374 +/numeralsignlowergreek 16#0375 +/numero 16#2116 +/nun 16#05e0 +/nundagesh 16#fb40 +/nundageshhebrew 16#fb40 +/nunhebrew 16#05e0 +/nvsquare 16#33b5 +/nwsquare 16#33bb +/nyabengali 16#099e +/nyadeva 16#091e +/nyagujarati 16#0a9e +/nyagurmukhi 16#0a1e +/o 16#006f +/oacute 16#00f3 +/oangthai 16#0e2d +/obarred 16#0275 +/obarredcyrillic 16#04e9 +/obarreddieresiscyrillic 16#04eb +/obengali 16#0993 +/obopomofo 16#311b +/obreve 16#014f +/ocandradeva 16#0911 +/ocandragujarati 16#0a91 +/ocandravowelsigndeva 16#0949 +/ocandravowelsigngujarati 16#0ac9 +/ocaron 16#01d2 +/ocircle 16#24de +/ocircumflex 16#00f4 +/ocircumflexacute 16#1ed1 +/ocircumflexdotbelow 16#1ed9 +/ocircumflexgrave 16#1ed3 +/ocircumflexhookabove 16#1ed5 +/ocircumflextilde 16#1ed7 +/ocyrillic 16#043e +/odblacute 16#0151 +/odblgrave 16#020d +/odeva 16#0913 +/odieresis 16#00f6 +/odieresiscyrillic 16#04e7 +/odotbelow 16#1ecd +/oe 16#0153 +/oekorean 16#315a +/ogonek 16#02db +/ogonekcmb 16#0328 +/ograve 16#00f2 +/ogujarati 16#0a93 +/oharmenian 16#0585 +/ohiragana 16#304a +/ohookabove 16#1ecf +/ohorn 16#01a1 +/ohornacute 16#1edb +/ohorndotbelow 16#1ee3 +/ohorngrave 16#1edd +/ohornhookabove 16#1edf +/ohorntilde 16#1ee1 +/ohungarumlaut 16#0151 +/oi 16#01a3 +/oinvertedbreve 16#020f +/okatakana 16#30aa +/okatakanahalfwidth 16#ff75 +/okorean 16#3157 +/olehebrew 16#05ab +/omacron 16#014d +/omacronacute 16#1e53 +/omacrongrave 16#1e51 +/omdeva 16#0950 +/omega 16#03c9 +/omega1 16#03d6 +/omegacyrillic 16#0461 +/omegalatinclosed 16#0277 +/omegaroundcyrillic 16#047b +/omegatitlocyrillic 16#047d +/omegatonos 16#03ce +/omgujarati 16#0ad0 +/omicron 16#03bf +/omicrontonos 16#03cc +/omonospace 16#ff4f +/one 16#0031 +/onearabic 16#0661 +/onebengali 16#09e7 +/onecircle 16#2460 +/onecircleinversesansserif 16#278a +/onedeva 16#0967 +/onedotenleader 16#2024 +/oneeighth 16#215b +/onefitted 16#f6dc +/onegujarati 16#0ae7 +/onegurmukhi 16#0a67 +/onehackarabic 16#0661 +/onehalf 16#00bd +/onehangzhou 16#3021 +/oneideographicparen 16#3220 +/oneinferior 16#2081 +/onemonospace 16#ff11 +/onenumeratorbengali 16#09f4 +/oneoldstyle 16#f731 +/oneparen 16#2474 +/oneperiod 16#2488 +/onepersian 16#06f1 +/onequarter 16#00bc +/oneroman 16#2170 +/onesuperior 16#00b9 +/onethai 16#0e51 +/onethird 16#2153 +/oogonek 16#01eb +/oogonekmacron 16#01ed +/oogurmukhi 16#0a13 +/oomatragurmukhi 16#0a4b +/oopen 16#0254 +/oparen 16#24aa +/openbullet 16#25e6 +/option 16#2325 +/ordfeminine 16#00aa +/ordmasculine 16#00ba +/orthogonal 16#221f +/oshortdeva 16#0912 +/oshortvowelsigndeva 16#094a +/oslash 16#00f8 +/oslashacute 16#01ff +/osmallhiragana 16#3049 +/osmallkatakana 16#30a9 +/osmallkatakanahalfwidth 16#ff6b +/ostrokeacute 16#01ff +/osuperior 16#f6f0 +/otcyrillic 16#047f +/otilde 16#00f5 +/otildeacute 16#1e4d +/otildedieresis 16#1e4f +/oubopomofo 16#3121 +/overline 16#203e +/overlinecenterline 16#fe4a +/overlinecmb 16#0305 +/overlinedashed 16#fe49 +/overlinedblwavy 16#fe4c +/overlinewavy 16#fe4b +/overscore 16#00af +/ovowelsignbengali 16#09cb +/ovowelsigndeva 16#094b +/ovowelsigngujarati 16#0acb +/p 16#0070 +/paampssquare 16#3380 +/paasentosquare 16#332b +/pabengali 16#09aa +/pacute 16#1e55 +/padeva 16#092a +/pagedown 16#21df +/pageup 16#21de +/pagujarati 16#0aaa +/pagurmukhi 16#0a2a +/pahiragana 16#3071 +/paiyannoithai 16#0e2f +/pakatakana 16#30d1 +/palatalizationcyrilliccmb 16#0484 +/palochkacyrillic 16#04c0 +/pansioskorean 16#317f +/paragraph 16#00b6 +/parallel 16#2225 +/parenleft 16#0028 +/parenleftaltonearabic 16#fd3e +/parenleftbt 16#f8ed +/parenleftex 16#f8ec +/parenleftinferior 16#208d +/parenleftmonospace 16#ff08 +/parenleftsmall 16#fe59 +/parenleftsuperior 16#207d +/parenlefttp 16#f8eb +/parenleftvertical 16#fe35 +/parenright 16#0029 +/parenrightaltonearabic 16#fd3f +/parenrightbt 16#f8f8 +/parenrightex 16#f8f7 +/parenrightinferior 16#208e +/parenrightmonospace 16#ff09 +/parenrightsmall 16#fe5a +/parenrightsuperior 16#207e +/parenrighttp 16#f8f6 +/parenrightvertical 16#fe36 +/partialdiff 16#2202 +/paseqhebrew 16#05c0 +/pashtahebrew 16#0599 +/pasquare 16#33a9 +/patah 16#05b7 +/patah11 16#05b7 +/patah1d 16#05b7 +/patah2a 16#05b7 +/patahhebrew 16#05b7 +/patahnarrowhebrew 16#05b7 +/patahquarterhebrew 16#05b7 +/patahwidehebrew 16#05b7 +/pazerhebrew 16#05a1 +/pbopomofo 16#3106 +/pcircle 16#24df +/pdotaccent 16#1e57 +/pe 16#05e4 +/pecyrillic 16#043f +/pedagesh 16#fb44 +/pedageshhebrew 16#fb44 +/peezisquare 16#333b +/pefinaldageshhebrew 16#fb43 +/peharabic 16#067e +/peharmenian 16#057a +/pehebrew 16#05e4 +/pehfinalarabic 16#fb57 +/pehinitialarabic 16#fb58 +/pehiragana 16#307a +/pehmedialarabic 16#fb59 +/pekatakana 16#30da +/pemiddlehookcyrillic 16#04a7 +/perafehebrew 16#fb4e +/percent 16#0025 +/percentarabic 16#066a +/percentmonospace 16#ff05 +/percentsmall 16#fe6a +/period 16#002e +/periodarmenian 16#0589 +/periodcentered 16#00b7 +/periodhalfwidth 16#ff61 +/periodinferior 16#f6e7 +/periodmonospace 16#ff0e +/periodsmall 16#fe52 +/periodsuperior 16#f6e8 +/perispomenigreekcmb 16#0342 +/perpendicular 16#22a5 +/perthousand 16#2030 +/peseta 16#20a7 +/pfsquare 16#338a +/phabengali 16#09ab +/phadeva 16#092b +/phagujarati 16#0aab +/phagurmukhi 16#0a2b +/phi 16#03c6 +/phi1 16#03d5 +/phieuphacirclekorean 16#327a +/phieuphaparenkorean 16#321a +/phieuphcirclekorean 16#326c +/phieuphkorean 16#314d +/phieuphparenkorean 16#320c +/philatin 16#0278 +/phinthuthai 16#0e3a +/phisymbolgreek 16#03d5 +/phook 16#01a5 +/phophanthai 16#0e1e +/phophungthai 16#0e1c +/phosamphaothai 16#0e20 +/pi 16#03c0 +/pieupacirclekorean 16#3273 +/pieupaparenkorean 16#3213 +/pieupcieuckorean 16#3176 +/pieupcirclekorean 16#3265 +/pieupkiyeokkorean 16#3172 +/pieupkorean 16#3142 +/pieupparenkorean 16#3205 +/pieupsioskiyeokkorean 16#3174 +/pieupsioskorean 16#3144 +/pieupsiostikeutkorean 16#3175 +/pieupthieuthkorean 16#3177 +/pieuptikeutkorean 16#3173 +/pihiragana 16#3074 +/pikatakana 16#30d4 +/pisymbolgreek 16#03d6 +/piwrarmenian 16#0583 +/plus 16#002b +/plusbelowcmb 16#031f +/pluscircle 16#2295 +/plusminus 16#00b1 +/plusmod 16#02d6 +/plusmonospace 16#ff0b +/plussmall 16#fe62 +/plussuperior 16#207a +/pmonospace 16#ff50 +/pmsquare 16#33d8 +/pohiragana 16#307d +/pointingindexdownwhite 16#261f +/pointingindexleftwhite 16#261c +/pointingindexrightwhite 16#261e +/pointingindexupwhite 16#261d +/pokatakana 16#30dd +/poplathai 16#0e1b +/postalmark 16#3012 +/postalmarkface 16#3020 +/pparen 16#24ab +/precedes 16#227a +/prescription 16#211e +/primemod 16#02b9 +/primereversed 16#2035 +/product 16#220f +/projective 16#2305 +/prolongedkana 16#30fc +/propellor 16#2318 +/propersubset 16#2282 +/propersuperset 16#2283 +/proportion 16#2237 +/proportional 16#221d +/psi 16#03c8 +/psicyrillic 16#0471 +/psilipneumatacyrilliccmb 16#0486 +/pssquare 16#33b0 +/puhiragana 16#3077 +/pukatakana 16#30d7 +/pvsquare 16#33b4 +/pwsquare 16#33ba +/q 16#0071 +/qadeva 16#0958 +/qadmahebrew 16#05a8 +/qafarabic 16#0642 +/qaffinalarabic 16#fed6 +/qafinitialarabic 16#fed7 +/qafmedialarabic 16#fed8 +/qamats 16#05b8 +/qamats10 16#05b8 +/qamats1a 16#05b8 +/qamats1c 16#05b8 +/qamats27 16#05b8 +/qamats29 16#05b8 +/qamats33 16#05b8 +/qamatsde 16#05b8 +/qamatshebrew 16#05b8 +/qamatsnarrowhebrew 16#05b8 +/qamatsqatanhebrew 16#05b8 +/qamatsqatannarrowhebrew 16#05b8 +/qamatsqatanquarterhebrew 16#05b8 +/qamatsqatanwidehebrew 16#05b8 +/qamatsquarterhebrew 16#05b8 +/qamatswidehebrew 16#05b8 +/qarneyparahebrew 16#059f +/qbopomofo 16#3111 +/qcircle 16#24e0 +/qhook 16#02a0 +/qmonospace 16#ff51 +/qof 16#05e7 +/qofdagesh 16#fb47 +/qofdageshhebrew 16#fb47 +/qofhebrew 16#05e7 +/qparen 16#24ac +/quarternote 16#2669 +/qubuts 16#05bb +/qubuts18 16#05bb +/qubuts25 16#05bb +/qubuts31 16#05bb +/qubutshebrew 16#05bb +/qubutsnarrowhebrew 16#05bb +/qubutsquarterhebrew 16#05bb +/qubutswidehebrew 16#05bb +/question 16#003f +/questionarabic 16#061f +/questionarmenian 16#055e +/questiondown 16#00bf +/questiondownsmall 16#f7bf +/questiongreek 16#037e +/questionmonospace 16#ff1f +/questionsmall 16#f73f +/quotedbl 16#0022 +/quotedblbase 16#201e +/quotedblleft 16#201c +/quotedblmonospace 16#ff02 +/quotedblprime 16#301e +/quotedblprimereversed 16#301d +/quotedblright 16#201d +/quoteleft 16#2018 +/quoteleftreversed 16#201b +/quotereversed 16#201b +/quoteright 16#2019 +/quoterightn 16#0149 +/quotesinglbase 16#201a +/quotesingle 16#0027 +/quotesinglemonospace 16#ff07 +/r 16#0072 +/raarmenian 16#057c +/rabengali 16#09b0 +/racute 16#0155 +/radeva 16#0930 +/radical 16#221a +/radicalex 16#f8e5 +/radoverssquare 16#33ae +/radoverssquaredsquare 16#33af +/radsquare 16#33ad +/rafe 16#05bf +/rafehebrew 16#05bf +/ragujarati 16#0ab0 +/ragurmukhi 16#0a30 +/rahiragana 16#3089 +/rakatakana 16#30e9 +/rakatakanahalfwidth 16#ff97 +/ralowerdiagonalbengali 16#09f1 +/ramiddlediagonalbengali 16#09f0 +/ramshorn 16#0264 +/ratio 16#2236 +/rbopomofo 16#3116 +/rcaron 16#0159 +/rcedilla 16#0157 +/rcircle 16#24e1 +/rcommaaccent 16#0157 +/rdblgrave 16#0211 +/rdotaccent 16#1e59 +/rdotbelow 16#1e5b +/rdotbelowmacron 16#1e5d +/referencemark 16#203b +/reflexsubset 16#2286 +/reflexsuperset 16#2287 +/registered 16#00ae +/registersans 16#f8e8 +/registerserif 16#f6da +/reharabic 16#0631 +/reharmenian 16#0580 +/rehfinalarabic 16#feae +/rehiragana 16#308c +/rekatakana 16#30ec +/rekatakanahalfwidth 16#ff9a +/resh 16#05e8 +/reshdageshhebrew 16#fb48 +/reshhebrew 16#05e8 +/reversedtilde 16#223d +/reviahebrew 16#0597 +/reviamugrashhebrew 16#0597 +/revlogicalnot 16#2310 +/rfishhook 16#027e +/rfishhookreversed 16#027f +/rhabengali 16#09dd +/rhadeva 16#095d +/rho 16#03c1 +/rhook 16#027d +/rhookturned 16#027b +/rhookturnedsuperior 16#02b5 +/rhosymbolgreek 16#03f1 +/rhotichookmod 16#02de +/rieulacirclekorean 16#3271 +/rieulaparenkorean 16#3211 +/rieulcirclekorean 16#3263 +/rieulhieuhkorean 16#3140 +/rieulkiyeokkorean 16#313a +/rieulkiyeoksioskorean 16#3169 +/rieulkorean 16#3139 +/rieulmieumkorean 16#313b +/rieulpansioskorean 16#316c +/rieulparenkorean 16#3203 +/rieulphieuphkorean 16#313f +/rieulpieupkorean 16#313c +/rieulpieupsioskorean 16#316b +/rieulsioskorean 16#313d +/rieulthieuthkorean 16#313e +/rieultikeutkorean 16#316a +/rieulyeorinhieuhkorean 16#316d +/rightangle 16#221f +/righttackbelowcmb 16#0319 +/righttriangle 16#22bf +/rihiragana 16#308a +/rikatakana 16#30ea +/rikatakanahalfwidth 16#ff98 +/ring 16#02da +/ringbelowcmb 16#0325 +/ringcmb 16#030a +/ringhalfleft 16#02bf +/ringhalfleftarmenian 16#0559 +/ringhalfleftbelowcmb 16#031c +/ringhalfleftcentered 16#02d3 +/ringhalfright 16#02be +/ringhalfrightbelowcmb 16#0339 +/ringhalfrightcentered 16#02d2 +/rinvertedbreve 16#0213 +/rittorusquare 16#3351 +/rlinebelow 16#1e5f +/rlongleg 16#027c +/rlonglegturned 16#027a +/rmonospace 16#ff52 +/rohiragana 16#308d +/rokatakana 16#30ed +/rokatakanahalfwidth 16#ff9b +/roruathai 16#0e23 +/rparen 16#24ad +/rrabengali 16#09dc +/rradeva 16#0931 +/rragurmukhi 16#0a5c +/rreharabic 16#0691 +/rrehfinalarabic 16#fb8d +/rrvocalicbengali 16#09e0 +/rrvocalicdeva 16#0960 +/rrvocalicgujarati 16#0ae0 +/rrvocalicvowelsignbengali 16#09c4 +/rrvocalicvowelsigndeva 16#0944 +/rrvocalicvowelsigngujarati 16#0ac4 +/rsuperior 16#f6f1 +/rtblock 16#2590 +/rturned 16#0279 +/rturnedsuperior 16#02b4 +/ruhiragana 16#308b +/rukatakana 16#30eb +/rukatakanahalfwidth 16#ff99 +/rupeemarkbengali 16#09f2 +/rupeesignbengali 16#09f3 +/rupiah 16#f6dd +/ruthai 16#0e24 +/rvocalicbengali 16#098b +/rvocalicdeva 16#090b +/rvocalicgujarati 16#0a8b +/rvocalicvowelsignbengali 16#09c3 +/rvocalicvowelsigndeva 16#0943 +/rvocalicvowelsigngujarati 16#0ac3 +/s 16#0073 +/sabengali 16#09b8 +/sacute 16#015b +/sacutedotaccent 16#1e65 +/sadarabic 16#0635 +/sadeva 16#0938 +/sadfinalarabic 16#feba +/sadinitialarabic 16#febb +/sadmedialarabic 16#febc +/sagujarati 16#0ab8 +/sagurmukhi 16#0a38 +/sahiragana 16#3055 +/sakatakana 16#30b5 +/sakatakanahalfwidth 16#ff7b +/sallallahoualayhewasallamarabic 16#fdfa +/samekh 16#05e1 +/samekhdagesh 16#fb41 +/samekhdageshhebrew 16#fb41 +/samekhhebrew 16#05e1 +/saraaathai 16#0e32 +/saraaethai 16#0e41 +/saraaimaimalaithai 16#0e44 +/saraaimaimuanthai 16#0e43 +/saraamthai 16#0e33 +/saraathai 16#0e30 +/saraethai 16#0e40 +/saraiileftthai 16#f886 +/saraiithai 16#0e35 +/saraileftthai 16#f885 +/saraithai 16#0e34 +/saraothai 16#0e42 +/saraueeleftthai 16#f888 +/saraueethai 16#0e37 +/saraueleftthai 16#f887 +/sarauethai 16#0e36 +/sarauthai 16#0e38 +/sarauuthai 16#0e39 +/sbopomofo 16#3119 +/scaron 16#0161 +/scarondotaccent 16#1e67 +/scedilla 16#015f +/schwa 16#0259 +/schwacyrillic 16#04d9 +/schwadieresiscyrillic 16#04db +/schwahook 16#025a +/scircle 16#24e2 +/scircumflex 16#015d +/scommaaccent 16#0219 +/sdotaccent 16#1e61 +/sdotbelow 16#1e63 +/sdotbelowdotaccent 16#1e69 +/seagullbelowcmb 16#033c +/second 16#2033 +/secondtonechinese 16#02ca +/section 16#00a7 +/seenarabic 16#0633 +/seenfinalarabic 16#feb2 +/seeninitialarabic 16#feb3 +/seenmedialarabic 16#feb4 +/segol 16#05b6 +/segol13 16#05b6 +/segol1f 16#05b6 +/segol2c 16#05b6 +/segolhebrew 16#05b6 +/segolnarrowhebrew 16#05b6 +/segolquarterhebrew 16#05b6 +/segoltahebrew 16#0592 +/segolwidehebrew 16#05b6 +/seharmenian 16#057d +/sehiragana 16#305b +/sekatakana 16#30bb +/sekatakanahalfwidth 16#ff7e +/semicolon 16#003b +/semicolonarabic 16#061b +/semicolonmonospace 16#ff1b +/semicolonsmall 16#fe54 +/semivoicedmarkkana 16#309c +/semivoicedmarkkanahalfwidth 16#ff9f +/sentisquare 16#3322 +/sentosquare 16#3323 +/seven 16#0037 +/sevenarabic 16#0667 +/sevenbengali 16#09ed +/sevencircle 16#2466 +/sevencircleinversesansserif 16#2790 +/sevendeva 16#096d +/seveneighths 16#215e +/sevengujarati 16#0aed +/sevengurmukhi 16#0a6d +/sevenhackarabic 16#0667 +/sevenhangzhou 16#3027 +/sevenideographicparen 16#3226 +/seveninferior 16#2087 +/sevenmonospace 16#ff17 +/sevenoldstyle 16#f737 +/sevenparen 16#247a +/sevenperiod 16#248e +/sevenpersian 16#06f7 +/sevenroman 16#2176 +/sevensuperior 16#2077 +/seventeencircle 16#2470 +/seventeenparen 16#2484 +/seventeenperiod 16#2498 +/seventhai 16#0e57 +/sfthyphen 16#00ad +/shaarmenian 16#0577 +/shabengali 16#09b6 +/shacyrillic 16#0448 +/shaddaarabic 16#0651 +/shaddadammaarabic 16#fc61 +/shaddadammatanarabic 16#fc5e +/shaddafathaarabic 16#fc60 +/shaddakasraarabic 16#fc62 +/shaddakasratanarabic 16#fc5f +/shade 16#2592 +/shadedark 16#2593 +/shadelight 16#2591 +/shademedium 16#2592 +/shadeva 16#0936 +/shagujarati 16#0ab6 +/shagurmukhi 16#0a36 +/shalshelethebrew 16#0593 +/shbopomofo 16#3115 +/shchacyrillic 16#0449 +/sheenarabic 16#0634 +/sheenfinalarabic 16#feb6 +/sheeninitialarabic 16#feb7 +/sheenmedialarabic 16#feb8 +/sheicoptic 16#03e3 +/sheqel 16#20aa +/sheqelhebrew 16#20aa +/sheva 16#05b0 +/sheva115 16#05b0 +/sheva15 16#05b0 +/sheva22 16#05b0 +/sheva2e 16#05b0 +/shevahebrew 16#05b0 +/shevanarrowhebrew 16#05b0 +/shevaquarterhebrew 16#05b0 +/shevawidehebrew 16#05b0 +/shhacyrillic 16#04bb +/shimacoptic 16#03ed +/shin 16#05e9 +/shindagesh 16#fb49 +/shindageshhebrew 16#fb49 +/shindageshshindot 16#fb2c +/shindageshshindothebrew 16#fb2c +/shindageshsindot 16#fb2d +/shindageshsindothebrew 16#fb2d +/shindothebrew 16#05c1 +/shinhebrew 16#05e9 +/shinshindot 16#fb2a +/shinshindothebrew 16#fb2a +/shinsindot 16#fb2b +/shinsindothebrew 16#fb2b +/shook 16#0282 +/sigma 16#03c3 +/sigma1 16#03c2 +/sigmafinal 16#03c2 +/sigmalunatesymbolgreek 16#03f2 +/sihiragana 16#3057 +/sikatakana 16#30b7 +/sikatakanahalfwidth 16#ff7c +/siluqhebrew 16#05bd +/siluqlefthebrew 16#05bd +/similar 16#223c +/sindothebrew 16#05c2 +/siosacirclekorean 16#3274 +/siosaparenkorean 16#3214 +/sioscieuckorean 16#317e +/sioscirclekorean 16#3266 +/sioskiyeokkorean 16#317a +/sioskorean 16#3145 +/siosnieunkorean 16#317b +/siosparenkorean 16#3206 +/siospieupkorean 16#317d +/siostikeutkorean 16#317c +/six 16#0036 +/sixarabic 16#0666 +/sixbengali 16#09ec +/sixcircle 16#2465 +/sixcircleinversesansserif 16#278f +/sixdeva 16#096c +/sixgujarati 16#0aec +/sixgurmukhi 16#0a6c +/sixhackarabic 16#0666 +/sixhangzhou 16#3026 +/sixideographicparen 16#3225 +/sixinferior 16#2086 +/sixmonospace 16#ff16 +/sixoldstyle 16#f736 +/sixparen 16#2479 +/sixperiod 16#248d +/sixpersian 16#06f6 +/sixroman 16#2175 +/sixsuperior 16#2076 +/sixteencircle 16#246f +/sixteencurrencydenominatorbengali 16#09f9 +/sixteenparen 16#2483 +/sixteenperiod 16#2497 +/sixthai 16#0e56 +/slash 16#002f +/slashmonospace 16#ff0f +/slong 16#017f +/slongdotaccent 16#1e9b +/smileface 16#263a +/smonospace 16#ff53 +/sofpasuqhebrew 16#05c3 +/softhyphen 16#00ad +/softsigncyrillic 16#044c +/sohiragana 16#305d +/sokatakana 16#30bd +/sokatakanahalfwidth 16#ff7f +/soliduslongoverlaycmb 16#0338 +/solidusshortoverlaycmb 16#0337 +/sorusithai 16#0e29 +/sosalathai 16#0e28 +/sosothai 16#0e0b +/sosuathai 16#0e2a +/space 16#0020 +/spacehackarabic 16#0020 +/spade 16#2660 +/spadesuitblack 16#2660 +/spadesuitwhite 16#2664 +/sparen 16#24ae +/squarebelowcmb 16#033b +/squarecc 16#33c4 +/squarecm 16#339d +/squarediagonalcrosshatchfill 16#25a9 +/squarehorizontalfill 16#25a4 +/squarekg 16#338f +/squarekm 16#339e +/squarekmcapital 16#33ce +/squareln 16#33d1 +/squarelog 16#33d2 +/squaremg 16#338e +/squaremil 16#33d5 +/squaremm 16#339c +/squaremsquared 16#33a1 +/squareorthogonalcrosshatchfill 16#25a6 +/squareupperlefttolowerrightfill 16#25a7 +/squareupperrighttolowerleftfill 16#25a8 +/squareverticalfill 16#25a5 +/squarewhitewithsmallblack 16#25a3 +/srsquare 16#33db +/ssabengali 16#09b7 +/ssadeva 16#0937 +/ssagujarati 16#0ab7 +/ssangcieuckorean 16#3149 +/ssanghieuhkorean 16#3185 +/ssangieungkorean 16#3180 +/ssangkiyeokkorean 16#3132 +/ssangnieunkorean 16#3165 +/ssangpieupkorean 16#3143 +/ssangsioskorean 16#3146 +/ssangtikeutkorean 16#3138 +/ssuperior 16#f6f2 +/sterling 16#00a3 +/sterlingmonospace 16#ffe1 +/strokelongoverlaycmb 16#0336 +/strokeshortoverlaycmb 16#0335 +/subset 16#2282 +/subsetnotequal 16#228a +/subsetorequal 16#2286 +/succeeds 16#227b +/suchthat 16#220b +/suhiragana 16#3059 +/sukatakana 16#30b9 +/sukatakanahalfwidth 16#ff7d +/sukunarabic 16#0652 +/summation 16#2211 +/sun 16#263c +/superset 16#2283 +/supersetnotequal 16#228b +/supersetorequal 16#2287 +/svsquare 16#33dc +/syouwaerasquare 16#337c +/t 16#0074 +/tabengali 16#09a4 +/tackdown 16#22a4 +/tackleft 16#22a3 +/tadeva 16#0924 +/tagujarati 16#0aa4 +/tagurmukhi 16#0a24 +/taharabic 16#0637 +/tahfinalarabic 16#fec2 +/tahinitialarabic 16#fec3 +/tahiragana 16#305f +/tahmedialarabic 16#fec4 +/taisyouerasquare 16#337d +/takatakana 16#30bf +/takatakanahalfwidth 16#ff80 +/tatweelarabic 16#0640 +/tau 16#03c4 +/tav 16#05ea +/tavdages 16#fb4a +/tavdagesh 16#fb4a +/tavdageshhebrew 16#fb4a +/tavhebrew 16#05ea +/tbar 16#0167 +/tbopomofo 16#310a +/tcaron 16#0165 +/tccurl 16#02a8 +/tcedilla 16#0163 +/tcheharabic 16#0686 +/tchehfinalarabic 16#fb7b +/tchehinitialarabic 16#fb7c +/tchehmedialarabic 16#fb7d +/tcircle 16#24e3 +/tcircumflexbelow 16#1e71 +/tcommaaccent 16#0163 +/tdieresis 16#1e97 +/tdotaccent 16#1e6b +/tdotbelow 16#1e6d +/tecyrillic 16#0442 +/tedescendercyrillic 16#04ad +/teharabic 16#062a +/tehfinalarabic 16#fe96 +/tehhahinitialarabic 16#fca2 +/tehhahisolatedarabic 16#fc0c +/tehinitialarabic 16#fe97 +/tehiragana 16#3066 +/tehjeeminitialarabic 16#fca1 +/tehjeemisolatedarabic 16#fc0b +/tehmarbutaarabic 16#0629 +/tehmarbutafinalarabic 16#fe94 +/tehmedialarabic 16#fe98 +/tehmeeminitialarabic 16#fca4 +/tehmeemisolatedarabic 16#fc0e +/tehnoonfinalarabic 16#fc73 +/tekatakana 16#30c6 +/tekatakanahalfwidth 16#ff83 +/telephone 16#2121 +/telephoneblack 16#260e +/telishagedolahebrew 16#05a0 +/telishaqetanahebrew 16#05a9 +/tencircle 16#2469 +/tenideographicparen 16#3229 +/tenparen 16#247d +/tenperiod 16#2491 +/tenroman 16#2179 +/tesh 16#02a7 +/tet 16#05d8 +/tetdagesh 16#fb38 +/tetdageshhebrew 16#fb38 +/tethebrew 16#05d8 +/tetsecyrillic 16#04b5 +/tevirhebrew 16#059b +/tevirlefthebrew 16#059b +/thabengali 16#09a5 +/thadeva 16#0925 +/thagujarati 16#0aa5 +/thagurmukhi 16#0a25 +/thalarabic 16#0630 +/thalfinalarabic 16#feac +/thanthakhatlowleftthai 16#f898 +/thanthakhatlowrightthai 16#f897 +/thanthakhatthai 16#0e4c +/thanthakhatupperleftthai 16#f896 +/theharabic 16#062b +/thehfinalarabic 16#fe9a +/thehinitialarabic 16#fe9b +/thehmedialarabic 16#fe9c +/thereexists 16#2203 +/therefore 16#2234 +/theta 16#03b8 +/theta1 16#03d1 +/thetasymbolgreek 16#03d1 +/thieuthacirclekorean 16#3279 +/thieuthaparenkorean 16#3219 +/thieuthcirclekorean 16#326b +/thieuthkorean 16#314c +/thieuthparenkorean 16#320b +/thirteencircle 16#246c +/thirteenparen 16#2480 +/thirteenperiod 16#2494 +/thonangmonthothai 16#0e11 +/thook 16#01ad +/thophuthaothai 16#0e12 +/thorn 16#00fe +/thothahanthai 16#0e17 +/thothanthai 16#0e10 +/thothongthai 16#0e18 +/thothungthai 16#0e16 +/thousandcyrillic 16#0482 +/thousandsseparatorarabic 16#066c +/thousandsseparatorpersian 16#066c +/three 16#0033 +/threearabic 16#0663 +/threebengali 16#09e9 +/threecircle 16#2462 +/threecircleinversesansserif 16#278c +/threedeva 16#0969 +/threeeighths 16#215c +/threegujarati 16#0ae9 +/threegurmukhi 16#0a69 +/threehackarabic 16#0663 +/threehangzhou 16#3023 +/threeideographicparen 16#3222 +/threeinferior 16#2083 +/threemonospace 16#ff13 +/threenumeratorbengali 16#09f6 +/threeoldstyle 16#f733 +/threeparen 16#2476 +/threeperiod 16#248a +/threepersian 16#06f3 +/threequarters 16#00be +/threequartersemdash 16#f6de +/threeroman 16#2172 +/threesuperior 16#00b3 +/threethai 16#0e53 +/thzsquare 16#3394 +/tihiragana 16#3061 +/tikatakana 16#30c1 +/tikatakanahalfwidth 16#ff81 +/tikeutacirclekorean 16#3270 +/tikeutaparenkorean 16#3210 +/tikeutcirclekorean 16#3262 +/tikeutkorean 16#3137 +/tikeutparenkorean 16#3202 +/tilde 16#02dc +/tildebelowcmb 16#0330 +/tildecmb 16#0303 +/tildecomb 16#0303 +/tildedoublecmb 16#0360 +/tildeoperator 16#223c +/tildeoverlaycmb 16#0334 +/tildeverticalcmb 16#033e +/timescircle 16#2297 +/tipehahebrew 16#0596 +/tipehalefthebrew 16#0596 +/tippigurmukhi 16#0a70 +/titlocyrilliccmb 16#0483 +/tiwnarmenian 16#057f +/tlinebelow 16#1e6f +/tmonospace 16#ff54 +/toarmenian 16#0569 +/tohiragana 16#3068 +/tokatakana 16#30c8 +/tokatakanahalfwidth 16#ff84 +/tonebarextrahighmod 16#02e5 +/tonebarextralowmod 16#02e9 +/tonebarhighmod 16#02e6 +/tonebarlowmod 16#02e8 +/tonebarmidmod 16#02e7 +/tonefive 16#01bd +/tonesix 16#0185 +/tonetwo 16#01a8 +/tonos 16#0384 +/tonsquare 16#3327 +/topatakthai 16#0e0f +/tortoiseshellbracketleft 16#3014 +/tortoiseshellbracketleftsmall 16#fe5d +/tortoiseshellbracketleftvertical 16#fe39 +/tortoiseshellbracketright 16#3015 +/tortoiseshellbracketrightsmall 16#fe5e +/tortoiseshellbracketrightvertical 16#fe3a +/totaothai 16#0e15 +/tpalatalhook 16#01ab +/tparen 16#24af +/trademark 16#2122 +/trademarksans 16#f8ea +/trademarkserif 16#f6db +/tretroflexhook 16#0288 +/triagdn 16#25bc +/triaglf 16#25c4 +/triagrt 16#25ba +/triagup 16#25b2 +/ts 16#02a6 +/tsadi 16#05e6 +/tsadidagesh 16#fb46 +/tsadidageshhebrew 16#fb46 +/tsadihebrew 16#05e6 +/tsecyrillic 16#0446 +/tsere 16#05b5 +/tsere12 16#05b5 +/tsere1e 16#05b5 +/tsere2b 16#05b5 +/tserehebrew 16#05b5 +/tserenarrowhebrew 16#05b5 +/tserequarterhebrew 16#05b5 +/tserewidehebrew 16#05b5 +/tshecyrillic 16#045b +/tsuperior 16#f6f3 +/ttabengali 16#099f +/ttadeva 16#091f +/ttagujarati 16#0a9f +/ttagurmukhi 16#0a1f +/tteharabic 16#0679 +/ttehfinalarabic 16#fb67 +/ttehinitialarabic 16#fb68 +/ttehmedialarabic 16#fb69 +/tthabengali 16#09a0 +/tthadeva 16#0920 +/tthagujarati 16#0aa0 +/tthagurmukhi 16#0a20 +/tturned 16#0287 +/tuhiragana 16#3064 +/tukatakana 16#30c4 +/tukatakanahalfwidth 16#ff82 +/tusmallhiragana 16#3063 +/tusmallkatakana 16#30c3 +/tusmallkatakanahalfwidth 16#ff6f +/twelvecircle 16#246b +/twelveparen 16#247f +/twelveperiod 16#2493 +/twelveroman 16#217b +/twentycircle 16#2473 +/twentyhangzhou 16#5344 +/twentyparen 16#2487 +/twentyperiod 16#249b +/two 16#0032 +/twoarabic 16#0662 +/twobengali 16#09e8 +/twocircle 16#2461 +/twocircleinversesansserif 16#278b +/twodeva 16#0968 +/twodotenleader 16#2025 +/twodotleader 16#2025 +/twodotleadervertical 16#fe30 +/twogujarati 16#0ae8 +/twogurmukhi 16#0a68 +/twohackarabic 16#0662 +/twohangzhou 16#3022 +/twoideographicparen 16#3221 +/twoinferior 16#2082 +/twomonospace 16#ff12 +/twonumeratorbengali 16#09f5 +/twooldstyle 16#f732 +/twoparen 16#2475 +/twoperiod 16#2489 +/twopersian 16#06f2 +/tworoman 16#2171 +/twostroke 16#01bb +/twosuperior 16#00b2 +/twothai 16#0e52 +/twothirds 16#2154 +/u 16#0075 +/uacute 16#00fa +/ubar 16#0289 +/ubengali 16#0989 +/ubopomofo 16#3128 +/ubreve 16#016d +/ucaron 16#01d4 +/ucircle 16#24e4 +/ucircumflex 16#00fb +/ucircumflexbelow 16#1e77 +/ucyrillic 16#0443 +/udattadeva 16#0951 +/udblacute 16#0171 +/udblgrave 16#0215 +/udeva 16#0909 +/udieresis 16#00fc +/udieresisacute 16#01d8 +/udieresisbelow 16#1e73 +/udieresiscaron 16#01da +/udieresiscyrillic 16#04f1 +/udieresisgrave 16#01dc +/udieresismacron 16#01d6 +/udotbelow 16#1ee5 +/ugrave 16#00f9 +/ugujarati 16#0a89 +/ugurmukhi 16#0a09 +/uhiragana 16#3046 +/uhookabove 16#1ee7 +/uhorn 16#01b0 +/uhornacute 16#1ee9 +/uhorndotbelow 16#1ef1 +/uhorngrave 16#1eeb +/uhornhookabove 16#1eed +/uhorntilde 16#1eef +/uhungarumlaut 16#0171 +/uhungarumlautcyrillic 16#04f3 +/uinvertedbreve 16#0217 +/ukatakana 16#30a6 +/ukatakanahalfwidth 16#ff73 +/ukcyrillic 16#0479 +/ukorean 16#315c +/umacron 16#016b +/umacroncyrillic 16#04ef +/umacrondieresis 16#1e7b +/umatragurmukhi 16#0a41 +/umonospace 16#ff55 +/underscore 16#005f +/underscoredbl 16#2017 +/underscoremonospace 16#ff3f +/underscorevertical 16#fe33 +/underscorewavy 16#fe4f +/union 16#222a +/universal 16#2200 +/uogonek 16#0173 +/uparen 16#24b0 +/upblock 16#2580 +/upperdothebrew 16#05c4 +/upsilon 16#03c5 +/upsilondieresis 16#03cb +/upsilondieresistonos 16#03b0 +/upsilonlatin 16#028a +/upsilontonos 16#03cd +/uptackbelowcmb 16#031d +/uptackmod 16#02d4 +/uragurmukhi 16#0a73 +/uring 16#016f +/ushortcyrillic 16#045e +/usmallhiragana 16#3045 +/usmallkatakana 16#30a5 +/usmallkatakanahalfwidth 16#ff69 +/ustraightcyrillic 16#04af +/ustraightstrokecyrillic 16#04b1 +/utilde 16#0169 +/utildeacute 16#1e79 +/utildebelow 16#1e75 +/uubengali 16#098a +/uudeva 16#090a +/uugujarati 16#0a8a +/uugurmukhi 16#0a0a +/uumatragurmukhi 16#0a42 +/uuvowelsignbengali 16#09c2 +/uuvowelsigndeva 16#0942 +/uuvowelsigngujarati 16#0ac2 +/uvowelsignbengali 16#09c1 +/uvowelsigndeva 16#0941 +/uvowelsigngujarati 16#0ac1 +/v 16#0076 +/vadeva 16#0935 +/vagujarati 16#0ab5 +/vagurmukhi 16#0a35 +/vakatakana 16#30f7 +/vav 16#05d5 +/vavdagesh 16#fb35 +/vavdagesh65 16#fb35 +/vavdageshhebrew 16#fb35 +/vavhebrew 16#05d5 +/vavholam 16#fb4b +/vavholamhebrew 16#fb4b +/vavvavhebrew 16#05f0 +/vavyodhebrew 16#05f1 +/vcircle 16#24e5 +/vdotbelow 16#1e7f +/vecyrillic 16#0432 +/veharabic 16#06a4 +/vehfinalarabic 16#fb6b +/vehinitialarabic 16#fb6c +/vehmedialarabic 16#fb6d +/vekatakana 16#30f9 +/venus 16#2640 +/verticalbar 16#007c +/verticallineabovecmb 16#030d +/verticallinebelowcmb 16#0329 +/verticallinelowmod 16#02cc +/verticallinemod 16#02c8 +/vewarmenian 16#057e +/vhook 16#028b +/vikatakana 16#30f8 +/viramabengali 16#09cd +/viramadeva 16#094d +/viramagujarati 16#0acd +/visargabengali 16#0983 +/visargadeva 16#0903 +/visargagujarati 16#0a83 +/vmonospace 16#ff56 +/voarmenian 16#0578 +/voicediterationhiragana 16#309e +/voicediterationkatakana 16#30fe +/voicedmarkkana 16#309b +/voicedmarkkanahalfwidth 16#ff9e +/vokatakana 16#30fa +/vparen 16#24b1 +/vtilde 16#1e7d +/vturned 16#028c +/vuhiragana 16#3094 +/vukatakana 16#30f4 +/w 16#0077 +/wacute 16#1e83 +/waekorean 16#3159 +/wahiragana 16#308f +/wakatakana 16#30ef +/wakatakanahalfwidth 16#ff9c +/wakorean 16#3158 +/wasmallhiragana 16#308e +/wasmallkatakana 16#30ee +/wattosquare 16#3357 +/wavedash 16#301c +/wavyunderscorevertical 16#fe34 +/wawarabic 16#0648 +/wawfinalarabic 16#feee +/wawhamzaabovearabic 16#0624 +/wawhamzaabovefinalarabic 16#fe86 +/wbsquare 16#33dd +/wcircle 16#24e6 +/wcircumflex 16#0175 +/wdieresis 16#1e85 +/wdotaccent 16#1e87 +/wdotbelow 16#1e89 +/wehiragana 16#3091 +/weierstrass 16#2118 +/wekatakana 16#30f1 +/wekorean 16#315e +/weokorean 16#315d +/wgrave 16#1e81 +/whitebullet 16#25e6 +/whitecircle 16#25cb +/whitecircleinverse 16#25d9 +/whitecornerbracketleft 16#300e +/whitecornerbracketleftvertical 16#fe43 +/whitecornerbracketright 16#300f +/whitecornerbracketrightvertical 16#fe44 +/whitediamond 16#25c7 +/whitediamondcontainingblacksmalldiamond 16#25c8 +/whitedownpointingsmalltriangle 16#25bf +/whitedownpointingtriangle 16#25bd +/whiteleftpointingsmalltriangle 16#25c3 +/whiteleftpointingtriangle 16#25c1 +/whitelenticularbracketleft 16#3016 +/whitelenticularbracketright 16#3017 +/whiterightpointingsmalltriangle 16#25b9 +/whiterightpointingtriangle 16#25b7 +/whitesmallsquare 16#25ab +/whitesmilingface 16#263a +/whitesquare 16#25a1 +/whitestar 16#2606 +/whitetelephone 16#260f +/whitetortoiseshellbracketleft 16#3018 +/whitetortoiseshellbracketright 16#3019 +/whiteuppointingsmalltriangle 16#25b5 +/whiteuppointingtriangle 16#25b3 +/wihiragana 16#3090 +/wikatakana 16#30f0 +/wikorean 16#315f +/wmonospace 16#ff57 +/wohiragana 16#3092 +/wokatakana 16#30f2 +/wokatakanahalfwidth 16#ff66 +/won 16#20a9 +/wonmonospace 16#ffe6 +/wowaenthai 16#0e27 +/wparen 16#24b2 +/wring 16#1e98 +/wsuperior 16#02b7 +/wturned 16#028d +/wynn 16#01bf +/x 16#0078 +/xabovecmb 16#033d +/xbopomofo 16#3112 +/xcircle 16#24e7 +/xdieresis 16#1e8d +/xdotaccent 16#1e8b +/xeharmenian 16#056d +/xi 16#03be +/xmonospace 16#ff58 +/xparen 16#24b3 +/xsuperior 16#02e3 +/y 16#0079 +/yaadosquare 16#334e +/yabengali 16#09af +/yacute 16#00fd +/yadeva 16#092f +/yaekorean 16#3152 +/yagujarati 16#0aaf +/yagurmukhi 16#0a2f +/yahiragana 16#3084 +/yakatakana 16#30e4 +/yakatakanahalfwidth 16#ff94 +/yakorean 16#3151 +/yamakkanthai 16#0e4e +/yasmallhiragana 16#3083 +/yasmallkatakana 16#30e3 +/yasmallkatakanahalfwidth 16#ff6c +/yatcyrillic 16#0463 +/ycircle 16#24e8 +/ycircumflex 16#0177 +/ydieresis 16#00ff +/ydotaccent 16#1e8f +/ydotbelow 16#1ef5 +/yeharabic 16#064a +/yehbarreearabic 16#06d2 +/yehbarreefinalarabic 16#fbaf +/yehfinalarabic 16#fef2 +/yehhamzaabovearabic 16#0626 +/yehhamzaabovefinalarabic 16#fe8a +/yehhamzaaboveinitialarabic 16#fe8b +/yehhamzaabovemedialarabic 16#fe8c +/yehinitialarabic 16#fef3 +/yehmedialarabic 16#fef4 +/yehmeeminitialarabic 16#fcdd +/yehmeemisolatedarabic 16#fc58 +/yehnoonfinalarabic 16#fc94 +/yehthreedotsbelowarabic 16#06d1 +/yekorean 16#3156 +/yen 16#00a5 +/yenmonospace 16#ffe5 +/yeokorean 16#3155 +/yeorinhieuhkorean 16#3186 +/yerahbenyomohebrew 16#05aa +/yerahbenyomolefthebrew 16#05aa +/yericyrillic 16#044b +/yerudieresiscyrillic 16#04f9 +/yesieungkorean 16#3181 +/yesieungpansioskorean 16#3183 +/yesieungsioskorean 16#3182 +/yetivhebrew 16#059a +/ygrave 16#1ef3 +/yhook 16#01b4 +/yhookabove 16#1ef7 +/yiarmenian 16#0575 +/yicyrillic 16#0457 +/yikorean 16#3162 +/yinyang 16#262f +/yiwnarmenian 16#0582 +/ymonospace 16#ff59 +/yod 16#05d9 +/yoddagesh 16#fb39 +/yoddageshhebrew 16#fb39 +/yodhebrew 16#05d9 +/yodyodhebrew 16#05f2 +/yodyodpatahhebrew 16#fb1f +/yohiragana 16#3088 +/yoikorean 16#3189 +/yokatakana 16#30e8 +/yokatakanahalfwidth 16#ff96 +/yokorean 16#315b +/yosmallhiragana 16#3087 +/yosmallkatakana 16#30e7 +/yosmallkatakanahalfwidth 16#ff6e +/yotgreek 16#03f3 +/yoyaekorean 16#3188 +/yoyakorean 16#3187 +/yoyakthai 16#0e22 +/yoyingthai 16#0e0d +/yparen 16#24b4 +/ypogegrammeni 16#037a +/ypogegrammenigreekcmb 16#0345 +/yr 16#01a6 +/yring 16#1e99 +/ysuperior 16#02b8 +/ytilde 16#1ef9 +/yturned 16#028e +/yuhiragana 16#3086 +/yuikorean 16#318c +/yukatakana 16#30e6 +/yukatakanahalfwidth 16#ff95 +/yukorean 16#3160 +/yusbigcyrillic 16#046b +/yusbigiotifiedcyrillic 16#046d +/yuslittlecyrillic 16#0467 +/yuslittleiotifiedcyrillic 16#0469 +/yusmallhiragana 16#3085 +/yusmallkatakana 16#30e5 +/yusmallkatakanahalfwidth 16#ff6d +/yuyekorean 16#318b +/yuyeokorean 16#318a +/yyabengali 16#09df +/yyadeva 16#095f +/z 16#007a +/zaarmenian 16#0566 +/zacute 16#017a +/zadeva 16#095b +/zagurmukhi 16#0a5b +/zaharabic 16#0638 +/zahfinalarabic 16#fec6 +/zahinitialarabic 16#fec7 +/zahiragana 16#3056 +/zahmedialarabic 16#fec8 +/zainarabic 16#0632 +/zainfinalarabic 16#feb0 +/zakatakana 16#30b6 +/zaqefgadolhebrew 16#0595 +/zaqefqatanhebrew 16#0594 +/zarqahebrew 16#0598 +/zayin 16#05d6 +/zayindagesh 16#fb36 +/zayindageshhebrew 16#fb36 +/zayinhebrew 16#05d6 +/zbopomofo 16#3117 +/zcaron 16#017e +/zcircle 16#24e9 +/zcircumflex 16#1e91 +/zcurl 16#0291 +/zdot 16#017c +/zdotaccent 16#017c +/zdotbelow 16#1e93 +/zecyrillic 16#0437 +/zedescendercyrillic 16#0499 +/zedieresiscyrillic 16#04df +/zehiragana 16#305c +/zekatakana 16#30bc +/zero 16#0030 +/zeroarabic 16#0660 +/zerobengali 16#09e6 +/zerodeva 16#0966 +/zerogujarati 16#0ae6 +/zerogurmukhi 16#0a66 +/zerohackarabic 16#0660 +/zeroinferior 16#2080 +/zeromonospace 16#ff10 +/zerooldstyle 16#f730 +/zeropersian 16#06f0 +/zerosuperior 16#2070 +/zerothai 16#0e50 +/zerowidthjoiner 16#feff +/zerowidthnonjoiner 16#200c +/zerowidthspace 16#200b +/zeta 16#03b6 +/zhbopomofo 16#3113 +/zhearmenian 16#056a +/zhebrevecyrillic 16#04c2 +/zhecyrillic 16#0436 +/zhedescendercyrillic 16#0497 +/zhedieresiscyrillic 16#04dd +/zihiragana 16#3058 +/zikatakana 16#30b8 +/zinorhebrew 16#05ae +/zlinebelow 16#1e95 +/zmonospace 16#ff5a +/zohiragana 16#305e +/zokatakana 16#30be +/zparen 16#24b5 +/zretroflexhook 16#0290 +/zstroke 16#01b6 +/zuhiragana 16#305a +/zukatakana 16#30ba +.dicttomark readonly def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding .findencoding +/MacGlyphEncoding +/.notdef/.null/CR +4 index 32 95 getinterval aload pop +99 index 128 45 getinterval aload pop +/notequal/AE +/Oslash/infinity/plusminus/lessequal/greaterequal +/yen/mu1/partialdiff/summation/product +/pi/integral/ordfeminine/ordmasculine/Ohm +/ae/oslash/questiondown/exclamdown/logicalnot +/radical/florin/approxequal/increment/guillemotleft +/guillemotright/ellipsis/nbspace +174 index 203 12 getinterval aload pop +/lozenge +187 index 216 24 getinterval aload pop +/applelogo +212 index 241 7 getinterval aload pop +/overscore +220 index 249 7 getinterval aload pop +/Lslash/lslash/Scaron/scaron +/Zcaron/zcaron/brokenbar/Eth/eth +/Yacute/yacute/Thorn/thorn/minus +/multiply/onesuperior/twosuperior/threesuperior/onehalf +/onequarter/threequarters/franc/Gbreve/gbreve +/Idotaccent/Scedilla/scedilla/Cacute/cacute +/Ccaron/ccaron/dmacron +260 -1 roll pop +258 packedarray +7 1 index .registerencoding +.defineencoding +exec + +%%BeginResource: file (PDF CharProc obj_13) +13 0 obj +<>stream +85.2 0 4 -91 94 0 d1 +90 0 0 91 4 -91 cm +BI +/IM true +/W 90 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fjg7-m/Khs7m.V%1*"6s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W*_p&G'iLHu,t +J,fQKs8W-!s8TV=*98r"qu?V#D>4'7C>Wl4$\JV8$Y*\Y_hYVM$kP*q%)N9^OT~> +EI +endstream +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_15) +15 0 obj +<>stream +79.9 0 3 -92 77 -1 d1 +74 0 0 91 3 -92 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q98m=ruoeis8W-! +hYog9^YA^6p=F6L0#LtI+a)H,qr*6].0Dtj +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_16) +16 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_19) +19 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_22) +22 0 obj +<>stream +79.9 0 3 -91 77 0 d1 +74 0 0 91 3 -91 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q8NC6s8VX1+92B@ +s8W-!s0r%-huA0)ho#.0Y^XWJhZq!g%:`3~> +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_24) +24 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_27) +27 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_23) +23 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 74 91]/FirstChar 0/LastChar 0/Widths[ +79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_14) +14 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 90 92]/FirstChar 0/LastChar 1/Widths[ +85.2 79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_8) +8 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_10) +10 0 obj +<> +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_30) +30 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_9) +9 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_28) +28 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QT8#7''lVQqe5A+D`J0!5"2&A"\A]lVo+g/]e'Ub]#A->j-s$ +&dSPl5nR^M@H>ZQ!!4&M5`e7XAMBMQi2,p4#Teg3N>-F>4]Vl*_#RlaLlfu#3Z][MfuO0/Cc@a* +1]Z!V+u5+K%KJo$&G93D6pq7>$+.lc!^oFH"*r,TA%+`,#6U*Qi0#T97oc::&.3me!4*d]hIf!? +0E<00&:ac1!'J2@7;UXr!b0XZ&Gkl!W54u(VDE`(DudBJ*e4fp#F^$-iWqQK.#9q/O'jE:df9KN;$Y*< +af5E6&YR4p7R/XU!An`IOW/hd,=6FZ0&YapJ0C9a)1Y5p2Vthe9Jk"Z9ZRFeJ.bi"'7c8laTFF1 +3DA)5,iAe[!(!-t!6_#KBS&2jfDo+U&2XXm&h&R3!)'7:#)&V!!N#mPTF-/!3rf79!gk[/%OD)u +#Rgq<+a=L@4$WcT(Q^@2!"XU!0]ms3jff-pJ:JX+!!RoR+BSV0.$?>$!W\rG"9q,s&;?fhEEuY2 +ompORQ)Gf-KEZrC=952<5[5Dopn0/j)@,*W_S\6#$aWAY;]tQ?ki/+97+X@LW=M +3!NJ"r'=^$!.8Ga&+p+$5G>&%&,QJ*L"i)!N9`r0[:S8E@ +-mSkY^uu$Z!+dsOE-`,+5o_+SY`=B5TE0kb(5)g#:5.U776BH@+p7$4&M3uN4SWjq`%u9B +Y!><9nHdTs(kMfs'oDuG"<9[O"c5JQ5R7$7+;tA`!+GiC#Nq[#RK.aHJ:%EReq"[R(jcchGWiD6 +oH%?bCB.f-f*@E,q]gUn%k\JVJ2$ER8L)@f_5mZm=.UF9ZcN2Uc(G:iTE.ED5`,OM34e,U$\0XE +BE>g!L?="*=o`@?!":`l0\"MQ6U2(I+>^MmbickoA.4Ft+:-?7+TiBT$n[Pp1]Y/lJ/DPmEC;Fd +!4E"q(g.4W-nKts#;X(3=)#KR[fo$oiW>lXRc"T'!MBW26@]gOTgTND0VAMuJ-DGc$n'>N$5:4b +!sue#%KK=qf`GhYEmrA9K\$JC!.=GGJA_JA\_IhOE(Z`f'I>Y/oDl`n7m[5"Z;D_K&V;O!#gGAZ +JA;O^5Suq>O8&bZ8-fdD&/YD@%BS!>"qX*$%KN1+Z31/D!^J=l!+>o["7UUD5U\j3+Sq^\:ja'E +(d4N7(8$+2GRit749@bV*J:86;udar#:Mp>!'7Og_8&!e+Q9U.H>Wb!&-E.)\sn4(CuGDn1o3If +XFic>:+MK+!A>i=[?+o+>d,ts!6(de!#Z$XK9-8pP+VmN1(/X?&-^?F@_-M^ej3kk!2-W.!lkUQ +^_eO(^`W]1VgVqQ(b'ESTG+nU:t@oqUB%a0!J5M%B\+hp!2,UUJj:Xg5V7op@#j,p:e&e4'p/Kh +M6):?6"qm+!sC6fkC>6Oi;ihq"5p2MMa0B-6"gE(^utfMf00EY+<,6LBr:utS-CSo(h`nS$WI*Z ++TSph^7YlAJ5dWp>_!Lj!"91Zl[AiLQ/DY88[8@8p&T(3!s02g#W)N'4/`DeSJZ(m!8@ta5\jE) +j__k.0EqT_GRA1CliDWe%hcZF;8qH&=.obM!:TV@E/MWjJ4\`$*H2)\0h2?H3d(N;Zr$ft"!Q_Q +>Q>[E!>b_=1'g_q!'spob?8a9A_atco*/XI=cY=M>g8].7VU(_X#4MEh4+"jEQd]Nbm%VS>sgEe ++Y:\7!MFrF!$KTe6Tl!2:tbo.#VR$I:j)pP!!G,jN!98U#_EU3$$da5H()i#Dt4 +J`If$1%uf&KE)!Kk)=fk"p^h%%03UF!PfOqe\EG%!"eLqJNsJA5YF?B%>"l$&0dYIcuomaAYT6U +jO(cUG7NTu4+WJ)(kBCE!0CRiJUe-4^q^/)5QV`fQo,(U6kP&J63TXrQ/+\n0FRE"6A>IA$%a-Z +J3h0r6cf-.UTf4RZTJs-pu;@RK``Oi.O+up0a#4Z;h4p#9S"q@'L4Vk$4maPK_Q2m+CGY8huY(!X>qsa(ig,Fr%X!$6lk)" +UP#/=dK#(`gOQTsK:jV'^o0I!_#+Rmn1YBga>j>g4;A+j3-E\KD*Io'f$+tcm!;j,F,nNAQJZkICTMq20+D_&\5aWY/ +(aBC'gaL-dq]DQt3X28>"p9Zg)2UHcJ.N>XK^a[(@AkN+n>$p%&<.d,YWR_\W"]D[UD@=[+,CL% +'uLmM"@.cX&(/$I6XXI6To_/E+pJXSDjAJ%=R_b'tQ +PQG5P#lkA7i+`=$+9A-o0Hb*45R[\o":-,4kFpPl?t@rNM$%Ul#E>_blNHKjN9Lh8lU:LMi'(-/ +lL=k?('#$UJ?Ti_!%J1^+C^uG_>Y8ODuq/"#6;%F^g7-%*WtA/<=R=3D;*h73X/u&!l-;U:Dhqr +B_)3l!77>-@#P`W/c['c#Q[I,Tk5)!0HZtq&0Qi;T[jO&":ldq%j_Z!%09 +E!&of*.d;nJbTJ0U]:C$fs9W>m\p>lZkbn,"(237OB`-S=oi$0$ZKS$TE,8'&-GaM#B4ts+_VJG +2AQ9N!)^c+D]807+pP1%h9j=9Z2ZVQ#TeOLojE7WnA7+MoE[^d%:I0e,g%3ZV%(f1%R:.#@.GD5 +-5aPL'>[cN+h&!/ro!mt!.f7jAnD-q!">NO$DJ7Rd4$">.M3dO!:R$iiC#i&h\24;m'>!.fS!!Ib$bIK8>U!C:oI?6B\i4ToY>>KA&(1]TeF)F778_1i"VmK!?Y(?"fpJSGosi>phf!$G)[_36j! +OpqPI!!9Y5+92^uJ-;SN!['N)5R8'S1]]m5!e!$DaW'dMG/i$8As +"9LoA!amJ^+@lU>-3<%4"]9+"!Qe2VW$"a_Ki#i':gL=Q2e,4+:.pR('"=e!!$1.&LJ)4 +(]_Ab!^SpLJDe4NHifsa!?caji+)p)#goar4jJs_i#i+EJ--q0Jh>7NY>$'[1A#SR6uh>h'MX>? +";QIF$Xg=O+Q')Yc@H"hU9q8h/1m%+D:u0 +7K?l2%KI%H@#>:-c2hAO*jFc35qWhe4<-Yq$DBiobPV[^Qk!O+&KpWdJX54*g(9re(>pPQAkE7[ +&cc?:!2I)UTY(O13WeiQ6r2;45Tr10\,a;I'_k&ri$.p2$C"ou#8fiMJ9_4TQl:O44cLNbiTMAD +L_u,V)#5a;Es46R%0f9n0h+\9)*]k7C^K#T$fEcNkTUD--^F'Kd]XNEnbkiH2"Equ'1c##QT5P5q2mY3Z%n+'8InF+9DjNml)BS&R^D%^pFdnRMPIQ+5u!a9`P=S!$gI8#QV:6@0cpb +-36CF<^B.9ZF0dA&ZS0T_qMU$/6l4B"p+&d!Pg25!L[GZ4&EcH";Ws$(+]h/0E@g$";WZl!SasX +6Cg2!#$X$nHU5#(&$qQg(-i?1ErHH>J-SE,"^i#Kn*0ng&D"W,65m?7J1q"a.8nGq@),_C+A`-/ +E!FJ?!.](jJ;sU0NW:2V!+:N]J;aL/PQ?<;!!'/&+L2#u1Nfl30@5m=&`L.u7ii93"EOD?J=mrL +O?J.5N59raJ\iC8j<)3c%Y+Zi5l74-ard:"hbF215Qh`dq@)(r2^*bQ6#cb;!!d+L$'3YJJ?)@O +!!9q[!<<`6EbGL47!.BS!l6u"TG,7P:TK"Z!i%t],ecS1O"$lkf%hX#N575c1n[VpI&=3]r#RQ%@!5P66JERQ\Jfh5&'MT,CJQ@_; +Z2fDe+2N[=TV`TXC*17%RQtTu+aOUUen$'gr<"enoXfZ^/&G\E^gU1C+=0d6:QH-q$"+2ni"uLq +-NP(m.T5+-=p36<&^pd5)hHYrJ//7F0(,CJ!oY1%iEu`XCSP$B*j8$5cQM7.>?%;@%KN40i8+q$ +SdHUuB(3eLn?iXS$4;>_-&YTI^hU&5,;k"Q2*K+=\+n/RC>bkK\V@nVIBr +K428_TM^4ZcDLbk0=*Pk@obU"ei@8'Lt::i!Id/8i#2W(*!"SqVh"aM@6Oj'IKaLb!?b8@5Z.Vj +=93qS!ME1'GDT)'-J,*+;tn9 +*"sG['-KUT+@Hkc7MR$Y'd+2*+;P\7(_n/3'd+J2+@$Ya65:V2'd,sNOi;JDB6I'FG*d%9F[sSU +HiQ*V*3mcl^q^F&*"p'h%=mRI+OUlg8eQ^5+$dIWT`P]H&eQ8e/HC;.@3QU55TdiA+2QqF@D"U. +;@_X]$"/\t!/q"F8d-@n&4'J7+?foOr#UCB%D[i,5])-]8d:tK&Rf>f@\J`g2BTb?!(?45VG[O> +J-#NC0JTLK#V](#!!N@Q!+;IP;2FQF%RqQ@KCQIi#`_D"!4_e*4TL:)Tg0//2J=fF6`ZLT'WBAI +'nHhGo*!bIRfIs?p\TmV7KWeo'EJI>N^+4J!20t>Gt82L.074!&.JU>;$2gYK^_Mj4p?uK?m2IJ ++p8/O#6H$#dF^2l3b+VGVh#Fki:V7&G`% +J5"._1;V,p=/hNb?jlqUrZ$J-i'B=&2un2b$\7jl5Tf%k"$f-4,hP'o$iknC:FL05KF3=WTI_Dk +i349r!bi2q-3=]c*N2"pbo.a&lE(.noD/r0Q?$3l%]E!?W!!13t`6_L@`$ikh!/d?n-Qll_;Zlgn4Jmg&U)M2Cr-lrHKi%Q2S ++lG0u"(C+I,6J!$1+@faQmaHe!jFEj!V@3[!=PtO$E17(TP=je^^E+DY\ZWk_#ec#.M71upg?K" +@>OCtNZ]0n+c%=m;'cDkQio1*i!:aH +^aUT3R\0X1!"%Wb;?i;7=X468J;=\,JL$<]3s$[H$9<]G#jdBKJ<1`bJH1j^'`pWs7KWX@!)N\! +5dJtN(l.$oE\BqVg_h_iEU7lia7AeA+3,L3=omQk4pum7+D)OHCc`<)YtVlg>_4,d.PM\#p^.n$ +-gOAfOX*Nr6ChW-#]YnQnN^l^_$PLYR5VE +J,k$@"!@Ue$]i(?)FoB(n/):h?l7f2J\[?a%4EAJ$jM?"=kII,Ol@Pj*/CCf]]Qk?)AiR/GW7a7 +6eF.WK1,Jog=;Sc64bm;3'nJ_J@c:-!%a37a9#&nDqG/sr%j-#!t`BF,_-JE!(5+e!$HegL[\%p +Kh0o9K2?Fl;0iSb#c\m)J,kHM!?a6&_#tU\?t@DM,!:otea'njIZVBj49phi,S0,HP"0OY#:TuIJ,j*f_2pnd +6%BgX!+[=jPNr2q0GuJ9Qt;^'&MrR&Z8pT..7"Q?PV.5fal"]N#1uN_J]q>V=%"4LpcSsmGVfZq +qBuI@4pjT)?]WSGl!684'EP^0'eo1sK*]dA,P5`RTE7923+rpK(k.MpYr8K?hOFW.^k\%'(IG?9 +D1DTu!!'5'#2fLfJ-9=:0E`RIa9!?;O9(C"#SR1\U&^kM!f4W!1Oq0F!5e4-JRAs@J41+UJ072Z +O:aQ>!B;4n[%ICZg&PG`D+8V^P>Z^(8\dJ<-GW*:;Xa[:$4RoKZa><_!!EFT!!knbJG-1./j`.8 +'`ih!!!(O59Ia%8WKfB><;N:]f`9N=N.I'fdGQ'9q#;\Y^^sMUBE/nN2PkOcQI]ft9rX=m-krtU +d`QK38[nbu:tPam0Gdi\ANt$ikR3K&!!9+G%O+.<"qXhg;@0XMUc$S[f^`j;b;]J-JX1!R@-SHD +-uob?Qkk>thAZPC@;V`*`)eFX7VYl.*Yi^_Y##]L+cXk3^c0%9p!J78P7)#kW7&0$-"G>NlF";!B+jF@4hE(S+R'Z9ii!)["6 +Y7LmGcEm]ZH[fET75Sk3#VQR:@Oq\-\dRFY*Y2'I#OPH+)Im:]!f>ZaE-V0c"7U;\iMlrF9<>sO +BRkU~> +endstream +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_11) +11 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_29) +29 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QkTX7''lVQqe5A+Up^?!A=joA"\Ao1KD+4/]]%<-tYFVc)u-j +`JG^s_%C:#@H>ZQ!!4D'!RZGEAMBMR.7N`L#Y5_!7`L$+.lc/jr()"*r,T5U6Fb7g"m3%!.YQVN-YJ0!#8j7kS9Nd'$,m)!#k>L!$OA> +:]Of%#06j3J-@%sC4HEM!(O;5RfprcYbP1J$rH:YC4N44!5Q,4/3aVp^n]C:1GE$&;DcbtL&d)r +(r-02^^.0tZ_.V(!Jq:8$IjTY"Hifhnmn7733;_T'S&F^B[/J5TE&SS6Jqt\ac[?6'h`IDp)^up +j9m0IXRi@kSLo'j`?9]P$=JAc:_"cO^gI3G!:[4kdgoh'AcS#[17U$bTH+6e$-b:\-NGhN2ulCd +YRCTHmQ^af"9=!\!?B;SJ.<,+#[(O>O!+OCJ"P_NYQ=o7 +.'cqTT]'8ZKV1V=!X,27_d6Eq"bgDfejYj9=k8*7E7P(rNF!JH.#D#+'p+;,#aZs:/65hpee$FL +:g00XJ2l84.DPp-%\G)apc&J1c@`q"b#XJ63"]l,D%j$36pLA-(t' +)0)^Cq-e-+(:djdQ53V3@TWoo.:V[]!#].0("uepQ5+ph#$$pR?j]ncJ0+7^PrcHQRhXfM##]3t +)+64[V&idYJ7T$<#6:S+8cb.Y^_?j7*4\6ZJ7S-l!L'3r##5a1n-Vp%K\80f!2S7.o5nNb1!1.l +\M;>/]sn8?B*>sr!g>/q@%D +!5r*_&OI`UJ643"`)AW-/u/Qb^]ktc3"Z.nVA$$cJ.Mt\"GIs,6G3p;+^)/!!+H?E!&4U&J/eOh +@K8/C_#VX\phY*Sr!\*0r#]1:IVSCpER4ltQ55lr=U9Nd/2G#Db6#$K$EUH\ZXBTd6AnngO^KRoYats4(et>[!$M=rR+$Xc +2@1L^"9;8^&->4##iH0E"En)`J<0j=TF&kr=IKg')qYFZ/0TZo@7!3r63o7LLB'?c!^J=N!,n0_ +_VfqY^`Yjt!;HTscjC;8BEJL4nYu]C5S!nMS#(WD*]&[_!5[#B!^IG?1k9TV+]UQ'FT;GpG'XUc +?o8.J:`?XTBFNb:92NFGc.)du%"XBTWg-nO6Q361_140@!#-8E0O>-;W!07f$l?Zd>R-eTBE2GN +j9![@irNs]"b<_T!lmP5kF`!^J.*1!J5nl8-n8iEU_Gs7;@l)1.&!O>9FR0VD0EqgL%AU;sid(SY63o(Y+_^q,&&PAT?6?BnXoK6kJ1s1X.t@^(bhrt_0Eqb05T9iV +$k36(U^!qT)7"HG!J,u-"meJjAUmq2JP[cF!3D([J5,B9n-0%6`T.#,9$)W3qZ.^f&S6u^fDu<4 +"7*H#!V$-p=YLi=!,[Ou^^LFRJ/HH0?&/Mi!$"P6'n/DH9`?XB5"Wk!0.(5b +SWDD0V@:B;9)q6$!E#NtA&)b#!5Jjp^]4QUi!+L]ciea4Gf1MQYS_lj+e&")0EPWM&:kBcSO!Nn +5%F(BJ1rlG#;/sUi&H)p+QNQ`+TjTP!o>*I!'u0d5Qa8&"FtFq)o*k2!?qLDLA\mp!'gklq02mS +!$VDo#S$nK2?._5o;H^+B/s99md(2LqX\@#UA]@<$&qR +"TSS)234sc5)8Wc,R;\GN\C__^`lT25bJ)^i.)3NfHC9'B/_3roEI^N#SGug&;]76,=(aZ"Mui! +L&`&3J8bQb^]@Mg+;tUfcjp*VScF>76j8-<.Fho>G%Rsh%#5r:*Pb&L"-@T*a)L)]g=UIdX_n8d +pF,(56kTM#<#`YMGQe0L'`^MlbeOM"!(-_eN(.gg7N_mPJ5ftY@>G*,!#QOQA7,G2)AbXL:^4A$ +"'sh9%)J#`c="j'Je2Z!J.8F[eL2@=5.h=*2cKeS",=TDD+2X*\M?)3Y +7Y'nm^^*Mf:u!1DJ6r]de12!Uc2^1Mi=<]f2i&Us!(GiE)F:;^KV48W"TYA7_'D.\JAa=]81>Kg +8:dG,!!*=Ji;a$B5m#sS"$iLt4l?GNLeng&?!&$I:"TH$TG/Ufck-MU9F_->$j4=R'*R5M*<8hG +!J*;(!'n=1C9biA36&&[5EAs"c"[EuOSg-SCQ8F7EXW,U0*C22%uUEPM`QA]('%;`"bCt"!'D@^ +J72hK!!hAZ!,`#AZIc4-fI_jFY205Q,3t9%fC%#NOQBeY!$EHeJ.1d0:=m9DmEW!BTE=Hf +:]O+P!`%SRm=YP6!s7CKlC]Qjm]m%i#R4`4*?`cI!3ck3,S7cf'L=>U_+kMLL`[f0(ngR:i,&S4 +r"B)X&V1o7+X.N7(_UGJ++Ud>U%/?%9H2p:$it5_JK>5M^&T9n+$oN!+D_GDa:uG@+2Jd1iKP;_ +\f64=)))8%J8X,7#TI,)@oRW'7^]e76Ue2$3]8k"b6XZ5TBrX ++9^U>"lM5fD-A!3a<,qWej'3=njWkF^uI[jjUOEOhu`pD(B:T;"%V3VEbkhS"T]/K(4cAd@:01F +"TL.L-@c+E:^/%_Erb,C!?eZJ/F*@t^?ct1ltq:*;(i[bC^."l!(!VT_-A(u1^7AVn)7"U^]Fo% +^(4%>'EjdFJ;+M!GRZpp)'Q-_5]R7(^pC(!<<`6Z>9VN!oY8$"-Pq"mOB*9q'9qW!Wi61:0%W%Xok>I"/,X:@@dH" +ScBq*!(!1XTq5C>T]uuA(%/:1^hs?r6j,aTWC*7$!"K1\W)*I"$GlKWiC"?pne5Cp&qF()Tn4:. +r#D@2!l;er+9DO/VuXXX&HMeC5Thku&/sN9&)d:!n2^b^r#_&%+2P)q+`nNoHl"G<2.J0Am2Q2% +-3sTH!T=(]+TMPA!!)CEdd8dkD)q]*r8""e!Pg)a5S6AV$pJ&i!^IILi'P&;nC>@Rif/(,N^22* +DBH]Neh^XaNK4+gY0Rf'.h9)B+aa9@N"9@nm@jFg@.k\X"s1eU8:]t3: +1c%fC.BjKhZD@T(KE*/d'uB_e+^u30!Y$i&g)tqP"Pk.beFl-C!!"W\J:I]/!"n-+!5Ta51H#=C +Qi`q:!Ad7K&jY!2#A1-#?G"L2GOO^%t'00,5dlMpps_`A5--kbJk&s\e$J^>LT +bQ&b@*?im8Jc$MGN#b4**0mX1U!sKgg`OB1!$Geo_4=h^r'0<1WQ^B?lfhD +,11ol&V(c#2=qQ4(IS6+?XOu[J0Y..3!FgP"opFhc7mfMM+0AJ(r;0k5Tgoh:ur-1#6m!d!!>D8 +kQ$P+!h^[JJ1^m'0dFRc#QOo3!!EQ72?88X!2,,LTR[*ZJ-+YZ!u)Fl?j1'SiWK5_"98Q)dt]8* +Mbh,E:a-,"NS..6SJ&_.3`%O4DS&EC*tu_A)Ju2T^m5Q5+r[0O)6c+'^ha`NoECo-!.[rh_<_Kd +S/6`a+4,K@TVr;CH4Af`!R8(G^]Y&G$SYRB5sUWH?j6WS,S*-g'7_4_pADgG%KV)T!cO_5+CR]5 +>T\O61tHnEa- +VuT(,!YJ,l1_:@OKHJ$n*Pj!C68T.E!YRa"#pAj?+=Io]iWPsh)'RiX_<`3$:)a1@!$N*r+g)6* +1]SXZ(4ZGoJ-$HnJ-[=r'`iPqVWMZfE$)o"'B)&^Dd3;#]_4Tu!!-#S?pFfZ-39bF!6-Jg?k*:3 ++:tS)%mX#+N:$cJ."EEM%nB;*J49U[-3GA;!C1r3J4*?:&-\CK!5O$bi-GJJ:'.Vn#N/D^J5cXO +:'?)L"MeCL2BdR57t6M%eh(@kN^"fIGl5?f*RE*nE``Arh#5JA!FU?\5e[Ffh?H7g#!lY7[nTZ% +rWY;\c)fZ7:_cqP?3*;t!FT48lGORu'H,gE);m+bmZ[o@''^#OG&T6Q0J)TG>FFt1!]>OtQF$_( +RKCI,#,+Wu_+k\q9h@W9$io,p@0.,Dr$Y^mSJfoWM^eOsHrW8b7HiPE$+AN=_';M3e"/$2,i#Vrm"Q;TW"X#8pi(49k!!2!\"\pE(YJ4QW +2\?N_20\p/+l).(7/c&0?=46E!$!#j\#]ACX'i496"C#s=*1+H#QPVC!*0:(JC.BjNa"]B4\HOL'UG>Q)\#QX&l!#,SZ('Pft"X"]e+?frO5Qr8s"X$263fS9"CRAn5`u.UPQ?;t!MGMVi0"3COp!5r$Qp,k+;P>- +(^hH)$Qq]7g#L"i'%,q3kN05">Ztn^ubWj +Fr0+J(LZ5<_29/I?PF[I%0>r1JDpVR@MYY"'VP4=+`\H4jrHbc*ME*Ji/dp]W(93D&YT[DJER3q +FpK7E'd7rC5[">"r"q^^JDg,1@.X\SD?lk]'B-59Jfl6j=t\an9Ahce@"8Bq%s=+29V;@fL[G6e +j)Of1!mM:,d&jIP\T6(1=hjT>iFHVeh5Pd&Tgl3Q84C$[o=fn +SX0>^(?HAA'@I-U3X`S!loZ7b;P%/bm1%Tk"qS0\qI!#Aq&Xf9'"I!"BTV!ol*=!#cI--oYQ+!5J^NJ1(g+ +0rs4V!$GC=&h,+!@F)-nF.o"c/Rp&e_+(eG-.lu45T;-%j>*G7?9g6MEh!CBdK&250u+8#TFoC5 +9E>-"""9NKi%bu(1''YO!e!]CD!BGJNIqn0.ZVLfTgTS\EW@P]'YnAf^lSge";,#R);l'YF/*#M')f?kVk$ +##h/t'AsA;TE5ed"9Ao\!apDg?l/p;(]k.A!^M,6^=3J!l2W@`![&B]bZ,g=k?pt;!am>/)Ebk& +.`GEW!2(?C_5J64h#+HL,u;ph?t$+/Z)cdi*O!kki"-pD1%RnDo"\i-T/lL-2tS$6(-o^4DPDjo +=`f0F!Ec]3S]h+";0N!A#G;b9+=7AcB=@jf$K)U+^a9JT-36B[!at6eTG.o%-4rKW!l,4SXN1B2 +H]+I'6@]IF5S%7F9"\urA0;"di$W&c$3C29=$SA=!$V:W($]0B!rs/>bK'a89E5&h3+*@%^_?oZ +(TG2LcG1bL!aq\b!':1A^dIT.r!5LgO2/[&39Uo8"HGc8Y[HB-3!g(HA!!B$!(?mM5m1"U(_fFC +P!ObOBcnNh#a,6WJ=.6&;#h:1,leNB##G@8!2TZM5RpTn'EKL&;,A$1#o/&'0VL`_@K75F-3+X> +#%RcP!2]`NJ.>ri(]bs+;32Q*$(-=!!3t#RGQ==#8'i.G#^HKC5f\sHkR]uiSj=`3;8a5m"s&8m +?uag?G6f5+-ZG3p-?fe@JLHUY!%`@IJ.&$3#Y[]F&;.;hi:MOo>^_EJB,G*!!iR:J%3:S0JH<(r"+A[G^pG/ +^`Xa,J7&@48cbU\-j,&GcmC`&"4Gm-Oamug(':.Z"quM1?iV*tJC"uF"@.P%FrlD^p`9Zq+CYlpkO5Usa&V,B;\e9a*W'VDRc-SiZ#,.\8)2:D\/dSr%*3^(Z +@1WhSJq15:)ZYGW@"/gjYtdHLLWT$pO(C:eO8o92".S]ZQ9ZRK!!OJGZ60E/+9W;[+n-@6b%YOlP(L%3Rn3@P8 +J?T)OJ->o[7tfg*64/qWd2iT+JN1F[";UDm%Y4Vi=pfnUn/_]8i2DSI!'t9>P(cb)Lis]!ZumDk +;>bn]!YK6M*1b-Th&aW==JdVLi.)ejhr$[-Iu>H^A.SoP%%8:H!B<7VKE4&!'8/Y27P+X-ck\26 +K$YDf"6.Zm/Hd9E6nAIO0Kqi,">E/0"@Oq59*=7Z5YD5*YXD+eAM?;H"9gJG;ZoNC7Lk4T=T0&# +i1XHaQ/JoR$^KYd?4<1YTmd?8i3@_=Qf,]/%"ZZJ\f6BtQokAn;\378Ktn,$)bY5;EP+u/1scb` +4-\"m9S"n[2#r;D'L!'pq(b:!,MB/)MM9Et`K:8$kW=\j3@%7ZV`C&!R"%E18OQtdY.^%33F#P#kP(.3=,Ll7o7WA5Y?+93A??3G-D18]0A%"YWA!.]/)NT"8+ +#OpjU+D>j$;32Y_=;;FB$qcA-/gZ.[NWVZh<=:/95C`b6!$K2rK)tm4"CQa"j-XltJG:3m8H1^N +j8oSX\c'!+;t;H0EV;@kQQK&3!=p$Duu[l"\(0U!EC+G!K2%,JA;?o5_.?$ +O1YaNP^Ok0\i0kHYR?(/F>\e0Q^!ET(bc^0"99k;PO&h`%bY,=,ugrM9G)t'kdiiX@'X2ollZJ) +/d*@PB`KIS!W[0\LB0pL"YZ\c!3f3#JN+/C^d'FN&>fGZWC[)`<2G+QV?+Q<$4=R"1]S7;=pn/; +!9)Q1*FS@:KCAsR^^rO,;!;@R89b/di!+su*$%:hFTMTr#_ueE*Iudc"+[)RJ5C-$NNouPPYBlI +i'[m&4)f(/VuVaKN'Dr^GlT(b<<*dW$H2]?&`MMp!K^h5K6T$X@)su$?ucbY\3h*B_uYhWg'L"U +gH9!4.L3bt"9<\i#_;7_T-Zr>L[aO.,8:+f0E;.u&3uBnA-,4S!!,?H!!$CR8Zq1=]uH_h8)V/j +KAZeA>FJLki@$>_JVjL3LlrV6'O?Mk8h.l[>#Zlr*KT-[!36m*HY!HW&ZJRjoD!1X7G!(ctfO>7f+aV?Ic2N;(2mZ\"E +Ij=$)/Hbbo()7-&J/AjR!MX'tXEKHP"L\Gs3!+("S-YqoU^Y$EUefu-5mZ!J/d7%3%4T7VO+HdT +'>f&;USM"B+HRL2!6H3JE,L[:PV#7+M$rA=ALQO81/sA7")!Tj!!.\"^^/*`"1S=2YQ,.:TFCnA +a9G3jpb;hPYQA6$/.5"L=-7_=7H%eq$U=n55Y,;#kc5YcPo(^g?=Y82`jD@IQ=>]@t2@"c=9 +%Dm'Z#2nPh#(U]V_8](R[6T5%PN2a2cik>coDjL4J.Y%[$iiOD1'%A!":LS'!C0.3J=n&#!#Ph= +EHWi5!"#1tBF9S]/-KT>hhM:F&ca)f!!'eY!l1=\!\mdaJ90oVJ=%V,^_?c$F?$o;+T*43&.#I. +l)2ACU6A-lG$F2m-fhq't:%DYLo!C6PdK9-o\^gK/'T`9n"i-kdEp^d_H,U@oEX9(`0 +$O^>r/V)3s3IkLU!J-mJkS!M.Ve?>H!%r^ri>r/R95Vs8-],K!ZlkgN.<$=*e?")$NMjk"b9A&"/#o-+$_1R!3cJ+!'H-9[CepqOaLC:Ae,,cmZZ]% +j%4CY$jEjg"6'.gMZ?!"2<_7G])uIBmC9+1n,W2k")r)GB&"$p[K8Bt,'6S,FPHj2k^cQ/$NL5H +!LTVkK"t:l62U`dpg4Ou!(.(ne,_l9C*0-O2?r-)22CD8;!626M",RFLDT%PfDu`g +!&LrR3/%&6'0$4"p]c7f$G[g(J9!8m3F;at#(c7H2kiJ[85Fai"0gubJCji%4:H`A\2G6dJB/0" +&.O3[$R;SsUaQ=q!!3-c%03U6]Dt(p^]B,H$%R=m!'i[IL]me2%$9HpJ862M91+`t"FuRAJE!ni +j%g9W)$,(`JWU`on/3&><[CC?V5m^pP?B3$=@1bF_WtANq1\kWC,VR82ToM/j4p@C3'HkF[Wio" +!!3-#"[GJ8d#h!%WRZ/:_[j!2q[aVuqZ;#6R3uVuSr1W'Z"77=]=a1Z/D1 +ZEg^m#Cn32J1:*jg(M4M%0.4RJ635P-jG4##Ct$$!72('fG#''&-*7W!#Q?!=;$-l'EDl]JMLs? +J.hp='S+7=JC"s[fGo]K>7HhhuJDf!<_6\KAa[uBKL``3WOCc!.[*1 +LcPO/4926D8"@rWJ?j23k"p@I$KLc=N3!Y*r$3W$iKJ3gf0F\.=%>*9ANL8TO +Tt->C\,]d+Y7%"_^]=M0DhN?8KZgA#(]].q7>L@>KK+%.5XbqI2?[[nJLH!OkWs_)D1hTa"A-.b +(k3uR)jE;^Jae-n'X\(:!/:"L&"!>$WsK"*!JAQ'J,ft-!"XY]#I0'fJ>b/PHPq@L#r(YaJAOmR +kSYJ!pQ)h9@e:[etC +"R,tq,).(jKKt"k(aah_@/pQsKKoTm!$DGA5_8]3LO^t.KaZ8K/ ++.J05SXpf7M/*ee9Q;!9!T>n#*9&\kOj]0LGL=:B]c5F@fGK_dERYYTeJ$R6JnK_hMF +68?8("JZe?J>!C%W#l"kV#Y`^,0UaOW$[&"E?jI*U[S;*%T@`<'qR(QpOr`Roo_8>o75[^Y+GJ +dOp&D_Z6rZU!%8$O.h2Pu!!%)ZJ3XEk>IaaA)uu?0===K+?jV@!^DJM(!8%VY^^>V%$NWKqJNsA> +5Qu]m#?K1eJ:J@7L_ToO'nDtef&.?pfGafu)ZXOj!,rp.J/X7M$A%s]\EG+:?m5Sa+olR+J=%m< +81Xa;/-&ss!jDr^YcE;A1]U'&!+7S_Ck"tU1Ot!0J;>n0O>-a&14Z#R!3u$G_L8n<"bY/-"2G1p +^^1+I$%pS3KNJP6=:,1%$A:qX"F(C-QqIF0>_#@N!)Qr$=Bkj1.N<%8S&cJ](_F7MSrMO!RtW5m +p]1FmIYZi[03Vfh!)/E_>7P$@KV2"ok^!BM[Y0H857@":jIl_CZNf?:L6T(LW'c@0Bg8j$.gR:q +;0;un+9:$sJ1Gu!GQWR3\hl)E(D$WJGQRqb&cb9e1qGMC6:qi'@Qa5A6Ajb-TRR"#@KD_l[I`-I +gL@C5!.]]54npR^O:Snnfs[,%K%k-L:gdX!o0\^\JcGt*GR/p&mJr&>!/P!4L]W1oSrNLNgj%^; ++97'VU]O(MJ1)39fRErqX+2==.\JI#n5'?\I=Pi(O-7Bk]#?a5rr<$DJcHF7#QfO5"23Vb=0P:0 +TKN8m$%pS0$ZJQ8PZ%QfS&Nk=+p]"t5nu!*hN:bcOf9:dfcDb3qiX8DJ\B)f.Ck"mm8P:taoDF* +6Kp+r1C%L:05tARK)$)$Ig!@V0.QRX/_3-/2O%,B0LH!G-.TSQrNGMdL/;6WJ,g.Jq1Zd&0YeWZ +"AOD#2h4.J6b#(LYQ05"l[UqqJKP#F$Q?/5:/$"5/b;o($JU)E-idp7!,+=lBKuQ6!rt&&P'ip- +D9.55I0K+hKudU)n,WSM?PGTkJ-dW=V:Yo,iJ@V($ro8#J2e)? +3cK]iG/3_Ve*mfs+:WiL$Hs=j6g,6b+;Fl)'`^c>&MOFj^]4CcRc.'I`l(2q^]ss$!(;?!!$F?' +-p)r54?97EVsk0Vj.FHe=64s^"3QcU16a4SQ)SYhO'83V)"EY>56E&*J1so!:^MXP3!'8GJ:n=r +_PJ_Y-@gUKJ.?FH(cQtA!eV/Y"+>\"8.nohgji_7J:-iC\toB<&Cf1SJW]]>p:!AE@kJmN4VHSa +6nF]OA8B.pQuf!hO9Yb= +83Dq]AEDH$LY+B_+;^(UI07Ol#>fi%mLbMSW@FQ\bKT8_i"6"k%]]")!sf)2-A6mP:k4W.[*9[7 +K\`H'*/8LBX*V;(E!(W\bbM8aS3jh<_S$)6+3aZ5blB)klG'D-_13X3bmPjm>6f[Tq#EYtd81/M +#YP4$FUOmI$Q:dNB)0s5A<&&CAon"QGVTff$35$#5WJQ>TEVgq5Cb:$`9TA_0*MDj#A5ao6-SbI +-o]I0j,c](65`udT*6Iu;1O&4[)ciGK@%rO.Dj&3kBo#IP$0`@(8[0oV:Z)3WO;:!"(O_ +)R@i]"Mf)hJ3kqYN'2[s$NLbKJ>`MLa92La"Rn:'JA;AY=;(Z7'*&:O!"]eD(_hKC&ccd1!N6#" +TE0VJ"bEc9PX\X!2cT*^ki;&Cm8#V5re.tAHgJ0h"CbEDpF07\:#J:K;' +LbF:?07]ECJ=nQGZpoZr!.u[#""42&5QV$I!eW00"#'k13!BCD\q"DoK.KQDGVoJO2#rFh!2)Bt +^]E[J3e0IVN/.W>W!.g`"p:TLJ9X6XJ3Esh4Fj(T3T\?llAH+5)9O?>J1qDG^f:X/Jj>Phq2!q0>GbNLAV!#5L8*/"S'jZ#N1 +hun];X(ogEJ=&S%=?fO4"sVU\!2Ec9\.Se*2X*6qU=C*N`prU=Td<*Js):Lh?s=n!%&P'X>h32 +O92H"$pE6"Jca5JJ.&0'"PCL!KQmgLAfX1Q:4W*J!GDik+9MVJ)ZY3=!FQ*4J.L1tE_M:5,hX.A +,#F"J#R5?I&d-[8!n.7%&3Z776X+C-r&90(^N&jaKqLGV\2f)Tq?$*K1*5[Ri"HQpibk3DW7e]? +\/PIIAqCj9JT)ca#T*Se+b=>jK.p_f=JuC+"fIOSd(BP^'!H8j,&0V;J4`)#qKcjZP +#S;aC0ETTaKFU4D-uFb?"jR9dJ,oWMkl;V(K)lBGQoGd*!!.[<%7VSH,WQ]l!Y7b.jDlp\O+8J% +#g=7h"/JN,Ae5+CM#n%)lGO8,>4O7q!$DB"!!!3k_#OM?!I0,I$_RMCn5pY7"#kitVBErZ+p.h7 +_'e0.!%86g!eWaH+&d:!Rq*lIN8Ii9;=5?bT\8MLdIgiLkeKsdtC2!;%A@[XpU\#bMWsQHijIg2bW?!ja?uS09&4n +!NalNIK4ngVq;"!C&oHLVrLb_!rj`7MSLRP(aoABO98m@GU@lM!h4d,cq1kc@L40/THJI\a:8K- +JH2]&@NU@M!02X9@HbE\#P!`YUd9M4-'eO-W%8aX!%IsS$1oq\+6EQB#_qNVt!;NP3!kbIh(kU"E9l$.6^Fl`[Uh-+3(h?:)-2h2Dl#`5nZAR7'hp7 +QR0HT:BEetL/Ju1P(aAR5RG"(Pe[jKM?!WrBE8)Am6YDM`hAc_1r0I)",VfQ$8E*rjO=86.PNOV +K`V71#RlWA&d8:Y?krbD6QdEU!T9Un#d+/^>R1D=fUDjA.c;=5.V!]?X+J-E]!-`NBGLWq!&,Z+ +XT5Bf\HIi+168WZi-8;m\.!3!%'M]dPU$B5%9ou[?/BGJaB?r.[B!MD+d!s.=6+9MZf^_P%ETPu@c +k]D&#$.iT^'G>t*-lN!BUgE.eIP!/Q.3 +#QU6B$4$XYV?I>-=Khu:TP1>1$35=T#R^WgdKPUQ@*/\4TQ&*[N'Kcb!?f/\_Z1A]+=oa-Yjqku +p^@YJ1ck]qliY/H&.]mO+be8CB@XPo2#meb)KXDDed8]A`q\aQ`quI5R<'Q'br(Y+5a<"7 +E(Z2Mn?eLS_AiOY!tXA_3!\rn*8h*M$5"s=70;d\Tr`6m&V)kHkhV'XBE/R=coh@Wn,NG:!!e%) +#65q6!5K9LL.Qh-:#VWCTGTM9J-$_+!!rY`7(E:?(4]3m`%]>q@Na_Og"T%&!0,!:[rbT'&WdAf +89/bOZp'LI+d3$/!"],A?33E;$35X"'`bTjL$)>j-hF/D:;F/O9i(utTTmhBBKuP_+T<9e"?$Oc +(`IoIg)+9-Fq:8=/(!4K+2\3^#ga!)^h<]MKI?rN:^e=L%(@`p#R:t3pb;f4"s8MOOan!:!/l@? +#2iG_;nsO)BaF;P"5nH]TaW)teK56n"DiT"`W/@P:^s+S2%SXE5D:$"X&O&1M&JPXKC'l`'U0'? +"U78l?jd#Y*\niLA326J3$a%()Z_/@!.d*e;>'9HM4kD&`6e.ToR-j:&&1cq[%)?TuP[fA!>">eCI!'lVR"/LsdU5$=Z*G8Q +8-&b/ph'VX(dE[5!Y+,&^doISTR7'$5U744^*`s>UcJJUapE\K!t?A80ESID#I,[%"Z#!JJ7&dg +m4>aK5R8+["ZMUgKuI!q%0Va.fE;C9aW8NoP$O/[Y*J"\!fI()Job1XQ&L4rb0\M9/'7mC3$T:! +e8'cs[QT=@S/28YIh$`L*CfgA%KInY$/mWj7Bj!(i5euWnKD;YW!s4:'MAMC>VAN2LDHP5%1R;X +1e.6q#%.QG#luG*7*r.RTpSB-+U0./!.I:dK+7lh`)37RD?pa2N><'<+^,]l!/*$bJG&sHK)cei +C)jY^```ZKO9&2B_DR[e#WWG6K0[>:Yr5$FE>83n(4^cAL&a+3O\-5f8@2J"1gl8meE84VZjfd; +7#;)?O98sEER0G-C&ic"bb/PZ6/pf&!=\F1J:(^S+HS7qf]=*IlsG8Tn1UTc%-#1S!f!J756p-G +**djkJ`$`R_cZh@_Q84s?igQ5#ZG(](cgmn4(ouumfebo!!_UI)h>j#$ikq]W1XeA$s +E"#,'9`P`^!(;Qjmbp,*Kb+:uOH4r7_Rt@LO_s'p=Cgi)XBLNY!bHuq@lr4[=c_OY)uQ`3!!!:S +O$\L#7bL7=`(X3b!29H>n--3b"9E$W,[K(;^B+>@!BLh69R\&,pH5F"%!!*J2Q6d'0l[' +M!uLZO:Ye&!eF/J5UmCTqA^YP&#&h3JGKt1"9Y;"(r>nJUQ,dloFdpr!$I@F_/Q0($jZ)Z((3B8 +`8D0[6O$ +OO>e=[VZQ%S*&T,`pfR3p_LY114U8G!#tuQn3T_=69lAW"=+#Q&f(UV7O0Sf6phI*Vp +!&+F]!cMIc!$IGuMLkoF"9f$b!'kK(5`Xel"Tgpj![H4,j'j;Z;DnV^!)2k^5R&"?q?m>^+0/9O +_2Rqnr#B/'=?m&m622G9quFO^!$FlCTEZHgp]3Y2+2PCB!!!GF]E!mO#_2o7#f[3f7Kd*/!amW( +J3Xa(E">2^]"mtV!@S!M(]cn;!+?!3JN*d_#R,`2!alE>j6d)$!!])W"$db.5Y*P:k\B%#CEs_h%:52jp)McIK@FmTJ8&7JC4E_bQ/ghK8BF_WYE)'U]<\;+/.[' +5R%Y5q@(.B#XHrJdps7#5RP@&'-Vs18RMtDKE0to@t4W.!0.+gaS12p!^Og-%sgJLfVDmt!8n=e +`c;,g,b*!`.Y&(D5Tg)Z\./$j!6'*_@\a(ccif%`"G3u^+<"-#8-**)4lc*J?p\V6(`eU5*/pa7 +K*DQ-\g).30h0#7!+]omlS;r/S.Foai#ZfTp(7V$/O1?Y5V`>t0EOL'!`/@ji$8IK-3YM?#66"S +i\gjGEWUcS!8rq?5b8$BPQG6W!f#24!$hs1,RZja$U?*L+:\h\,RrZW%3Qu,+=I`X%M/1maA]&5 +^a9'^-j%0o!gKP`?q^R[dKJ(*!e>(ei+;uiC'%dX\mQ!RTF_BZ-FuIB!8sdV!34j?.63Tb%"KZ5 +?mlM8%M#-C%Y,l9?mlQd1_\e((#Unbi%tRu,W#f51pLFGW(8g=(50MO)'Atr?j-74(]Y^5(u]oc +TlB"A!"kq&!!mO(+ncj1dLB]\3a`4)61u>W#Qc1C3tfULbW#TQngM:;!"Vs1UNcm6n?n$B%Y,T/ +TI:5A%9%fF!!'q +i&o[X!<;_>"6nlG.5;RBC#NVJ-]Nc*RV/(209G25`+DkK4'34 +J,f[:5fTHD%=f]7/6cNJ=90sj$iis&J.s2^h!h_SgJ1L]9('MXY5m9_5'usP^(GD@DB0nt!!3#WJ[c$F>ROrt!MKW*TnMEVHkF>f&_F#r!!Et.QLKDA*OHU8C;?E`T5/]"ePB@)N%!]96b9QO8\^`idZ-38WDpo7e7VIBTL;?;;G!MGqbi1'oMS-0r[lAX8)Z;^gI8loC#8Jb^k +N4&fJ:PS;E!'r^Z\C(t_*YQ:C(EeMKJCkh:-6L(QGbP'Q^kE[#Q4%*[!J(@_f;&](iG1`AI\EhC +6/d0ArFt61+2Qe6+S#LT]Ds)d!$PWr!UL5pZ5Zr<&G:,Wp\;1i7XOK4F.g]IeY3-JGZS8cF?gTD +&f.X;6KpaClE7;U+@PO'/kk[, +_,qeq>I*Ok'*&(C_Ria?r?ob+&mIqqjt[/#N%#Oj&HI=f#<$45RKS,KMoI3-\Fa0^&P;#f+Rd!OD6(5TLu%m_QUU +@JU[lW#hY>*MHXYT_&4,:(m>R'&ia-+9W[W-4=4W+2EdP_6sq@U*$(B3bWOP!Ib\J@KbCe'$N-& +idgZ8BSiN?#G?SL.'Yn-`0UbB!%1s/Ls9cZ,)ni=g-mj?af]G(pbG)I"op7^igKr-4p'b*l@Fujr"K20`Zflo ++iXMUL9q\s#l1Y=i#:5j&e2au&)]JWJ-HIu2+\q,=4Su)gUI?p$?Q8#"J@sBc)Fr.lKMI@61F^R +!+5p0ScfP#!'3^T$AEVuJ-P>T2*_V*4N^Yh#Qip/F!*pk_2MP@r0%0Z%O%>MXRZ?7a:P'C)6XSd +_>Fa"3WL;.&.r.\?&0;81)??3+2Mh:_-@3W4:ia')IT$A@86eXUQRo8#@Mcu_)q\us(=UA=$[T% +^rQRB9ueG@$m:uD00CWDp)BY/?fhD5L'V2,&-_$_@:gDZAf_=F"pokU@\tb*q4(/eION?24J5.f +cX?GNfe0T!0-L>H5S=VA!;\qj!C._hFqk@a@Nu88Rj'c#_<`8m+;g:g^8BjU0E1uZ2,fULp*L3N +&B[mBE1G:TUnAb8i#Vo!(q_,N(5VlH5e$f&7,rgk!.d*OJA'unoEbRFVI6gXU"gP0r"bI:)B]5* +^]Xe@5To@@4D#'(!7E%m.=r`p)N&.Ki^&77[:]MYT&g@>SFfQUejJW>L"Z8Kj^dHMNf(r$+U&YJ'"t]ct!1#lNVuR#% +'bCEh.1Ck2!W\EL5QaOi=oeY^fn5F._uL?p1BmufR:$L9!jZJr1<>7Q1B<6H5pZXK5otEC@_`8d +W!M_j*5KQc!!)AnMub7j5_Dq%34$p2"LWb*WGVqU$Y>%U!!rU4A +9)sDt+cQc`0%Z$3n-OQZ@'GsTR8YW(+D*CQ%,MC+9)sK:i".'^r2d'9OT6'6D'S$VM#fm(G +!uQi$*IK6=;'i@mDq]"(m'AEW^ls3%P/d!'#!$Tn@:a-8M5B +YH"6$1lHn4Uq\TW1C+LF#%=5W$\Q79Qm%2MW,*IZ_@V;A#N4fA.L.,9)BskX5`?H]JS8EkLS6D@ +S-XXi6lUtk5QD6"1ACtaJtSJ>#QTD-(_m/r8/qY]5eqOHJq/Xa&qWC,/07JbEiLDh@/)te#m#H] +>ZWf5G;'QE$+9>/9h:5<4'B6dj9)RJ.k"`$\/6H!"=AZ?iV@#!K[:"J,ukS +*<6-0!$M=D#QW8-huGe<:DIhh!!U.<)?:&9!)`dt!!%rX"b6SD!!T"uVMkbQ!)*@t!!7+t#_2mr +!&m3Tg&P"6[(/b0$"ud.!h]N?!)(+Zq@.rT@RL2!+93#S!Qt0O!!<3$FoVPN"L&/^!%7g[J,kZ2 +%KHL5!ERhKFMoI*!E]=4J/+e0,QJRnT<;t@p:mh5Fn.2\9"Qi105&'#LbarW#cp(E@jpCpN6T># +!0S69_d6_Nal-a_FiB.e1B=/"!'#L`0+\32!`09)nM@su!Z.@l"@]'#.3$8,7"0:\)E^7h +Bn-7d7F_ClW9+2Fh,"GAJ-B<`HZ_Rp2B@=fc=>":'[Qh?J=WX_!YD:*pWdr.W-@Bk+=N>$SQq4T +!YBP72ujki&SM.P5UE^Lr*TOL!dEVU$7fcg#^-7,*,h'ig28WVeH$K%'EXa%#^[ZOn`GZ>$pL1h +!sYOu.Y(C5iu@Jk!3d;"J5F2E!%QYD5Rj`N-oCbX\,[+[HqjZMHiO6K#'=:t!fV-u4^e%LGV:5" +Kcgq%*(nm!d!S*pnIl/HA3>M(*!7MFiW4[1N%;(Da#kOt" +endstream +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_12) +12 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF object obj_1) +1 0 obj +<<>>endobj +%%EndResource +%%EndProlog +userdict/PStoPSxform PStoPSmatrix matrix currentmatrix + matrix invertmatrix matrix concatmatrix + matrix invertmatrix put +%%Page: (0) 1 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +2.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 1191.000000 0 rlineto 0 1684.000000 rlineto -1191.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +4 0 obj +<> +/Contents 7 0 R +>> +endobj +%%EndPageSetup +7 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R8 24 Tf +1 0 0 1 34.3477 774.039 Tm +[(La)1(ngua)1(ge a)1(nd So)1(ft)1(w)0.998942(a)1(r)1(e St)1(udi)0.998942(es)1(, by)]TJ +28.1953 TL +T*[(F)1(l)1(o)1(r)1(i)1(a)1(n C)1(r)1(a)1(mer)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 712.965 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 712.965 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 712.965 Tm +[(F)1(l)1(ori)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.207 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.02 712.965 Tm +[(Crame)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.309 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.125 712.965 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.098 712.965 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.289 712.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.359 712.965 Tm +[( )0.998942(are)1( )1(i)0.998942(nt)0.998942(ri)1(nsi)0.998942(cal)1(l)0.996908(y)1( )1(re)0.996908(l)1(at)1(e)1(d )1(,)1( )1(si)0.996908(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 698.996 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 698.996 Tm +[( )1(may)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.199 698.996 Tm +[(proce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.98 698.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.793 698.996 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.863 698.996 Tm +[( )0.998942(,)0.998942( )0.998942(and )1(i)0.998942(s )1(const)0.998942(ruct)1(e)1(d )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.137 698.996 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.203 698.996 Tm +[( )1(.)1( )1(Y)87.0117(e)1(t)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.266 698.996 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.332 698.996 Tm +[( )1(me)0.996908(ans )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 685.027 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 45.8 685 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 54.3754 685.027 Tm +[(e)1(re)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.8828 685.027 Tm +[( )1(t)1(hi)1(ngs )1(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.316 685.027 Tm +[(cont)1(e)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.504 685.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.797 685.027 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.602 685.027 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.273 685.027 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.047 685.027 Tm +[( )0.998942(l)0.998942(anguage)1(s )1(i)1(n )0.996908(w)1(hi)1(ch )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.387 685.027 Tm +[(al)1(gori)0.996908(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.945 685.027 Tm +[( )1]TJ +-508.598 -13.9688 Td +[(are)1( )1(e)1(x)1(pre)1(sse)1(d )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.836 671.059 Tm +[(soft)1(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.746 671.059 Tm +[( )0.998942(i)0.998942(s )1(i)0.998942(mpl)0.998942(e)1(me)1(nt)0.998942(e)1(d )0.998942(,)0.998942( )1(and )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.227 671.059 Tm +[(so-)1(cal)0.998942(l)0.998942(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.996 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.813 671.059 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.945 671.059 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.762 671.059 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.922 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.738 671.059 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.871 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.688 671.059 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.852 671.059 Tm +[( )1]TJ +-487.504 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.016 657.09 Tm +[(T)1(he)1(re)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.688 657.09 Tm +[( )1(are)1( )1(at)1( )1(l)1(e)1(ast)1( )0.998942(t)0.998942(w)1(o )0.998942(l)0.998942(ay)1(e)1(rs )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.184 657.09 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.957 657.09 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.773 657.09 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.84 657.09 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.035 657.09 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.945 657.09 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 643.121 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 643.121 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 643.121 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 643.121 Tm +[( )1(i)1(n )1(w)1(hi)0.998942(ch )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.215 643.121 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.125 643.121 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(ri)1(t)0.998942(t)1(e)0.998942(n )1(,)0.998942( )0.998942(and )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.359 643.121 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.426 643.121 Tm +[( )1]TJ +-458.078 -13.9688 Td +[(i)1(mpl)1(e)1(me)1(nt)1(e)1(d)-318(w)1(i)1(t)1(hi)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.32 629.152 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.23 629.152 Tm +[( )0.998942(as )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.805 629.152 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.426 629.152 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(.)1( )0.998942(In )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.887 629.152 Tm +[(case)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.02 629.152 Tm +[( )1(of )1(compi)1(l)1(e)0.996908(rs )1(,)1( )1]TJ +-426.672 -13.9688 Td +[(she)1(l)1(l)1(s )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.992 615.184 Tm +(macro)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.207 615.184 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.906 615.184 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.93 615.184 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1(se)1( )0.998942(l)0.998942(ay)1(e)0.998942(rs )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.102 615.184 Tm +[(ov)1(e)1(rl)0.996908(ap)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.617 615.184 Tm +[( )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.059 615.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.195 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.008 615.184 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.941 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.758 615.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.891 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 601.215 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 601.215 Tm +[( )1(i)1(s )1(w)1(hat)1( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.25 601.215 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.031 601.215 Tm +[( )1(proce)1(sse)1(d )1(as )0.998942(dat)1(a )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.254 601.215 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.164 601.215 Tm +[( )0.998942(;)0.998942( )1(si)0.998942(nce)0.996908( )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.559 601.215 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 509.59 601.215 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 587.246 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 587.246 Tm +[( )1(,)1( )1(how)1(e)1(v)1(e)1(r )1(,)1( )1(i)1(t)1( )1(i)1(s )1(re)1(st)1(ri)1(ct)0.998942(e)1(d )0.998942(t)0.998942(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.629 587.246 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.367 587.246 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(.)0.998942( )0.998942(W)0.996908(hi)1(l)0.996908(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.949 587.246 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 450.4 587.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 458.977 587.246 Tm +[(e)1(re)0.996908(nt)1(i)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 587.246 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 573.277 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 573.277 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 573.277 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 573.277 Tm +[( )1(l)1(anguage)1(s )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.758 573.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.895 573.277 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.707 573.277 Tm +[(art)1(i)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 298.2 573.2 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 306.227 573.277 Tm +[(ci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.813 573.277 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9420>1(from )0.996908(l)1(anguage)0.992839(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 559.309 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.0781 559.309 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.02 559.309 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.156 559.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.969 559.309 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.133 559.309 Tm +[( )1(l)1(anguage)1(s )0.998942<9420>1(i)0.998942(s )0.998942(conce)0.998942(pt)1(ual)0.998942(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.898 559.309 Tm +[(i)0.998942(mport)1(ant)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.285 559.309 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.48 559.309 Tm +[(undi)0.992839(sput)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.629 559.309 Tm +[( )1(,)1( )1(i)1(t)1( )1]TJ +-454.281 -13.9688 Td +[(re)1(mai)1(ns )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 545.34 Tm +[(probl)1(e)1(mat)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.434 545.34 Tm +[( )1(i)1(n )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.262 545.34 Tm +[(pure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.512 545.34 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.324 545.34 Tm +[(t)0.998942(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.68 545.34 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.352 545.34 Tm +[(T)1(he)0.998942(re)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.023 545.34 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.648 545.34 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.398 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.215 545.34 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.348 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.164 545.34 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.324 545.34 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.141 545.34 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.273 545.34 Tm +[( )1(about)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 531.371 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.5117 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.3281 531.371 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.395 531.371 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.32 531.371 Tm +[(cul)1(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.887 531.371 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.703 531.371 Tm +[(const)1(ruct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.363 531.371 Tm +[( )0.998942(and )1(t)0.998942(hus )1(just)0.998942( )1(as )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.18 531.371 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.316 531.371 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.129 531.371 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 430.7 531.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 438.649 531.371 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.234 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.051 531.371 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.184 531.371 Tm +[( )1(as )1(any)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.602 531.371 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.375 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 517.402 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8125 517.402 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 133.105 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.922 517.402 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.988 517.402 Tm +[( )1(.)1( )1(T)77.9928(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.543 517.402 Tm +[(cal)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.094 517.402 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.91 517.402 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.129 517.402 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9320>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.934 517.402 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.586 517.402 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 503.434 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.2422 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.0547 503.434 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.8711 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.6836 503.434 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5078 503.434 Tm +[( )1(sol)1(v)1(e)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.703 503.434 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.348 503.434 Tm +[( )1(e)1(i)0.998942(t)0.998942(he)1(r )1(,)0.998942( )0.998942(as )1(i)0.998942(t)0.998942( )0.998942(obscure)1.00301(s )0.998942(t)1(hat)0.998942( )1<9320>0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.148 503.434 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.801 503.434 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 489.465 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 489.465 Tm +[( )1(cre)1(at)1(i)1(ons )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.809 489.465 Tm +[(Hi)1(gh-)1.00199(l)1(e)1(v)1(e)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.234 489.465 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.047 489.465 Tm +[(machi)0.998942(ne)1(-)1(i)0.998942(nde)1(pe)1(nde)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.949 489.465 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.762 489.465 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.984 489.465 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.84 489.465 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.176 489.465 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 475.496 Tm +[(F)56.0117(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.418 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.8633 475.496 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.043 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.488 475.496 Tm +[(J)1(av)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.387 475.496 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.207 475.496 Tm +[(B)1(asi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.898 475.496 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(e)1(v)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.633 475.496 Tm +[(di)0.998942(re)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.535 475.496 Tm +[( )0.998942(mappi)1(ngs )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.945 475.496 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.598 475.496 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.41 475.496 Tm +[(l)1(ogi)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.715 475.496 Tm +[( )1(.)1( )1(If )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 461.527 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 461.527 Tm +[( )1(l)1(anguage)1.00199(s )1(are)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.23 461.527 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.949 461.527 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.02 461.527 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.672 461.527 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.484 461.527 Tm +[(cont)1(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.781 461.527 Tm +[( )1(,)1( )1(t)1(he)1(y)0.996908( )1(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.477 461.527 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.262 461.527 Tm +[( )1]TJ +-501.914 -13.9688 Td +[(cal)1(l)1(e)1(d )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 447.559 Tm +[(cy)1(be)1(rne)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.727 447.559 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(.)0.998942( )0.998942(B)1(ut)0.998942( )1(t)0.998942(he)1(se)1( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(can )0.998942(al)0.998942(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.77 447.559 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.551 447.559 Tm +[( )1(use)1(d )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 448.852 447.559 Tm +[(out)1(si)1(de)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.406 447.559 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.219 447.559 Tm +[(machi)0.996908(ne)0.996908(s)]TJ +-462.871 -13.9688 Td +[<9769>1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.9141 433.59 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.7266 433.59 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.949 433.59 Tm +[( )1(handbook)1(s )1(,)0.998942( )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.277 433.59 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.301 433.59 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.125 433.59 Tm +[(programme)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.934 433.59 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.75 433.59 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.563 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.379 433.59 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.535 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.352 433.59 Tm +[(di)0.996908(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.164 433.59 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.98 433.59 Tm +[(t)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.578 433.59 Tm +[( )1(jok)1.00505(e)1(s )1(,)1( )1(or )1.00505]TJ +-463.23 -13.9688 Td +[(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.4727 419.621 Tm +[(abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.723 419.621 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.539 419.621 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.313 419.621 Tm +[( )1(l)1(anguage)1(s )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.383 419.621 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.336 419.621 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.152 419.621 Tm +[(l)0.998942(ogi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.445 419.621 Tm +[( )0.998942(const)1(ruct)1(s )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.523 419.621 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.859 419.621 Tm +[( )1(as )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.184 419.621 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.785 419.621 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 405.652 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.3867 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.1992 405.652 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0156 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8281 405.652 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.9883 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.8008 405.652 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.789 405.652 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.551 405.652 Tm +[(P)46.0144(ascal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.113 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.926 405.652 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.148 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.961 405.652 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.031 405.652 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 405.652 Tm +[(e)1(x)0.998942(pl)0.998942(ai)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.816 405.652 Tm +[( )1(aspe)1(ct)1(s )1.00505(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 391.684 Tm +[(st)1(ruct)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.9023 391.684 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.195 391.684 Tm +[(Samue)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.617 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.434 391.684 Tm +[(B)1(e)1(ck)0.998942(e)1(t)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.09 391.684 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.906 391.684 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.719 391.684 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.508 391.684 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng.)0.998942(1)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.871 391.684 Tm +[( )0.998942(In )0.998942(t)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.332 391.684 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.578 391.684 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.023 391.684 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.418 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 391.684 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.527 391.684 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-446.18 -13.9688 Td +[(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3555 377.715 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.1367 377.715 Tm +[( )1(more)1( )1(broadl)1(y)1( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 189.8 377.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 197.809 377.715 Tm +[(ne)1(d )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.359 377.715 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.094 377.715 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(as )1(oppose)1(d )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.508 377.715 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.41 377.715 Tm +[( )1]TJ +-485.063 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(B)0.998942(ut)1( )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.563 363.746 Tm +[(t)1(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.914 363.746 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(i)0.998942(t)1(s )0.998942(probl)1(e)1(ms )0.998942(e)0.996908(i)1(t)1(he)1(r )0.996908(.)1.00505( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.398 363.746 Tm +(Common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.516 363.746 Tm +[( )1]TJ +-471.168 -13.9688 Td +[(l)1(anguage)1(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.25 349.777 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.984 349.777 Tm +[( )1(are)1( )1(bot)0.998942(h )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.875 349.777 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.648 349.777 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.844 349.777 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.746 349.777 Tm +[( )0.998942(;)0.998942( )1(al)0.998942(t)0.998942(hough )0.996908(t)1.00505(he)0.996908(i)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.18 349.777 Tm +[(scope)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.066 349.777 Tm +[( )1(e)1(x)1(t)1(e)1(nds )0.996908]TJ +-458.719 -13.9688 Td +[(be)1(y)1(ond )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.824 335.809 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.598 335.809 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.043 335.809 Tm +[(any)1(t)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.504 335.809 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.078 335.809 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.859 335.809 Tm +[( )0.998942(e)1(x)0.998942(pre)1(sse)1.00301(d )0.998942(i)0.998942(n )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.328 335.809 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.723 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.535 335.809 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.832 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.645 335.809 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.715 335.809 Tm +[( )1]TJ +-509.367 -13.9688 Td +[(can )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.9531 321.84 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 321.84 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.234 321.84 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.891 321.84 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.707 321.84 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.773 321.84 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.998942(fol)0.996908(l)1(ow)0.998942(s )0.998942(t)1(hat)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.746 321.84 Tm +[(comput)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.141 321.84 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.957 321.84 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.25 321.84 Tm +[( )1]TJ +-469.902 -13.9688 Td +[(l)1(anguage)1(s )1(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.164 307.871 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.938 307.871 Tm +[( )1(\( )1(and )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.754 307.871 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.09 307.871 Tm +[( )0.998942(rat)1(he)1(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.996 307.871 Tm +[(pri)1(mi)0.998942(t)0.998942(i)1(v)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.012 307.871 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.32 307.871 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.973 307.871 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.266 307.871 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.922 307.871 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.738 307.871 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.457 307.871 Tm +[( )1]TJ +-494.109 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)78.9948(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.129 293.902 Tm +[(compl)1(i)1(cat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.609 293.902 Tm +[( )1(t)1(hi)0.998942(ngs )1(e)0.998942(v)1(e)1(n )0.998942(furt)1(he)0.998942(r )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.457 293.902 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.852 293.902 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.668 293.902 Tm +[(sci)0.998942(e)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 293.902 Tm +[( )1(has )1(i)0.996908(t)1.00505(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.34 293.902 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.563 293.902 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 279.934 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.117 279.934 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.41 279.934 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.547 279.934 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.359 279.934 Tm +[(ope)1(rat)1(i)1(onal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.863 279.934 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942<9420>1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.883 279.934 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.105 279.934 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.805 279.934 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 548.828 279.934 Tm +[( )1]TJ +-514.48 -13.9688 Td +[(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.1953 265.965 Tm +[(const)1(ruct)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.648 265.965 Tm +[( )1(of )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.91 265.965 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.133 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.945 265.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.016 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.828 265.965 Tm +[(i)0.998942(nt)1(e)0.998942(rpre)1.00301(t)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.234 265.965 Tm +[( )0.998942(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.824 265.965 Tm +[(compi)1(l)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.344 265.965 Tm +[( )1(.)1( )1(J)1(ust)1( )1(as )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 251.996 Tm +[(i)1(nt)1(e)1(rpre)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.754 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.566 251.996 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.277 251.996 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.09 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.906 251.996 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.727 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.543 251.996 Tm +[(pe)1(rform)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.844 251.996 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.656 251.996 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.793 251.996 Tm +[( )0.998942(i)0.998942(nt)1(e)1(rpre)1(t)1(at)0.998942(i)0.998942(ons )1<9420>0.998942(i)1(n )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.215 251.996 Tm +[(he)1(rme)1(ne)1(ut)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.199 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.016 251.996 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.262 251.996 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.559 251.996 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 238.027 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8594 238.027 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.6758 238.027 Tm +[(e)1(x)1(pl)1(i)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.391 238.027 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.301 238.027 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.695 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.508 238.027 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.879 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.691 238.027 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.258 238.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.555 238.027 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.688 238.027 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.379 238.027 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 238.027 Tm +[( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 432.1 237.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 440.08 238.027 Tm +[(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.188 238.027 Tm +[(l)1(i)0.996908(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.379 238.027 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 224.059 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 224.059 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.066 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.879 224.059 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.648 224.059 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.41 224.059 Tm +[(w)0.998942(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.324 224.059 Tm +[( )0.998942(,)0.998942( )0.998942(si)1(nce)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.129 224.059 Tm +[(compi)0.998942(l)0.998942(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.648 224.059 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.465 224.059 Tm +[(const)1(ruct)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.918 224.059 Tm +[( )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 210.09 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 210.09 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.906 210.09 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.125 210.09 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(de)1(not)1(e)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.457 210.09 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.207 210.09 Tm +[( )0.998942(but)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.07 210.09 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.805 210.09 Tm +[( )1]TJ +-442.457 -13.9688 Td +[(mani)1(pul)1(at)1(i)1(ons )1(of )1(sy)1(mbol)1(s )1(.)1( )1(W)1(hat)0.998942( )0.998942(mi)1(ght)0.998942( )1(more)1( )0.998942(sui)0.998942(t)1(abl)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.766 196.121 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.547 196.121 Tm +[( )0.998942(cal)0.998942(l)0.998942(e)0.996908(d )1(t)1(he)1( )1(se)1(mant)0.996908(i)1(cs )1(of )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 182.152 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 182.152 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 182.152 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 182.152 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(re)1(si)1(de)1(s )0.998942(i)0.998942(n )0.998942(t)1(he)1( )0.998942(sy)1(mbol)0.998942(s )0.998942(w)1(i)0.998942(t)0.998942(h )1(w)0.998942(hi)0.998942(ch )1(t)1(hose)1( )1(ope)1(rat)1(i)1(ons )1(are)0.996908( )1]TJ +-105.504 -13.9688 Td +[(de)1(not)1(e)1(d )1(i)1(n )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.281 168.184 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.504 168.184 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.215 168.184 Tm +[(E)1(ngl)0.998942(i)0.998942(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.949 168.184 Tm +[( )0.998942(w)1(ords )1(l)0.998942(i)0.998942(k)0.998942(e)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.648 168.184 Tm +[( )1(i)1(f )1(,)1( )1<9420>0.996908<9320>1(t)1(he)1(n )0.996908(,)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.906 168.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.043 168.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.855 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.992 168.184 Tm +[( )1(e)1(l)0.996908(se)1( )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.4297 154.215 Tm +[( )1(for )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.0898 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2266 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.0391 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.1758 154.215 Tm +[( )1(w)1(hi)1(l)1(e)1( )1(,)1( )1<9420>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.16 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.293 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.109 154.215 Tm +[(got)1(o)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.063 154.215 Tm +[( )1(,)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.504 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.641 154.215 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.832 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.969 154.215 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.781 154.215 Tm +[(pri)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.59 154.215 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.031 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.168 154.215 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.363 154.215 Tm +[(conjunct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.547 154.215 Tm +[( )0.998942(w)1(i)0.998942(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.836 154.215 Tm +[(ari)0.996908(t)1.00505(hme)0.992839(t)1.00505(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.969 154.215 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 140.246 Tm +[(punct)1(uat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.523 140.246 Tm +[( )1(sy)1(mbol)1(s )1(;)0.998942( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.609 140.246 Tm +[(al)1(phabe)1(t)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.332 140.246 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.145 140.246 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.055 140.246 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942(w)0.998942(ords )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.652 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.465 140.246 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.121 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.566 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.699 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.648 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 140.246 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.949 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.391 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.527 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.34 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.477 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 126.277 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.7539 126.277 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1953 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.332 126.277 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.523 126.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.66 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.473 126.277 Tm +[(past)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.391 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.207 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.34 126.277 Tm +[( )1(;)1( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 126.277 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.926 126.277 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.742 126.277 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.652 126.277 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.363 126.277 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.699 126.277 Tm +[( )0.998942(as )1(sy)1(mbol)0.996908(s )1(l)1(i)0.996908(k)1(e)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.004 126.277 Tm +[(t)1(rash)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 552.602 126.277 Tm +[( )1]TJ +-518.254 -13.9688 Td +[(can )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.3945 112.309 Tm +[(F)56.0115(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.715 112.309 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.125 112.309 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.113 112.309 Tm +[( )0.998942(st)1(at)0.998942(e)1(s )1(t)0.998942(hat)1( )0.998942(t)0.998942(he)1( )0.998942(si)1(gns )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.625 112.309 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.281 112.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.098 112.309 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.816 112.309 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.629 112.309 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.699 112.309 Tm +[( )1(are)1( )1]TJ +-477.352 -13.9688 Td +[(arbi)1(t)1(rary)1(2 )1(be)1(cause)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174 98.3398 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.156 98.3398 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.621 98.3398 Tm +[(cul)0.998942(t)1(ural)0.998942(-)1(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 324.176 98.3398 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.988 98.3398 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.887 98.3398 Tm +[( )0.998942(t)1(hat)1( )1(assi)1(gns )0.996908(phone)0.996908(me)1(s )1(t)1(o )1.00505]TJ +-360.539 -13.9688 Td +[(conce)1(pt)1(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9492 84.3711 Tm +[(Li)1(k)0.998942(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.496 84.3711 Tm +[( )1(,)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.043 84.3711 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.203 84.3711 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.664 84.3711 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.23 84.3711 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.047 84.3711 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.941 84.3711 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.617 84.3711 Tm +[(assi)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.336 84.3711 Tm +[( )1(sy)1(mbol)0.996908(s )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.047 84.3711 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.695 84.3711 Tm +[( )1]TJ +-515.348 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(.)1( )1(B)0.998942(ut)1( )1(just)1( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.48 70.4023 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.047 70.4023 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.863 70.4023 Tm +[(choi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.195 70.4023 Tm +[( )0.998942(of )0.998942(phone)1(me)1(s )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.789 70.4023 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.957 70.4023 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.77 70.4023 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.84 70.4023 Tm +[( )1(i)1(s )1]TJ +-462.492 -13.9688 Td +[(re)1(st)1(rai)1(ne)1(d )1(by)1( )1(w)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.754 56.4336 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.473 56.4336 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.285 56.4336 Tm +[(v)1(oi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.949 56.4336 Tm +[( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 283.184 56.4336 Tm +[(pronounce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.059 56.4336 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.969 56.4336 Tm +[(assi)1(gnme)0.992839(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.719 56.4336 Tm +[( )1(of )1(sy)1(mbol)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 42.4648 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 42.4648 Tm +[( )1(ope)1(rat)1(i)1(ons )1(i)1(s )1(l)1(i)1(mi)1(t)1(e)1(d )0.998942(t)1(o )0.998942(w)0.998942(hat)1( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.488 42.4648 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.273 42.4648 Tm +[( )0.998942(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 319.1 42.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 327.689 42.4648 Tm +[(i)0.998942(ci)0.998942(e)1(nt)0.998942(l)0.998942(y)1( )0.998942(proce)1(sse)1(d )1(by)0.996908( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.316 42.4648 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.965 42.4648 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Page: (1) 2 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +2.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 1191.000000 0 rlineto 0 1684.000000 rlineto -1191.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +17 0 obj +<> +/Contents 18 0 R +>> +endobj +%%EndPageSetup +18 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(and )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.207 801.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.02 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.832 801.516 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.82 801.516 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.496 801.516 Tm +[(humans.)1.00199(3)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.824 801.516 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.18 801.516 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.625 801.516 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.063 801.516 Tm +[(ope)1(rabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.758 801.516 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 801.516 Tm +[(usabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.789 801.516 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(obv)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.9805 787.547 Tm +[( )1(i)1(n )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.023 787.547 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.047 787.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.488 787.547 Tm +[(U)1(ni)0.998942(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.938 787.547 Tm +[( )0.998942(commands )1(.)0.998942( )0.998942(O)0.998942(ri)1(gi)0.998942(nal)0.998942(l)1(y)0.998942( )0.998942(use)1(d )1(on )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.957 787.547 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.203 787.547 Tm +[( )1(t)1(e)1(rmi)0.996908(nal)0.996908(s )1(,)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(ope)1(rat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.8594 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6719 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.809 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.621 773.578 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.844 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.977 773.578 Tm +[( )1(w)1(as )1(abbre)1(v)0.998942(i)0.998942(at)1(e)1(d )0.998942(t)1(o )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.066 773.578 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.332 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.148 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.281 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.098 773.578 Tm +(cp)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.5 773.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.941 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.078 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.891 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.84 773.578 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.324 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.141 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.273 773.578 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.086 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.898 773.578 Tm +[(mv)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.059 773.578 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.5 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.637 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.449 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.586 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.398 773.578 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.055 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.1563 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.1055 759.609 Tm +[(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.1016 759.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.5469 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.6797 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.496 759.609 Tm +[(e)1(t)1(c.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.953 759.609 Tm +[( )1(,)1( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.777 759.609 Tm +[(orde)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.258 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.934 759.609 Tm +[(cut)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 223.207 759.609 Tm +[( )0.998942(dow)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.742 759.609 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.391 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.207 759.609 Tm +[(me)1(mory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.805 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.621 759.609 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.609 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.051 759.609 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.301 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.113 759.609 Tm +[(pape)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.469 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 745.641 Tm +[(consumpt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.582 745.641 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.402 745.641 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.121 745.641 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 195.938 745.641 Tm +[(t)1(y)0.998942(pi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.469 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.281 745.641 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 245.3 745.6 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 253.893 745.641 Tm +[(ort)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.691 745.641 Tm +[( )0.998942(at)1( )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.766 745.641 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.559 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.371 745.641 Tm +[(t)0.998942(i)1(me)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.512 745.641 Tm +[( )0.998942(.)0.998942( )0.998942(Any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.945 745.641 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.34 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.152 745.641 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.449 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(i)1(s )1(t)1(hus )1.00199(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.262 731.672 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.828 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.641 731.672 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.086 731.672 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1(t)0.998942(he)1( )0.998942(const)1(rai)0.998942(nt)1(s )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.375 731.672 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.027 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.84 731.672 Tm +[(de)0.996908(si)1<676E97>]TJ +-466.492 -13.9688 Td +[(w)1(hi)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.6328 717.703 Tm +[( )1(i)1(s )1(far )1(from )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142 717.703 Tm +[(obje)1(ct)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.992 717.703 Tm +[( )1(,)1( )0.998942(but)1( )0.998942(base)1.00301(d )0.998942(on )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.84 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.559 717.703 Tm +[( )0.998942(choi)0.998942(ce)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.309 717.703 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.984 717.703 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.809 717.703 Tm +[(t)1(hi)0.996908(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 525.445 717.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 529.258 717.703 Tm +[(st)1(y)1(l)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.957 717.703 Tm +[( )1]TJ +-523.609 -13.9688 Td +[(i)1(t)1(se)1(l)1(f )1(4\227and )1(t)1(he)1( )1(e)1(qual)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.777 703.734 Tm +[(subje)1(ct)0.998942(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.43 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.242 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.969 703.734 Tm +[( )0.998942(pre)1(fe)1(re)1(nce)0.998942(s )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.836 703.734 Tm +[(i)0.998942(nv)1(ol)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.27 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.086 703.734 Tm +[(fuz)1(z)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.68 703.734 Tm +[( )1(fact)1.00505(ors )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(re)1(adabi)1(l)1(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9727 689.766 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 111.414 689.766 Tm +[(e)1(l)1(e)1(gance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.844 689.766 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.664 689.766 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.488 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.305 689.766 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 250.3 689.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 258.917 689.766 Tm +[(i)0.998942(ci)0.998942(e)1(ncy)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.656 689.766 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)1( )0.998942(sy)1(mbol)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.262 689.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.656 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.473 689.766 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.766 689.766 Tm +[( )1]TJ +-479.418 -13.9688 Td +[(l)1(anguage)1(s )1(i)1(ne)1(v)1(i)1(t)0.998942(abl)1(y)1( )1(do )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.484 675.797 Tm +[(hav)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.246 675.797 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.063 675.797 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.965 675.797 Tm +[( )0.998942(connot)1(at)0.998942(i)0.998942(ons )1(si)0.998942(mpl)0.998942(y)1( )0.998942(be)1(cause)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.918 675.797 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.406 675.797 Tm +[( )1(e)1(x)1(i)1(st)1( )1(no )1]TJ +-451.059 -13.9688 Td +[(sy)1(mbol)1(s )1(w)1(i)1(t)1(h )1(w)1(hi)1(ch )1(humans )1(w)0.998942(oul)0.998942(d )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.797 661.828 Tm +[(associ)0.998942(at)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.129 661.828 Tm +[( )0.998942(some)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.621 661.828 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.23 661.828 Tm +[( )1(.)1( )1(B)1(ut)1( )1(sy)1(mbol)0.996908(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.309 661.828 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.125 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.938 661.828 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.762 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(de)1(not)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0078 647.859 Tm +[( )1(any)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.297 647.859 Tm +[(se)1(mant)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.199 647.859 Tm +[( )1(st)1(at)1(e)1(me)1(nt)0.998942(s )1(,)0.998942( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(,)0.998942( )0.998942(t)1(he)1(y)0.998942( )0.998942(do )1(not)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.043 647.859 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.75 647.859 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.563 647.859 Tm +[(me)0.996908(ani)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.176 647.859 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908(i)0.996908(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.41 647.859 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.637 647.859 Tm +[( )1]TJ +-511.289 -13.9688 Td +[(t)1(e)1(rms )1(;)1( )1(humans )1.00199(me)1(t)1(aphori)1(cal)0.996908(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.719 633.891 Tm +[(re)1(ad)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.391 633.891 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.207 633.891 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.816 633.891 Tm +[( )0.998942(i)0.998942(nt)1(o )0.998942(t)0.998942(he)1(m )0.998942(t)1(hrough )0.996908(associ)1.00505(at)1(i)1(ons )1(t)1(he)0.996908(y)1( )1]TJ +-277.469 -13.9688 Td +[(mak)1(e)1( )1(.)1( )1(Language)1.00199(s )1(w)0.998942(i)1(t)1(hout)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.117 619.922 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.02 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.836 619.922 Tm +[(de)1(not)0.998942(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.16 619.922 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(hi)0.998942(st)1(ori)0.996908(cal)1(l)1(y)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.863 619.922 Tm +[(ne)0.996908(w)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.965 619.922 Tm +[( )1(phe)0.996908(nome)0.996908(na )1(;)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 605.953 Tm +[( )1(formul)1(as )1(are)1( )1(t)1(he)1(i)0.998942(r )0.998942(ol)0.998942(de)1(st)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.215 605.953 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.238 605.953 Tm +[( )0.998942(.)0.998942( )0.998942(In )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.965 605.953 Tm +[(compari)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.813 605.953 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.488 605.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.145 605.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.957 605.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.676 605.953 Tm +[( )1]TJ +-508.328 -13.9688 Td +[(l)1(anguage)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.484 591.984 Tm +[(mul)1(t)1(i)1(t)1(ude)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.422 591.984 Tm +[( )1(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.719 591.984 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.938 591.984 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(i)0.998942(s )1(of )0.996908(l)1(e)0.998942(sse)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.992 591.984 Tm +[(si)1(gni)0.992839]TJ +/R14 1 Tf +0.1 0 0 -0.1 461.2 591.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 469.204 591.984 Tm +[(cance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.668 591.984 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(cri)1(t)1(e)1(ri)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.0938 578.016 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.387 578.016 Tm +[(T)1(uri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.105 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.918 578.016 Tm +[(compl)1(e)1(t)1(e)0.998942(ne)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.934 578.016 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.199 578.016 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.418 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.234 578.016 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.301 578.016 Tm +[( )1(,)1( )1(t)1(hat)1( )1(i)1(s )1(,)1( )1(t)1.00505(hat)0.996908( )1(any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(comput)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.672 564.047 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.902 564.047 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.688 564.047 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )0.998942(i)0.998942(n )0.998942(i)0.998942(t)1( )0.998942(,)0.998942( )0.998942(me)1(ans )1(t)0.998942(hat)1( )0.998942(e)1(v)0.998942(e)1(ry)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.277 564.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.5 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.313 564.047 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.383 564.047 Tm +[( )1(i)1(s )1(,)1( )1]TJ +-477.035 -13.9688 Td +[(formal)1(l)1(y)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.5508 550.078 Tm +[(spe)1(ak)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.168 550.078 Tm +[( )1(,)1( )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.824 550.078 Tm +[(ri)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 201.3 550.1 Tm +<00>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.922 550.078 Tm +[( )0.998942(on )0.998942(e)1(v)1(e)0.998942(ry)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.816 550.078 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.43 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.246 550.078 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.465 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.281 550.078 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.348 550.078 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.793 550.078 Tm +[(Not)1.00505(hi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.316 550.078 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 539.547 550.078 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.332 550.078 Tm +[( )1]TJ +-519.984 -13.9688 Td +[(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126 536.109 Tm +[(T)1(uri)1(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.586 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.398 536.109 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.469 536.109 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.281 536.109 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.617 536.109 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.559 536.109 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.742 536.109 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.898 536.109 Tm +[(coul)0.998942(dn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.82 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.633 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.449 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.262 536.109 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 434.086 536.109 Tm +[( )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.09 536.109 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.871 536.109 Tm +[( )1(e)1(x)1(pre)0.996908(sse)1(d )1]TJ +-446.523 -13.9688 Td +[(i)1(n )1(anot)1(he)1(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.039 522.141 Tm +[(T)1(uri)1(ngcompl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.625 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.438 522.141 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.508 522.141 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.32 522.141 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.656 522.141 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.598 522.141 Tm +[(Li)0.998942(sp)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.246 522.141 Tm +[( )0.998942(\( )1(or )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.332 522.141 Tm +[(F)56.011(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.402 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.848 522.141 Tm +[(Smal)1(l)0.996908(t)1(al)1(k)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.363 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.805 522.141 Tm +[(J)1(av)0.996908(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.703 522.141 Tm +[( )1(.)1(.)1(.)1( )1(\) )1]TJ +-483.355 -13.9688 Td +[(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.7266 508.172 Tm +[(v)1(i)1(ce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.1641 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.9805 508.172 Tm +[(v)1(e)1(rsa)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.91 508.172 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.895 508.172 Tm +[(ul)1(t)1(i)1(mat)0.998942(e)1(l)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.195 508.172 Tm +[( )0.998942(prov)1(e)1(s )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.973 508.172 Tm +[(i)0.998942(mport)1(ance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 508.172 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.656 508.172 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.375 508.172 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.566 508.172 Tm +[(cul)1(t)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.133 508.172 Tm +[( )1(fact)1.00505(ors )1]TJ +-469.785 -13.9688 Td +[(i)1(n )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.7266 494.203 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.949 494.203 Tm +[( )1(l)1(anguage)1.00199(s )1(:)0.998942( )1(w)0.998942(hi)0.998942(l)0.998942(e)1( )0.998942(t)1(he)0.998942(y)1( )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.305 494.203 Tm +[(i)0.998942(nt)1(e)0.998942(rchange)1.00301(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.422 494.203 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.617 494.203 Tm +[(re)1(gard)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.711 494.203 Tm +[( )1(t)1(o )1.00505(t)1(he)1(i)0.996908(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.426 494.203 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.723 494.203 Tm +[( )1]TJ +-522.375 -13.9688 Td +[(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 480.234 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.477 480.234 Tm +[( )1(funct)1(i)1(ons )1(,)1( )1(t)1(he)1(i)1(r )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.168 480.234 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 217.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 226.196 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.703 480.234 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.516 480.234 Tm +[(st)1(ruct)1(ure)1(s\227se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.133 480.234 Tm +[( )0.998942(de)1(scri)0.996908(pt)1(ors )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.25 480.234 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.469 480.234 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(st)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.0469 466.266 Tm +[( )1(i)1(n )1(w)1(hi)1(ch )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.344 466.266 Tm +[(al)1(gori)1(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.902 466.266 Tm +[( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.137 466.266 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.918 466.266 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.734 466.266 Tm +[(e)1(x)0.998942(pre)1(sse)1<64976C>1(e)0.998942(nd)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.57 466.266 Tm +[( )0.998942(t)1(he)0.998942(mse)1(l)1(v)0.998942(e)1(s )1(not)1( )1.00505(onl)0.996908(y)0.996908( )1.00505(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.203 466.266 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 491.6 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 500.231 466.266 Tm +[(e)1(re)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.738 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9883 452.297 Tm +[( )1(se)1(t)1(s )1(,)1( )1(but)1( )1(al)1(so )1(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.586 452.297 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 204 452.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 212.614 452.297 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.121 452.297 Tm +[( )0.998942(st)1(y)1(l)0.998942(e)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.086 452.297 Tm +[(t)0.998942(hi)1(nk)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.723 452.297 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.168 452.297 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.688 452.297 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.629 452.297 Tm +[(programmi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.848 452.297 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-458.5 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 438.328 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.773 438.328 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.066 438.328 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.723 438.328 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.207 438.328 Tm +[(T)1(uri)0.998942(ngi)1(ncompl)0.998942(e)1(t)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.176 438.328 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.57 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.383 438.328 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.68 438.328 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-440.332 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 424.359 Tm +[(const)1(rai)1(ne)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.016 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.832 424.359 Tm +[(subse)1.00199(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.48 424.359 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.777 424.359 Tm +[(T)1(uri)0.998942(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.363 424.359 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(T)1(hi)0.998942(s )1(promi)0.996908(ne)1(nt)0.996908(l)1(y)0.996908( )1(i)1(ncl)1(ude)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(mark)1(up)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.2969 410.391 Tm +[( )1(l)1(anguage)1.00199(s )1(\( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.648 410.391 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.984 410.391 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.926 410.391 Tm +[(HT)0.998942(M)0.998942(L)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.652 410.391 Tm +[( )0.998942(\) )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 267.6 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 275.582 410.391 Tm +[(l)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.535 410.391 Tm +[( )0.998942(format)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.707 410.391 Tm +[(ne)1(t)0.998942(w)1(ork)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.863 410.391 Tm +[( )0.998942(prot)1(ocol)1.00505(s )1(,)1( )1(and )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.531 410.391 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.254 410.391 Tm +[( )1]TJ +-522.906 -13.9688 Td +[(cont)1(rol)1(s )1(\( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.1094 396.422 Tm +[(se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.473 396.422 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.754 396.422 Tm +[(e)1(nt)1(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.922 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.734 396.422 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.871 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.684 396.422 Tm +[(Int)1(e)1(rface)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.23 396.422 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.047 396.422 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.18 396.422 Tm +[( )0.998942(\) )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.973 396.422 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.367 396.422 Tm +[( )0.998942(programs )1.00301(.)1( )1(In )1(most)1( )1(case)1(s )1.00505(,)1( )1]TJ +-307.02 -13.9688 Td +[(l)1(anguage)1(s )1(of )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.23 382.453 Tm +[(t)1(y)1(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.613 382.453 Tm +[( )1(are)1( )1(re)1(st)0.998942(rai)1(ne)1(d )0.998942(from )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.703 382.453 Tm +[(de)1(not)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.512 382.453 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.324 382.453 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.285 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 368.484 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 368.484 Tm +[(se)1(curi)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.441 368.484 Tm +[( )1(re)1(asons\227t)0.998942(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.379 368.484 Tm +[(pre)1(v)1(e)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.328 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.145 368.484 Tm +[(v)1(i)0.998942(rus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.383 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.199 368.484 Tm +[(i)0.998942(nfe)1(ct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.641 368.484 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.836 368.484 Tm +[(re)1(mot)1.00505(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.199 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.016 368.484 Tm +[(t)1(ak)1(e)1(ov)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.207 368.484 Tm +[( )1(.)1( )1(T)1(hi)0.996908(s )1]TJ +-458.859 -13.9688 Td +[(show)1(s )1(how)1( )1(t)0.998942(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.418 354.516 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.609 354.516 Tm +[( )1(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.871 354.516 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.645 354.516 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.461 354.516 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.527 354.516 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.121 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.313 354.516 Tm +[( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.344 354.516 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.992 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.809 354.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.102 354.516 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(Acce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8711 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5469 340.547 Tm +[(hardw)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.113 340.547 Tm +[( )1(funct)1(i)1(ons )0.998942(i)0.998942(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.941 340.547 Tm +[(l)0.998942(i)0.998942(mi)0.998942(t)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.441 340.547 Tm +[( )0.998942(not)1( )0.998942(onl)0.998942(y)1( )0.998942(t)0.998942(hrough )1.00301(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 340.547 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.07 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.887 340.547 Tm +[(appl)0.996908(i)0.996908(cat)1.00505(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.566 340.547 Tm +[( )1(,)1( )1]TJ +-497.219 -13.9688 Td +[(but)1( )1(t)1(hrough )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.324 326.578 Tm +[(sy)1(nt)1(ax)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.734 326.578 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.016 326.578 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.926 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.742 326.578 Tm +[(appl)1(i)0.998942(cat)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.422 326.578 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.363 326.578 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.352 326.578 Tm +[( )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.383 326.578 Tm +[(st)1(ori)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.574 326.578 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.766 326.578 Tm +[(t)1(ransmi)0.996908(t)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.477 326.578 Tm +[( )1]TJ +-519.129 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 312.609 Tm +[(i)1(nformat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.93 312.609 Tm +[( )1(i)1(t)1( )1(proce)1(sse)1(s )1(.)0.998942( )0.998942(T)78.9887(o)]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.813 312.609 Tm +[(name)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.176 312.609 Tm +[( )0.998942(one)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.859 312.609 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.254 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.07 312.609 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 403.363 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.18 312.609 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.246 312.609 Tm +[( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.031 312.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.164 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 298.641 Tm +[( )1(,)1( )1<9420>1(anot)1(he)0.998942(r )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.121 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.258 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.07 298.641 Tm +[(prot)1(ocol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.543 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.988 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.121 298.641 Tm +[( )0.998942(and )1(y)0.998942(e)1(t)1( )0.998942(anot)1(he)1(r )0.996908(a )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.113 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.246 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 464.1 298.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 472.054 298.641 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.004 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.82 298.641 Tm +[(format)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.578 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.391 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.527 298.641 Tm +[( )1(i)1(s )1]TJ +-503.18 -13.9688 Td +[(me)1(re)1(l)1(y)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.0664 284.672 Tm +[(conv)1(e)1(nt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.961 284.672 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.375 284.672 Tm +[(nome)1(ncl)0.998942(at)0.998942(ure)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.637 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.453 284.672 Tm +[(i)0.998942(ndi)1(cat)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.484 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.297 284.672 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 344.7 284.7 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 353.325 284.672 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.832 284.672 Tm +[( )0.998942(de)1(gre)1(e)1(s )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.504 284.672 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.25 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(re)1(st)1(rai)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.4453 270.703 Tm +[( )1(bui)1(l)1(t)1( )1(i)1(nt)1(o )1(t)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.086 270.703 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.277 270.703 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.539 270.703 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.934 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.75 270.703 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.043 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.859 270.703 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.926 270.703 Tm +[( )1(.)1( )1(In )1(i)0.996908(t)1(s )1.00505(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 256.734 Tm +[(pow)1(e)1(rful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.3711 256.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.1836 256.734 Tm +[(T)1(uri)1(ng-)1(compl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.824 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.641 256.734 Tm +[(supe)1(rse)1.00301(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.129 256.734 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.57 256.734 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.965 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.781 256.734 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.074 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.891 256.734 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.957 256.734 Tm +[( )1(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.582 256.734 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.652 256.734 Tm +[( )1(t)1(hat)1( )1]TJ +-465.305 -13.9688 Td +[(e)1(x)1(e)1(cut)1(e)1(s )1(.)1( )1(As )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.406 242.766 Tm +[(magi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.172 242.766 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.363 242.766 Tm +[(spe)1(cul)0.998942(at)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.289 242.766 Tm +[( )0.998942(conce)1(pt)0.998942(s )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.555 242.766 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.625 242.766 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.535 242.766 Tm +[(w)1(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.449 242.766 Tm +[( )1]TJ +-460.102 -13.9688 Td +[(aut)1(omat)1(i)1(cal)1(l)1(y)1( )1(pe)1(rforms )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.355 228.797 Tm +[(ope)1(rat)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.867 228.797 Tm +[( )0.998942(.)0.998942( )0.998942(Y)87.0097(e)1(t)0.998942( )0.998942(t)1(hi)0.998942(s )0.998942(i)1(s )0.998942(not)1( )0.998942(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.551 228.797 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.332 228.797 Tm +[( )0.998942(confuse)0.996908(d )1(w)1(i)0.996908(t)1.00505(h )0.996908(w)1(hat)1( )1]TJ +-355.984 -13.9688 Td +[(l)1(i)1(ngui)1(st)1(i)1(cs )1(cal)1(l)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.004 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.137 214.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.953 214.828 Tm +[(pe)1(rformat)0.998942(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.949 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.762 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.898 214.828 Tm +[( )0.998942(or )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.488 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.621 214.828 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.438 214.828 Tm +[(i)0.998942(l)0.998942(l)0.998942(ocut)1(i)0.998942(onary)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.906 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.723 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.855 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.672 214.828 Tm +[(spe)1(e)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.164 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.977 214.828 Tm +[(act)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.676 214.828 Tm +[( )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.336 214.828 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.359 214.828 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +-477.012 -13.9688 Td +[(w)1(ords )1(of )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.684 200.859 Tm +[(judge)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.598 200.859 Tm +[( )1(w)1(ho )1(pronounce)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.266 200.859 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.945 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.359 200.859 Tm +[(l)0.998942(e)1(ade)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.973 200.859 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.785 200.859 Tm +[(gi)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.332 200.859 Tm +[( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.117 200.859 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.383 200.859 Tm +[( )1(,)1( )1(or )1.00505(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 186.891 Tm +[(l)1(e)1(gi)1(sl)1(at)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.7383 186.891 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5547 186.891 Tm +[(passi)1.00199(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.953 186.891 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.738 186.891 Tm +[(l)1(aw)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.816 186.891 Tm +[(.)1( )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.094 186.891 Tm +[(e)1(x)0.998942(e)1(cut)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.125 186.891 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.422 186.891 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.816 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.629 186.891 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.926 186.891 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 172.922 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.543 172.922 Tm +[(mani)1(pul)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.66 172.922 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.922 172.922 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.574 172.922 Tm +[( )0.998942(,)0.998942( )0.998942(not)1( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.574 172.922 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.508 172.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.324 172.922 Tm +[(pe)1(rformance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.328 172.922 Tm +[( )1(base)1(d )0.996908(on )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 158.953 Tm +[( )1(conv)1(e)1(nt)1(i)1(ons )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.75 158.953 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.086 158.953 Tm +[( )1(as )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.027 158.953 Tm +[(acce)0.998942(pt)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.477 158.953 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.258 158.953 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.938 158.953 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.383 158.953 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.238 158.953 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.094 158.953 Tm +[(be)0.996908(come)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.301 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 144.984 Tm +[(pe)1(rformat)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.344 144.984 Tm +[( )1(onl)1(y)1( )1(t)1(hrough )1.00199(t)1(he)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.473 144.984 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.406 144.984 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.223 144.984 Tm +[(i)0.998942(mpact)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.816 144.984 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942(proce)1(sse)1.00301(s )0.998942(t)1(he)0.996908(y)0.996908( )1.00505(t)1(ri)0.996908(gge)0.996908(r )1(,)1( )1(e)1(spe)0.996908(ci)1(al)1(l)1(y)0.996908( )1]TJ +-268.469 -13.9688 Td +[(w)1(he)1(n )1(t)1(he)1(i)1(r )1(out)1(put)1(s )1(are)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.547 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.363 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 193.176 131.016 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.813 131.016 Tm +[(cri)0.998942(t)1(i)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(che)1(ck)0.998942(e)0.998942(d )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.684 131.016 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.387 131.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.203 131.016 Tm +[(W)83.0129(e)1(i)0.998942(z)0.998942(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.594 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.406 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.223 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.035 131.016 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.195 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.008 131.016 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.918 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(psy)1(chot)1(he)1(rapi)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.684 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.496 117.047 Tm +[(E)1(l)1(i)1(z)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.41 117.047 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.82 117.047 Tm +[(si)1(mpl)0.998942(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.816 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.633 117.047 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.227 117.047 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(sy)1(nt)1(act)0.998942(i)1(cal)0.998942(l)0.998942(y)0.998942( )1(t)0.998942(ransforms )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.902 117.047 Tm +[(i)1(nput)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.703 117.047 Tm +[( )1(phrase)0.996908(s )1(,)1( )1]TJ +-464.355 -13.9688 Td +[(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 59.125 103.078 Tm +[(cl)1(assi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.707 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.52 103.078 Tm +[(e)1(x)1(ampl)1(e)1(,)1(5)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.992 103.078 Tm +[( )1(as )1(i)1(s )0.998942(t)1(he)0.998942( )1(1987 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.566 103.078 Tm +[(Ne)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.254 103.078 Tm +[(Y)86.9853(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.363 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.18 103.078 Tm +[(St)0.998942(ock)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.254 103.078 Tm +[(E)1(x)0.998942(change)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.895 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.711 103.078 Tm +(crash)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.207 103.078 Tm +[( )1(t)1(hat)1( )1(i)1(nv)0.996908(ol)1(v)0.996908(e)1(d )1]TJ +-432.859 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 89.1094 Tm +[(chai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.4844 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.3008 89.1094 Tm +[(re)1(act)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.625 89.1094 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.922 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.055 89.1094 Tm +[( )1(se)1(l)1(l)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.621 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.754 89.1094 Tm +[( )1(re)0.998942(comme)1(ndat)1(i)0.998942(ons )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.637 89.1094 Tm +[(day)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.254 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.066 89.1094 Tm +[(t)0.998942(radi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.711 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.523 89.1094 Tm +[(soft)1.00505(w)1(are)0.996908(.)1.00505(6)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.883 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.699 89.1094 Tm +[(W)46(ri)0.996908(t)1.00505(i)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.137 89.1094 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 75.1406 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.59 75.1406 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.66 75.1406 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.285 75.1406 Tm +[(phrasi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.992 75.1406 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(for )0.996908(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.039 75.1406 Tm +[(ut)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.25 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.063 75.1406 Tm +[(i)1(di)0.996908(ot)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.469 75.1406 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 61.1719 Tm +[(proje)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.3555 61.1719 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6484 61.1719 Tm +[(Art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 119.7 61.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 127.68 61.1719 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.266 61.1719 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.082 61.1719 Tm +[(Int)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.32 61.1719 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.809 61.1719 Tm +[(prov)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.332 61.1719 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.488 61.1719 Tm +[(i)0.998942(nt)1(e)0.998942(l)1(l)0.998942(i)0.998942(ge)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.824 61.1719 Tm +[( )0.998942(i)0.998942(s )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.664 61.1719 Tm +[(mat)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.68 61.1719 Tm +[( )1(of )1(a )1.00505]TJ +-458.332 -13.9688 Td +(su)Tj +/R14 1 Tf +0.1 0 0 -0.1 48.1 47.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 56.7516 47.2031 Tm +[(i)1(ci)1(e)1(nt)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.238 47.2031 Tm +[(massi)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.809 47.2031 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.621 47.2031 Tm +[(l)1(ay)1(e)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 207.48 47.2031 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.773 47.2031 Tm +[(fool)0.998942(proof)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.813 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 47.2031 Tm +[(re)1(ci)0.998942(pe)1<739769>0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.531 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.344 47.2031 Tm +[(l)0.998942(i)0.998942(ngui)1(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.535 47.2031 Tm +[( )1(t)1(e)1(rms )1(,)1( )1(t)1(hat)1( )1(se)1(mant)0.996908(i)1(cs )1]TJ +-379.188 -13.9688 Td +[(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 48.1563 33.2344 Tm +[(not)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.9102 33.2344 Tm +[( )1(e)1(l)1(se)1( )1(but)1( )1(\( )1(more)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.535 33.2344 Tm +[(e)1(l)1(aborat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.352 33.2344 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.66 33.2344 Tm +[(sy)1(nt)1(ax)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.07 33.2344 Tm +[( )0.998942(.)0.998942( )0.998942(As )0.998942(l)1(ong )0.998942(as )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.566 33.2344 Tm +[(A.)0.998942(I)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.789 33.2344 Tm +[( )0.998942(.)0.998942( )1(fai)1(l)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.336 33.2344 Tm +[(de)0.996908(l)1(i)1(v)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.414 33.2344 Tm +[( )1(t)1(hi)0.996908(s )1.00505]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Page: (2) 3 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +2.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 1191.000000 0 rlineto 0 1684.000000 rlineto -1191.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +20 0 obj +<> +/Contents 21 0 R +>> +endobj +%%EndPageSetup +21 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +(proof)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.6563 801.516 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.566 801.516 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 113 801.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 121.594 801.516 Tm +[(e)1(re)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.102 801.516 Tm +[( )1(be)1(t)1(w)1(e)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.539 801.516 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.195 801.516 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.43 801.516 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.824 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.637 801.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.934 801.516 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-441.586 -13.9688 Td +[(cont)1(i)1(nue)1(s )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.074 787.547 Tm +[(e)1(x)1(i)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.762 787.547 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.582 787.547 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.652 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.465 787.547 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.496 787.547 Tm +[( )0.998942(t)1(hrough )1(comput)0.998942(e)1(rs )0.996908(re)1(mai)0.996908(ns )1(re)0.996908(st)1.00505(rai)0.996908(ne)1(d )0.996908]TJ +-271.148 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 773.578 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9805 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.7969 773.578 Tm +[(st)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.762 773.578 Tm +[( )1(mani)1(pul)1(at)1(i)1(ons )1(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.262 773.578 Tm +[(fact)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.398 773.578 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(aft)1(e)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.625 773.578 Tm +[(i)0.998942(ni)0.998942(t)1(i)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.684 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 773.578 Tm +[(e)1(nt)0.998942(husi)0.996908(asm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.293 773.578 Tm +[( )1(has )1(made)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.094 773.578 Tm +[(many)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.137 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +[(e)1(x)1(pe)1(ri)1(me)1(nt)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.598 759.609 Tm +[( )1(poe)1(t)1(s )1(si)1(nce)1( )1(t)1(he)0.998942( )0.998942(1950s )1.00301(abandon )1(t)0.998942(he)1(i)0.998942(r )1(e)1(x)0.998942(pe)1(ri)0.998942(me)1(nt)1(s )1(w)1.00505(i)0.996908(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.469 759.609 Tm +[(comput)1(e)1(r-)0.996908]TJ +-419.121 -13.9688 Td +[(ge)1(ne)1(rat)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.457 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.27 745.641 Tm +[(t)1(e)1(x)1(t)1(s.)1(7)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.391 745.641 Tm +[( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.855 745.641 Tm +[(hi)1(st)1(ory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.141 745.641 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.438 745.641 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.242 745.641 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.867 745.641 Tm +[(ri)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.891 745.641 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(confusi)0.996908(ons )1(of )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.426 745.641 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.199 745.641 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 731.672 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.535 731.672 Tm +[( )1(l)1(anguage)1.00199(s )1(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.398 731.672 Tm +[(fal)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.094 731.672 Tm +[( )0.998942(hope)1(s )1(and )0.998942(promi)1(se)1(s )0.998942(t)1(hat)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.43 731.672 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.203 731.672 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-426.855 -13.9688 Td +[(w)1(oul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.9063 717.703 Tm +[(be)1(come)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.113 717.703 Tm +[( )1(more)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.184 717.703 Tm +[(l)1(i)1(k)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.234 717.703 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.047 717.703 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.703 717.703 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.52 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.238 717.703 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Among )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.684 717.703 Tm +[(unre)0.996908(al)0.996908(i)1(z)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.914 717.703 Tm +[( )1(hope)1(s )1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 703.734 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 55.9 703.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 63.8676 703.734 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.4531 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2656 703.734 Tm +[(i)1(nt)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.605 703.734 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 172.047 703.734 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.582 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.395 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.121 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.934 703.734 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.578 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.395 703.734 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.582 703.734 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(i)1(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.504 703.734 Tm +[(promi)0.996908(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.625 703.734 Tm +[( )1(of )1(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.617 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.75 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(i)1(nt)1(ui)1(t)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8438 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6563 689.766 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 689.766 Tm +[( )1(or )1(,)1( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.871 689.766 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.859 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.676 689.766 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.027 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.844 689.766 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.305 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.117 689.766 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.934 689.766 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.746 689.766 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.906 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 246.719 689.766 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.758 689.766 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.203 689.766 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.336 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.152 689.766 Tm +[(humane)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.973 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.785 689.766 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.43 689.766 Tm +[( )0.998942(,)1( )1<9420>1(8 )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.652 689.766 Tm +(major)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.867 689.766 Tm +[( )1(curre)0.996908(nt)1(s )1]TJ +-464.52 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 675.797 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6797 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.4961 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.207 675.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.652 675.797 Tm +[(D)1(i)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.445 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.258 675.797 Tm +[(i)1(nst)1(al)1(l)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.402 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.219 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.93 675.797 Tm +[( )0.998942(t)1(y)0.998942(pi)1(cal)0.998942(l)0.998942(y)1( )0.998942(mi)0.998942(spe)1(rce)1(i)0.998942(v)1(e)0.998942(s )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.051 675.797 Tm +[(programme)0.992839(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.809 675.797 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(be)1(hav)1(i)1(ori)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.41 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.223 661.828 Tm +[(bl)1(ack)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.891 661.828 Tm +[( )1(box)1(e)1(s )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.578 661.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.715 661.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.527 661.828 Tm +[(i)0.998942(nt)1(e)0.998942(ract)1(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.172 661.828 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.613 661.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.75 661.828 Tm +[( )0.998942(and )1(some)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.621 661.828 Tm +[(di)0.998942(gi)1(t)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.473 661.828 Tm +[( )0.998942(art)1(i)1(st)1(s )1(are)1( )1(caught)0.996908( )1(i)1(n )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(mi)1(sconce)1(pt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.512 647.859 Tm +[( )1(t)1(hat)1( )1(t)1(he)1(y)1( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.332 647.859 Tm +[(ov)1(e)0.998942(rcome)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.602 647.859 Tm +[( )0.998942(w)1(hat)0.998942( )0.998942(t)1(he)1(y)0.998942( )1(se)0.998942(e)1( )0.998942(as )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.223 647.859 Tm +[(W)83.0119(e)1(st)1(e)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.227 647.859 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.039 647.859 Tm +[(mal)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.512 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.328 647.859 Tm +[(bi)0.996908(nari)0.996908(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.84 647.859 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 633.891 Tm +[( )1(l)1(anguage)1.00199(s )1(by)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.871 633.891 Tm +[(re)1(shapi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.68 633.891 Tm +[( )0.998942(t)1(he)0.998942(m )1(aft)0.998942(e)0.998942(r )1(romant)1(i)0.998942(ci)0.998942(z)1(e)0.998942(d )1(i)0.998942(mage)0.996908(s )1.00505(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.379 633.891 Tm +[(i)1(ndi)0.992839(ge)1(nous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 633.891 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 619.922 Tm +[( )1(l)1(anguage)1.00199(s )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.199 619.922 Tm +[(di)1(gi)1(t)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.051 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.867 619.922 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.262 619.922 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.855 619.922 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.473 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.289 619.922 Tm +[(machi)0.998942(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.938 619.922 Tm +[( )1(t)1(hat)1( )1(comput)1(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 605.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.898 605.953 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.965 605.953 Tm +[( )1(and )1(proce)1(sse)1(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.016 605.953 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.797 605.953 Tm +[( )0.998942(sy)1(mbol)0.998942(s )1(;)1( )1(i)0.996908(t)1( )1.00505(t)1(re)0.996908(at)1.00505(s )1(al)0.996908(l)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.23 605.953 Tm +[(dat)1<6197>]TJ +-449.883 -13.9688 Td +[(i)1(ncl)1(udi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.1289 591.984 Tm +[( )1(i)1(mage)1(s )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.449 591.984 Tm +(sounds\227as)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.441 591.984 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.258 591.984 Tm +[(t)0.998942(e)1(x)0.998942(t)1(ual)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.492 591.984 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hat)1( )0.998942(i)0.998942(s )0.998942(,)0.998942( )1(as )0.998942(chunk)1(s )0.998942(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.473 591.984 Tm +[(code)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.883 591.984 Tm +[( )1(sy)1(mbol)0.996908(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(Ne)1(l)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.8984 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.7109 578.016 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.691 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.504 578.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.32 578.016 Tm +[( )1(s )1(cri)1(t)1(e)1(ri)1(a )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.348 578.016 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.266 578.016 Tm +[( )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.207 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.34 578.016 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.156 578.016 Tm +[(di)0.998942(sjunct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.555 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.367 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.504 578.016 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.695 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.832 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.645 578.016 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.805 578.016 Tm +[( )1(,)1( )1<9420>1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.973 578.016 Tm +[(consi)1(st)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.871 578.016 Tm +[( )1]TJ +-512.523 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 564.047 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.551 564.047 Tm +[(si)1(ngl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.898 564.047 Tm +[( )1(e)1(nt)1(i)1(t)1(i)1(e)1(s )1(t)1(hat)0.998942( )1(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 235.6 564 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 244.19 564.047 Tm +[(e)1(r )0.998942(from )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.57 564.047 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.184 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.91 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.723 564.047 Tm +[(si)0.998942(ngl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.07 564.047 Tm +[( )1(e)1(nt)1(i)0.996908(t)1.00505(i)0.996908(e)1(s )1(,)1( )1(al)1(so )1.00505(appl)0.992839(i)1(e)1(s )1]TJ +-388.723 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 550.078 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.0625 550.078 Tm +[( )1]TJ +/R14 1 Tf +0.1 0 0 -0.1 92.9 550 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 100.858 550.078 Tm +[(l)1(e)1(s.)1(9 )1(T)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.102 550.078 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.711 550.078 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.008 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.141 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.957 550.078 Tm +[(di)0.998942(gi)1(t)0.998942(i)0.998942(z)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.746 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.559 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.695 550.078 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.18 550.078 Tm +[(st)1(ruct)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.734 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.551 550.078 Tm +[(anal)0.996908(og)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.332 550.078 Tm +[( )1(dat)1(a )1(as )1]TJ +-450.984 -13.9688 Td +[(numbe)1(rs )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.055 536.109 Tm +[(st)1(ore)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.098 536.109 Tm +[( )1(t)1(he)1(m )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.883 536.109 Tm +[(nume)1(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.109 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.922 536.109 Tm +[(t)0.998942(e)1(x)0.998942(t)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.594 536.109 Tm +[( )0.998942(compose)1(d )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.875 536.109 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 536.109 Tm +[( )1(part)1(s )1(.)1( )1(Al)1(l)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.004 536.109 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.398 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 522.141 Tm +[( )1(cont)1(rol)1(s )1(are)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.145 522.141 Tm +[(l)1(i)1(ngui)1.00199(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.336 522.141 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.152 522.141 Tm +[(re)1(gardl)1(e)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.5 522.141 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1(i)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.836 522.141 Tm +[(pe)1(rce)1(i)0.998942(v)1(abl)0.998942(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.57 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.383 522.141 Tm +[(shape)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.207 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(al)1(phanume)1(ri)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.129 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.941 508.172 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.859 508.172 Tm +[( )1(,)1( )1(graphi)1(cs)-317.985(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.445 508.172 Tm +(sound)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.965 508.172 Tm +[( )0.998942(si)1(gnal)0.998942(s )0.998942(,)1( )0.998942(or )0.998942(w)1(hat)0.998942(e)1(v)1(e)0.996908(r )1(e)1(l)0.996908(se)1( )1(.)1.00505( )1(T)0.996908(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.355 508.172 Tm +[(U)1(ni)0.996908(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.805 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.6133 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.4297 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.563 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.379 494.203 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.492 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 128.3 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 136.3 494.203 Tm +[(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.25 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.066 494.203 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.199 494.203 Tm +[( )1(i)1(s )1(ope)1(rat)1(i)0.998942(onal)0.998942(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.762 494.203 Tm +[(i)0.998942(de)1(nt)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.484 494.203 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.16 494.203 Tm +[(draggi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.344 494.203 Tm +[( )0.998942(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 413.6 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 421.617 494.203 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.566 494.203 Tm +[( )1(i)1(nt)0.996908(o )1.00505(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.277 494.203 Tm +[(t)1(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 540.48 494.203 Tm +[( )1(on )1]TJ +-506.133 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 480.234 Tm +[(de)1(sk)1(t)1(op)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.2578 480.234 Tm +[( )1(.)1( )1(B)1(ot)0.998942(h )1(are)1( )1(just)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.16 480.234 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 198.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 207.188 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.695 480.234 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.871 480.234 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.664 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.477 480.234 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.988 480.234 Tm +[( )1(,)1( )1(just)1.00505( )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(al)1(phabe)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.0664 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.883 466.266 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.949 466.266 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.145 466.266 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.742 466.266 Tm +[( )0.998942(be)1(e)1(ps )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.902 466.266 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 304.3 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 312.93 466.266 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.438 466.266 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.613 466.266 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.406 466.266 Tm +[( )1]TJ +-457.059 -13.9688 Td +[(charact)1(e)1(rs )1(.)1( )1(As )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.43 452.297 Tm +[(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.051 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.863 452.297 Tm +[(handl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.098 452.297 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.902 452.297 Tm +[(e)1(ncodi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.605 452.297 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.547 452.297 Tm +[(e)1(nabl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.152 452.297 Tm +[( )1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.742 452.297 Tm +[(re)1(st)1(rai)0.996908(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.02 452.297 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.832 452.297 Tm +[(ce)1(rt)1(ai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.934 452.297 Tm +[( )1(use)1(s )1]TJ +-487.586 -13.9688 Td +[(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.293 438.328 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.363 438.328 Tm +[( )1(.)1( )1(In )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.449 438.328 Tm +[(re)1(spe)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.773 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 275 438.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 283.649 438.328 Tm +[(e)1(re)1(nce)0.998942(s )1(be)1(t)0.998942(w)1(e)0.998942(e)1(n)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.813 438.328 Tm +[(i)0.998942(de)1(ographi)0.996908(c-)1(pi)0.996908(ct)1.00505(ori)0.996908(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.109 438.328 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(abst)1(ract)1(-)1(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.27 424.359 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.086 424.359 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.742 424.359 Tm +[( )1(l)0.998942(anguage)1.00301(s )0.998942(al)0.998942(so )1(appl)0.998942(y)1( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.598 424.359 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.992 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.805 424.359 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.102 424.359 Tm +[( )1(l)1(anguage)0.992839(s )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(P)1(i)1(ct)1(ori)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.5938 410.391 Tm +[( )1(sy)1(mbol)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.441 410.391 Tm +[(si)1(mpl)1(i)1(fy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.207 410.391 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.504 410.391 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(t)1(hrough )1(pre)1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 395 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 403.02 410.391 Tm +[(ne)0.996908(d )1(obje)1(ct)1.00505(s )1(and )1]TJ +-368.672 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(,)1( )1(but)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.508 396.422 Tm +[(mak)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.414 396.422 Tm +[( )1(i)1(t)1( )1(more)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.957 396.422 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 230.4 396.4 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 238.985 396.422 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 396.422 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 396.422 Tm +[(l)0.998942(i)0.998942(nk)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.301 396.422 Tm +[( )0.998942(t)1(he)0.998942(m )1(t)0.998942(hrough )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.395 396.422 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.617 396.422 Tm +[( )1(and )0.996908(t)1.00505(hus )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(e)1(x)1(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.0508 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8672 382.453 Tm +[(cust)1(om)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.898 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.828 382.453 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.348 382.453 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.258 382.453 Tm +[(pi)0.998942(ct)1(ogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.496 382.453 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.758 382.453 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.699 382.453 Tm +[( )0.998942(i)0.998942(s )1(e)1(asi)0.996908(e)1(r )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.09 382.453 Tm +[(unde)0.996908(rst)1(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.613 382.453 Tm +[( )1]TJ +-502.266 -13.9688 Td +[(t)1(han )1(t)1(he)1( )1(l)1(e)1(t)1(t)1(e)1(rs )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.457 368.484 Tm +[(h-)1(o-)1(u-)1(s-)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.617 368.484 Tm +[( )1(,)1( )1(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.527 368.484 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.32 368.484 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.945 368.484 Tm +[(t)0.998942(rue)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.332 368.484 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.832 368.484 Tm +[(t)0.998942(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.035 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.848 368.484 Tm +[(i)0.998942(con)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.359 368.484 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.555 368.484 Tm +[(compari)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.402 368.484 Tm +[( )1(t)1(o )1.00505(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 354.516 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 354.516 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.4102 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.2266 354.516 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3594 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.1758 354.516 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 354.516 Tm +[( )1(.)1( )1(B)1(ut)1( )1(i)1(t)1( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.355 354.516 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 208.8 354.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 217.384 354.516 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.348 354.516 Tm +[( )0.998942(t)1(o )0.998942(pre)1(ci)0.998942(se)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.793 354.516 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 354.516 Tm +[( )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.777 354.516 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.289 354.516 Tm +[( )1<9320>1(If )0.996908(I )1(am )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.953 354.516 Tm +[(home)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.387 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(t)1(omorrow)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.9648 340.547 Tm +[( )1(at)0.998942( )1(si)1(x)1( )1(,)1( )1(I )1(w)1(i)1(l)1(l)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.934 340.547 Tm +[(cl)1(e)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.477 340.547 Tm +[( )0.998942(up )1(e)0.998942(v)1(e)1(ry)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.828 340.547 Tm +[(se)1(cond)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.441 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.258 340.547 Tm +(room)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.82 340.547 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.484 340.547 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.426 340.547 Tm +[( )1<9420>1(t)1(hrough )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.621 340.547 Tm +[(se)1(ri)0.996908(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.715 340.547 Tm +[( )1(of )1]TJ +-504.367 -13.9688 Td +[(pi)1(ct)1(ograms )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.188 326.578 Tm +[(Abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.949 326.578 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.391 326.578 Tm +[(grammat)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.25 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.063 326.578 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.852 326.578 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )1(are)1( )1(more)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.77 326.578 Tm +[(sui)0.996908(t)1(abl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.094 326.578 Tm +[( )1(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 312.609 Tm +[(compl)1(e)1(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.0586 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.875 312.609 Tm +[(comput)1(at)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.191 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.004 312.609 Tm +[(i)1(nst)1(ruct)1(i)0.998942(ons.)0.998942(10)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.594 312.609 Tm +[( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.055 312.609 Tm +[(ut)1(opi)0.998942(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.504 312.609 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.77 312.609 Tm +[(uni)0.998942(v)1(e)1(rsal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.832 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.645 312.609 Tm +[(pi)0.996908(ct)1.00505(ori)1(al)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 481.5 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.313 312.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.707 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.457 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.523 298.641 Tm +[( )1(\( )1(w)1(i)1(t)1(h )1(i)1(cons )0.998942(,)0.998942( )1(w)0.998942(i)0.998942(ndow)1(s )0.998942(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.418 298.641 Tm +[(poi)0.998942(nt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.551 298.641 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(\) )0.996908(i)1(s )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.125 298.641 Tm +[(re)1(e)0.996908(nact)1.00505(me)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.523 298.641 Tm +[( )1(of )1]TJ +-507.176 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 284.672 Tm +[(ri)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.6484 284.672 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.84 284.672 Tm +[(e)1(v)1(e)1(nt)1(ual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.094 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.91 284.672 Tm +[(fal)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.18 284.672 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.477 284.672 Tm +[(uni)0.998942(v)1(e)1(rsal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.539 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.352 284.672 Tm +[(pi)0.998942(ct)1(ori)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.207 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.02 284.672 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.09 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.902 284.672 Tm +[(ut)1(opi)0.996908(as)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.512 284.672 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.172 284.672 Tm +[(R)0.996908(e)1(nai)0.996908(ssance)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.051 284.672 Tm +[( )1(,)1( )1]TJ +-508.703 -13.9688 Td +[(from )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 270.703 Tm +[(T)79.0116(ommaso)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.535 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.348 270.703 Tm +[(Campane)1.00199(l)1(l)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.559 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.375 270.703 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.188 270.703 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.977 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.109 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.926 270.703 Tm +[(Ci)0.998942(t)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.742 270.703 Tm +[( )0.998942(de)1(l)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.992 270.703 Tm +[(sol)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.316 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.129 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.266 270.703 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.941 270.703 Tm +[(Come)1(ni)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.281 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.094 270.703 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.91 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.723 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.859 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.672 270.703 Tm +[(O)1(rbi)0.992839(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.926 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.738 270.703 Tm +[(pi)0.996908(ct)1.00505(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.688 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.504 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 507.637 270.703 Tm +[( )1<97>]TJ +-473.289 -13.9688 Td +[(al)1(t)1(hough )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.535 256.734 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.387 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.199 256.734 Tm +[(proje)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.207 256.734 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.504 256.734 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.457 256.734 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.27 256.734 Tm +[(onl)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.84 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.656 256.734 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.305 256.734 Tm +[( )0.998942(ope)1(rat)1(i)1(ons )1(i)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.984 256.734 Tm +[(pi)0.996908(ct)1.00505(ograms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 535.383 256.734 Tm +[( )1]TJ +-501.035 -13.9688 Td +[(w)1(as )1(l)1(e)1(ss)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.8164 242.766 Tm +[(ambi)1(t)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.641 242.766 Tm +[( )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.73 242.766 Tm +[(conv)1(e)0.998942(rse)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.281 242.766 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.957 242.766 Tm +[(ut)1(opi)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.137 242.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.949 242.766 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.02 242.766 Tm +[( )0.998942(de)1(si)0.998942(gns )1.00505(occurs )1(w)1.00505(he)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.742 242.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 560.137 242.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 228.797 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 228.797 Tm +[( )1(l)1(anguage)1.00199(s )1(ge)1(t)1( )1(appropri)1(at)1(e)1(d )0.998942(and )0.998942(use)1.00301(d )0.998942(i)0.998942(nformal)0.998942(l)0.998942(y)1( )0.998942(i)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.242 228.797 Tm +[(e)1(v)0.998942(e)1(ry)0.996908(day)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.355 228.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.168 228.797 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.844 228.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 214.828 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.5117 214.828 Tm +[(Sw)1(i)1(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.105 214.828 Tm +[( )1(t)1(e)1(l)1(l)1(s )1(how)1( )1(sci)1(e)0.998942(nt)1(i)0.998942(st)1(s )0.998942(on )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R23 1 Tf +0.1 0 0 -0.1 289.9 214.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 297.918 214.828 Tm +[(y)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.957 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.773 214.828 Tm +[(i)0.998942(sl)0.998942(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.172 214.828 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.465 214.828 Tm +(Lagado)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.332 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.145 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.281 214.828 Tm +[( )1(w)1(oul)1(d )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 200.859 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.3711 200.859 Tm +[( )1(,)1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.8125 200.859 Tm +[(prai)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.484 200.859 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.766 200.859 Tm +[(be)1(aut)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.031 200.859 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.297 200.859 Tm +[(w)0.998942(oman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.055 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(any)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.75 200.859 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.363 200.859 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.176 200.859 Tm +[(ani)0.998942(mal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.27 200.859 Tm +[( )1(.)1(.)1(.)1( )1(by)0.996908( )1(rhombs )1(,)1( )1(ci)1(rcl)0.996908(e)1(s )1(,)1( )1.00505]TJ +-373.922 -13.9688 Td +[(paral)1(l)1(e)1(l)1(ograms )1(,)1( )1(e)1(l)1(l)1(i)1(pse)1(s )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.004 186.891 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.617 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.43 186.891 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.566 186.891 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.379 186.891 Tm +[(ge)1(ome)1(t)0.998942(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.977 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.793 186.891 Tm +[(t)0.998942(e)1(rms.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.805 186.891 Tm +[( )0.998942<9420>1(11 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.652 186.891 Tm +[(Li)1(k)1(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.199 186.891 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.645 186.891 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.133 186.891 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 172.922 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.266 172.922 Tm +[(poe)1(t)0.998942(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.609 172.922 Tm +[( )0.998942(w)1(hi)0.998942(ch )0.998942(,)0.998942( )0.998942(unl)1(i)0.998942(k)0.998942(e)1( )0.998942(most)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.875 172.922 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.836 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.648 172.922 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.996 172.922 Tm +[( )1(,)1( )1(w)1(ri)1(t)1(e)1(s )1(i)1(t)1(s)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.9414 158.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.7539 158.953 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.426 158.953 Tm +[( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.832 158.953 Tm +[(poe)1(t)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.215 158.953 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.027 158.953 Tm +[(w)0.998942(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.531 158.953 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(crossbre)1.00301(e)1(ds )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.023 158.953 Tm +[(cy)1(be)0.998942(rne)1(t)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.254 158.953 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.543 158.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.199 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.016 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.734 158.953 Tm +[( )1]TJ +-525.387 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)1(he)1(se)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.926 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.059 144.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.875 144.984 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.602 144.984 Tm +[( )1(poe)1(ms )0.998942<9420>1(or )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.5 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.637 144.984 Tm +[( )0.998942(code)1(w)0.998942(ork)1(s )0.998942<9420>1(oft)0.998942(e)1(n )0.998942(pl)0.998942(ay)0.996908( )1.00505(w)1(i)0.996908(t)1.00505(h )0.996908(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.945 144.984 Tm +[(i)1(nt)0.996908(e)1(rfe)1(re)0.996908(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.105 144.984 Tm +[( )1]TJ +-508.758 -13.9688 Td +[(be)1(t)1(w)1(e)1(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9688 131.016 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.688 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.504 131.016 Tm +[(age)1(ncy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.668 131.016 Tm +[( )1(and )1(programme)1.00301(d )0.998942(proce)1(sse)1(s )1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.668 131.016 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.063 131.016 Tm +[( )1(ne)0.996908(t)1.00505(w)1(ork)1(s )1.00505(.)1( )1(In )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 117.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 117.047 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.969 117.047 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.363 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.18 117.047 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.547 117.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.992 117.047 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.125 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.941 117.047 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.668 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.484 117.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.617 117.047 Tm +[( )0.998942(i)0.998942(s )1(oft)0.996908(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.375 117.047 Tm +[(unde)0.996908(rst)1(ood)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 117.047 Tm +[( )1(e)1(i)0.996908(t)1.00505(he)0.996908(r )1(as )1]TJ +-465.117 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 103.078 Tm +[(sy)1(nony)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0938 103.078 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.387 103.078 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.781 103.078 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.598 103.078 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.816 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.633 103.078 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.699 103.078 Tm +[( )0.998942(or )1(as )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.387 103.078 Tm +[(t)0.998942(e)1(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.898 103.078 Tm +[( )0.998942(w)1(ri)1(t)1(t)1(e)1(n )1(i)0.996908(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.23 103.078 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.566 103.078 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 89.1094 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 89.1094 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.402 89.1094 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.254 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.066 89.1094 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.891 89.1094 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.652 89.1094 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.691 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.508 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.641 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.457 89.1094 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.184 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.133 89.1094 Tm +[( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 357.3 89.1 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 365.965 89.1094 Tm +[(e)1(rs )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.867 89.1094 Tm +[(t)1(radi)0.996908(t)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.703 89.1094 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 75.1406 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.633 75.1406 Tm +[(cry)1(pt)1(ographi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.137 75.1406 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.953 75.1406 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.52 75.1406 Tm +[( )0.998942(of)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.813 75.1406 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.543 75.1406 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.453 75.1406 Tm +[(se)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.535 75.1406 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.828 75.1406 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.602 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.418 75.1406 Tm +[(t)1(ransformat)0.996908(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.566 75.1406 Tm +[( )1]TJ +-493.219 -13.9688 Td +[(rul)1(e)1(s )1(t)1(hat)1( )1(t)1(ranscri)1(be)1( )1(one)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.426 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.48 61.1719 Tm +[( )0.998942(of )0.998942(sy)1(mbol)0.998942(s )1(t)0.998942(o )0.998942(anot)1(he)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.98 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.031 61.1719 Tm +[( )0.998942(of )1(sy)1(mbol)0.996908(s )1(,)1( )1(for )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.207 61.1719 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.23 61.1719 Tm +[( )1(,)1( )1]TJ +-518.883 -13.9688 Td +[(w)1(ri)1(t)1(t)1(e)1(n )1(l)1(e)1(t)1(t)1(e)1(rs )1(i)1(nt)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.305 47.2031 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.902 47.2031 Tm +[( )1(be)1(e)1(ps )0.998942(.)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.535 47.2031 Tm +[(t)0.998942(ransl)1(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.738 47.2031 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(occurs )1(w)1(he)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.613 47.2031 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.125 47.2031 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 33.2344 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 33.2344 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 33.2344 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 33.2344 Tm +[( )1(ge)1(t)1(s )0.998942(compi)0.998942(l)0.998942(e)1(d )0.998942(i)0.998942(nt)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.551 33.2344 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.199 33.2344 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(i)1(s )1(not)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.43 33.2344 Tm +[(e)1(ncodi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.137 33.2344 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Page: (3) 4 +userdict/PStoPSsaved save put +PStoPSmatrix setmatrix +2.000000 dup scale +userdict/PStoPSmatrix matrix currentmatrix put +userdict/PStoPSclip{0 0 moveto + 1191.000000 0 rlineto 0 1684.000000 rlineto -1191.000000 0 rlineto + closepath}put initclip +PStoPSxform concat +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +25 0 obj +<> +/Contents 26 0 R +>> +endobj +%%EndPageSetup +26 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.707 801.516 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.957 801.516 Tm +[( )1(be)1(cause)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.699 801.516 Tm +[(proce)0.998942(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.48 801.516 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.695 801.516 Tm +[(one)1(t)0.998942(o-)1(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.906 801.516 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.719 801.516 Tm +[(re)1(v)1(e)1(rsi)0.998942(bl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.793 801.516 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(hi)0.996908(s )1(i)1(s )1(w)1(hy)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.184 801.516 Tm +[(propri)0.996908(e)1(t)1(ary)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.676 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 787.547 Tm +[( )1(compani)1(e)1(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.289 787.547 Tm +[(k)1(e)1(e)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.445 787.547 Tm +[( )0.998942(t)1(he)0.998942(i)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.301 787.547 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.973 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.785 787.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.922 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.734 787.547 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.465 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.277 787.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.414 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.227 787.547 Tm +[(se)1(cre)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.867 787.547 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.996908(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.5 787.547 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.164 787.547 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 773.578 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.121 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.938 773.578 Tm +[(unde)1(rst)1(andi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.707 773.578 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 256 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.137 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 773.578 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.68 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.492 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.629 773.578 Tm +[( )0.998942(i)0.998942(s )1(hi)0.998942(st)1(ori)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(de)1(ri)1(v)0.996908(e)1(d )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.539 773.578 Tm +[(name)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.902 773.578 Tm +[( )1(of )1]TJ +-498.555 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 57.8 759.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 65.8043 759.609 Tm +[(rst)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.5352 759.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.3477 759.609 Tm +[(hi)1(gh-)1(l)1(e)1(v)1(e)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.039 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.852 759.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.246 759.609 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.063 759.609 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.281 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.098 759.609 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.164 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.609 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.742 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.559 759.609 Tm +[(Short)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.289 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.105 759.609 Tm +[(Code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.109 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.242 759.609 Tm +[( )1(from )1(1950.)0.992839(12 )1]TJ +-420.895 -13.9688 Td +[(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.9961 745.641 Tm +[(onl)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5664 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.3789 745.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.602 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.414 745.641 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.484 745.641 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.418 745.641 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.148 745.641 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.809 745.641 Tm +[(ori)1(gi)0.998942(nal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.848 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.664 745.641 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.91 745.641 Tm +[( )1(i)1(s )1(asse)1(mbl)0.996908(y)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 125.324 731.672 Tm +[(human-)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.098 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.914 731.672 Tm +[(re)1(adabl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.363 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.176 731.672 Tm +[(mne)1(moni)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.277 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.09 731.672 Tm +[(one)1(-)1(t)0.998942(o-)1(one)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.355 731.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.172 731.672 Tm +[(re)1(pre)1(se)1(nt)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.105 731.672 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.402 731.672 Tm +[(proce)1(ssor)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.145 731.672 Tm +[( )1]TJ +-501.797 -13.9688 Td +[(i)1(nst)1(ruct)1(i)1(ons )1(.)1( )1(Conv)1(e)1(rse)1(l)1(y)1( )1(,)1( )1(t)1(hose)1( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.953 717.703 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.734 717.703 Tm +[( )0.998942(code)1(d )0.998942(back)1( )1(,)1( )1.00505(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.82 717.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.957 717.703 Tm +[( )1(di)0.996908(sasse)1(mbl)0.996908(e)1(d )1(,)1( )1]TJ +-423.609 -13.9688 Td +[<9420>1(i)1(nt)1(o )1(asse)1(mbl)1(y)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.789 703.734 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.855 703.734 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.301 703.734 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.273 703.734 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.184 703.734 Tm +[(w)0.998942(hol)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.348 703.734 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(onl)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.945 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.082 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.895 703.734 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.625 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 435.438 703.734 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.574 703.734 Tm +[( )1(but)0.996908( )1.00505(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.402 703.734 Tm +[(sy)0.996908(mbol)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.023 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +(form)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.1289 689.766 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 689.766 Tm +[(i)1(nv)1(ol)1(v)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.379 689.766 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.191 689.766 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.758 689.766 Tm +[( )1(pract)1(i)0.998942(ce)1(s )0.998942(of )0.998942(i)0.998942(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.434 689.766 Tm +[(e)1(mpl)0.998942(oy)1(me)0.998942(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.469 689.766 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.664 689.766 Tm +[(appropri)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.164 689.766 Tm +[( )1(.)1( )1(B)1(ut)1( )1(si)1(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 675.797 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.2617 675.797 Tm +[( )1(i)1(n )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.426 675.797 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.82 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.637 675.797 Tm +[(cont)1(rol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.93 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.746 675.797 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.813 675.797 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(hat)1( )0.998942(mat)1(e)0.998942(ri)1(al)0.998942(l)0.998942(y)1( )0.998942(mak)1(e)1(s )1(up )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.789 675.797 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.699 675.797 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.141 675.797 Tm +[(cri)1(t)1(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.809 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(t)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9844 661.828 Tm +[( )1(about)1( )1(comput)1(e)1(rs )1(i)1(s )0.998942(not)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.992 661.828 Tm +[(possi)1(bl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.672 661.828 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(an )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.434 661.828 Tm +[(i)0.998942(nforme)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.566 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.379 661.828 Tm +[(unde)0.996908(rst)1(andi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 503.148 661.828 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(st)1(ruct)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.6055 647.859 Tm +[(formal)1(i)1(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.754 647.859 Tm +[( )1(of )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.684 647.859 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.977 647.859 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Art)1(i)0.998942(st)1(s )0.998942(and )1(act)0.998942(i)1(v)0.996908(i)1(st)1(s )1.00505(si)0.996908(nce)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.789 647.859 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.133 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 633.891 Tm +[( )1(poe)1(t)1(s )1(and )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.957 633.891 Tm +[(M)1(IT)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.988 633.891 Tm +[( )1(hack)1(e)0.998942(rs )1(i)0.998942(n )0.998942(t)1(he)1( )0.998942(1960s )1(hav)1(e)1( )0.998942(show)1(n )0.998942(how)1.00505( )1(t)1(he)1(i)0.996908(r )1(l)0.996908(i)1(mi)0.996908(t)1(at)1.00505(i)0.996908(ons )1(can )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.1289 619.922 Tm +[( )1(e)1(mbrace)1(d )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 619.922 Tm +[(cre)1(at)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.695 619.922 Tm +[( )1(chal)0.998942(l)0.998942(e)1(nge)1(s )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.004 619.922 Tm +[(Li)0.998942(k)0.998942(e)1(w)0.998942(i)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.555 619.922 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.281 619.922 Tm +[(i)0.998942(ncumbe)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.012 619.922 Tm +[( )1(upon )0.996908(cri)1(t)1(i)1(cs )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.512 619.922 Tm +[(re)1]TJ +/R23 1 Tf +0.1 0 0 -0.1 528.3 619.9 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 536.332 619.922 Tm +[(e)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(t)1(he)-317.004(some)1(t)1(i)1(me)1(s )1(more)1( )1(and )1(some)0.998942(t)1(i)0.998942(me)1(s )0.998942(l)0.998942(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.473 605.953 Tm +[(amusi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.141 605.953 Tm +[( )0.998942(const)1(rai)0.998942(nt)1(s )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.238 605.953 Tm +[(game)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.555 605.953 Tm +[( )1(rul)0.996908(e)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 591.984 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 591.984 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 591.984 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(w)1(ri)0.998942(t)1(e)0.998942( )0.998942(i)1(nt)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.719 591.984 Tm +[(cul)0.998942(t)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.395 591.984 Tm +[( )0.998942(.)0.998942( )0.998942(Not)1(e)1(s )0.998942(1 )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.535 591.984 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.141 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.953 591.984 Tm +[(K)27.0142(e)1(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.992 591.984 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.438 591.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.57 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.387 591.984 Tm +[(B)1(e)1(ck)1.00505(e)0.996908(t)1.00505(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.043 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(T)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.1641 578.016 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.6094 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.742 578.016 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.938 578.016 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.543 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.355 578.016 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.395 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.488 578.016 Tm +[(M)0.998942(e)1(chani)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.766 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.582 578.016 Tm +[(M)0.998942(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.855 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(83\226107 )1.00301(.)0.998942( )0.998942(2 )1(.)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.996 578.016 Tm +[(F)56.0099(e)1(rdi)0.996908(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.316 578.016 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.332 564.047 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.777 564.047 Tm +[(Course)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.906 564.047 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.102 564.047 Tm +[(G)1(e)1(ne)1(ral)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.348 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.164 564.047 Tm +[(Li)0.998942(ngui)0.998942(st)1(i)0.998942(cs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.645 564.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.086 564.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.223 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.035 564.047 Tm +[(Chapt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.441 564.047 Tm +[( )0.998942(I )0.998942(:)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.668 564.047 Tm +[(Nat)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.711 564.047 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.473 564.047 Tm +[(Li)1(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.797 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.609 564.047 Tm +[(Si)1(gn.)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.895 564.047 Tm +[( )1]TJ +-520.547 -13.9688 Td +[<9420>1(3 )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.375 550.078 Tm +[(Se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.7969 550.078 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.078 550.078 Tm +[(se)1(ct)0.998942(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.672 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.117 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.25 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.066 550.078 Tm +[(Saussure)1.00301(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.934 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.75 550.078 Tm +[(Si)0.998942(gns)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.375 550.078 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.57 550.078 Tm +[(M)0.998942(at)1(e)0.998942(ri)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.5 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.316 550.078 Tm +[(M)0.998942(at)1(t)0.998942(e)1(rs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.398 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.84 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.977 550.078 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.172 550.078 Tm +[(N)63.9974(.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.719 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.531 550.078 Tm +[(Kat)1.00505(he)0.996908(ri)0.996908(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.707 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 536.109 Tm +[(Hay)1(l)1(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8438 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2852 536.109 Tm +[(M)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.352 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.168 536.109 Tm +[(M)1(ot)1(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.066 536.109 Tm +[( )1(W)88.0015(as )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.27 536.109 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.125 536.109 Tm +[( )0.998942(,)0.998942( )0.998942(42\22645 )1.00301(.)0.998942( )0.998942(4 )1(.)0.998942( )0.998942(F)56.0038(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.074 536.109 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.098 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.539 536.109 Tm +[(St)1.00505(e)0.996908(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.566 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.379 536.109 Tm +[(W)69.0145(oz)1.00505(ni)0.996908(ak)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.438 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.254 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.066 536.109 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.5352 522.141 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.297 522.141 Tm +[(Appl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.266 522.141 Tm +[( )1(I )1(mai)1(nboard )1(w)1(as )0.998942(consi)0.998942(jde)1(re)1(d )1<9320>0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.852 522.141 Tm +[(be)1(aut)1(i)0.998942(ful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.188 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415 522.141 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.504 522.141 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.801 522.141 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.512 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.328 522.141 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.461 522.141 Tm +[( )1(i)1(n )0.996908(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.289 522.141 Tm +[(t)1(i)1(me)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.43 522.141 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(accordi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.832 508.172 Tm +[( )1(t)1(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.508 508.172 Tm +[(St)1(e)1(v)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.262 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.078 508.172 Tm +[(Le)1(v)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.707 508.172 Tm +[( )1(,)1( )1(Insane)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.191 508.172 Tm +[(G)0.998942(re)1(at)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.594 508.172 Tm +[( )0.998942(:)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.914 508.172 Tm +[(Li)0.998942(fe)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.262 508.172 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.457 508.172 Tm +[(T)1(i)0.998942(me)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.938 508.172 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 508.172 Tm +[(M)1(aci)1(nt)0.996908(osh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.895 508.172 Tm +[( )1(,)1( )1(81 )1(.)1( )1(5 )0.996908(.)1.00505( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.0508 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.8672 494.203 Tm +[(W)83.0129(e)1(i)1(z)1(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.258 494.203 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.699 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.836 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.648 494.203 Tm +[(E)1(LIZ)0.998942<419741>]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.789 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.602 494.203 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.457 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.273 494.203 Tm +[(P)1(rogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.258 494.203 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.758 494.203 Tm +[(St)1.00505(udy)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.988 494.203 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.285 494.203 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.219 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 480.234 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 480.234 Tm +[(Communi)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.309 480.234 Tm +[( )1(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.746 480.234 Tm +[(M)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.914 480.234 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.109 480.234 Tm +[(M)0.998942(achi)0.998942(ne)1(.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.48 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.297 480.234 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.43 480.234 Tm +[( )0.998942(6 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.324 480.234 Tm +[(M)1(arsha)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.543 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.355 480.234 Tm +[(P)46.0124(ascual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.645 480.234 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.09 480.234 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.223 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.039 480.234 Tm +[(B)1(l)1(ack)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.84 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(M)1(onday)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.2031 466.266 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.6445 466.266 Tm +[(Cause)1.00199(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.129 466.266 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.32 466.266 Tm +[(E)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 177 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 185.588 466.266 Tm +[(e)1(ct)1(s.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.223 466.266 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.039 466.266 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.172 466.266 Tm +[( )0.998942(7 )1(.)0.998942( )0.998942(Among )0.998942(t)0.998942(he)1(m )0.998942(concre)1(t)1(e)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.375 466.266 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.723 466.266 Tm +[( )1(w)1(ri)1(t)1(e)1(rs )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.645 466.266 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.984 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 452.297 Tm +[( )1(poe)1(t)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.207 452.297 Tm +[(G)1(e)1(rman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.895 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.707 452.297 Tm +[(poe)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.539 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.352 452.297 Tm +(Hans)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.859 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.672 452.297 Tm +[(M)0.998942(agnus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.41 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.227 452.297 Tm +[(E)1(nz)1(e)0.998942(nsbe)1(rge)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.063 452.297 Tm +[( )0.998942(,)1( )1(and )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.352 452.297 Tm +[(Aust)1(ri)0.996908(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.184 452.297 Tm +[( )1(poe)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 438.328 Tm +[(F)56.0117(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.668 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.48 438.328 Tm +[(Schmat)1(z)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.828 438.328 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.023 438.328 Tm +[(F)1(ranz)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.289 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.105 438.328 Tm +[(J)1(ose)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.84 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.656 438.328 Tm +[(Cz)1(e)0.998942(rni)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.293 438.328 Tm +[( )0.998942(.)0.998942( )0.998942(8 )1(.)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.813 438.328 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.168 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.98 438.328 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.441 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.535 438.328 Tm +[(Humane)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.09 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.906 438.328 Tm +[(Int)1(e)0.996908(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.453 438.328 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(Ne)1(w)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.2188 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.0352 424.359 Tm +[(D)1(i)1(re)1(ct)1(i)1(ons)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.824 424.359 Tm +[( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.855 424.359 Tm +[(D)1(e)1(si)1(gni)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.23 424.359 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.047 424.359 Tm +[(Int)0.998942(e)1(ract)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.59 424.359 Tm +[( )0.998942(Sy)1(st)0.998942(e)1(ms )1(.)0.998942( )0.998942(9 )0.998942(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.547 424.359 Tm +[(Accordi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.543 424.359 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.219 424.359 Tm +[(Ne)1(l)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.77 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.586 424.359 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.563 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 38.1602 410.391 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.9492 410.391 Tm +[(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 66.7 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 74.7129 410.391 Tm +[(ni)1(t)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.914 410.391 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.211 410.391 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.125 410.391 Tm +[( )1(i)1(n )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.969 410.391 Tm +[(Language)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.328 410.391 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.621 410.391 Tm +[(Art)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.848 410.391 Tm +[( )0.998942(,)0.998942( )0.998942(143 )1(.)1( )0.998942(10 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.352 410.391 Tm +[(Al)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.738 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.551 410.391 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.449 410.391 Tm +[( )1(,)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.59 410.391 Tm +[(i)1(nv)0.992839(e)1(nt)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.551 410.391 Tm +[( )1(of )1]TJ +-497.203 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 396.422 Tm +[(graphi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.348 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 119.16 396.422 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.887 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.699 396.422 Tm +[(i)1(nt)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.344 396.422 Tm +[( )0.998942(,)0.998942( )0.998942(conce)1(de)1(d )0.998942(i)0.998942(n )0.998942(1990 )1.00301(t)0.998942(hat)1( )0.998942<9320>1(i)0.998942(t)0.998942( )0.998942(w)1(oul)0.998942(d )1(not)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.211 396.422 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.996 396.422 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.809 396.422 Tm +[(surpri)0.992839(si)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.094 396.422 Tm +[( )1(i)1(f )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(v)1(i)1(sual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.8438 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.6563 382.453 Tm +[(sy)1(st)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.055 382.453 Tm +[( )1(w)1(e)1(re)1( )1(l)1(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.965 382.453 Tm +[(abl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.742 382.453 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.297 382.453 Tm +[(are)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 279.445 382.453 Tm +[( )0.998942(t)1(han )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.973 382.453 Tm +[(me)1(chani)0.998942(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 382.453 Tm +[( )1(t)1(hat)1( )1(sol)1(v)1(e)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.234 382.453 Tm +(noun)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.645 382.453 Tm +[( )1(phrase)0.996908(s )1]TJ +-470.297 -13.9688 Td +[(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 55.5625 368.484 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.7266 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.539 368.484 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.609 368.484 Tm +[( )1(.)1( )1(Al)1(t)1(hough )0.998942(i)0.998942(t)1( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.16 368.484 Tm +[(fai)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.328 368.484 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.004 368.484 Tm +[(say)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.098 368.484 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.254 368.484 Tm +[<91>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.066 368.484 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.883 368.484 Tm +[(i)0.998942(coni)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.953 368.484 Tm +[( )1(l)1(anguage)0.992839(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.227 368.484 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.039 368.484 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.855 368.484 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.676 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.492 368.484 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.996 368.484 Tm +[( )1]TJ +-524.648 -13.9688 Td +[<92>1( )1(just)1( )1(be)1(cause)1( )1(no )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.449 354.516 Tm +[(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.504 354.516 Tm +[( )1(has )1.00199(be)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.602 354.516 Tm +[(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.375 354.516 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.051 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.242 354.516 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.023 354.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.836 354.516 Tm +[( )0.998942(one)1( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.434 354.516 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.102 354.516 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 506.723 354.516 Tm +[(abov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.664 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(e)1(x)1(pl)1(anat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.387 340.547 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.012 340.547 Tm +[(cl)1(ose)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.055 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.73 340.547 Tm +[(t)1(rut)1(h.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.383 340.547 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.195 340.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.332 340.547 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.688 340.547 Tm +[(st)1(at)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.531 340.547 Tm +[( )0.998942(quo )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.797 340.547 Tm +(hasn)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.566 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.379 340.547 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.195 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 359.008 340.547 Tm +[(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.832 340.547 Tm +[( )0.998942(change)1(d )1(si)0.996908(nce)1( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.246 340.547 Tm +[(Al)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.633 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.449 340.547 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.348 340.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.789 340.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.926 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 326.578 Tm +[(U)1(se)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.457 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.2695 326.578 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.816 326.578 Tm +[( )1(:)1( )1(A )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.969 326.578 Tm +[(P)46.0144(e)1(rsonal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.445 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.262 326.578 Tm +[(V)17.9952(i)0.998942(e)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.926 326.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.371 326.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.504 326.578 Tm +[( )0.998942(i)0.998942(n )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.328 326.578 Tm +[(B)0.998942(re)1(nda)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.551 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.363 326.578 Tm +[(Laure)1(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.891 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 326.578 Tm +[(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.488 326.578 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.582 326.578 Tm +[(Art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.805 326.578 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.102 326.578 Tm +[(Human-)0.996908]TJ +-425.754 -13.9688 Td +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.2031 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0156 312.609 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.563 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.379 312.609 Tm +[(D)1(e)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.508 312.609 Tm +[( )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.949 312.609 Tm +[(R)1(e)1(adi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.172 312.609 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.844 312.609 Tm +[(Addi)0.998942(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.82 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.637 312.609 Tm +[(W)83.0129(e)1(sl)0.998942(e)1(y)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.969 312.609 Tm +[( )0.998942(,)0.998942( )0.998942(1989 )1.00505(,)1( )1(203 )0.996908(.)1( )1(11 )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.457 312.609 Tm +[(Sw)1.00505(i)0.996908(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.051 312.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 298.641 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.141 298.641 Tm +[(G)1(ul)1(l)1(i)1(v)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.586 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.402 298.641 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.215 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.031 298.641 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.188 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.004 298.641 Tm +[(T)1(rav)1(e)1(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.773 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.219 298.641 Tm +[(P)1(roje)0.998942(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.617 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.434 298.641 Tm +[(G)0.998942(ut)1(e)0.998942(nbe)1(rg)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.602 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.414 298.641 Tm +[(E)1(book)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.578 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.02 298.641 Tm +[(av)1(ai)0.996908(l)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.559 298.641 Tm +[( )1(at)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.164 298.641 Tm +[(ht)1(t)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.219 298.641 Tm +[( )1(:)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.891 298.641 Tm +[(/)1(/)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.977 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 284.672 Tm +[(w)1(w)1(w)120.004(.)1(gut)1(e)1(nbe)1(rg.)1(org)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.273 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.086 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.129 284.672 Tm +[( )1(di)1(rs )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.172 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.215 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.031 284.672 Tm +[(e)1(x)0.998942(t)0.998942(e)1(x)0.998942(t)1(197)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.316 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.133 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.176 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.988 284.672 Tm +[(gl)0.998942(t)1(rv)1(10.)1(t)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.344 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.156 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.199 284.672 Tm +[( )0.998942(.)0.998942( )0.998942(12 )1(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.355 284.672 Tm +[(Se)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.781 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.594 284.672 Tm +[(W)69.0145(ol)1(fgang)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.863 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.68 284.672 Tm +[(Hage)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.809 284.672 Tm +[( )1(,)1( )1<9320>1(T)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(St)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.1094 270.703 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.4023 270.703 Tm +[(Source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.137 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.949 270.703 Tm +[(Code)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.297 270.703 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.742 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.875 270.703 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +PStoPSsaved restore +%%Trailer +end +%%EOF diff --git a/pdf-toolkit/1.ps b/pdf-toolkit/1.ps new file mode 100644 index 0000000..04ad9e8 --- /dev/null +++ b/pdf-toolkit/1.ps @@ -0,0 +1,30129 @@ +%!PS-Adobe-3.0 +%%BoundingBox: 0 0 595 841 +%%HiResBoundingBox: 0 0 595.00 841.00 +%%Creator: GPL Ghostscript 927 (ps2write) +%%LanguageLevel: 2 +%%CreationDate: D:20201028212343+01'00' +%%Pages: 4 +%%EndComments +%%BeginProlog +/DSC_OPDFREAD true def +/SetPageSize true def +/EPS2Write false def +currentdict/DSC_OPDFREAD known{ +currentdict/DSC_OPDFREAD get +}{ +false +}ifelse +10 dict begin +/DSC_OPDFREAD exch def +/this currentdict def +/y 720 def +/ebuf 200 string def +/prnt{ +36//this/y get moveto//ebuf cvs show +//this/y 2 copy get 12 sub put +}bind def +/newline{ +36//this/y get moveto +//this/y 2 copy get 12 sub put +}bind def +errordict/handleerror +{systemdict begin +$error begin +newerror +{(%%[ Error handled by opdfread.ps : )print errorname//ebuf cvs print(; OffendingCommand: ) +print/command load//ebuf cvs print( ]%%)= flush +/newerror false store vmstatus pop pop 0 ne +{grestoreall +}if +errorname(VMerror)ne +{showpage +}if +initgraphics +0 720 moveto +errorname(VMerror)eq +{//this/ehsave known +{clear//this/ehsave get restore 2 vmreclaim +}if +vmstatus exch pop exch pop +} +/Courier 12 selectfont +{ +(ERROR: )//prnt exec errorname//prnt exec +(OFFENDING COMMAND: )//prnt exec +/command load//prnt exec +$error/ostack known{ +(%%[STACK:)= +(STACK:)//prnt exec +$error/ostack get aload length{ +//newline exec +dup mark eq{ +(-mark-)dup = show +}{ +dup type/nametype eq{ +dup xcheck not{ +(/)show +(/)print +}if +}if +dup =//ebuf cvs show +}ifelse +}repeat +}if +}ifelse +(%%]%)= +//systemdict/showpage get exec +quit +}if +end +end +}bind readonly put +end +50 dict begin +/DefaultSwitch +{ +dup where{ +pop pop +}{ +false def +}ifelse +}bind def +/=string 256 string def +/=only{ +//=string cvs print +}bind def +/HexDigits(0123456789ABCDEF)readonly def +/PrintHex +{8{ +dup -28 bitshift 15 and//HexDigits exch 1 getinterval//=only exec +4 bitshift +}repeat +pop +}bind def +/PDFR_DEBUG DefaultSwitch +/PDFR_DUMP DefaultSwitch +/PDFR_STREAM DefaultSwitch +/TTFDEBUG DefaultSwitch +/RotatePages DefaultSwitch +/FitPages DefaultSwitch +/CenterPages DefaultSwitch +/SetPageSize DefaultSwitch +/error +{ +counttomark 1 sub -1 0{ +index dup type/arraytype eq{==}{=only}ifelse +}for +()= +cleartomark +....Undefined +}bind def +//SetPageSize{ +//RotatePages//FitPages or//CenterPages or{ +mark(/RotatePages, /FitPages and CenterPages are not allowed with /SetPageSize)//error exec +}if +} +{ +//FitPages//CenterPages and{ +mark(CenterPages is not allowed with /FitPages)//error exec +}if +} +ifelse +/knownget +{ +2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/IsUpper +{dup(A)0 get ge exch(Z)0 get le and +}bind def +/cpa2g{ +dup length array +0 1 2 index length 1 sub{ +dup 3 index exch get cp2g +3 copy put pop pop +}for +exch pop +}bind def +/cpd2g{ +dup length dict exch{ +cp2g 2 index 3 1 roll put +}forall +}bind def +/cps2g{ +dup length string copy +}bind def +/cp2gprocs +<> +def +/cp2g{ +dup gcheck not{ +dup//cp2gprocs 1 index type +2 copy known{ +get currentglobal 3 1 roll true setglobal exec exch setglobal +1 index wcheck not{readonly}if +1 index xcheck{cvx}if +exch pop +}{ +pop pop +}ifelse +}if +}bind def +/BlockBuffer 65535 string def +/PDFReader currentdict def +/ObjectRegistryMaxLength 50000 def +/ObjectRegistry 10 dict def +ObjectRegistry +begin +0 ObjectRegistryMaxLength dict def +end +/CurrentObject null def +/DoneDocumentStructure false def +/GraphicState 20 dict begin +/InitialTextMatrix matrix def +/InitialMatrix matrix currentmatrix def +currentdict end def +/TempMatrix matrix def +/GraphicStateStack 20 array def +/GraphicStateStackPointer 0 def +/InitialTextMatrixStack 20 array def +/InitialTextMatrixStackPointer 0 def +/PDFColorSpaces 50 dict def +/InstalledFonts 50 dict def +/MacRomanEncodingInverse null def +currentglobal false setglobal +userdict/PDFR_InitialGS gstate put +userdict/PDFR_Patterns 50 dict put +userdict/FuncDataReader 10 dict put +setglobal +/InitialExtGState 20 dict begin +/BG2 currentblackgeneration cp2g def +/UCR2 currentundercolorremoval cp2g def +/TR2 currentglobal false setglobal[currentcolortransfer]exch setglobal cp2g def +/HT currenthalftone cp2g def +currentdict end readonly def +/InitialGraphicState 20 dict begin +/FontSize 0 def +/CharacterSpacing 0 def +/TextLeading 0 def +/TextRenderingMode 0 def +/WordSpacing 0 def +currentdict end readonly def +/SimpleColorSpaceNames 15 dict begin +/DeviceGray true def +/DeviceRGB true def +/DeviceCMYK true def +currentdict end readonly def +/1_24_bitshift_1_sub 1 24 bitshift 1 sub def +/ReadFontProcs 10 dict def +/GetObject +{ +dup ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get exch knownget{ +exch knownget +}{ +pop false +}ifelse +}bind def +/PutObject +{ +1 index ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get 1 index knownget{ +exch pop +3 1 roll put +}{ +//PDFReader/ObjectRegistry get dup +begin +1 index ObjectRegistryMaxLength dict def +end +exch get +3 1 roll put +}ifelse +}bind def +/Register +{ +1 index GetObject{ +dup xcheck{ +4 3 roll pop +//PDFR_DEBUG{ +(Have a daemon for )print 2 index == +}if +exec +}{ +dup null ne{ +mark(The object )4 index(is already defined : )4 index//error exec +}{ +pop +}ifelse +3 2 roll +exec +}ifelse +}{ +3 2 roll +exec +}ifelse +PutObject +}bind def +/IsRegistered +{ +GetObject{ +null ne +}{ +false +}ifelse +}bind def +/GetRegistered +{ +dup GetObject not{ +exch mark exch(Object )exch( isn't defined before needed (1).)//error exec +}if +dup xcheck{ +exch mark exch(Object )exch( isn't defined before needed (2).)//error exec +}{ +dup null eq{ +exch mark exch(Object )exch( isn't defined before needed (3).)//error exec +}if +exch pop +}ifelse +}bind def +/StandardFontNames<< +/Times-Roman true +/Helvetica true +/Courier true +/Symbol true +/Times-Bold true +/Helvetica-Bold true +/Courier-Bold true +/ZapfDingbats true +/Times-Italic true +/Helvetica-Oblique true +/Courier-Oblique true +/Times-BoldItalic true +/Helvetica-BoldOblique true +/Courier-BoldOblique true +>>def +/CleanAllResources +{//PDFR_DEBUG{ +(CleanAllResources beg)= +}if +//PDFReader/ObjectRegistry get{ +dup length 0 exch 1 exch 1 sub{ +2 copy get dup xcheck{ +pop pop +}{ +dup null eq{ +pop pop +}{ +dup type/dicttype eq{/.Global known}{pop false}ifelse{ +pop +}{ +//PDFR_DEBUG{ +(Dropping )print dup = +}if +1 index exch/DroppedObject put +}ifelse +}ifelse +}ifelse +}for +pop +}forall +FontDirectory length dict begin +FontDirectory{ +pop +dup//StandardFontNames exch known not{ +dup null def +}if +pop +}forall +currentdict +end{ +pop +//PDFR_DEBUG{ +(Undefining font )print dup = +}if +undefinefont +}forall +//PDFR_DEBUG{ +(CleanAllResources end)= +}if +}bind def +/PrintReference +{ +//PDFR_DEBUG{ +({ )print +dup{ +=only( )print +}forall +( })= +}if +}bind def +/R +{ +0 ne{ +exch mark exch(A referred object generation )exch( isn't 0.)//error exec +}if +[ +exch//GetRegistered/exec load +]cvx +//PrintReference exec +}bind def +/IsObjRef +{ +dup type/arraytype eq{ +dup length 3 eq{ +dup xcheck exch +dup 0 get type/integertype eq 3 2 roll and exch +dup 1 get//GetRegistered eq 3 2 roll and exch +2 get/exec load eq and +}{ +pop false +}ifelse +}{ +pop false +}ifelse +}bind def +/DoNothing +{ +}def +/RunTypeDaemon +{ +dup type/dicttype eq{ +dup/Type//knownget exec{ +//PDFReader/TypeDaemons get exch +//knownget exec{ +exec +}if +}if +}if +}bind def +/obj +{ +//PDFR_DEBUG{ +(Defining )print 1 index =only( )print dup =only( obj)= +}if +0 ne{ +exch mark exch(An object generation )exch( isn't 0.)//error exec +}if +}bind def +/endobj +{ +//PDFR_DEBUG{ +(endobj )= +}if +count 1 eq{ +pop +}{ +dup type/dicttype eq{ +dup/.endobj_daemon//knownget exec{ +//PDFR_DEBUG{(.endobj_daemon for )print 2 index =}if +exec +}if +}if +dup type/dicttype eq{dup/ImmediateExec known}{false}ifelse{ +pop pop +}{ +//PDFR_DEBUG{ +(Storing )print 1 index = +}if +//RunTypeDaemon exec +//DoNothing 3 1 roll//Register exec +}ifelse +}ifelse +}bind def +/StoreBlock +{ +//PDFR_DEBUG{ +(StoreBlock )print//PDFReader/BlockCount get =only(, Length = )print dup length = +}if +dup length string copy +//PDFReader/BlockCount get exch +//PDFReader/CurrentObject get 3 1 roll +put +//PDFReader/BlockCount get 1 add +//PDFReader exch/BlockCount exch put +}bind def +/CheckLength +{dup type/integertype ne{ +mark(Object length isn't an integer.)//error exec +}if +}bind def +/ResolveD +{ +3 copy pop get +dup//IsObjRef exec{ +//PDFR_DEBUG{ +(Resolving )print//PrintReference exec +}if +exec +exch exec +}{ +exch pop +}ifelse +dup 4 1 roll +put +}bind def +/ResolveA +{2 index 2 index get +dup//IsObjRef exec{ +exec +exch exec +3 copy put +}{ +exch pop +}ifelse +exch pop exch pop +}bind def +/StoreStream +{ +dup//PDFReader exch/CurrentObject exch put +//PDFReader/BlockCount 0 put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(StoreStream Length = )print dup = +}if +currentfile exch()/SubFileDecode filter +{dup//BlockBuffer readstring{ +//StoreBlock exec +}{ +//StoreBlock exec +exit +}ifelse +}loop +pop +//PDFReader/CurrentObject null put +//PDFR_DEBUG{ +(StoreStream end.)= +}if +}bind def +/MakeStreamDumper +{ +//PDFR_DEBUG{ +(MakeStreamDumper beg.)= +}if +currentglobal exch dup gcheck setglobal +[exch +1 dict dup/c 0 put exch +1024 string +{readstring pop +(StreamDumper )print 1 index/c get =string cvs print( )print +dup length =string cvs print( <)print dup print(>\n)print +dup length +3 2 roll +dup/c get +3 2 roll +add/c exch put +}/exec load +] +cvx 0()/SubFileDecode filter +exch setglobal +//PDFR_DEBUG{ +(MakeStreamDumper end.)= +}if +}bind def +/ShortFilterNames 15 dict begin +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/AppendFilters +{ +//PDFR_DEBUG{ +(AppendFilters beg.)= +}if +dup 3 1 roll +/Filter//knownget exec{ +dup type/nametype eq{ +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +2 index/DecodeParms//knownget exec{ +exch +}if +filter +}{ +dup 0 exch 1 exch length 1 sub{ +2 copy get +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +3 1 roll +4 index/DecodeParms//knownget exec{ +exch get +}{ +pop null +}ifelse +dup null eq{ +pop 3 1 roll filter exch +}{ +3 1 roll +4 1 roll filter exch +}ifelse +}for +pop +}ifelse +//PDFR_DEBUG//PDFR_DUMP and{ +//MakeStreamDumper exec +}if +}if +exch pop +//PDFR_DEBUG{ +(AppendFilters end.)= +}if +}bind def +/ExecuteStream +{ +dup//PDFReader exch/CurrentObject exch put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(ExecuteStream id = )print 2 index =only( Length = )print dup = +}if +//PDFReader/InitialGraphicState get +//PDFReader/GraphicState get copy pop +//PDFReader/Operators get begin +currentfile exch()/SubFileDecode filter +1 index//AppendFilters exec +cvx mark exch +exec +counttomark 0 ne{ +mark(Data left on ostack after an immediate stream execution.)//error exec +}if +cleartomark +end +//PDFR_DEBUG{ +(ExecuteStream end.)= +}if +//PDFReader/CurrentObject null put +dup/IsPage known{ +dup/Context get/NumCopies//knownget exec{ +1 sub{ +copypage +}repeat +}if +EPS2Write not{showpage}if +pagesave restore +}if +}bind def +/stream +{ +//PDFR_DEBUG{ +1 index =only( stream)= +}if +1 index GetObject{ +dup xcheck{ +exec +1 index null PutObject +}{ +pop +}ifelse +}if +dup/ImmediateExec known{ +dup/GlobalExec//knownget exec{ +currentglobal 4 1 roll +setglobal +//ExecuteStream exec +3 2 roll setglobal +}{ +//ExecuteStream exec +}ifelse +}{ +//StoreStream exec +}ifelse +dup/.CleanResources//knownget exec{ +/All eq{ +//CleanAllResources exec +}if +}if +}bind def +/HookFont +{ +//PDFR_DEBUG{ +(Loaded the font )print dup/FontName get = +}if +{ +dup/FontFileType get dup/Type1 eq exch/MMType1 eq or{ +dup/FontName get +//PDFReader/RemoveFontNamePrefix get exec +findfont +exit +}if +dup/FontFileType get/TrueType eq{ +//PDFReader/MakeType42 get exec +//PDFR_DEBUG{ +(Font dict <<)= +dup{ +1 index/sfnts eq{ +exch pop +(/sfnts [)print +{ +(-string\()print length//=only exec(\)- )= +}forall +(])= +}{ +exch//=only exec( )print == +}ifelse +}forall +(>>)= +}if +dup/FontName get exch definefont +exit +}if +mark(FontHook has no proc for )2 index/FontFileType get//error exec +}loop +/Font exch put +}bind def +/endstream +{ +}bind def +/xref +{ +//PDFR_DEBUG{ +(xref)= +//PDFR_DUMP{ +//PDFReader/ObjectRegistry get == +}if +}if +end +count 0 ne{ +mark(Excessive data on estack at the end of the interpretation.)//error exec +}if +currentfile 1(%%EOF)/SubFileDecode filter +flushfile +cleardictstack +}bind def +/ResolveDict +{dup{ +pop 1 index exch +//DoNothing//ResolveD exec +pop +}forall +pop +}bind def +/SetupPageView +{ +//PDFR_DEBUG{ +(SetupPageView beg)= +}if +//DSC_OPDFREAD not{ +//GraphicState/InitialMatrix get setmatrix +}if +/MediaBox get aload pop +3 index neg 3 index neg translate +3 -1 roll sub 3 1 roll exch sub exch +userdict/.HWMargins//knownget exec{ +aload pop +}{ +currentpagedevice/.HWMargins//knownget exec{ +aload pop +}{ +0 0 0 0 +}ifelse +}ifelse +currentpagedevice/PageSize get aload pop +3 -1 roll sub 3 1 roll exch sub exch +exch 3 index sub exch 3 index sub +//SetPageSize{ +//PDFR_DEBUG{ +(Setting page size to )print 1 index//=only exec( )print dup = +}if +pop pop 3 index 3 index 2 copy +currentglobal false setglobal 3 1 roll +currentpagedevice dup/PageSize known{ +/PageSize get aload pop +}{ +0 0 +}ifelse +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(PageSize matches request)== flush}if +pop pop +}{ +/MediaRequested where{ +//PDFR_DEBUG{(MediaRequested is true, check against new request)== flush}if +/MediaRequested get aload pop +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(MediaRequested same as current request, ignore)== flush}if +pop pop false +}{ +//PDFR_DEBUG{(MediaRequested different to current request)== flush}if +true +}ifelse +}{ +//PDFR_DEBUG{(No MediaRequested yet)== flush}if +true +}ifelse +{ +//PDFR_DEBUG{(Setting pagesize)== flush}if +2 array astore +dup/MediaRequested exch def +<< exch/PageSize exch >>setpagedevice +}if +}ifelse +userdict/PDFR_InitialGS gstate put +setglobal +}if +//RotatePages{ +2 copy gt 6 index 6 index gt ne{ +1 index 5 index le 1 index 5 index le and not +}{ +false +}ifelse +}{ +false +}ifelse +{//CenterPages{ +//PDFR_DEBUG{ +(Rotating page, and then centering it)== +}if +90 rotate +0 5 index neg translate +5 index 1 index exch sub 2 div +2 index 6 index sub 2 div neg +translate +}{ +//FitPages{ +1 index 5 index div 1 index 7 index div +2 copy gt{ +exch +}if +pop dup scale +}if +90 rotate +0 5 index neg translate +}ifelse +}{ +//CenterPages{ +//PDFR_DEBUG{ +(Ccentering page)== +}if +1 index 6 index sub 2 div +1 index 6 index sub 2 div +translate +}{ +//FitPages{ +1 index 6 index div 1 index 6 index div +2 copy gt{ +exch +}if +pop dup scale +}if +}ifelse +}ifelse +pop pop +translate +pop pop +//PDFR_DEBUG{ +(SetupPageView end)= +}if +}bind def +/PageContentsDaemon +{ +//PDFR_DEBUG{ +(Executing PageContentsDaemon for )print 2 index = +}if +1 index exch/Context exch put +dup/ImmediateExec true put +dup/IsPage true put +SetPageSize{dup/Context get//SetupPageView exec}if +/pagesave save def +}bind def +/FontFileDaemon +{ +//PDFR_DEBUG{ +(Executing FontFileDaemon for )print 2 index = +}if +dup/FontFileType get +2 index exch +dup//ReadFontProcs exch//knownget exec{ +exch pop exec +}{ +mark(FontFile reader for )2 index( isn't implemented yet.)//error exec +}ifelse +//PDFR_DEBUG{ +(FontFileDaemon end)= +}if +pop +}bind def +/FontDescriptorDaemon +{ +//PDFR_DEBUG{ +(Executing FontDescriptorDaemon for )print 2 index = +}if +2 copy/FontResource exch put +/Subtype get 1 index exch/FontFileType exch put +}bind def +/UnPDFEscape{ +dup dup length string cvs +dup(#)search{ +{ +pop +(16#--)2 index 0 2 getinterval +1 index 3 2 getinterval copy pop +cvi +0 exch put +0 +1 index 2 1 index length 2 sub getinterval +3 copy putinterval +length +3 copy exch put +getinterval +(#)search not{ +pop exit +}if +}loop +(\0)search pop exch pop exch pop +cvn +exch pop +}{ +pop pop +}ifelse +}bind def +/TypeDaemons<< +/Page +{//PDFR_DEBUG{ +(Recognized a page.)= +}if +dup/Contents//knownget exec{ +0 get//DoNothing exch +[ +3 index//PageContentsDaemon/exec load +]cvx +//Register exec +}{ +(fixme: page with no Contents won't be printed.)= +}ifelse +}bind +/FontDescriptor +{//PDFR_DEBUG{ +(Recognized a font descriptor.)= +}if +dup/FontName//knownget exec{ +1 index/FontName 3 -1 roll//UnPDFEscape exec put +}if +dup dup/FontFile known{/FontFile}{/FontFile2}ifelse +//knownget exec{ +0 get//DoNothing exch +[ +3 index//FontFileDaemon/exec load +]cvx +//Register exec +}{ +(Font descriptor )print 1 index =only( has no FontFile.)= +}ifelse +}bind +/Font +{//PDFR_DEBUG{ +(Recognized a font resource.)= +}if +dup/BaseFont//knownget exec{ +//UnPDFEscape exec 2 copy/BaseFont exch put +//PDFReader/RemoveFontNamePrefix get exec +currentglobal exch +dup/Font resourcestatus{ +pop pop +//PDFReader/GetInstalledFont get exec pop +}{ +pop +}ifelse +setglobal +}if +dup/FontDescriptor//knownget exec{ +0 get +dup//IsRegistered exec{ +//PDFR_DEBUG{ +(already registered )print dup = +}if +pop +}{ +//DoNothing exch +[ +3 index//FontDescriptorDaemon/exec load +]cvx +//Register exec +}ifelse +}if +}bind +>>def +/MakeStreamReader +{dup +[ +exch +//PDFR_DEBUG{ +(Stream proc ) +/print load +//PDFR_STREAM{ +(<) +/print load +}if +}if +1 dict dup/i -1 put +/dup load +/i +/get load +1 +/add load +/dup load +3 +1 +/roll load +/i +/exch load +/put load +//knownget +/exec load +/not load +{()} +/if load +//PDFR_DEBUG{ +//PDFR_STREAM{ +/dup load +/print load +(>) +/print load +}if +( end of stream proc.\n) +/print load +}if +]cvx +//PDFR_DEBUG{ +(Stream reader )print dup == +}if +0()/SubFileDecode filter +exch//AppendFilters exec +}bind def +/RunDelayedStream +{ +//GraphicState/InitialTextMatrix get +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get +2 copy get null eq{ +2 copy currentglobal true setglobal matrix exch setglobal put +}if +get copy pop +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 add put +//MakeStreamReader exec +mark exch +cvx exec +counttomark 0 ne{ +mark(Data left on ostack after a delayed stream execution.)//error exec +}if +cleartomark +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 sub put +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get get +//GraphicState/InitialTextMatrix get +copy pop +}bind def +//ReadFontProcs begin +/Type1 +{//PDFR_DEBUG{ +(ReadFontProcs.Type1)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +dup/ImmediateExec true put +/GlobalExec true put +}bind def +/MMType1//Type1 def +/TrueType +{//PDFR_DEBUG{ +(ReadFontProcs.TrueType)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +pop +}bind def +end +/.opdloadttfontdict 50 dict def +.opdloadttfontdict begin +/maxstring 65400 def +end +/.InsertionSort +{ +/CompareProc exch def +/Array exch def +1 1 Array length 1 sub +{ +/Ix exch def +/Value1 Array Ix get def +/Jx Ix 1 sub def +{ +Jx 0 lt{ +exit +}if +/Value2 Array Jx get def +Value1 Value2 CompareProc{ +exit +}if +Array Jx 1 add Value2 put +/Jx Jx 1 sub def +}loop +Array Jx 1 add Value1 put +}for +Array +}bind def +/putu16{ +3 copy -8 bitshift put +exch 1 add exch 16#ff and put +}bind def +/putu32{ +3 copy -16 bitshift putu16 +exch 2 add exch 16#ffff and putu16 +}bind def +/.readtable{ +dup dup 1 and add string +dup 0 4 -1 roll getinterval +3 -1 roll exch +dup()ne{readstring}if pop pop +}bind def +/.readbigtable{ +dup maxstring lt{ +.readtable +}{ +currentuserparams/VMReclaim get -2 vmreclaim +[4 2 roll{ +dup maxstring le{exit}if +1 index maxstring string readstring pop 3 1 roll maxstring sub +}loop .readtable] +exch vmreclaim +}ifelse +}bind def +/ReadTTF +{ +.opdloadttfontdict begin +/TTFontFile exch def +/TableDir TTFontFile 12 string readstring pop def +/tables TTFontFile TableDir 4 getu16 16 mul string readstring pop def +/tabarray tables length 16 idiv array def +TableDir 0 4 getinterval(ttcf)eq{ +QUIET not{(Can't handle TrueType font Collections.)=}if +/.loadttfonttables cvx/invalidfont signalerror +}{ +0 16 tables length 1 sub{ +dup +tables exch 16 getinterval +exch 16 div cvi exch +tabarray 3 1 roll put +}for +}ifelse +tabarray{exch 8 getu32 exch 8 getu32 gt}.InsertionSort pop +/Read TableDir length tables length add def +/tabs[ +tabarray{ +dup 8 getu32 +Read sub +dup 0 gt{ +dup string TTFontFile exch readstring pop pop +Read add/Read exch def +}{ +pop +}ifelse +12 getu32 +dup Read add +/Read exch def +TTFontFile exch .readbigtable +}forall +]def +end +}bind def +/GetLocaType +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(head)eq{ +tabs exch get +50 gets16 +/LocaType exch def +exit +}{ +pop +}ifelse +}for +}bind def +/GetNumGlyphs +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(maxp)eq{ +tabs exch get +4 getu16 +/NumGlyphs exch def +exit +}{ +pop +}ifelse +}for +}bind def +/StringToLoca +{ +/LocaIndex exch def +/StringOffset 0 def +{ +dup length StringOffset gt{ +dup +LocaType 1 eq{ +StringOffset getu32 +LocaArray LocaIndex 3 -1 roll put +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 4 add +def +}{ +StringOffset getu16 2 mul +LocaArray length LocaIndex gt{ +LocaArray LocaIndex 3 -1 roll put +}{ +pop +}ifelse +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 2 add +def +}ifelse +}{ +pop +LocaIndex +exit +}ifelse +}loop +}bind def +/GetSortedLoca +{ +NumGlyphs 1 add array/LocaArray exch def +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(loca)eq{ +tabs exch get +exit +}{ +pop +}ifelse +}for +dup type/stringtype eq{ +0 StringToLoca pop +}{ +0 exch +{ +exch StringToLoca +}forall +pop +}ifelse +LocaArray{gt}.InsertionSort pop +}bind def +/GetWorkingString +{ +WorkString 0 +GlyfArray GlyfStringIndex get +putinterval +/WorkBytes GlyfArray GlyfStringIndex get length def +/GlyfStringIndex GlyfStringIndex 1 add def +}bind def +/GetWorkingBytes +{ +/BytesToRead exch def +WorkString 0 BytesToRead getinterval +dup length string copy +WorkString BytesToRead WorkBytes BytesToRead sub getinterval +dup length string copy +WorkString 0 3 -1 roll putinterval +/WorkBytes WorkBytes BytesToRead sub def +}bind def +/GetGlyfBytes +{ +/ToRead exch def +WorkBytes 0 eq{ +GetWorkingString +}if +WorkBytes ToRead ge{ +ToRead string dup 0 +ToRead GetWorkingBytes putinterval +}{ +ToRead string +dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +ToRead WorkBytes sub +GetWorkingString +GetWorkingBytes +putinterval +}ifelse +}bind def +/SplitGlyf +{ +/GlyfArray exch def +/DestArray GlyfArray length 2 mul array def +/DestArrayIndex 0 def +/LastLoca 0 def +/NextLocaIndex 0 def +/LastLocaIndex 0 def +/GlyfStringIndex 0 def +/WorkString maxstring string def +/WorkBytes 0 def +{ +LocaArray NextLocaIndex get +LastLoca sub maxstring gt +{ +LocaArray LastLocaIndex get LastLoca sub +GetGlyfBytes +DestArray DestArrayIndex 3 -1 roll put +/DestArrayIndex DestArrayIndex 1 add def +LocaArray LastLocaIndex get/LastLoca exch def +}{ +/LastLocaIndex NextLocaIndex def +/NextLocaIndex NextLocaIndex 1 add def +NextLocaIndex NumGlyphs gt +{ +WorkBytes +GlyfStringIndex GlyfArray length lt{ +GlyfArray GlyfStringIndex get length +add string dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +GetWorkingString +WorkString 0 WorkBytes getinterval +putinterval +}{ +pop +WorkString 0 WorkBytes getinterval +}ifelse +dup length string copy +DestArray DestArrayIndex 3 -1 roll put +exit +}if +}ifelse +}loop +DestArray +}bind def +/ProcessTTData +{ +.opdloadttfontdict begin +0 1 tabarray length 1 sub{ +/ix exch def +tabarray ix get +12 getu32 dup maxstring le{ +dup 4 mod 0 ne{ +4 div cvi 1 add 4 mul string/newstring exch def +/oldstring tabs ix get def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix newstring put +}{ +pop +}ifelse +}{ +dup 4 mod 0 ne{ +dup maxstring idiv maxstring mul sub +4 idiv 1 add 4 mul string/newstring exch def +tabs ix get +dup length 1 sub dup/iy exch def get/oldstring exch def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix get iy newstring put +}{ +pop +}ifelse +}ifelse +}for +0 1 tabarray length 1 sub{ +dup tabarray exch get +dup 12 getu32 maxstring gt{ +0 4 getinterval dup(glyf)eq{ +pop +GetLocaType +GetNumGlyphs +GetSortedLoca +dup tabs exch get +SplitGlyf +tabs 3 1 roll put +}{ +(Warning, table )print print( > 64Kb\n)print +pop +}ifelse +}{ +pop +pop +}ifelse +}for +end +}bind def +/Makesfnts +{ +.opdloadttfontdict begin +0 +tabs{ +dup type/stringtype eq{ +pop +1 add +}{ +{ +type/stringtype eq{ +1 add +}if +}forall +}ifelse +}forall +1 add +/TTOffset +TableDir length +tabarray length 16 mul add +def +0 +tabarray{ +exch dup 1 add +3 1 roll +dup +tabs exch get +dup type/stringtype eq{ +length +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}{ +0 exch +{ +dup type/stringtype eq{ +length add +}{ +pop +}ifelse +}forall +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}ifelse +}forall +pop +array +dup 0 +TableDir length +tables length add +string +dup 0 TableDir putinterval +dup 12 tables putinterval +put +dup +/ix 1 def +tabs{ +dup type/stringtype eq{ +ix exch +put dup +/ix ix 1 add def +}{ +{ +dup type/stringtype eq{ +ix exch put dup +/ix ix 1 add def +}{ +pop +}ifelse +}forall +}ifelse +}forall +pop +end +}bind def +/MakeType42 +{ +//PDFR_DEBUG{ +(MakeType42 beg)= +}if +10 dict begin +/FontName 1 index/FontName get def +/FontType 42 def +/FontMatrix[1 0 0 1 0 0]def +/FontBBox 1 index/FontBBox get def +dup/FontResource get +dup/Encoding known{ +//PDFReader/ObtainEncoding get exec +/Encoding get +}{ +pop null +}ifelse +/PDFEncoding exch def +/CharStrings 2 index//PDFReader/MakeTTCharStrings get exec def +/sfnts 2 index//MakeStreamReader exec +ReadTTF +ProcessTTData +Makesfnts +def +/Encoding StandardEncoding def +/PaintType 0 def +currentdict end +//PDFR_DEBUG{ +(MakeType42 end)= +}if +}bind def +/GetInstalledFont +{ +dup//InstalledFonts exch knownget{ +exch pop +}{ +dup findfont dup 3 1 roll +//InstalledFonts 3 1 roll put +}ifelse +}bind def +/RemoveFontNamePrefix +{//=string cvs true +0 1 5{ +2 index exch get//IsUpper exec not{ +pop false exit +}if +}for +{(+)search{ +pop pop +}if +}if +cvn +}bind def +/CheckFont +{dup/Type get/Font ne{ +mark(Resource )3 index( must have /Type/Font .)//error exec +}if +}bind def +/CheckEncoding +{dup type/nametype ne{ +dup/Type get/Encoding ne{ +mark(Resource )3 index( must have /Type/Encoding .)//error exec +}if +}if +}bind def +/ObtainEncoding +{dup/Encoding known{ +dup dup/Encoding//CheckEncoding//ResolveD exec +dup type dup/arraytype eq exch/packedarraytype eq or{ +pop pop +}{ +dup type/nametype eq{ +/Encoding findresource +}{ +dup/BaseEncoding//knownget exec not{ +/StandardEncoding +}if +/Encoding findresource +exch +/Differences//knownget exec{ +exch dup length array copy exch +0 exch +{ +dup type/integertype eq{ +exch pop +}{ +3 copy put pop +1 add +}ifelse +}forall +pop +}if +}ifelse +/Encoding exch put +}ifelse +}{ +dup/Encoding/StandardEncoding/Encoding findresource put +}ifelse +}bind def +/ObtainMetrics +{dup/Widths//knownget exec{ +1 index/Encoding get +256 dict +3 index/Subtype get/TrueType eq{ +1000 +}{ +1 +}ifelse +4 index/MissingWidth//knownget exec not{ +0 +}if +5 index/FirstChar//knownget exec not{ +0 +}if +6 5 roll +dup 0 exch 1 exch length 1 sub{ +2 copy get +exch 3 index add +7 index exch get +dup dup null ne exch/.notdef ne and{ +6 index 3 1 roll exch +6 index div +3 copy pop//knownget exec{ +0 eq +}{ +true +}ifelse +{put +}{ +pop pop pop +}ifelse +}{ +pop pop +}ifelse +}for +pop pop pop pop exch pop +1 index exch/Metrics exch put +}{ +dup/MissingWidth//knownget exec{ +256 dict +2 index/Encoding get{ +dup null ne{ +3 copy 3 2 roll put +}if +pop +}forall +exch pop +1 index exch/Metrics exch put +}if +}ifelse +}bind def +/NotDef +{ +FontMatrix aload pop pop pop exch pop exch pop +1 exch div exch +1 exch div exch +1 index 0 setcharwidth +0 setlinewidth +0 0 moveto +2 copy rlineto +1 index 0 rlineto +neg exch neg exch rlineto +closepath stroke +}bind def +/SaveResourcesToStack +{ +[ +//PDFReader/OldResources known{ +//PDFReader/OldResources get +}{ +null +}ifelse +//PDFReader/CurrentObject get/Context get/Resources get +] +//PDFReader/OldResources 3 -1 roll put +}bind def +/RestoreResourcesFromStack +{ +//PDFReader/OldResources get dup +0 get//PDFReader/OldResources 3 -1 roll put +1 get//PDFReader/CurrentObject get/Context get/Resources 3 -1 roll put +}bind def +/BuildChar +{//PDFR_DEBUG{ +(BuildChar )print dup//=only exec( )print +}if +exch begin +Encoding exch get +//PDFR_DEBUG{ +dup = +}if +dup null eq{ +pop//NotDef exec +} +{ +CharProcs exch//knownget exec +{ +currentfont/Font get/Resources//knownget exec{ +exec +SaveResourcesToStack +//PDFReader/CurrentObject get/Context get +/Resources 3 -1 roll put +//RunDelayedStream exec +RestoreResourcesFromStack +}{ +//RunDelayedStream exec +}ifelse +} +{ +//NotDef exec +}ifelse +}ifelse +end +}bind def +/printdict +{(<<)= +{exch = ==}forall +(>>)= +}bind def +/printfont +{ +dup{ +exch dup = +dup/Encoding eq{ +pop = +}{ +dup/FontInfo eq exch/Private eq or{ +//printdict exec +}{ +== +}ifelse +}ifelse +}forall +}bind def +/ScaleMetrics +{1 index{ +2 index div +3 index +3 1 roll put +}forall +pop +}bind def +/ResolveAndSetFontAux +{exch dup +//PDFReader/CurrentObject get/Context get/Resources get +/Font//DoNothing//ResolveD exec +exch//CheckFont//ResolveD exec +dup/Font//knownget exec{ +exch pop exch pop +}{ +{ +dup/Subtype get dup dup/Type1 eq exch/TrueType eq or exch/MMType1 eq or{ +exch pop +dup/BaseFont get +//RemoveFontNamePrefix exec +//PDFR_DEBUG{ +(Font )print dup = +}if +1 index/FontDescriptor known{ +//PDFR_DEBUG{ +(Font from a font descriptor.)= +}if +1 index +/FontDescriptor//DoNothing//ResolveD exec +/Font//knownget exec{ +exch pop +}{ +//PDFR_DEBUG{ +(Font descriptor has no Font resolved.)= +}if +//GetInstalledFont exec +}ifelse +}{ +//GetInstalledFont exec +}ifelse +exch +dup/Encoding known not{ +1 index/Encoding get 1 index exch/Encoding exch put +}if +//ObtainEncoding exec +//ObtainMetrics exec +exch +dup length dict copy +dup 2 index/Encoding get +/Encoding exch put +1 index/Metrics//knownget exec{ +2 index/Subtype get/TrueType ne{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +0.001 div +//ScaleMetrics exec +}{ +1 index/sfnts known not{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +//ScaleMetrics exec +}if +}ifelse +1 index exch/Metrics exch put +}if +1 index/BaseFont get +exch +dup/FID undef +dup/UniqueID undef +definefont +dup 3 1 roll +/Font exch put +exit +}if +dup/Subtype get/Type3 eq{ +//ObtainEncoding exec +2 copy exch/FontName exch put +dup/CharProcs get//ResolveDict exec +dup/FontType 3 put +dup/BuildChar//BuildChar put +dup dup/Font exch put +dup 3 1 roll +definefont +2 copy ne{ +2 copy/Font exch put +}if +exch pop +exit +}if +dup/Subtype get/Type0 eq{ +}if +dup/Subtype get/CIDFontType0 eq{ +}if +dup/Subtype get/CIDFontType2 eq{ +}if +mark(Unknown font type )2 index/Subtype get//error exec +}loop +}ifelse +exch scalefont setfont +}bind def +/ResolveAndSetFont +{ +//ResolveAndSetFontAux exec +}bind def +/.knownget +{2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/.min +{2 copy lt{ +exch +}if +pop +}bind def +/.max +{2 copy gt{ +exch +}if +pop +}bind def +/.dicttomark +{>> +}bind def +/getu16{ +2 copy get 8 bitshift 3 1 roll 1 add get add +}bind def +/gets16{ +getu16 16#8000 xor 16#8000 sub +}bind def +/getu32{ +2 copy getu16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/gets32{ +2 copy gets16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/cmapformats mark +0{ +6 256 getinterval{}forall 256 packedarray +}bind +2{ +/sHK_sz 2 def +/sH_sz 8 def +dup 2 getu16/cmapf2_tblen exch def +dup 4 getu16/cmapf2_lang exch def +dup 6 256 sHK_sz mul getinterval/sHKs exch def +0 +0 1 255{ +sHKs exch +2 mul getu16 +1 index +1 index +lt{exch}if pop +}for +/sH_len exch def +dup 6 256 sHK_sz mul add +cmapf2_tblen 1 index sub getinterval +/sH_gIA exch def +/cmapf2_glyph_array 65535 array def +/.cmapf2_putGID{ +/cmapf2_ch cmapf2_ch_hi 8 bitshift cmapf2_ch_lo add def +firstCode cmapf2_ch_lo le +cmapf2_ch_lo firstCode entryCount add lt +and{ +sH_offset idRangeOffset add +cmapf2_ch_lo firstCode sub 2 mul +add 6 add +sH_gIA exch getu16 +dup 0 gt{ +idDelta add +cmapf2_glyph_array exch cmapf2_ch exch put +}{ +pop +}ifelse +}{ +}ifelse +}def +16#00 1 16#ff{ +/cmapf2_ch_hi exch def +sHKs cmapf2_ch_hi sHK_sz mul getu16 +/sH_offset exch def +sH_gIA sH_offset sH_sz getinterval +dup 0 getu16/firstCode exch def +dup 2 getu16/entryCount exch def +dup 4 gets16/idDelta exch def +dup 6 getu16/idRangeOffset exch def +pop +sH_offset 0 eq{ +/cmapf2_ch_lo cmapf2_ch_hi def +/cmapf2_ch_hi 0 def +.cmapf2_putGID +}{ +16#00 1 16#ff{ +/cmapf2_ch_lo exch def +.cmapf2_putGID +}for +}ifelse +}for +pop +0 1 cmapf2_glyph_array length 1 sub{ +dup cmapf2_glyph_array exch get +null eq{cmapf2_glyph_array exch 0 put}{pop}ifelse +}for +cmapf2_glyph_array +}bind +4{ +/etab exch def +/nseg2 etab 6 getu16 def +14/endc etab 2 index nseg2 getinterval def +2 add +nseg2 add/startc etab 2 index nseg2 getinterval def +nseg2 add/iddelta etab 2 index nseg2 getinterval def +nseg2 add/idroff etab 2 index nseg2 getinterval def +pop +/firstcode startc 0 getu16 16#ff00 and dup 16#f000 ne{pop 0}if def +/lastcode firstcode def +/striptopbyte false def +/putglyph{ +glyphs code 3 -1 roll put/code code 1 add def +}bind def +/numcodes 0 def/glyphs 0 0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +ecode lastcode gt{ +/lastcode ecode def +}if +}for pop +firstcode 16#f000 ge lastcode firstcode sub 255 le and{ +lastcode 255 and +/striptopbyte true def +}{ +lastcode +}ifelse +1 add +array def +glyphs length 1024 ge{ +.array1024z 0 1024 glyphs length 1023 sub{glyphs exch 2 index putinterval}for +glyphs dup length 1024 sub 3 -1 roll +putinterval +}{ +0 1 glyphs length 1 sub{glyphs exch 0 put}for +}ifelse +/numcodes 0 def/code 0 def +0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +numcodes scode firstcode sub +exch sub 0 .max dup/code exch code exch add def +ecode scode sub 1 add add numcodes add/numcodes exch def +/delta iddelta i2 gets16 def +TTFDEBUG{ +(scode=)print scode =only +( ecode=)print ecode =only +( delta=)print delta =only +( droff=)print idroff i2 getu16 = +}if +idroff i2 getu16 dup 0 eq{ +pop scode delta add 65535 and 1 ecode delta add 65535 and +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +{putglyph}for +}{ +/gloff exch 14 nseg2 3 mul add 2 add i2 add add def +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +0 1 ecode scode sub{ +2 mul gloff add etab exch getu16 +dup 0 ne{delta add 65535 and}if putglyph +}for +}ifelse +}for glyphs/glyphs null def +}bind +6{ +dup 6 getu16/firstcode exch def dup 8 getu16/ng exch def +firstcode ng add array +0 1 firstcode 1 sub{2 copy 0 put pop}for +dup firstcode ng getinterval +0 1 ng 1 sub{ +dup 2 mul 10 add 4 index exch getu16 3 copy put pop pop +}for pop exch pop +}bind +.dicttomark readonly def +/cmaparray{ +dup 0 getu16 cmapformats exch .knownget{ +TTFDEBUG{ +(cmap: format )print 1 index 0 getu16 = flush +}if exec +}{ +(Can't handle format )print 0 getu16 = flush +0 1 255{}for 256 packedarray +}ifelse +TTFDEBUG{ +(cmap: length=)print dup length = dup == +}if +}bind def +/postremap mark +/Cdot/Cdotaccent +/Edot/Edotaccent +/Eoverdot/Edotaccent +/Gdot/Gdotaccent +/Ldot/Ldotaccent +/Zdot/Zdotaccent +/cdot/cdotaccent +/edot/edotaccent +/eoverdot/edotaccent +/gdot/gdotaccent +/ldot/ldotaccent +/zdot/zdotaccent +.dicttomark readonly def +/get_from_stringarray +{1 index type/stringtype eq{ +get +}{ +exch{ +2 copy length ge{ +length sub +}{ +exch get exit +}ifelse +}forall +}ifelse +}bind def +/getinterval_from_stringarray +{ +2 index type/stringtype eq{ +getinterval +}{ +string exch 0 +4 3 roll{ +dup length +dup 4 index lt{ +3 index exch sub +exch pop 3 1 roll exch pop +}{ +dup 3 1 roll +4 index sub +5 index length 4 index sub +2 copy gt{exch}if pop +dup 3 1 roll +5 index exch getinterval +5 index 4 index 3 index +getinterval +copy pop +exch pop add exch pop 0 exch +dup 3 index length ge{exit}if +}ifelse +}forall +pop pop +}ifelse +}bind def +/string_array_size +{dup type/stringtype eq{ +length +}{ +0 exch{length add}forall +}ifelse +}bind def +/postformats mark +16#00010000{ +pop MacGlyphEncoding +} +16#00020000{ +dup dup type/arraytype eq{0 get}if length 36 lt{ +TTFDEBUG{(post format 2.0 invalid.)= flush}if +pop[] +}{ +/postglyphs exch def +/post_first postglyphs dup type/arraytype eq{0 get}if def +post_first 32 getu16/numglyphs exch def +/glyphnames numglyphs 2 mul 34 add def +/postpos glyphnames def +/total_length postglyphs//string_array_size exec def +numglyphs array 0 1 numglyphs 1 sub{ +postpos total_length ge{ +1 numglyphs 1 sub{1 index exch/.notdef put}for +exit +}if +postglyphs postpos//get_from_stringarray exec +postglyphs postpos 1 add 2 index//getinterval_from_stringarray exec cvn +exch postpos add 1 add/postpos exch def +2 index 3 1 roll +put +}for +/postnames exch def +numglyphs array 0 1 numglyphs 1 sub{ +dup 2 mul 34 add postglyphs exch 2//getinterval_from_stringarray exec +dup 0 get 8 bitshift exch 1 get add dup 258 lt{ +MacGlyphEncoding exch get +}{ +dup 32768 ge{ +pop/.notdef +}{ +258 sub dup postnames length ge{ +TTFDEBUG{( *** warning: glyph index past end of 'post' table)= flush}if +pop +exit +}if +postnames exch get +postremap 1 index .knownget{exch pop}if +}ifelse +}ifelse +2 index 3 1 roll put +}for +} +ifelse +}bind +16#00030000{ +pop[] +}bind +.dicttomark readonly def +/first_post_string +{ +post dup type/arraytype eq{0 get}if +}bind def +/.getpost{ +/glyphencoding post null eq{ +TTFDEBUG{(post missing)= flush}if[] +}{ +postformats first_post_string 0 getu32 .knownget{ +TTFDEBUG{ +(post: format )print +first_post_string +dup 0 getu16 =only(,)print 2 getu16 = flush +}if +post exch exec +}{ +TTFDEBUG{(post: unknown format )print post 0 getu32 = flush}if[] +}ifelse +}ifelse def +}bind def +/MacRomanEncoding[ +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +]/Encoding defineresource pop +/TTParser<< +/Pos 0 +/post null +>>def +/readu8 +{read not{ +mark(Insufficient data in the stream.)//error exec +}if +}bind def +/readu16 +{dup//readu8 exec 8 bitshift exch//readu8 exec or +}bind def +/reads16 +{//readu16 exec 16#8000 xor 16#8000 sub +}bind def +/readu32 +{dup//readu16 exec 16 bitshift exch//readu16 exec or +}bind def +/reads32 +{dup//reads16 exec 16 bitshift exch//readu16 exec or +}bind def +/SkipToPosition +{dup//TTParser/Pos get +exch//TTParser exch/Pos exch put +sub +//PDFR_DEBUG{ +(Skipping )print dup//=only exec( bytes.)= +}if +dup 0 eq{ +pop pop +}{ +dup 3 1 roll +()/SubFileDecode filter +exch +{1 index//BlockBuffer readstring pop length +dup 0 eq{pop exch pop exit}if +sub +}loop +0 ne{ +mark(Insufficient data in the stream for SkipToPosition.)//error exec +}if +}ifelse +}bind def +/TagBuffer 4 string def +/ParseTTTableDirectory +{//PDFR_DEBUG{ +(ParseTTTableDirectory beg)= +}if +15 dict begin +dup//readu32 exec 16#00010000 ne{ +mark(Unknown True Type version.)//error exec +}if +dup//readu16 exec/NumTables exch def +dup//readu16 exec/SearchRange exch def +dup//readu16 exec/EntrySelector exch def +dup//readu16 exec/RangeShift exch def +//PDFR_DEBUG{ +(NumTables = )print NumTables = +}if +NumTables{ +dup//TagBuffer readstring not{ +mark(Could not read TT tag.)//error exec +}if +cvn +[2 index//readu32 exec pop +2 index//readu32 exec +3 index//readu32 exec +] +//PDFR_DEBUG{ +2 copy exch//=only exec( )print == +}if +def +}repeat +pop +//TTParser/Pos 12 NumTables 16 mul add put +currentdict end +//PDFR_DEBUG{ +(ParseTTTableDirectory end)= +}if +}bind def +/ParseTTcmap +{//PDFR_DEBUG{ +(ParseTTcmap beg)= +}if +/cmap get aload pop +3 1 roll +7 dict begin +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(cmap position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos get/TablePos exch def +dup//readu16 exec pop +dup//readu16 exec/NumEncodings exch def +//PDFR_DEBUG{ +(NumEncodings = )print NumEncodings = +}if +null +NumEncodings{ +1 index//readu32 exec +2 index//readu32 exec +3 array dup 3 2 roll 0 exch put +2 index null ne{ +dup 0 get 3 index 0 get sub +3 index exch 1 exch put +}if +dup 4 3 roll pop 3 1 roll +def +}repeat +dup 0 get +4 3 roll exch sub +1 exch put +//PDFR_DEBUG{ +currentdict{ +exch dup type/integertype eq{ +//PrintHex exec( )print == +}{ +pop pop +}ifelse +}forall +}if +4 NumEncodings 8 mul add/HeaderLength exch def +//TTParser/Pos//TTParser/Pos get HeaderLength add put +0 +NumEncodings{ +16#7FFFFFF null +currentdict{ +1 index type/integertype eq{ +exch pop dup 0 get +dup 5 index gt{ +dup 4 index lt{ +4 1 roll +exch pop exch pop +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}forall +//PDFR_DEBUG{ +(Obtaining subtable for )print dup == +}if +3 2 roll pop +3 copy pop +TablePos add//SkipToPosition exec +3 copy exch pop 1 get +//TTParser/Pos//TTParser/Pos get 3 index add put +string +readstring not{ +mark(Can't read a cmap subtable.)//error exec +}if +2 exch put +}repeat +pop pop +currentdict end +//PDFR_DEBUG{ +(ParseTTcmap end)= +}if +}bind def +/GetTTEncoding +{//PDFR_DEBUG{ +(GetTTEncoding beg)= +}if +get +exch pop +2 get +10 dict begin +/TTFDEBUG//PDFR_DEBUG def +//cmaparray exec +end +//PDFR_DEBUG{ +(GetTTEncoding end)= +dup == +}if +}bind def +/InverseEncoding +{ +256 dict begin +dup length 1 sub -1 0{ +2 copy get +exch +1 index currentdict exch//knownget exec{ +dup type/arraytype eq{ +aload length 1 add array astore +}{ +2 array astore +}ifelse +}if +def +}for +pop +currentdict end +}bind def +/GetMacRomanEncodingInverse +{//PDFReader/MacRomanEncodingInverse get +dup null eq{ +pop +MacRomanEncoding//InverseEncoding exec +dup//PDFReader exch/MacRomanEncodingInverse exch put +}if +}bind def +/PutCharStringSingle +{ +dup 3 index length lt{ +2 index exch get +dup 0 ne{ +def +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/PutCharString +{1 index type/nametype ne{ +mark(Bad charstring name)//error exec +}if +dup type/arraytype eq{ +{ +3 copy//PutCharStringSingle exec +pop pop +}forall +pop +}{ +//PutCharStringSingle exec +}ifelse +}bind def +/ComposeCharStrings +{ +//PDFR_DEBUG{ +(ComposeCharStrings beg)= +}if +1 index length 1 add dict begin +/.notdef 0 def +exch +//TTParser/post get +dup null ne{ +exch +1 index length 1 sub -1 0{ +dup 3 index exch get exch +dup 0 eq 2 index/.notdef eq or{ +pop pop +}{ +def +}ifelse +}for +}if +exch pop exch +{ +//PutCharString exec +}forall +pop +currentdict end +//PDFR_DEBUG{ +(ComposeCharStrings end)= +}if +}bind def +/ParseTTpost +{ +//PDFR_DEBUG{ +(ParseTTpost beg)= +}if +/post get aload pop +3 1 roll +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(post position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos//TTParser/Pos get 4 index add put +exch dup 65535 le{ +string +readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}{ +[3 1 roll +dup 16384 div floor cvi +exch 1 index 16384 mul +sub exch +1 sub 0 1 3 -1 roll +{ +1 add index +16384 string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}for +counttomark -2 roll +string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +] +}ifelse +1 dict begin +/post exch def +//.getpost exec +//TTParser/post glyphencoding put +//PDFR_DEBUG{ +(ParseTTpost end)= +glyphencoding == +}if +end +}bind def +/MakeTTCharStrings +{//MakeStreamReader exec +dup dup//ParseTTTableDirectory exec +//TTParser/post null put +dup/post//knownget exec{ +0 get +1 index/cmap get 0 get +lt{ +2 copy//ParseTTpost exec +//ParseTTcmap exec +}{ +2 copy//ParseTTcmap exec +3 1 roll +//ParseTTpost exec +}ifelse +}{ +//ParseTTcmap exec +}ifelse +{ +dup 16#00030001 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Windows Unicode.)= +}if +16#00030001//GetTTEncoding exec +AdobeGlyphList//ComposeCharStrings exec +exit +}if +dup 16#00010000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Macintosh Roman.)= +}if +16#00010000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +dup 16#00030000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding 3.0 - not sure why Ghostscript writes it since old versions.)= +}if +16#00030000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +mark(True Type cmap has no useful encodings.)//error exec +}loop +//PDFR_DEBUG{ +(CharStrings <<)= +dup{ +exch +dup type/nametype eq{ +//=only exec +}{ +== +}ifelse +( )print == +}forall +(>>)= +}if +}bind def +/ScaleVal +{ +aload pop +1 index sub +3 2 roll mul add +}bind def +/ScaleArg +{ +aload pop +1 index sub +3 1 roll +sub exch div +}bind def +/ScaleArgN +{ +dup length 2 sub -2 0{ +2 +2 index 3 1 roll getinterval +3 2 roll +exch//ScaleArg exec +1 index length 2 idiv 1 add 1 roll +}for +pop +}bind def +/ComputeFunction_10 +{ +//PDFR_DEBUG{ +(ComputeFunction_10 beg )print 1 index//=only exec( stack=)print count = +}if +exch +dup 1 eq{ +pop dup length 1 sub get +}{ +1 index length 1 sub mul +dup dup floor sub +dup 0 eq{ +pop cvi get +}{ +3 1 roll floor cvi +2 getinterval +aload pop +2 index mul 3 2 roll 1 exch sub 3 2 roll mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_10 end )print dup//=only exec( stack=)print count = +}if +}bind def +/ComputeFunction_n0 +{ +//PDFR_DEBUG{ +(ComputeFunction_n0 beg N=)print dup//=only exec( stack=)print count = +}if +dup 0 eq{ +pop +}{ +dup 2 add -1 roll +dup 3 index length 1 sub ge{ +pop 1 sub +exch dup length 1 sub get exch +//PDFReader/ComputeFunction_n0 get exec +}{ +dup floor cvi dup +4 index exch get +3 index dup +5 add copy +6 2 roll +pop pop pop pop +1 sub +//PDFReader/ComputeFunction_n0 get exec +3 2 roll pop +exch +4 3 roll exch +4 add 2 roll 1 add +3 2 roll exch get +exch 1 sub +//PDFReader/ComputeFunction_n0 get exec +1 index mul +3 1 roll +1 exch sub mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_n0 end )print dup//=only exec( stack=)print count = +}if +}bind def +/FunctionToProc_x01 +{ +dup/Domain get exch +dup/Data get 0 get exch +/Size get length +[4 1 roll +//PDFR_DEBUG{ +{(function beg, stack =)print count//=only exec(\n)print}/exec load +5 2 roll +}if +dup 1 gt{ +{mark exch +3 add 2 roll +//ScaleArgN exec +counttomark dup +3 add -2 roll +pop exch +//ComputeFunction_n0 exec +}/exec load +}{ +pop +3 1/roll load//ScaleArg/exec load +/exch load +//ComputeFunction_10/exec load +}ifelse +//PDFR_DEBUG{ +(function end, stack =)/print load/count load//=only/exec load(\n)/print load +}if +]cvx +//PDFR_DEBUG{ +(Made a procedure for the 1-result function :)= +dup == +}if +}bind def +/FunctionProcDebugBeg +{(FunctionProcDebugBeg )print count = +}bind def +/FunctionProcDebugEnd +{(FunctionProcDebugEnd )print count = +}bind def +/FunctionToProc_x0n +{ +PDFR_DEBUG{ +(FunctionToProc_x0n beg m=)print dup = +}if +1 index/Size get length exch +dup 7 mul 2 add array +PDFR_DEBUG{ +dup 0//FunctionProcDebugBeg put +}{ +dup 0//DoNothing put +}ifelse +dup 1/exec load put +dup 2 5 index/Domain get put +2 index 1 eq{ +dup 3//ScaleArg put +}{ +dup 3//ScaleArgN put +}ifelse +dup 4/exec load put +1 index 1 sub 0 exch 1 exch{ +dup 7 mul 5 add +1 index 4 index 1 sub ne{ +dup 3 index exch 6 index put 1 add +dup 3 index exch/copy load put 1 add +}if +[ +6 index/Data get 3 index get +6 index 1 eq{ +//ComputeFunction_10/exec load +}{ +6 index +//ComputeFunction_n0/exec load +}ifelse +]cvx +3 index exch 2 index exch put 1 add +2 index 1 index/exec load put 1 add +1 index 4 index 1 sub ne{ +2 index 1 index 6 index 1 add put 1 add +2 index 1 index 1 put 1 add +2 index 1 index/roll load put +}if +pop pop +}for +PDFR_DEBUG{ +dup dup length 2 sub//FunctionProcDebugEnd put +}{ +dup dup length 2 sub//DoNothing put +}ifelse +dup dup length 1 sub/exec load put +cvx exch pop exch pop exch pop +//PDFR_DEBUG{ +(Made a procedure for the n-argument function :)= +dup == +}if +PDFR_DEBUG{ +(FunctionToProc_x0n end)= +}if +}bind def +/MakeTableRec +{ +0 +exec +}bind def +/MakeTable +{//PDFR_DEBUG{ +(MakeTable beg )print count = +}if +1 index/Size get exch +1 sub dup +3 1 roll +get +array +1 index 0 eq{ +exch pop exch pop +}{ +dup length 1 sub -1 0{ +3 index 3 index//MakeTableRec exec +2 index 3 1 roll put +}for +exch pop exch pop +}ifelse +//PDFR_DEBUG{ +(MakeTable end )print count = +}if +}bind def +//MakeTableRec 0//MakeTable put +/StoreSample +{ +1 sub +dup 0 eq{ +pop +}{ +-1 1{ +I exch get get +}for +}ifelse +I 0 get 3 2 roll put +}bind def +/ReadSample32 +{ +4{ +File read not{ +mark(Insufficient data for function.)//error exec +}if +}repeat +pop +3 1 roll exch +256 mul add 256 mul add +//1_24_bitshift_1_sub div +}bind def +/ReadSample +{ +Buffer BitsLeft BitsPerSample +{2 copy ge{ +exit +}if +3 1 roll +8 add 3 1 roll +256 mul File read not{ +mark(Insufficient data for function.)//error exec +}if +add +3 1 roll +}loop +sub dup +2 index exch +neg bitshift +2 copy exch bitshift +4 3 roll exch sub +/Buffer exch def +exch/BitsLeft exch def +Div div +}bind def +/ReadSamplesRec +{0 +exec +}bind def +/ReadSamples +{ +//PDFR_DEBUG{ +(ReadSamples beg )print count = +}if +dup 1 eq{ +pop +0 1 Size 0 get 1 sub{ +I exch 0 exch put +0 1 M 1 sub{ +dup Range exch 2 mul 2 getinterval +//PDFR_DEBUG{ +(Will read a sample ... )print +}if +BitsPerSample 32 eq{//ReadSample32}{//ReadSample}ifelse +exec exch//ScaleVal exec +//PDFR_DEBUG{ +(value=)print dup = +}if +exch Table exch get +Size length//StoreSample exec +}for +}for +}{ +1 sub +dup Size exch get 0 exch 1 exch 1 sub{ +I exch 2 index exch put +dup//ReadSamplesRec exec +}for +pop +}ifelse +//PDFR_DEBUG{ +(ReadSamples end )print count = +}if +}bind def +//ReadSamplesRec 0//ReadSamples put +/StreamToArray +{//PDFR_DEBUG{ +(StreamToArray beg )print count = +}if +userdict/FuncDataReader get begin +dup/BitsPerSample get/BitsPerSample exch def +dup/Size get length/N exch def +dup/Range get length 2 idiv/M exch def +1 BitsPerSample bitshift 1 sub/Div exch def +/BitsLeft 0 def +/Buffer 0 def +dup/Size get/Size exch def +dup/Range get/Range exch def +/File 1 index//MakeStreamReader exec def +/I[N{0}repeat]def +M array +dup length 1 sub -1 0{ +2 index N//MakeTable exec +2 index 3 1 roll put +}for +/Table exch def +N//ReadSamples exec +PDFR_DEBUG{ +(Table = )print Table == +}if +/Data Table put +end +//PDFR_DEBUG{ +(StreamToArray end )print count = +}if +}bind def +/FunctionToProc10 +{ +PDFR_DEBUG{ +(FunctionToProc10 beg, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +PDFR_DEBUG{ +(FunctionToProc10 end)= +}if +}bind def +/FunctionToProc12 +{begin +currentdict/C0//knownget exec{length 1 eq}{true}ifelse{ +N +currentdict/C0//knownget exec{ +0 get +}{ +0 +}ifelse +currentdict/C1//knownget exec{ +0 get +}{ +1 +}ifelse +1 index sub +[4 1 roll +{ +4 2 roll +exp mul add +}aload pop +]cvx +}{ +[ +0 1 C0 length 1 sub{ +N +C0 2 index get +C1 3 index get +4 3 roll pop +1 index sub +[/dup load +5 2 roll +{ +4 2 roll +exp mul add +exch +}aload pop +]cvx +/exec load +}for +/pop load +]cvx +}ifelse +end +//PDFR_DEBUG{ +(FunctionType2Proc : )print dup == +}if +}bind def +/FunctionToProc14 +{//MakeStreamReader exec cvx exec +//PDFR_DEBUG{ +(FunctionType4Proc : )print dup == +}if +}bind def +/FunctionToProc1 +{ +dup/FunctionType get +{dup 0 eq{ +pop//FunctionToProc10 exec exit +}if +dup 2 eq{ +pop//FunctionToProc12 exec exit +}if +dup 4 eq{ +pop//FunctionToProc14 exec exit +}if +mark exch(Function type )exch( isn't implemented yet.)//error exec +}loop +}bind def +/FunctionToProc20 +{ +PDFR_DEBUG{ +(FunctionToProc20, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +}bind def +/FunctionToProc +{//PDFR_DEBUG{ +(FunctionToProc beg )print count = +}if +dup type/dicttype eq{ +dup/Domain get length 2 idiv +{ +dup 1 eq{ +pop//FunctionToProc1 exec exit +}if +dup 2 eq{ +pop//FunctionToProc20 exec exit +}if +mark(Functions with many arguments aren't implemented yet.)//error exec +}loop +}{ +//PDFR_DEBUG{(Not a function dict, assume already a procedure.)print}if +}ifelse +//PDFR_DEBUG{ +(FunctionToProc end )print count = +}if +}bind def +/spotfunctions mark +/Round{ +abs exch abs 2 copy add 1 le{ +dup mul exch dup mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +} +/Diamond{ +abs exch abs 2 copy add .75 le{ +dup mul exch dup mul add 1 exch sub +}{ +2 copy add 1.23 le{ +.85 mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +}ifelse +} +/Ellipse{ +abs exch abs 2 copy 3 mul exch 4 mul add 3 sub dup 0 lt{ +pop dup mul exch .75 div dup mul add 4 div 1 exch sub +}{ +dup 1 gt{ +pop 1 exch sub dup mul exch 1 exch sub +.75 div dup mul add 4 div 1 sub +}{ +.5 exch sub exch pop exch pop +}ifelse +}ifelse +} +/EllipseA{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseA{dup mul .9 mul exch dup mul add 1 sub} +/EllipseB{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub} +/EllipseC{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseC{dup mul .9 mul exch dup mul add 1 sub} +/Line{exch pop abs neg} +/LineX{pop} +/LineY{exch pop} +/Square{abs exch abs 2 copy lt{exch}if pop neg} +/Cross{abs exch abs 2 copy gt{exch}if pop neg} +/Rhomboid{abs exch abs 0.9 mul add 2 div} +/DoubleDot{2{360 mul sin 2 div exch}repeat add} +/InvertedDoubleDot{2{360 mul sin 2 div exch}repeat add neg} +/SimpleDot{dup mul exch dup mul add 1 exch sub} +/InvertedSimpleDot{dup mul exch dup mul add 1 sub} +/CosineDot{180 mul cos exch 180 mul cos add 2 div} +/Double{exch 2 div exch 2{360 mul sin 2 div exch}repeat add} +/InvertedDouble{ +exch 2 div exch 2{360 mul sin 2 div exch}repeat add neg +} +.dicttomark readonly def +/CheckColorSpace +{ +dup type/arraytype ne{ +mark(Resource )3 index( must be an array.)//error exec +}if +}bind def +/SubstitutePDFColorSpaceRec +{0 +exec +}bind def +/SubstitutePDFColorSpace +{ +{ +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup dup 1//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +1 exch put +}if +exit +}if +dup 0 get/Indexed eq{ +exit +}if +dup 0 get/Separation eq{ +dup dup 2//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +2 exch put +exit +}if +dup 0 get/CalGray eq{ +1 get +dup/Gamma//knownget exec{ +[exch[exch/exp load]cvx dup dup] +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedA exch] +exit +}if +dup 0 get/CalRGB eq{ +1 get +dup/Matrix//knownget exec{ +1 index exch/MatrixLMN exch put +}if +dup/Gamma//knownget exec{ +aload pop +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +3 array astore +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedABC exch] +exit +}if +dup 0 get/Lab eq{ +1 get +begin +currentdict/Range//knownget exec{aload pop}{-100 100 -100 100}ifelse +0 100 6 2 roll 6 array astore +/RangeABC exch def +/DecodeABC[{16 add 116 div}bind{500 div}bind{200 div}bind]def +/MatrixABC[1 1 1 1 0 0 0 0 -1]def +{dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108 841 div mul}ifelse} +/DecodeLMN[ +[3 index aload pop WhitePoint 0 get/mul load]cvx +[4 index aload pop WhitePoint 1 get/mul load]cvx +[5 index aload pop WhitePoint 2 get/mul load]cvx +]def pop +//PDFR_DEBUG{ +(Constructed from Lab <<)= +currentdict{exch = ==}forall +(>>)= +}if +[/CIEBasedABC currentdict] +end +exit +pop +}if +dup 0 get/CIEBasedA eq{exit}if +dup 0 get/CIEBasedABC eq{exit}if +mark exch(Unimplemented color space )exch//error exec +}loop +}bind def +//SubstitutePDFColorSpaceRec 0//SubstitutePDFColorSpace put +/ResolveArrayElement +{2 copy get +dup type dup/arraytype eq exch +/packedarraytype eq or{ +dup length 1 ge exch xcheck and{ +2 copy get +dup 0 get type/integertype eq +1 index 1 get type dup/arraytype +eq exch +/packedarraytype eq or +and{ +exec +2 index 4 1 roll put +}{ +pop pop +}ifelse +}{ +pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/ResolveColorSpaceArrayRec +{0 +exec +}bind def +/SetColorSpaceSafe +{ +PDFR_DEBUG{ +(SetColorSpaceSafe beg)= +}if +currentcolorspace dup type/arraytype eq{ +1 index type/arraytype eq{ +dup length 2 index length eq{ +false exch +dup length 0 exch 1 exch 1 sub{ +dup +4 index exch get exch +2 index exch get +ne{ +exch pop true exch exit +}if +}for +pop +{ +setcolorspace +}{ +pop +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +PDFR_DEBUG{ +(SetColorSpaceSafe end)= +}if +}bind def +/ResolveColorSpaceArray +{ +//PDFR_DEBUG{ +(ResolveColorSpaceArray beg )print dup == +}if +dup 0 get/Indexed eq{ +1//ResolveArrayElement exec +dup dup 1 get +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArrayRec exec +1 exch put +}{ +pop pop +}ifelse +}if +dup 0 get/Separation eq{ +dup dup 1 get UnPDFEscape 1 exch put +3//ResolveArrayElement exec +dup 3 get//FunctionToProc exec +2 copy 3 exch put +pop +}if +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup 1 get dup type/arraytype eq{ +ResolveColorSpaceArray +1 index 1 3 -1 roll put +}{ +pop +}ifelse +}if +}if +PDFR_DEBUG{ +(Construcrted color space :)= +dup == +}if +//PDFR_DEBUG{ +(ResolveColorSpaceArray end )print dup == +}if +}bind def +//ResolveColorSpaceArrayRec 0//ResolveColorSpaceArray put +/ResolveColorSpace +{ +//PDFR_DEBUG{ +(ResolveColorSpace beg )print dup = +}if +dup//SimpleColorSpaceNames exch known not{ +dup//PDFColorSpaces exch//knownget exec{ +exch pop +//PDFR_DEBUG{ +(ResolveColorSpace known )= +}if +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/ColorSpace//DoNothing//ResolveD exec +exch//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArray exec +dup//PDFColorSpaces 4 2 roll put +}if +}ifelse +}if +//PDFR_DEBUG{ +(ResolveColorSpace end )print dup == +}if +}bind def +/CheckPattern +{ +dup/PatternType//knownget exec{ +dup 1 ne{ +mark(Resource )4 index( is a shading, which can't be handled at level 2. )//error exec +}if +pop +}if +dup/Type knownget{ +/Pattern ne{ +mark(Resource )4 index( must have /Type/Pattern .)//error exec +}if +}if +}bind def +/PaintProc +{/Context get +//RunDelayedStream exec +}bind def +/ResolvePattern +{ +dup +userdict/PDFR_Patterns get +exch//knownget exec{ +exch pop +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/Pattern//DoNothing//ResolveD exec +exch//CheckPattern//ResolveD exec +dup dup/Context exch put +dup/Resources//DoNothing//ResolveD exec pop +dup/PaintProc//PaintProc put +gsave userdict/PDFR_InitialGS get setgstate +currentglobal exch false setglobal +dup/Matrix get +makepattern +exch setglobal +grestore +dup userdict/PDFR_Patterns get +4 2 roll +put +}ifelse +}bind def +/SetColor +{//PDFR_DEBUG{ +(SetColor beg)= +}if +currentcolorspace dup type/nametype eq{ +pop setcolor +}{ +0 get/Pattern eq{ +//ResolvePattern exec setpattern +}{ +setcolor +}ifelse +}ifelse +//PDFR_DEBUG{ +(SetColor end)= +}if +}bind def +/ImageKeys 15 dict begin +/BPC/BitsPerComponent def +/CS/ColorSpace def +/D/Decode def +/DP/DecodeParms def +/F/Filter def +/H/Height def +/IM/ImageMask def +/I/Interpolate def +/W/Width def +currentdict end readonly def +/ImageValues 15 dict begin +/G/DeviceGray def +/RGB/DeviceRGB def +/CMYK/DeviceCMYK def +/I/Indexed def +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/GetColorSpaceRange +{2 index/ColorSpace get +dup type/arraytype eq{ +1 get +}if +exch//knownget exec{ +exch pop +}if +}bind def +/DecodeArrays 15 dict begin +/DeviceGray{[0 1]}def +/DeviceRGB{[0 1 0 1 0 1]}def +/DeviceCMYK{[0 1 0 1 0 1 0 1]}def +/Indexed{ +dup/BitsPerComponent get 1 exch bitshift 1 sub[exch 0 exch] +}def +/Separation{[0 1]}def +/CIEBasedA{[0 1]/RangeA//GetColorSpaceRange exec}def +/CIEBasedABC{[0 1 0 1 0 1]/RangeABC//GetColorSpaceRange exec}def +currentdict end readonly def +/Substitute +{1 index//knownget exec{ +exch pop +}if +}bind def +/DebugImagePrinting +{ +//PDFR_DEBUG{ +(Image :)= +dup{exch//=only exec( )print == +}forall +}if +}bind def +/CompleteImage +{ +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec pop +}if +dup/Decode known not{ +dup/ColorSpace//knownget exec{ +dup type/arraytype eq{ +0 get +}if +//DecodeArrays exch get exec +}{ +[0 1] +}ifelse +1 index exch/Decode exch put +}if +dup/ImageMatrix[2 index/Width get 0 0 5 index/Height get neg +0 7 index/Height get]put +//DebugImagePrinting exec +}bind def +/CompleteInlineImage +{ +//PDFR_DEBUG{ +(CompleteInlineImage beg)= +}if +dup/ImageType known not{ +dup/ImageType 1 put +}if +dup length dict exch{ +exch//ImageKeys//Substitute exec +dup/Filter eq{ +exch//ImageValues//Substitute exec exch +}if +dup/ColorSpace eq{ +exch +dup//ImageValues exch//knownget exec{ +exch pop +}{ +//ResolveColorSpace exec +}ifelse +exch +}if +exch +2 index 3 1 roll put +}forall +//CompleteImage exec +dup/DataSource 2 copy get +2 index//AppendFilters exec put +//PDFR_DEBUG{ +(CompleteInlineImage end)= +}if +}bind def +/CompleteOutlineImage +{ +currentglobal exch dup gcheck setglobal +//PDFR_DEBUG{ +(CompleteOutlineImage beg)= +}if +dup dup//MakeStreamReader exec/DataSource exch put +dup/ImageType known not{ +//CompleteImage exec +dup/ImageType 1 put +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//ResolveColorSpaceArray exec +//SubstitutePDFColorSpace exec +1 index exch/ColorSpace exch put +}{ +pop +}ifelse +}if +}if +//PDFR_DEBUG{ +(CompleteOutlineImage end)= +}if +exch setglobal +}bind def +/DoImage +{ +//PDFR_DEBUG{ +(DoImage beg)= +}if +gsave +dup/ColorSpace//knownget exec{setcolorspace}if +dup/ImageMask//knownget exec not{false}if +{imagemask}{image}ifelse +grestore +//PDFR_DEBUG{ +(DoImage end)= +}if +}bind def +/GSave +{ +gsave +//PDFReader/GraphicStateStackPointer get +dup//GraphicStateStack exch get null eq{ +dup//GraphicStateStack exch//InitialGraphicState length dict put +}if +dup//GraphicStateStack exch get +//GraphicState exch copy pop +1 add//PDFReader exch/GraphicStateStackPointer exch put +}bind def +/GRestore +{ +grestore +//PDFReader/GraphicStateStackPointer get +1 sub dup +//PDFReader exch/GraphicStateStackPointer exch put +//GraphicStateStack exch get +//GraphicState copy pop +}bind def +/SetFont +{dup//GraphicState exch/FontSize exch put +//ResolveAndSetFont exec +//GraphicState/FontMatrixNonHV currentfont/FontMatrix get 1 get 0 ne put +}bind def +/ShowText +{//GraphicState/TextRenderingMode get 0 eq{ +//GraphicState/WordSpacing get 0 +32 +//GraphicState/CharacterSpacing get 0 +6 5 roll +//GraphicState/FontMatrixNonHV get{ +[ +7 -2 roll pop +5 -2 roll pop +5 -1 roll +{ +exch +pop +3 index add +exch 2 index eq{3 index add}if +4 1 roll +} +currentfont/FontMatrix get 0 get 0 ne{ +1 1 index length 1 sub getinterval cvx +}if +5 index +cshow +pop pop pop] +xshow +}{ +awidthshow +}ifelse +}{ +//GraphicState/CharacterSpacing get 0 eq +//GraphicState/FontMatrixNonHV get not and +//GraphicState/WordSpacing get 0 eq and{ +true charpath +}{ +{ +exch +pop 0 +currentpoint 5 4 roll +( )dup 0 3 index put true charpath +5 1 roll +moveto rmoveto +//GraphicState/CharacterSpacing get 0 rmoveto +32 eq{ +//GraphicState/WordSpacing get 0 rmoveto +}if +} +//GraphicState/FontMatrixNonHV get dup not exch{ +pop currentfont/FontMatrix get 0 get 0 ne +}if{ +1 1 index length 1 sub getinterval cvx +}if +exch cshow +}ifelse +}ifelse +}bind def +/ShowTextBeg +{//GraphicState/TextRenderingMode get 0 ne{ +currentpoint newpath moveto +}if +}bind def +/ShowTextEnd +{//GraphicState/TextRenderingMode get +{dup 1 eq{ +stroke exit +}if +dup 2 eq{ +gsave fill grestore stroke exit +}if +dup 3 eq{ +currentpoint newpath moveto +}if +dup 4 eq{ +gsave fill grestore clip exit +}if +dup 5 eq{ +gsave stroke grestore clip exit +}if +dup 6 eq{ +gsave fill grestore gsave stroke grestore fill exit +}if +dup 7 eq{ +clip exit +}if +exit +}loop +pop +}bind def +/ShowTextWithGlyphPositioning +{//ShowTextBeg exec +{dup type/stringtype eq{ +//ShowText exec +}{ +neg 1000 div//GraphicState/FontSize get mul 0 rmoveto +}ifelse +}forall +//ShowTextEnd exec +}bind def +/CheckFont +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/SetTransfer +{ +//PDFR_DEBUG{(SetTransfer beg )print count =}if +dup type/arraytype eq 1 index xcheck not and{ +0 4 getinterval aload pop +setcolortransfer +}{ +settransfer +}ifelse +//PDFR_DEBUG{(SetTransfer end )print count =}if +}bind def +/CheckExtGState +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/CheckHalftone +{dup/HalftoneType known not{ +mark(Resource )3 index( must have /HalftoneType.)//error exec +}if +}bind def +/ResolveFunction +{ +//PDFR_DEBUG{(ResolveFunction beg )print dup = count =}if +2 copy get//IsObjRef exec{ +2 copy//DoNothing//ResolveD exec +3 copy put pop +}if +2 copy get dup type/arraytype eq exch xcheck and not{ +2 copy get +dup type/arraytype eq 1 index xcheck not and{ +dup length 1 sub -1 0{ +2 copy//DoNothing ResolveA +dup/Identity eq{ +pop 2 copy{}put +}{ +//FunctionToProc exec +3 copy put pop +}ifelse +pop +}for +}{ +dup/Default eq{ +}{ +dup/Identity eq{ +pop{} +}{dup type/nametype eq{ +//spotfunctions exch get +}{ +//FunctionToProc exec +}ifelse +}ifelse +}ifelse +}ifelse +3 copy put +exch pop +}{ +1 index exch get +}ifelse +//PDFR_DEBUG{(ResolveFunction end )print dup == count =}if +}bind def +/ResolveFunctionSafe +{2 copy known{ +//ResolveFunction exec +}if +pop +}bind def +/CreateHalftoneThresholds +{ +dup/Thresholds known not{ +dup/HalftoneType get 10 eq{ +dup dup//MakeStreamReader exec +/Thresholds exch put +}if +dup/HalftoneType get dup 3 eq exch 6 eq or{ +dup dup//MakeStreamReader exec +//BlockBuffer readstring pop +dup length +dup 0 eq{ +mark(Could not read Thresholds)//error exec +}if +string copy/Thresholds exch put +dup/HalftoneType 3 put +}if +}if +}bind def +/SetExtGState +{ +//PDFReader/CurrentObject get/Context get/Resources get +/ExtGState//DoNothing//ResolveD exec +exch//CheckExtGState//ResolveD exec +dup/LW//knownget exec{ +setlinewidth +}if +dup/LC//knownget exec{ +setlinecap +}if +dup/LJ//knownget exec{ +setlinejoin +}if +dup/ML//knownget exec{ +setmeterlimit +}if +dup/D//knownget exec{ +setdash +}if +dup/RI//knownget exec{ +mark(Unimplemented ExtGState.RI)//error exec +}if +dup/OP//knownget exec{ +setoverprint +}if +dup/op//knownget exec{ +setoverprint +}if +dup/OPM//knownget exec{ +mark(Unimplemented ExtGState.OPM)//error exec +}if +dup/Font//knownget exec{ +mark(Unimplemented ExtGState.Font)//error exec +}if +dup/BG known{ +/BG//ResolveFunction exec +setblackgeneration +}if +dup/BG2 known{ +/BG2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/BG2 get +}if +setblackgeneration +}if +dup/UCR known{ +/UCR//ResolveFunction exec +setundercolorremoval +}if +dup/UCR2 known{ +/UCR2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/UCR2 get +}if +setundercolorremoval +}if +dup/TR known{ +/TR//ResolveFunction exec +//SetTransfer exec +}if +dup/TR2 known{ +/TR2//ResolveFunction exec +dup/Default eq{ +pop//InitialExtGState/TR2 get +aload pop setcolortransfer +}{ +//SetTransfer exec +}ifelse +}if +dup/HT//knownget exec{ +dup/Default eq{ +pop//InitialExtGState/HT get +sethalftone +}{ +//PDFR_DEBUG{(Ht beg)=}if +pop dup/HT//CheckHalftone//ResolveD exec +/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +null exch +dup/HalftoneType get dup 5 eq exch dup 4 eq exch 2 eq or or{ +dup{ +dup//IsObjRef exec{ +pop +1 index exch//CheckHalftone ResolveD +}if +dup type/dicttype eq{ +dup/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +//CreateHalftoneThresholds exec +dup/HalftoneType get 5 gt{ +4 3 roll pop +dup 4 1 roll +}if +}if +pop pop +}forall +}if +//CreateHalftoneThresholds exec +//PDFR_DEBUG{ +(HT:)= +dup{ +1 index/Default eq{ +(Default <<)= +exch pop +{exch = ==}forall +(>>)= +}{ +exch = == +}ifelse +}forall +(HT end)= flush +}if +exch dup null ne{ +(Warning: Ignoring a halftone with a Level 3 component halftone Type )print dup/HalftoneType get = +pop pop +}{ +pop +dup/HalftoneType get 5 gt{ +(Warning: Ignoring a Level 3 halftone Type )print dup/HalftoneType get = +pop +}{ +sethalftone +}ifelse +}ifelse +//PDFR_DEBUG{(HT set)= flush}if +}ifelse +}if +dup/FL//knownget exec{ +setflattness +}if +dup/SM//knownget exec{ +setsmoothness +}if +dup/SA//knownget exec{ +setstrokeadjust +}if +dup/BM//knownget exec{ +mark(Unimplemented ExtGState.BM)//error exec +}if +dup/SMask//knownget exec{ +mark(Unimplemented ExtGState.SMask)//error exec +}if +dup/CA//knownget exec{ +mark(Unimplemented ExtGState.CA)//error exec +}if +dup/ca//knownget exec{ +mark(Unimplemented ExtGState.ca)//error exec +}if +dup/AIS//knownget exec{ +mark(Unimplemented ExtGState.AIS)//error exec +}if +dup/TK//knownget exec{ +mark(Unimplemented ExtGState.TK)//error exec +}if +pop +}bind def +/CheckXObject +{dup/Subtype get dup/Image ne exch dup/Form ne exch/PS ne and and{ +mark(Resource )3 index( must have /Subtype /Image or /Form or /PS.)//error exec +}if +}bind def +/DoXObject +{ +//PDFReader/CurrentObject get/Context get/Resources get +/XObject//DoNothing//ResolveD exec +exch//CheckXObject//ResolveD exec +dup/Subtype get +dup/Image eq{ +pop +//CompleteOutlineImage exec +//DoImage exec +}{ +dup/PS eq{ +PDFR_DEBUG{ +(Executing a PS Xobject)= +}if +pop +//RunDelayedStream exec +}{ +dup/Form eq{ +pop +PDFR_DEBUG{ +(Executing a Form XObject)= +}if +//PDFReader/CurrentObject get exch +dup//PDFReader exch<< exch/Context exch >>/CurrentObject exch put +dup/Matrix get concat +dup/BBox get aload pop exch 3 index sub exch 2 index sub rectclip +//RunDelayedStream exec +//PDFReader exch/CurrentObject exch put +}{ +mark exch(unimplemented XObject type )exch//error exec +}ifelse +}ifelse +}ifelse +}bind def +/Operators 50 dict begin +/q{//GSave exec}bind def +/Q{//GRestore exec}bind def +/cm{//TempMatrix astore concat}bind def +/i{1 .min setflat}bind def +/J/setlinecap load def +/d/setdash load def +/j/setlinejoin load def +/w/setlinewidth load def +/M/setmiterlimit load def +/gs{SetExtGState}bind def +/g/setgray load def +/rg/setrgbcolor load def +/k/setcmykcolor load def +/cs{//ResolveColorSpace exec//SetColorSpaceSafe exec +}bind def +/sc/setcolor load def +/scn{//SetColor exec}bind def +/G/setgray load def +/RG/setrgbcolor load def +/K/setcmykcolor load def +/CS//cs def +/ri{SetColorRenderingIntent}bind def +/SC/setcolor load def +/SCN{//SetColor exec}bind def +/m/moveto load def +/l/lineto load def +/c/curveto load def +/v{currentpoint 6 2 roll curveto}bind def +/y{2 copy curveto}bind def +/re{ +4 2 roll moveto exch dup 0 rlineto 0 3 -1 roll rlineto neg 0 rlineto +closepath +}def +/h/closepath load def +/n/newpath load def +/S/stroke load def +/s{closepath stroke}bind def +/f/fill load def +/f*/eofill load def +/B{gsave fill grestore stroke}bind def +/b{closepath gsave fill grestore stroke}bind def +/B*{gsave eofill grestore stroke}bind def +/b*{closepath gsave eofill grestore stroke}bind def +/W/clip load def +/W*/eoclip load def +/sh{ +ResolveShading +dup/Background known{ +gsave +dup/ColorSpace get setcolorspace +dup/Background get aload pop setcolor +pathbbox +2 index sub exch 3 index sub exch +rectfill +grestore +}if +shfill +}bind def +/Do{//DoXObject exec}bind def +/BI{currentglobal false setglobal<<}bind def +/ID{>> +dup/DataSource currentfile +2 index/F//knownget exec{ +/A85 eq{ +0(~>)/SubFileDecode filter +}if +}if +put +//CompleteInlineImage exec +exch setglobal +//DoImage exec +}bind def +/EI{}bind def +/BT{gsave//GraphicState/InitialTextMatrix get currentmatrix pop}bind def +/ET{grestore}bind def +/Tc{//GraphicState exch/CharacterSpacing exch put}bind def +/TL{//GraphicState exch/TextLeading exch put}bind def +/Tr{//GraphicState exch/TextRenderingMode exch put}bind def +/Ts{ +mark(Unimplemented SetTextRise)//error exec +}bind def +/Tw{//GraphicState exch/WordSpacing exch put}bind def +/Tz{ +mark(Unimplemented SetHorizontalTextScaling)//error exec +}bind def +/Td{translate 0 0 moveto}bind def +/TD{dup neg//TL exec//Td exec}bind def +/Tm{//GraphicState/InitialTextMatrix get setmatrix +//TempMatrix astore concat +0 0 moveto}bind def +/T*{0//GraphicState/TextLeading get neg//Td exec}bind def +/Tj{//ShowTextBeg exec//ShowText exec//ShowTextEnd exec}bind def +/'{//T* exec//ShowText exec//ShowTextEnd exec}bind def +/"{3 2 roll//Tw exec exch//Tc exec//' exec}bind def +/TJ//ShowTextWithGlyphPositioning def +/Tf//SetFont def +/d0/setcharwidth load def +/d1/setcachedevice load def +/BDC{pop pop}bind def +/BMC{pop}bind def +/EMC{}bind def +/BX{BeginCompatibilitySection}bind def +/EX{EndCompatibilitySection}bind def +/DP{DefineMarkedContentPointWithPropertyList}bind def +/MP{DefineMarkedContentPoint}bind def +/PS{cvx exec}bind def +currentdict end def +//PDFR_STREAM{ +//Operators length dict begin +//Operators{ +exch dup +[exch//=only/exec load +( )/print load +8 7 roll +dup type/arraytype eq{ +/exec load +}if +( )/print load +]cvx +def +}forall +currentdict end/Operators exch def +}if +/.registerencoding +{pop pop +}bind def +/.defineencoding +{def +}bind def +/.findencoding +{load +}bind def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +256 packedarray +5 1 index .registerencoding +.defineencoding +exec +/AdobeGlyphList mark +/A 16#0041 +/AE 16#00c6 +/AEacute 16#01fc +/AEmacron 16#01e2 +/AEsmall 16#f7e6 +/Aacute 16#00c1 +/Aacutesmall 16#f7e1 +/Abreve 16#0102 +/Abreveacute 16#1eae +/Abrevecyrillic 16#04d0 +/Abrevedotbelow 16#1eb6 +/Abrevegrave 16#1eb0 +/Abrevehookabove 16#1eb2 +/Abrevetilde 16#1eb4 +/Acaron 16#01cd +/Acircle 16#24b6 +/Acircumflex 16#00c2 +/Acircumflexacute 16#1ea4 +/Acircumflexdotbelow 16#1eac +/Acircumflexgrave 16#1ea6 +/Acircumflexhookabove 16#1ea8 +/Acircumflexsmall 16#f7e2 +/Acircumflextilde 16#1eaa +/Acute 16#f6c9 +/Acutesmall 16#f7b4 +/Acyrillic 16#0410 +/Adblgrave 16#0200 +/Adieresis 16#00c4 +/Adieresiscyrillic 16#04d2 +/Adieresismacron 16#01de +/Adieresissmall 16#f7e4 +/Adotbelow 16#1ea0 +/Adotmacron 16#01e0 +/Agrave 16#00c0 +/Agravesmall 16#f7e0 +/Ahookabove 16#1ea2 +/Aiecyrillic 16#04d4 +/Ainvertedbreve 16#0202 +/Alpha 16#0391 +/Alphatonos 16#0386 +/Amacron 16#0100 +/Amonospace 16#ff21 +/Aogonek 16#0104 +/Aring 16#00c5 +/Aringacute 16#01fa +/Aringbelow 16#1e00 +/Aringsmall 16#f7e5 +/Asmall 16#f761 +/Atilde 16#00c3 +/Atildesmall 16#f7e3 +/Aybarmenian 16#0531 +/B 16#0042 +/Bcircle 16#24b7 +/Bdotaccent 16#1e02 +/Bdotbelow 16#1e04 +/Becyrillic 16#0411 +/Benarmenian 16#0532 +/Beta 16#0392 +/Bhook 16#0181 +/Blinebelow 16#1e06 +/Bmonospace 16#ff22 +/Brevesmall 16#f6f4 +/Bsmall 16#f762 +/Btopbar 16#0182 +/C 16#0043 +/Caarmenian 16#053e +/Cacute 16#0106 +/Caron 16#f6ca +/Caronsmall 16#f6f5 +/Ccaron 16#010c +/Ccedilla 16#00c7 +/Ccedillaacute 16#1e08 +/Ccedillasmall 16#f7e7 +/Ccircle 16#24b8 +/Ccircumflex 16#0108 +/Cdot 16#010a +/Cdotaccent 16#010a +/Cedillasmall 16#f7b8 +/Chaarmenian 16#0549 +/Cheabkhasiancyrillic 16#04bc +/Checyrillic 16#0427 +/Chedescenderabkhasiancyrillic 16#04be +/Chedescendercyrillic 16#04b6 +/Chedieresiscyrillic 16#04f4 +/Cheharmenian 16#0543 +/Chekhakassiancyrillic 16#04cb +/Cheverticalstrokecyrillic 16#04b8 +/Chi 16#03a7 +/Chook 16#0187 +/Circumflexsmall 16#f6f6 +/Cmonospace 16#ff23 +/Coarmenian 16#0551 +/Csmall 16#f763 +/D 16#0044 +/DZ 16#01f1 +/DZcaron 16#01c4 +/Daarmenian 16#0534 +/Dafrican 16#0189 +/Dcaron 16#010e +/Dcedilla 16#1e10 +/Dcircle 16#24b9 +/Dcircumflexbelow 16#1e12 +/Dcroat 16#0110 +/Ddotaccent 16#1e0a +/Ddotbelow 16#1e0c +/Decyrillic 16#0414 +/Deicoptic 16#03ee +/Delta 16#2206 +/Deltagreek 16#0394 +/Dhook 16#018a +/Dieresis 16#f6cb +/DieresisAcute 16#f6cc +/DieresisGrave 16#f6cd +/Dieresissmall 16#f7a8 +/Digammagreek 16#03dc +/Djecyrillic 16#0402 +/Dlinebelow 16#1e0e +/Dmonospace 16#ff24 +/Dotaccentsmall 16#f6f7 +/Dslash 16#0110 +/Dsmall 16#f764 +/Dtopbar 16#018b +/Dz 16#01f2 +/Dzcaron 16#01c5 +/Dzeabkhasiancyrillic 16#04e0 +/Dzecyrillic 16#0405 +/Dzhecyrillic 16#040f +/E 16#0045 +/Eacute 16#00c9 +/Eacutesmall 16#f7e9 +/Ebreve 16#0114 +/Ecaron 16#011a +/Ecedillabreve 16#1e1c +/Echarmenian 16#0535 +/Ecircle 16#24ba +/Ecircumflex 16#00ca +/Ecircumflexacute 16#1ebe +/Ecircumflexbelow 16#1e18 +/Ecircumflexdotbelow 16#1ec6 +/Ecircumflexgrave 16#1ec0 +/Ecircumflexhookabove 16#1ec2 +/Ecircumflexsmall 16#f7ea +/Ecircumflextilde 16#1ec4 +/Ecyrillic 16#0404 +/Edblgrave 16#0204 +/Edieresis 16#00cb +/Edieresissmall 16#f7eb +/Edot 16#0116 +/Edotaccent 16#0116 +/Edotbelow 16#1eb8 +/Efcyrillic 16#0424 +/Egrave 16#00c8 +/Egravesmall 16#f7e8 +/Eharmenian 16#0537 +/Ehookabove 16#1eba +/Eightroman 16#2167 +/Einvertedbreve 16#0206 +/Eiotifiedcyrillic 16#0464 +/Elcyrillic 16#041b +/Elevenroman 16#216a +/Emacron 16#0112 +/Emacronacute 16#1e16 +/Emacrongrave 16#1e14 +/Emcyrillic 16#041c +/Emonospace 16#ff25 +/Encyrillic 16#041d +/Endescendercyrillic 16#04a2 +/Eng 16#014a +/Enghecyrillic 16#04a4 +/Enhookcyrillic 16#04c7 +/Eogonek 16#0118 +/Eopen 16#0190 +/Epsilon 16#0395 +/Epsilontonos 16#0388 +/Ercyrillic 16#0420 +/Ereversed 16#018e +/Ereversedcyrillic 16#042d +/Escyrillic 16#0421 +/Esdescendercyrillic 16#04aa +/Esh 16#01a9 +/Esmall 16#f765 +/Eta 16#0397 +/Etarmenian 16#0538 +/Etatonos 16#0389 +/Eth 16#00d0 +/Ethsmall 16#f7f0 +/Etilde 16#1ebc +/Etildebelow 16#1e1a +/Euro 16#20ac +/Ezh 16#01b7 +/Ezhcaron 16#01ee +/Ezhreversed 16#01b8 +/F 16#0046 +/Fcircle 16#24bb +/Fdotaccent 16#1e1e +/Feharmenian 16#0556 +/Feicoptic 16#03e4 +/Fhook 16#0191 +/Fitacyrillic 16#0472 +/Fiveroman 16#2164 +/Fmonospace 16#ff26 +/Fourroman 16#2163 +/Fsmall 16#f766 +/G 16#0047 +/GBsquare 16#3387 +/Gacute 16#01f4 +/Gamma 16#0393 +/Gammaafrican 16#0194 +/Gangiacoptic 16#03ea +/Gbreve 16#011e +/Gcaron 16#01e6 +/Gcedilla 16#0122 +/Gcircle 16#24bc +/Gcircumflex 16#011c +/Gcommaaccent 16#0122 +/Gdot 16#0120 +/Gdotaccent 16#0120 +/Gecyrillic 16#0413 +/Ghadarmenian 16#0542 +/Ghemiddlehookcyrillic 16#0494 +/Ghestrokecyrillic 16#0492 +/Gheupturncyrillic 16#0490 +/Ghook 16#0193 +/Gimarmenian 16#0533 +/Gjecyrillic 16#0403 +/Gmacron 16#1e20 +/Gmonospace 16#ff27 +/Grave 16#f6ce +/Gravesmall 16#f760 +/Gsmall 16#f767 +/Gsmallhook 16#029b +/Gstroke 16#01e4 +/H 16#0048 +/H18533 16#25cf +/H18543 16#25aa +/H18551 16#25ab +/H22073 16#25a1 +/HPsquare 16#33cb +/Haabkhasiancyrillic 16#04a8 +/Hadescendercyrillic 16#04b2 +/Hardsigncyrillic 16#042a +/Hbar 16#0126 +/Hbrevebelow 16#1e2a +/Hcedilla 16#1e28 +/Hcircle 16#24bd +/Hcircumflex 16#0124 +/Hdieresis 16#1e26 +/Hdotaccent 16#1e22 +/Hdotbelow 16#1e24 +/Hmonospace 16#ff28 +/Hoarmenian 16#0540 +/Horicoptic 16#03e8 +/Hsmall 16#f768 +/Hungarumlaut 16#f6cf +/Hungarumlautsmall 16#f6f8 +/Hzsquare 16#3390 +/I 16#0049 +/IAcyrillic 16#042f +/IJ 16#0132 +/IUcyrillic 16#042e +/Iacute 16#00cd +/Iacutesmall 16#f7ed +/Ibreve 16#012c +/Icaron 16#01cf +/Icircle 16#24be +/Icircumflex 16#00ce +/Icircumflexsmall 16#f7ee +/Icyrillic 16#0406 +/Idblgrave 16#0208 +/Idieresis 16#00cf +/Idieresisacute 16#1e2e +/Idieresiscyrillic 16#04e4 +/Idieresissmall 16#f7ef +/Idot 16#0130 +/Idotaccent 16#0130 +/Idotbelow 16#1eca +/Iebrevecyrillic 16#04d6 +/Iecyrillic 16#0415 +/Ifraktur 16#2111 +/Igrave 16#00cc +/Igravesmall 16#f7ec +/Ihookabove 16#1ec8 +/Iicyrillic 16#0418 +/Iinvertedbreve 16#020a +/Iishortcyrillic 16#0419 +/Imacron 16#012a +/Imacroncyrillic 16#04e2 +/Imonospace 16#ff29 +/Iniarmenian 16#053b +/Iocyrillic 16#0401 +/Iogonek 16#012e +/Iota 16#0399 +/Iotaafrican 16#0196 +/Iotadieresis 16#03aa +/Iotatonos 16#038a +/Ismall 16#f769 +/Istroke 16#0197 +/Itilde 16#0128 +/Itildebelow 16#1e2c +/Izhitsacyrillic 16#0474 +/Izhitsadblgravecyrillic 16#0476 +/J 16#004a +/Jaarmenian 16#0541 +/Jcircle 16#24bf +/Jcircumflex 16#0134 +/Jecyrillic 16#0408 +/Jheharmenian 16#054b +/Jmonospace 16#ff2a +/Jsmall 16#f76a +/K 16#004b +/KBsquare 16#3385 +/KKsquare 16#33cd +/Kabashkircyrillic 16#04a0 +/Kacute 16#1e30 +/Kacyrillic 16#041a +/Kadescendercyrillic 16#049a +/Kahookcyrillic 16#04c3 +/Kappa 16#039a +/Kastrokecyrillic 16#049e +/Kaverticalstrokecyrillic 16#049c +/Kcaron 16#01e8 +/Kcedilla 16#0136 +/Kcircle 16#24c0 +/Kcommaaccent 16#0136 +/Kdotbelow 16#1e32 +/Keharmenian 16#0554 +/Kenarmenian 16#053f +/Khacyrillic 16#0425 +/Kheicoptic 16#03e6 +/Khook 16#0198 +/Kjecyrillic 16#040c +/Klinebelow 16#1e34 +/Kmonospace 16#ff2b +/Koppacyrillic 16#0480 +/Koppagreek 16#03de +/Ksicyrillic 16#046e +/Ksmall 16#f76b +/L 16#004c +/LJ 16#01c7 +/LL 16#f6bf +/Lacute 16#0139 +/Lambda 16#039b +/Lcaron 16#013d +/Lcedilla 16#013b +/Lcircle 16#24c1 +/Lcircumflexbelow 16#1e3c +/Lcommaaccent 16#013b +/Ldot 16#013f +/Ldotaccent 16#013f +/Ldotbelow 16#1e36 +/Ldotbelowmacron 16#1e38 +/Liwnarmenian 16#053c +/Lj 16#01c8 +/Ljecyrillic 16#0409 +/Llinebelow 16#1e3a +/Lmonospace 16#ff2c +/Lslash 16#0141 +/Lslashsmall 16#f6f9 +/Lsmall 16#f76c +/M 16#004d +/MBsquare 16#3386 +/Macron 16#f6d0 +/Macronsmall 16#f7af +/Macute 16#1e3e +/Mcircle 16#24c2 +/Mdotaccent 16#1e40 +/Mdotbelow 16#1e42 +/Menarmenian 16#0544 +/Mmonospace 16#ff2d +/Msmall 16#f76d +/Mturned 16#019c +/Mu 16#039c +/N 16#004e +/NJ 16#01ca +/Nacute 16#0143 +/Ncaron 16#0147 +/Ncedilla 16#0145 +/Ncircle 16#24c3 +/Ncircumflexbelow 16#1e4a +/Ncommaaccent 16#0145 +/Ndotaccent 16#1e44 +/Ndotbelow 16#1e46 +/Nhookleft 16#019d +/Nineroman 16#2168 +/Nj 16#01cb +/Njecyrillic 16#040a +/Nlinebelow 16#1e48 +/Nmonospace 16#ff2e +/Nowarmenian 16#0546 +/Nsmall 16#f76e +/Ntilde 16#00d1 +/Ntildesmall 16#f7f1 +/Nu 16#039d +/O 16#004f +/OE 16#0152 +/OEsmall 16#f6fa +/Oacute 16#00d3 +/Oacutesmall 16#f7f3 +/Obarredcyrillic 16#04e8 +/Obarreddieresiscyrillic 16#04ea +/Obreve 16#014e +/Ocaron 16#01d1 +/Ocenteredtilde 16#019f +/Ocircle 16#24c4 +/Ocircumflex 16#00d4 +/Ocircumflexacute 16#1ed0 +/Ocircumflexdotbelow 16#1ed8 +/Ocircumflexgrave 16#1ed2 +/Ocircumflexhookabove 16#1ed4 +/Ocircumflexsmall 16#f7f4 +/Ocircumflextilde 16#1ed6 +/Ocyrillic 16#041e +/Odblacute 16#0150 +/Odblgrave 16#020c +/Odieresis 16#00d6 +/Odieresiscyrillic 16#04e6 +/Odieresissmall 16#f7f6 +/Odotbelow 16#1ecc +/Ogoneksmall 16#f6fb +/Ograve 16#00d2 +/Ogravesmall 16#f7f2 +/Oharmenian 16#0555 +/Ohm 16#2126 +/Ohookabove 16#1ece +/Ohorn 16#01a0 +/Ohornacute 16#1eda +/Ohorndotbelow 16#1ee2 +/Ohorngrave 16#1edc +/Ohornhookabove 16#1ede +/Ohorntilde 16#1ee0 +/Ohungarumlaut 16#0150 +/Oi 16#01a2 +/Oinvertedbreve 16#020e +/Omacron 16#014c +/Omacronacute 16#1e52 +/Omacrongrave 16#1e50 +/Omega 16#2126 +/Omegacyrillic 16#0460 +/Omegagreek 16#03a9 +/Omegaroundcyrillic 16#047a +/Omegatitlocyrillic 16#047c +/Omegatonos 16#038f +/Omicron 16#039f +/Omicrontonos 16#038c +/Omonospace 16#ff2f +/Oneroman 16#2160 +/Oogonek 16#01ea +/Oogonekmacron 16#01ec +/Oopen 16#0186 +/Oslash 16#00d8 +/Oslashacute 16#01fe +/Oslashsmall 16#f7f8 +/Osmall 16#f76f +/Ostrokeacute 16#01fe +/Otcyrillic 16#047e +/Otilde 16#00d5 +/Otildeacute 16#1e4c +/Otildedieresis 16#1e4e +/Otildesmall 16#f7f5 +/P 16#0050 +/Pacute 16#1e54 +/Pcircle 16#24c5 +/Pdotaccent 16#1e56 +/Pecyrillic 16#041f +/Peharmenian 16#054a +/Pemiddlehookcyrillic 16#04a6 +/Phi 16#03a6 +/Phook 16#01a4 +/Pi 16#03a0 +/Piwrarmenian 16#0553 +/Pmonospace 16#ff30 +/Psi 16#03a8 +/Psicyrillic 16#0470 +/Psmall 16#f770 +/Q 16#0051 +/Qcircle 16#24c6 +/Qmonospace 16#ff31 +/Qsmall 16#f771 +/R 16#0052 +/Raarmenian 16#054c +/Racute 16#0154 +/Rcaron 16#0158 +/Rcedilla 16#0156 +/Rcircle 16#24c7 +/Rcommaaccent 16#0156 +/Rdblgrave 16#0210 +/Rdotaccent 16#1e58 +/Rdotbelow 16#1e5a +/Rdotbelowmacron 16#1e5c +/Reharmenian 16#0550 +/Rfraktur 16#211c +/Rho 16#03a1 +/Ringsmall 16#f6fc +/Rinvertedbreve 16#0212 +/Rlinebelow 16#1e5e +/Rmonospace 16#ff32 +/Rsmall 16#f772 +/Rsmallinverted 16#0281 +/Rsmallinvertedsuperior 16#02b6 +/S 16#0053 +/SF010000 16#250c +/SF020000 16#2514 +/SF030000 16#2510 +/SF040000 16#2518 +/SF050000 16#253c +/SF060000 16#252c +/SF070000 16#2534 +/SF080000 16#251c +/SF090000 16#2524 +/SF100000 16#2500 +/SF110000 16#2502 +/SF190000 16#2561 +/SF200000 16#2562 +/SF210000 16#2556 +/SF220000 16#2555 +/SF230000 16#2563 +/SF240000 16#2551 +/SF250000 16#2557 +/SF260000 16#255d +/SF270000 16#255c +/SF280000 16#255b +/SF360000 16#255e +/SF370000 16#255f +/SF380000 16#255a +/SF390000 16#2554 +/SF400000 16#2569 +/SF410000 16#2566 +/SF420000 16#2560 +/SF430000 16#2550 +/SF440000 16#256c +/SF450000 16#2567 +/SF460000 16#2568 +/SF470000 16#2564 +/SF480000 16#2565 +/SF490000 16#2559 +/SF500000 16#2558 +/SF510000 16#2552 +/SF520000 16#2553 +/SF530000 16#256b +/SF540000 16#256a +/Sacute 16#015a +/Sacutedotaccent 16#1e64 +/Sampigreek 16#03e0 +/Scaron 16#0160 +/Scarondotaccent 16#1e66 +/Scaronsmall 16#f6fd +/Scedilla 16#015e +/Schwa 16#018f +/Schwacyrillic 16#04d8 +/Schwadieresiscyrillic 16#04da +/Scircle 16#24c8 +/Scircumflex 16#015c +/Scommaaccent 16#0218 +/Sdotaccent 16#1e60 +/Sdotbelow 16#1e62 +/Sdotbelowdotaccent 16#1e68 +/Seharmenian 16#054d +/Sevenroman 16#2166 +/Shaarmenian 16#0547 +/Shacyrillic 16#0428 +/Shchacyrillic 16#0429 +/Sheicoptic 16#03e2 +/Shhacyrillic 16#04ba +/Shimacoptic 16#03ec +/Sigma 16#03a3 +/Sixroman 16#2165 +/Smonospace 16#ff33 +/Softsigncyrillic 16#042c +/Ssmall 16#f773 +/Stigmagreek 16#03da +/T 16#0054 +/Tau 16#03a4 +/Tbar 16#0166 +/Tcaron 16#0164 +/Tcedilla 16#0162 +/Tcircle 16#24c9 +/Tcircumflexbelow 16#1e70 +/Tcommaaccent 16#0162 +/Tdotaccent 16#1e6a +/Tdotbelow 16#1e6c +/Tecyrillic 16#0422 +/Tedescendercyrillic 16#04ac +/Tenroman 16#2169 +/Tetsecyrillic 16#04b4 +/Theta 16#0398 +/Thook 16#01ac +/Thorn 16#00de +/Thornsmall 16#f7fe +/Threeroman 16#2162 +/Tildesmall 16#f6fe +/Tiwnarmenian 16#054f +/Tlinebelow 16#1e6e +/Tmonospace 16#ff34 +/Toarmenian 16#0539 +/Tonefive 16#01bc +/Tonesix 16#0184 +/Tonetwo 16#01a7 +/Tretroflexhook 16#01ae +/Tsecyrillic 16#0426 +/Tshecyrillic 16#040b +/Tsmall 16#f774 +/Twelveroman 16#216b +/Tworoman 16#2161 +/U 16#0055 +/Uacute 16#00da +/Uacutesmall 16#f7fa +/Ubreve 16#016c +/Ucaron 16#01d3 +/Ucircle 16#24ca +/Ucircumflex 16#00db +/Ucircumflexbelow 16#1e76 +/Ucircumflexsmall 16#f7fb +/Ucyrillic 16#0423 +/Udblacute 16#0170 +/Udblgrave 16#0214 +/Udieresis 16#00dc +/Udieresisacute 16#01d7 +/Udieresisbelow 16#1e72 +/Udieresiscaron 16#01d9 +/Udieresiscyrillic 16#04f0 +/Udieresisgrave 16#01db +/Udieresismacron 16#01d5 +/Udieresissmall 16#f7fc +/Udotbelow 16#1ee4 +/Ugrave 16#00d9 +/Ugravesmall 16#f7f9 +/Uhookabove 16#1ee6 +/Uhorn 16#01af +/Uhornacute 16#1ee8 +/Uhorndotbelow 16#1ef0 +/Uhorngrave 16#1eea +/Uhornhookabove 16#1eec +/Uhorntilde 16#1eee +/Uhungarumlaut 16#0170 +/Uhungarumlautcyrillic 16#04f2 +/Uinvertedbreve 16#0216 +/Ukcyrillic 16#0478 +/Umacron 16#016a +/Umacroncyrillic 16#04ee +/Umacrondieresis 16#1e7a +/Umonospace 16#ff35 +/Uogonek 16#0172 +/Upsilon 16#03a5 +/Upsilon1 16#03d2 +/Upsilonacutehooksymbolgreek 16#03d3 +/Upsilonafrican 16#01b1 +/Upsilondieresis 16#03ab +/Upsilondieresishooksymbolgreek 16#03d4 +/Upsilonhooksymbol 16#03d2 +/Upsilontonos 16#038e +/Uring 16#016e +/Ushortcyrillic 16#040e +/Usmall 16#f775 +/Ustraightcyrillic 16#04ae +/Ustraightstrokecyrillic 16#04b0 +/Utilde 16#0168 +/Utildeacute 16#1e78 +/Utildebelow 16#1e74 +/V 16#0056 +/Vcircle 16#24cb +/Vdotbelow 16#1e7e +/Vecyrillic 16#0412 +/Vewarmenian 16#054e +/Vhook 16#01b2 +/Vmonospace 16#ff36 +/Voarmenian 16#0548 +/Vsmall 16#f776 +/Vtilde 16#1e7c +/W 16#0057 +/Wacute 16#1e82 +/Wcircle 16#24cc +/Wcircumflex 16#0174 +/Wdieresis 16#1e84 +/Wdotaccent 16#1e86 +/Wdotbelow 16#1e88 +/Wgrave 16#1e80 +/Wmonospace 16#ff37 +/Wsmall 16#f777 +/X 16#0058 +/Xcircle 16#24cd +/Xdieresis 16#1e8c +/Xdotaccent 16#1e8a +/Xeharmenian 16#053d +/Xi 16#039e +/Xmonospace 16#ff38 +/Xsmall 16#f778 +/Y 16#0059 +/Yacute 16#00dd +/Yacutesmall 16#f7fd +/Yatcyrillic 16#0462 +/Ycircle 16#24ce +/Ycircumflex 16#0176 +/Ydieresis 16#0178 +/Ydieresissmall 16#f7ff +/Ydotaccent 16#1e8e +/Ydotbelow 16#1ef4 +/Yericyrillic 16#042b +/Yerudieresiscyrillic 16#04f8 +/Ygrave 16#1ef2 +/Yhook 16#01b3 +/Yhookabove 16#1ef6 +/Yiarmenian 16#0545 +/Yicyrillic 16#0407 +/Yiwnarmenian 16#0552 +/Ymonospace 16#ff39 +/Ysmall 16#f779 +/Ytilde 16#1ef8 +/Yusbigcyrillic 16#046a +/Yusbigiotifiedcyrillic 16#046c +/Yuslittlecyrillic 16#0466 +/Yuslittleiotifiedcyrillic 16#0468 +/Z 16#005a +/Zaarmenian 16#0536 +/Zacute 16#0179 +/Zcaron 16#017d +/Zcaronsmall 16#f6ff +/Zcircle 16#24cf +/Zcircumflex 16#1e90 +/Zdot 16#017b +/Zdotaccent 16#017b +/Zdotbelow 16#1e92 +/Zecyrillic 16#0417 +/Zedescendercyrillic 16#0498 +/Zedieresiscyrillic 16#04de +/Zeta 16#0396 +/Zhearmenian 16#053a +/Zhebrevecyrillic 16#04c1 +/Zhecyrillic 16#0416 +/Zhedescendercyrillic 16#0496 +/Zhedieresiscyrillic 16#04dc +/Zlinebelow 16#1e94 +/Zmonospace 16#ff3a +/Zsmall 16#f77a +/Zstroke 16#01b5 +/a 16#0061 +/aabengali 16#0986 +/aacute 16#00e1 +/aadeva 16#0906 +/aagujarati 16#0a86 +/aagurmukhi 16#0a06 +/aamatragurmukhi 16#0a3e +/aarusquare 16#3303 +/aavowelsignbengali 16#09be +/aavowelsigndeva 16#093e +/aavowelsigngujarati 16#0abe +/abbreviationmarkarmenian 16#055f +/abbreviationsigndeva 16#0970 +/abengali 16#0985 +/abopomofo 16#311a +/abreve 16#0103 +/abreveacute 16#1eaf +/abrevecyrillic 16#04d1 +/abrevedotbelow 16#1eb7 +/abrevegrave 16#1eb1 +/abrevehookabove 16#1eb3 +/abrevetilde 16#1eb5 +/acaron 16#01ce +/acircle 16#24d0 +/acircumflex 16#00e2 +/acircumflexacute 16#1ea5 +/acircumflexdotbelow 16#1ead +/acircumflexgrave 16#1ea7 +/acircumflexhookabove 16#1ea9 +/acircumflextilde 16#1eab +/acute 16#00b4 +/acutebelowcmb 16#0317 +/acutecmb 16#0301 +/acutecomb 16#0301 +/acutedeva 16#0954 +/acutelowmod 16#02cf +/acutetonecmb 16#0341 +/acyrillic 16#0430 +/adblgrave 16#0201 +/addakgurmukhi 16#0a71 +/adeva 16#0905 +/adieresis 16#00e4 +/adieresiscyrillic 16#04d3 +/adieresismacron 16#01df +/adotbelow 16#1ea1 +/adotmacron 16#01e1 +/ae 16#00e6 +/aeacute 16#01fd +/aekorean 16#3150 +/aemacron 16#01e3 +/afii00208 16#2015 +/afii08941 16#20a4 +/afii10017 16#0410 +/afii10018 16#0411 +/afii10019 16#0412 +/afii10020 16#0413 +/afii10021 16#0414 +/afii10022 16#0415 +/afii10023 16#0401 +/afii10024 16#0416 +/afii10025 16#0417 +/afii10026 16#0418 +/afii10027 16#0419 +/afii10028 16#041a +/afii10029 16#041b +/afii10030 16#041c +/afii10031 16#041d +/afii10032 16#041e +/afii10033 16#041f +/afii10034 16#0420 +/afii10035 16#0421 +/afii10036 16#0422 +/afii10037 16#0423 +/afii10038 16#0424 +/afii10039 16#0425 +/afii10040 16#0426 +/afii10041 16#0427 +/afii10042 16#0428 +/afii10043 16#0429 +/afii10044 16#042a +/afii10045 16#042b +/afii10046 16#042c +/afii10047 16#042d +/afii10048 16#042e +/afii10049 16#042f +/afii10050 16#0490 +/afii10051 16#0402 +/afii10052 16#0403 +/afii10053 16#0404 +/afii10054 16#0405 +/afii10055 16#0406 +/afii10056 16#0407 +/afii10057 16#0408 +/afii10058 16#0409 +/afii10059 16#040a +/afii10060 16#040b +/afii10061 16#040c +/afii10062 16#040e +/afii10063 16#f6c4 +/afii10064 16#f6c5 +/afii10065 16#0430 +/afii10066 16#0431 +/afii10067 16#0432 +/afii10068 16#0433 +/afii10069 16#0434 +/afii10070 16#0435 +/afii10071 16#0451 +/afii10072 16#0436 +/afii10073 16#0437 +/afii10074 16#0438 +/afii10075 16#0439 +/afii10076 16#043a +/afii10077 16#043b +/afii10078 16#043c +/afii10079 16#043d +/afii10080 16#043e +/afii10081 16#043f +/afii10082 16#0440 +/afii10083 16#0441 +/afii10084 16#0442 +/afii10085 16#0443 +/afii10086 16#0444 +/afii10087 16#0445 +/afii10088 16#0446 +/afii10089 16#0447 +/afii10090 16#0448 +/afii10091 16#0449 +/afii10092 16#044a +/afii10093 16#044b +/afii10094 16#044c +/afii10095 16#044d +/afii10096 16#044e +/afii10097 16#044f +/afii10098 16#0491 +/afii10099 16#0452 +/afii10100 16#0453 +/afii10101 16#0454 +/afii10102 16#0455 +/afii10103 16#0456 +/afii10104 16#0457 +/afii10105 16#0458 +/afii10106 16#0459 +/afii10107 16#045a +/afii10108 16#045b +/afii10109 16#045c +/afii10110 16#045e +/afii10145 16#040f +/afii10146 16#0462 +/afii10147 16#0472 +/afii10148 16#0474 +/afii10192 16#f6c6 +/afii10193 16#045f +/afii10194 16#0463 +/afii10195 16#0473 +/afii10196 16#0475 +/afii10831 16#f6c7 +/afii10832 16#f6c8 +/afii10846 16#04d9 +/afii299 16#200e +/afii300 16#200f +/afii301 16#200d +/afii57381 16#066a +/afii57388 16#060c +/afii57392 16#0660 +/afii57393 16#0661 +/afii57394 16#0662 +/afii57395 16#0663 +/afii57396 16#0664 +/afii57397 16#0665 +/afii57398 16#0666 +/afii57399 16#0667 +/afii57400 16#0668 +/afii57401 16#0669 +/afii57403 16#061b +/afii57407 16#061f +/afii57409 16#0621 +/afii57410 16#0622 +/afii57411 16#0623 +/afii57412 16#0624 +/afii57413 16#0625 +/afii57414 16#0626 +/afii57415 16#0627 +/afii57416 16#0628 +/afii57417 16#0629 +/afii57418 16#062a +/afii57419 16#062b +/afii57420 16#062c +/afii57421 16#062d +/afii57422 16#062e +/afii57423 16#062f +/afii57424 16#0630 +/afii57425 16#0631 +/afii57426 16#0632 +/afii57427 16#0633 +/afii57428 16#0634 +/afii57429 16#0635 +/afii57430 16#0636 +/afii57431 16#0637 +/afii57432 16#0638 +/afii57433 16#0639 +/afii57434 16#063a +/afii57440 16#0640 +/afii57441 16#0641 +/afii57442 16#0642 +/afii57443 16#0643 +/afii57444 16#0644 +/afii57445 16#0645 +/afii57446 16#0646 +/afii57448 16#0648 +/afii57449 16#0649 +/afii57450 16#064a +/afii57451 16#064b +/afii57452 16#064c +/afii57453 16#064d +/afii57454 16#064e +/afii57455 16#064f +/afii57456 16#0650 +/afii57457 16#0651 +/afii57458 16#0652 +/afii57470 16#0647 +/afii57505 16#06a4 +/afii57506 16#067e +/afii57507 16#0686 +/afii57508 16#0698 +/afii57509 16#06af +/afii57511 16#0679 +/afii57512 16#0688 +/afii57513 16#0691 +/afii57514 16#06ba +/afii57519 16#06d2 +/afii57534 16#06d5 +/afii57636 16#20aa +/afii57645 16#05be +/afii57658 16#05c3 +/afii57664 16#05d0 +/afii57665 16#05d1 +/afii57666 16#05d2 +/afii57667 16#05d3 +/afii57668 16#05d4 +/afii57669 16#05d5 +/afii57670 16#05d6 +/afii57671 16#05d7 +/afii57672 16#05d8 +/afii57673 16#05d9 +/afii57674 16#05da +/afii57675 16#05db +/afii57676 16#05dc +/afii57677 16#05dd +/afii57678 16#05de +/afii57679 16#05df +/afii57680 16#05e0 +/afii57681 16#05e1 +/afii57682 16#05e2 +/afii57683 16#05e3 +/afii57684 16#05e4 +/afii57685 16#05e5 +/afii57686 16#05e6 +/afii57687 16#05e7 +/afii57688 16#05e8 +/afii57689 16#05e9 +/afii57690 16#05ea +/afii57694 16#fb2a +/afii57695 16#fb2b +/afii57700 16#fb4b +/afii57705 16#fb1f +/afii57716 16#05f0 +/afii57717 16#05f1 +/afii57718 16#05f2 +/afii57723 16#fb35 +/afii57793 16#05b4 +/afii57794 16#05b5 +/afii57795 16#05b6 +/afii57796 16#05bb +/afii57797 16#05b8 +/afii57798 16#05b7 +/afii57799 16#05b0 +/afii57800 16#05b2 +/afii57801 16#05b1 +/afii57802 16#05b3 +/afii57803 16#05c2 +/afii57804 16#05c1 +/afii57806 16#05b9 +/afii57807 16#05bc +/afii57839 16#05bd +/afii57841 16#05bf +/afii57842 16#05c0 +/afii57929 16#02bc +/afii61248 16#2105 +/afii61289 16#2113 +/afii61352 16#2116 +/afii61573 16#202c +/afii61574 16#202d +/afii61575 16#202e +/afii61664 16#200c +/afii63167 16#066d +/afii64937 16#02bd +/agrave 16#00e0 +/agujarati 16#0a85 +/agurmukhi 16#0a05 +/ahiragana 16#3042 +/ahookabove 16#1ea3 +/aibengali 16#0990 +/aibopomofo 16#311e +/aideva 16#0910 +/aiecyrillic 16#04d5 +/aigujarati 16#0a90 +/aigurmukhi 16#0a10 +/aimatragurmukhi 16#0a48 +/ainarabic 16#0639 +/ainfinalarabic 16#feca +/aininitialarabic 16#fecb +/ainmedialarabic 16#fecc +/ainvertedbreve 16#0203 +/aivowelsignbengali 16#09c8 +/aivowelsigndeva 16#0948 +/aivowelsigngujarati 16#0ac8 +/akatakana 16#30a2 +/akatakanahalfwidth 16#ff71 +/akorean 16#314f +/alef 16#05d0 +/alefarabic 16#0627 +/alefdageshhebrew 16#fb30 +/aleffinalarabic 16#fe8e +/alefhamzaabovearabic 16#0623 +/alefhamzaabovefinalarabic 16#fe84 +/alefhamzabelowarabic 16#0625 +/alefhamzabelowfinalarabic 16#fe88 +/alefhebrew 16#05d0 +/aleflamedhebrew 16#fb4f +/alefmaddaabovearabic 16#0622 +/alefmaddaabovefinalarabic 16#fe82 +/alefmaksuraarabic 16#0649 +/alefmaksurafinalarabic 16#fef0 +/alefmaksurainitialarabic 16#fef3 +/alefmaksuramedialarabic 16#fef4 +/alefpatahhebrew 16#fb2e +/alefqamatshebrew 16#fb2f +/aleph 16#2135 +/allequal 16#224c +/alpha 16#03b1 +/alphatonos 16#03ac +/amacron 16#0101 +/amonospace 16#ff41 +/ampersand 16#0026 +/ampersandmonospace 16#ff06 +/ampersandsmall 16#f726 +/amsquare 16#33c2 +/anbopomofo 16#3122 +/angbopomofo 16#3124 +/angkhankhuthai 16#0e5a +/angle 16#2220 +/anglebracketleft 16#3008 +/anglebracketleftvertical 16#fe3f +/anglebracketright 16#3009 +/anglebracketrightvertical 16#fe40 +/angleleft 16#2329 +/angleright 16#232a +/angstrom 16#212b +/anoteleia 16#0387 +/anudattadeva 16#0952 +/anusvarabengali 16#0982 +/anusvaradeva 16#0902 +/anusvaragujarati 16#0a82 +/aogonek 16#0105 +/apaatosquare 16#3300 +/aparen 16#249c +/apostrophearmenian 16#055a +/apostrophemod 16#02bc +/apple 16#f8ff +/approaches 16#2250 +/approxequal 16#2248 +/approxequalorimage 16#2252 +/approximatelyequal 16#2245 +/araeaekorean 16#318e +/araeakorean 16#318d +/arc 16#2312 +/arighthalfring 16#1e9a +/aring 16#00e5 +/aringacute 16#01fb +/aringbelow 16#1e01 +/arrowboth 16#2194 +/arrowdashdown 16#21e3 +/arrowdashleft 16#21e0 +/arrowdashright 16#21e2 +/arrowdashup 16#21e1 +/arrowdblboth 16#21d4 +/arrowdbldown 16#21d3 +/arrowdblleft 16#21d0 +/arrowdblright 16#21d2 +/arrowdblup 16#21d1 +/arrowdown 16#2193 +/arrowdownleft 16#2199 +/arrowdownright 16#2198 +/arrowdownwhite 16#21e9 +/arrowheaddownmod 16#02c5 +/arrowheadleftmod 16#02c2 +/arrowheadrightmod 16#02c3 +/arrowheadupmod 16#02c4 +/arrowhorizex 16#f8e7 +/arrowleft 16#2190 +/arrowleftdbl 16#21d0 +/arrowleftdblstroke 16#21cd +/arrowleftoverright 16#21c6 +/arrowleftwhite 16#21e6 +/arrowright 16#2192 +/arrowrightdblstroke 16#21cf +/arrowrightheavy 16#279e +/arrowrightoverleft 16#21c4 +/arrowrightwhite 16#21e8 +/arrowtableft 16#21e4 +/arrowtabright 16#21e5 +/arrowup 16#2191 +/arrowupdn 16#2195 +/arrowupdnbse 16#21a8 +/arrowupdownbase 16#21a8 +/arrowupleft 16#2196 +/arrowupleftofdown 16#21c5 +/arrowupright 16#2197 +/arrowupwhite 16#21e7 +/arrowvertex 16#f8e6 +/asciicircum 16#005e +/asciicircummonospace 16#ff3e +/asciitilde 16#007e +/asciitildemonospace 16#ff5e +/ascript 16#0251 +/ascriptturned 16#0252 +/asmallhiragana 16#3041 +/asmallkatakana 16#30a1 +/asmallkatakanahalfwidth 16#ff67 +/asterisk 16#002a +/asteriskaltonearabic 16#066d +/asteriskarabic 16#066d +/asteriskmath 16#2217 +/asteriskmonospace 16#ff0a +/asterisksmall 16#fe61 +/asterism 16#2042 +/asuperior 16#f6e9 +/asymptoticallyequal 16#2243 +/at 16#0040 +/atilde 16#00e3 +/atmonospace 16#ff20 +/atsmall 16#fe6b +/aturned 16#0250 +/aubengali 16#0994 +/aubopomofo 16#3120 +/audeva 16#0914 +/augujarati 16#0a94 +/augurmukhi 16#0a14 +/aulengthmarkbengali 16#09d7 +/aumatragurmukhi 16#0a4c +/auvowelsignbengali 16#09cc +/auvowelsigndeva 16#094c +/auvowelsigngujarati 16#0acc +/avagrahadeva 16#093d +/aybarmenian 16#0561 +/ayin 16#05e2 +/ayinaltonehebrew 16#fb20 +/ayinhebrew 16#05e2 +/b 16#0062 +/babengali 16#09ac +/backslash 16#005c +/backslashmonospace 16#ff3c +/badeva 16#092c +/bagujarati 16#0aac +/bagurmukhi 16#0a2c +/bahiragana 16#3070 +/bahtthai 16#0e3f +/bakatakana 16#30d0 +/bar 16#007c +/barmonospace 16#ff5c +/bbopomofo 16#3105 +/bcircle 16#24d1 +/bdotaccent 16#1e03 +/bdotbelow 16#1e05 +/beamedsixteenthnotes 16#266c +/because 16#2235 +/becyrillic 16#0431 +/beharabic 16#0628 +/behfinalarabic 16#fe90 +/behinitialarabic 16#fe91 +/behiragana 16#3079 +/behmedialarabic 16#fe92 +/behmeeminitialarabic 16#fc9f +/behmeemisolatedarabic 16#fc08 +/behnoonfinalarabic 16#fc6d +/bekatakana 16#30d9 +/benarmenian 16#0562 +/bet 16#05d1 +/beta 16#03b2 +/betasymbolgreek 16#03d0 +/betdagesh 16#fb31 +/betdageshhebrew 16#fb31 +/bethebrew 16#05d1 +/betrafehebrew 16#fb4c +/bhabengali 16#09ad +/bhadeva 16#092d +/bhagujarati 16#0aad +/bhagurmukhi 16#0a2d +/bhook 16#0253 +/bihiragana 16#3073 +/bikatakana 16#30d3 +/bilabialclick 16#0298 +/bindigurmukhi 16#0a02 +/birusquare 16#3331 +/blackcircle 16#25cf +/blackdiamond 16#25c6 +/blackdownpointingtriangle 16#25bc +/blackleftpointingpointer 16#25c4 +/blackleftpointingtriangle 16#25c0 +/blacklenticularbracketleft 16#3010 +/blacklenticularbracketleftvertical 16#fe3b +/blacklenticularbracketright 16#3011 +/blacklenticularbracketrightvertical 16#fe3c +/blacklowerlefttriangle 16#25e3 +/blacklowerrighttriangle 16#25e2 +/blackrectangle 16#25ac +/blackrightpointingpointer 16#25ba +/blackrightpointingtriangle 16#25b6 +/blacksmallsquare 16#25aa +/blacksmilingface 16#263b +/blacksquare 16#25a0 +/blackstar 16#2605 +/blackupperlefttriangle 16#25e4 +/blackupperrighttriangle 16#25e5 +/blackuppointingsmalltriangle 16#25b4 +/blackuppointingtriangle 16#25b2 +/blank 16#2423 +/blinebelow 16#1e07 +/block 16#2588 +/bmonospace 16#ff42 +/bobaimaithai 16#0e1a +/bohiragana 16#307c +/bokatakana 16#30dc +/bparen 16#249d +/bqsquare 16#33c3 +/braceex 16#f8f4 +/braceleft 16#007b +/braceleftbt 16#f8f3 +/braceleftmid 16#f8f2 +/braceleftmonospace 16#ff5b +/braceleftsmall 16#fe5b +/bracelefttp 16#f8f1 +/braceleftvertical 16#fe37 +/braceright 16#007d +/bracerightbt 16#f8fe +/bracerightmid 16#f8fd +/bracerightmonospace 16#ff5d +/bracerightsmall 16#fe5c +/bracerighttp 16#f8fc +/bracerightvertical 16#fe38 +/bracketleft 16#005b +/bracketleftbt 16#f8f0 +/bracketleftex 16#f8ef +/bracketleftmonospace 16#ff3b +/bracketlefttp 16#f8ee +/bracketright 16#005d +/bracketrightbt 16#f8fb +/bracketrightex 16#f8fa +/bracketrightmonospace 16#ff3d +/bracketrighttp 16#f8f9 +/breve 16#02d8 +/brevebelowcmb 16#032e +/brevecmb 16#0306 +/breveinvertedbelowcmb 16#032f +/breveinvertedcmb 16#0311 +/breveinverteddoublecmb 16#0361 +/bridgebelowcmb 16#032a +/bridgeinvertedbelowcmb 16#033a +/brokenbar 16#00a6 +/bstroke 16#0180 +/bsuperior 16#f6ea +/btopbar 16#0183 +/buhiragana 16#3076 +/bukatakana 16#30d6 +/bullet 16#2022 +/bulletinverse 16#25d8 +/bulletoperator 16#2219 +/bullseye 16#25ce +/c 16#0063 +/caarmenian 16#056e +/cabengali 16#099a +/cacute 16#0107 +/cadeva 16#091a +/cagujarati 16#0a9a +/cagurmukhi 16#0a1a +/calsquare 16#3388 +/candrabindubengali 16#0981 +/candrabinducmb 16#0310 +/candrabindudeva 16#0901 +/candrabindugujarati 16#0a81 +/capslock 16#21ea +/careof 16#2105 +/caron 16#02c7 +/caronbelowcmb 16#032c +/caroncmb 16#030c +/carriagereturn 16#21b5 +/cbopomofo 16#3118 +/ccaron 16#010d +/ccedilla 16#00e7 +/ccedillaacute 16#1e09 +/ccircle 16#24d2 +/ccircumflex 16#0109 +/ccurl 16#0255 +/cdot 16#010b +/cdotaccent 16#010b +/cdsquare 16#33c5 +/cedilla 16#00b8 +/cedillacmb 16#0327 +/cent 16#00a2 +/centigrade 16#2103 +/centinferior 16#f6df +/centmonospace 16#ffe0 +/centoldstyle 16#f7a2 +/centsuperior 16#f6e0 +/chaarmenian 16#0579 +/chabengali 16#099b +/chadeva 16#091b +/chagujarati 16#0a9b +/chagurmukhi 16#0a1b +/chbopomofo 16#3114 +/cheabkhasiancyrillic 16#04bd +/checkmark 16#2713 +/checyrillic 16#0447 +/chedescenderabkhasiancyrillic 16#04bf +/chedescendercyrillic 16#04b7 +/chedieresiscyrillic 16#04f5 +/cheharmenian 16#0573 +/chekhakassiancyrillic 16#04cc +/cheverticalstrokecyrillic 16#04b9 +/chi 16#03c7 +/chieuchacirclekorean 16#3277 +/chieuchaparenkorean 16#3217 +/chieuchcirclekorean 16#3269 +/chieuchkorean 16#314a +/chieuchparenkorean 16#3209 +/chochangthai 16#0e0a +/chochanthai 16#0e08 +/chochingthai 16#0e09 +/chochoethai 16#0e0c +/chook 16#0188 +/cieucacirclekorean 16#3276 +/cieucaparenkorean 16#3216 +/cieuccirclekorean 16#3268 +/cieuckorean 16#3148 +/cieucparenkorean 16#3208 +/cieucuparenkorean 16#321c +/circle 16#25cb +/circlemultiply 16#2297 +/circleot 16#2299 +/circleplus 16#2295 +/circlepostalmark 16#3036 +/circlewithlefthalfblack 16#25d0 +/circlewithrighthalfblack 16#25d1 +/circumflex 16#02c6 +/circumflexbelowcmb 16#032d +/circumflexcmb 16#0302 +/clear 16#2327 +/clickalveolar 16#01c2 +/clickdental 16#01c0 +/clicklateral 16#01c1 +/clickretroflex 16#01c3 +/club 16#2663 +/clubsuitblack 16#2663 +/clubsuitwhite 16#2667 +/cmcubedsquare 16#33a4 +/cmonospace 16#ff43 +/cmsquaredsquare 16#33a0 +/coarmenian 16#0581 +/colon 16#003a +/colonmonetary 16#20a1 +/colonmonospace 16#ff1a +/colonsign 16#20a1 +/colonsmall 16#fe55 +/colontriangularhalfmod 16#02d1 +/colontriangularmod 16#02d0 +/comma 16#002c +/commaabovecmb 16#0313 +/commaaboverightcmb 16#0315 +/commaaccent 16#f6c3 +/commaarabic 16#060c +/commaarmenian 16#055d +/commainferior 16#f6e1 +/commamonospace 16#ff0c +/commareversedabovecmb 16#0314 +/commareversedmod 16#02bd +/commasmall 16#fe50 +/commasuperior 16#f6e2 +/commaturnedabovecmb 16#0312 +/commaturnedmod 16#02bb +/compass 16#263c +/congruent 16#2245 +/contourintegral 16#222e +/control 16#2303 +/controlACK 16#0006 +/controlBEL 16#0007 +/controlBS 16#0008 +/controlCAN 16#0018 +/controlCR 16#000d +/controlDC1 16#0011 +/controlDC2 16#0012 +/controlDC3 16#0013 +/controlDC4 16#0014 +/controlDEL 16#007f +/controlDLE 16#0010 +/controlEM 16#0019 +/controlENQ 16#0005 +/controlEOT 16#0004 +/controlESC 16#001b +/controlETB 16#0017 +/controlETX 16#0003 +/controlFF 16#000c +/controlFS 16#001c +/controlGS 16#001d +/controlHT 16#0009 +/controlLF 16#000a +/controlNAK 16#0015 +/controlRS 16#001e +/controlSI 16#000f +/controlSO 16#000e +/controlSOT 16#0002 +/controlSTX 16#0001 +/controlSUB 16#001a +/controlSYN 16#0016 +/controlUS 16#001f +/controlVT 16#000b +/copyright 16#00a9 +/copyrightsans 16#f8e9 +/copyrightserif 16#f6d9 +/cornerbracketleft 16#300c +/cornerbracketlefthalfwidth 16#ff62 +/cornerbracketleftvertical 16#fe41 +/cornerbracketright 16#300d +/cornerbracketrighthalfwidth 16#ff63 +/cornerbracketrightvertical 16#fe42 +/corporationsquare 16#337f +/cosquare 16#33c7 +/coverkgsquare 16#33c6 +/cparen 16#249e +/cruzeiro 16#20a2 +/cstretched 16#0297 +/curlyand 16#22cf +/curlyor 16#22ce +/currency 16#00a4 +/cyrBreve 16#f6d1 +/cyrFlex 16#f6d2 +/cyrbreve 16#f6d4 +/cyrflex 16#f6d5 +/d 16#0064 +/daarmenian 16#0564 +/dabengali 16#09a6 +/dadarabic 16#0636 +/dadeva 16#0926 +/dadfinalarabic 16#febe +/dadinitialarabic 16#febf +/dadmedialarabic 16#fec0 +/dagesh 16#05bc +/dageshhebrew 16#05bc +/dagger 16#2020 +/daggerdbl 16#2021 +/dagujarati 16#0aa6 +/dagurmukhi 16#0a26 +/dahiragana 16#3060 +/dakatakana 16#30c0 +/dalarabic 16#062f +/dalet 16#05d3 +/daletdagesh 16#fb33 +/daletdageshhebrew 16#fb33 +/dalethebrew 16#05d3 +/dalfinalarabic 16#feaa +/dammaarabic 16#064f +/dammalowarabic 16#064f +/dammatanaltonearabic 16#064c +/dammatanarabic 16#064c +/danda 16#0964 +/dargahebrew 16#05a7 +/dargalefthebrew 16#05a7 +/dasiapneumatacyrilliccmb 16#0485 +/dblGrave 16#f6d3 +/dblanglebracketleft 16#300a +/dblanglebracketleftvertical 16#fe3d +/dblanglebracketright 16#300b +/dblanglebracketrightvertical 16#fe3e +/dblarchinvertedbelowcmb 16#032b +/dblarrowleft 16#21d4 +/dblarrowright 16#21d2 +/dbldanda 16#0965 +/dblgrave 16#f6d6 +/dblgravecmb 16#030f +/dblintegral 16#222c +/dbllowline 16#2017 +/dbllowlinecmb 16#0333 +/dbloverlinecmb 16#033f +/dblprimemod 16#02ba +/dblverticalbar 16#2016 +/dblverticallineabovecmb 16#030e +/dbopomofo 16#3109 +/dbsquare 16#33c8 +/dcaron 16#010f +/dcedilla 16#1e11 +/dcircle 16#24d3 +/dcircumflexbelow 16#1e13 +/dcroat 16#0111 +/ddabengali 16#09a1 +/ddadeva 16#0921 +/ddagujarati 16#0aa1 +/ddagurmukhi 16#0a21 +/ddalarabic 16#0688 +/ddalfinalarabic 16#fb89 +/dddhadeva 16#095c +/ddhabengali 16#09a2 +/ddhadeva 16#0922 +/ddhagujarati 16#0aa2 +/ddhagurmukhi 16#0a22 +/ddotaccent 16#1e0b +/ddotbelow 16#1e0d +/decimalseparatorarabic 16#066b +/decimalseparatorpersian 16#066b +/decyrillic 16#0434 +/degree 16#00b0 +/dehihebrew 16#05ad +/dehiragana 16#3067 +/deicoptic 16#03ef +/dekatakana 16#30c7 +/deleteleft 16#232b +/deleteright 16#2326 +/delta 16#03b4 +/deltaturned 16#018d +/denominatorminusonenumeratorbengali 16#09f8 +/dezh 16#02a4 +/dhabengali 16#09a7 +/dhadeva 16#0927 +/dhagujarati 16#0aa7 +/dhagurmukhi 16#0a27 +/dhook 16#0257 +/dialytikatonos 16#0385 +/dialytikatonoscmb 16#0344 +/diamond 16#2666 +/diamondsuitwhite 16#2662 +/dieresis 16#00a8 +/dieresisacute 16#f6d7 +/dieresisbelowcmb 16#0324 +/dieresiscmb 16#0308 +/dieresisgrave 16#f6d8 +/dieresistonos 16#0385 +/dihiragana 16#3062 +/dikatakana 16#30c2 +/dittomark 16#3003 +/divide 16#00f7 +/divides 16#2223 +/divisionslash 16#2215 +/djecyrillic 16#0452 +/dkshade 16#2593 +/dlinebelow 16#1e0f +/dlsquare 16#3397 +/dmacron 16#0111 +/dmonospace 16#ff44 +/dnblock 16#2584 +/dochadathai 16#0e0e +/dodekthai 16#0e14 +/dohiragana 16#3069 +/dokatakana 16#30c9 +/dollar 16#0024 +/dollarinferior 16#f6e3 +/dollarmonospace 16#ff04 +/dollaroldstyle 16#f724 +/dollarsmall 16#fe69 +/dollarsuperior 16#f6e4 +/dong 16#20ab +/dorusquare 16#3326 +/dotaccent 16#02d9 +/dotaccentcmb 16#0307 +/dotbelowcmb 16#0323 +/dotbelowcomb 16#0323 +/dotkatakana 16#30fb +/dotlessi 16#0131 +/dotlessj 16#f6be +/dotlessjstrokehook 16#0284 +/dotmath 16#22c5 +/dottedcircle 16#25cc +/doubleyodpatah 16#fb1f +/doubleyodpatahhebrew 16#fb1f +/downtackbelowcmb 16#031e +/downtackmod 16#02d5 +/dparen 16#249f +/dsuperior 16#f6eb +/dtail 16#0256 +/dtopbar 16#018c +/duhiragana 16#3065 +/dukatakana 16#30c5 +/dz 16#01f3 +/dzaltone 16#02a3 +/dzcaron 16#01c6 +/dzcurl 16#02a5 +/dzeabkhasiancyrillic 16#04e1 +/dzecyrillic 16#0455 +/dzhecyrillic 16#045f +/e 16#0065 +/eacute 16#00e9 +/earth 16#2641 +/ebengali 16#098f +/ebopomofo 16#311c +/ebreve 16#0115 +/ecandradeva 16#090d +/ecandragujarati 16#0a8d +/ecandravowelsigndeva 16#0945 +/ecandravowelsigngujarati 16#0ac5 +/ecaron 16#011b +/ecedillabreve 16#1e1d +/echarmenian 16#0565 +/echyiwnarmenian 16#0587 +/ecircle 16#24d4 +/ecircumflex 16#00ea +/ecircumflexacute 16#1ebf +/ecircumflexbelow 16#1e19 +/ecircumflexdotbelow 16#1ec7 +/ecircumflexgrave 16#1ec1 +/ecircumflexhookabove 16#1ec3 +/ecircumflextilde 16#1ec5 +/ecyrillic 16#0454 +/edblgrave 16#0205 +/edeva 16#090f +/edieresis 16#00eb +/edot 16#0117 +/edotaccent 16#0117 +/edotbelow 16#1eb9 +/eegurmukhi 16#0a0f +/eematragurmukhi 16#0a47 +/efcyrillic 16#0444 +/egrave 16#00e8 +/egujarati 16#0a8f +/eharmenian 16#0567 +/ehbopomofo 16#311d +/ehiragana 16#3048 +/ehookabove 16#1ebb +/eibopomofo 16#311f +/eight 16#0038 +/eightarabic 16#0668 +/eightbengali 16#09ee +/eightcircle 16#2467 +/eightcircleinversesansserif 16#2791 +/eightdeva 16#096e +/eighteencircle 16#2471 +/eighteenparen 16#2485 +/eighteenperiod 16#2499 +/eightgujarati 16#0aee +/eightgurmukhi 16#0a6e +/eighthackarabic 16#0668 +/eighthangzhou 16#3028 +/eighthnotebeamed 16#266b +/eightideographicparen 16#3227 +/eightinferior 16#2088 +/eightmonospace 16#ff18 +/eightoldstyle 16#f738 +/eightparen 16#247b +/eightperiod 16#248f +/eightpersian 16#06f8 +/eightroman 16#2177 +/eightsuperior 16#2078 +/eightthai 16#0e58 +/einvertedbreve 16#0207 +/eiotifiedcyrillic 16#0465 +/ekatakana 16#30a8 +/ekatakanahalfwidth 16#ff74 +/ekonkargurmukhi 16#0a74 +/ekorean 16#3154 +/elcyrillic 16#043b +/element 16#2208 +/elevencircle 16#246a +/elevenparen 16#247e +/elevenperiod 16#2492 +/elevenroman 16#217a +/ellipsis 16#2026 +/ellipsisvertical 16#22ee +/emacron 16#0113 +/emacronacute 16#1e17 +/emacrongrave 16#1e15 +/emcyrillic 16#043c +/emdash 16#2014 +/emdashvertical 16#fe31 +/emonospace 16#ff45 +/emphasismarkarmenian 16#055b +/emptyset 16#2205 +/enbopomofo 16#3123 +/encyrillic 16#043d +/endash 16#2013 +/endashvertical 16#fe32 +/endescendercyrillic 16#04a3 +/eng 16#014b +/engbopomofo 16#3125 +/enghecyrillic 16#04a5 +/enhookcyrillic 16#04c8 +/enspace 16#2002 +/eogonek 16#0119 +/eokorean 16#3153 +/eopen 16#025b +/eopenclosed 16#029a +/eopenreversed 16#025c +/eopenreversedclosed 16#025e +/eopenreversedhook 16#025d +/eparen 16#24a0 +/epsilon 16#03b5 +/epsilontonos 16#03ad +/equal 16#003d +/equalmonospace 16#ff1d +/equalsmall 16#fe66 +/equalsuperior 16#207c +/equivalence 16#2261 +/erbopomofo 16#3126 +/ercyrillic 16#0440 +/ereversed 16#0258 +/ereversedcyrillic 16#044d +/escyrillic 16#0441 +/esdescendercyrillic 16#04ab +/esh 16#0283 +/eshcurl 16#0286 +/eshortdeva 16#090e +/eshortvowelsigndeva 16#0946 +/eshreversedloop 16#01aa +/eshsquatreversed 16#0285 +/esmallhiragana 16#3047 +/esmallkatakana 16#30a7 +/esmallkatakanahalfwidth 16#ff6a +/estimated 16#212e +/esuperior 16#f6ec +/eta 16#03b7 +/etarmenian 16#0568 +/etatonos 16#03ae +/eth 16#00f0 +/etilde 16#1ebd +/etildebelow 16#1e1b +/etnahtafoukhhebrew 16#0591 +/etnahtafoukhlefthebrew 16#0591 +/etnahtahebrew 16#0591 +/etnahtalefthebrew 16#0591 +/eturned 16#01dd +/eukorean 16#3161 +/euro 16#20ac +/evowelsignbengali 16#09c7 +/evowelsigndeva 16#0947 +/evowelsigngujarati 16#0ac7 +/exclam 16#0021 +/exclamarmenian 16#055c +/exclamdbl 16#203c +/exclamdown 16#00a1 +/exclamdownsmall 16#f7a1 +/exclammonospace 16#ff01 +/exclamsmall 16#f721 +/existential 16#2203 +/ezh 16#0292 +/ezhcaron 16#01ef +/ezhcurl 16#0293 +/ezhreversed 16#01b9 +/ezhtail 16#01ba +/f 16#0066 +/fadeva 16#095e +/fagurmukhi 16#0a5e +/fahrenheit 16#2109 +/fathaarabic 16#064e +/fathalowarabic 16#064e +/fathatanarabic 16#064b +/fbopomofo 16#3108 +/fcircle 16#24d5 +/fdotaccent 16#1e1f +/feharabic 16#0641 +/feharmenian 16#0586 +/fehfinalarabic 16#fed2 +/fehinitialarabic 16#fed3 +/fehmedialarabic 16#fed4 +/feicoptic 16#03e5 +/female 16#2640 +/ff 16#fb00 +/ffi 16#fb03 +/ffl 16#fb04 +/fi 16#fb01 +/fifteencircle 16#246e +/fifteenparen 16#2482 +/fifteenperiod 16#2496 +/figuredash 16#2012 +/filledbox 16#25a0 +/filledrect 16#25ac +/finalkaf 16#05da +/finalkafdagesh 16#fb3a +/finalkafdageshhebrew 16#fb3a +/finalkafhebrew 16#05da +/finalmem 16#05dd +/finalmemhebrew 16#05dd +/finalnun 16#05df +/finalnunhebrew 16#05df +/finalpe 16#05e3 +/finalpehebrew 16#05e3 +/finaltsadi 16#05e5 +/finaltsadihebrew 16#05e5 +/firsttonechinese 16#02c9 +/fisheye 16#25c9 +/fitacyrillic 16#0473 +/five 16#0035 +/fivearabic 16#0665 +/fivebengali 16#09eb +/fivecircle 16#2464 +/fivecircleinversesansserif 16#278e +/fivedeva 16#096b +/fiveeighths 16#215d +/fivegujarati 16#0aeb +/fivegurmukhi 16#0a6b +/fivehackarabic 16#0665 +/fivehangzhou 16#3025 +/fiveideographicparen 16#3224 +/fiveinferior 16#2085 +/fivemonospace 16#ff15 +/fiveoldstyle 16#f735 +/fiveparen 16#2478 +/fiveperiod 16#248c +/fivepersian 16#06f5 +/fiveroman 16#2174 +/fivesuperior 16#2075 +/fivethai 16#0e55 +/fl 16#fb02 +/florin 16#0192 +/fmonospace 16#ff46 +/fmsquare 16#3399 +/fofanthai 16#0e1f +/fofathai 16#0e1d +/fongmanthai 16#0e4f +/forall 16#2200 +/four 16#0034 +/fourarabic 16#0664 +/fourbengali 16#09ea +/fourcircle 16#2463 +/fourcircleinversesansserif 16#278d +/fourdeva 16#096a +/fourgujarati 16#0aea +/fourgurmukhi 16#0a6a +/fourhackarabic 16#0664 +/fourhangzhou 16#3024 +/fourideographicparen 16#3223 +/fourinferior 16#2084 +/fourmonospace 16#ff14 +/fournumeratorbengali 16#09f7 +/fouroldstyle 16#f734 +/fourparen 16#2477 +/fourperiod 16#248b +/fourpersian 16#06f4 +/fourroman 16#2173 +/foursuperior 16#2074 +/fourteencircle 16#246d +/fourteenparen 16#2481 +/fourteenperiod 16#2495 +/fourthai 16#0e54 +/fourthtonechinese 16#02cb +/fparen 16#24a1 +/fraction 16#2044 +/franc 16#20a3 +/g 16#0067 +/gabengali 16#0997 +/gacute 16#01f5 +/gadeva 16#0917 +/gafarabic 16#06af +/gaffinalarabic 16#fb93 +/gafinitialarabic 16#fb94 +/gafmedialarabic 16#fb95 +/gagujarati 16#0a97 +/gagurmukhi 16#0a17 +/gahiragana 16#304c +/gakatakana 16#30ac +/gamma 16#03b3 +/gammalatinsmall 16#0263 +/gammasuperior 16#02e0 +/gangiacoptic 16#03eb +/gbopomofo 16#310d +/gbreve 16#011f +/gcaron 16#01e7 +/gcedilla 16#0123 +/gcircle 16#24d6 +/gcircumflex 16#011d +/gcommaaccent 16#0123 +/gdot 16#0121 +/gdotaccent 16#0121 +/gecyrillic 16#0433 +/gehiragana 16#3052 +/gekatakana 16#30b2 +/geometricallyequal 16#2251 +/gereshaccenthebrew 16#059c +/gereshhebrew 16#05f3 +/gereshmuqdamhebrew 16#059d +/germandbls 16#00df +/gershayimaccenthebrew 16#059e +/gershayimhebrew 16#05f4 +/getamark 16#3013 +/ghabengali 16#0998 +/ghadarmenian 16#0572 +/ghadeva 16#0918 +/ghagujarati 16#0a98 +/ghagurmukhi 16#0a18 +/ghainarabic 16#063a +/ghainfinalarabic 16#fece +/ghaininitialarabic 16#fecf +/ghainmedialarabic 16#fed0 +/ghemiddlehookcyrillic 16#0495 +/ghestrokecyrillic 16#0493 +/gheupturncyrillic 16#0491 +/ghhadeva 16#095a +/ghhagurmukhi 16#0a5a +/ghook 16#0260 +/ghzsquare 16#3393 +/gihiragana 16#304e +/gikatakana 16#30ae +/gimarmenian 16#0563 +/gimel 16#05d2 +/gimeldagesh 16#fb32 +/gimeldageshhebrew 16#fb32 +/gimelhebrew 16#05d2 +/gjecyrillic 16#0453 +/glottalinvertedstroke 16#01be +/glottalstop 16#0294 +/glottalstopinverted 16#0296 +/glottalstopmod 16#02c0 +/glottalstopreversed 16#0295 +/glottalstopreversedmod 16#02c1 +/glottalstopreversedsuperior 16#02e4 +/glottalstopstroke 16#02a1 +/glottalstopstrokereversed 16#02a2 +/gmacron 16#1e21 +/gmonospace 16#ff47 +/gohiragana 16#3054 +/gokatakana 16#30b4 +/gparen 16#24a2 +/gpasquare 16#33ac +/gradient 16#2207 +/grave 16#0060 +/gravebelowcmb 16#0316 +/gravecmb 16#0300 +/gravecomb 16#0300 +/gravedeva 16#0953 +/gravelowmod 16#02ce +/gravemonospace 16#ff40 +/gravetonecmb 16#0340 +/greater 16#003e +/greaterequal 16#2265 +/greaterequalorless 16#22db +/greatermonospace 16#ff1e +/greaterorequivalent 16#2273 +/greaterorless 16#2277 +/greateroverequal 16#2267 +/greatersmall 16#fe65 +/gscript 16#0261 +/gstroke 16#01e5 +/guhiragana 16#3050 +/guillemotleft 16#00ab +/guillemotright 16#00bb +/guilsinglleft 16#2039 +/guilsinglright 16#203a +/gukatakana 16#30b0 +/guramusquare 16#3318 +/gysquare 16#33c9 +/h 16#0068 +/haabkhasiancyrillic 16#04a9 +/haaltonearabic 16#06c1 +/habengali 16#09b9 +/hadescendercyrillic 16#04b3 +/hadeva 16#0939 +/hagujarati 16#0ab9 +/hagurmukhi 16#0a39 +/haharabic 16#062d +/hahfinalarabic 16#fea2 +/hahinitialarabic 16#fea3 +/hahiragana 16#306f +/hahmedialarabic 16#fea4 +/haitusquare 16#332a +/hakatakana 16#30cf +/hakatakanahalfwidth 16#ff8a +/halantgurmukhi 16#0a4d +/hamzaarabic 16#0621 +/hamzalowarabic 16#0621 +/hangulfiller 16#3164 +/hardsigncyrillic 16#044a +/harpoonleftbarbup 16#21bc +/harpoonrightbarbup 16#21c0 +/hasquare 16#33ca +/hatafpatah 16#05b2 +/hatafpatah16 16#05b2 +/hatafpatah23 16#05b2 +/hatafpatah2f 16#05b2 +/hatafpatahhebrew 16#05b2 +/hatafpatahnarrowhebrew 16#05b2 +/hatafpatahquarterhebrew 16#05b2 +/hatafpatahwidehebrew 16#05b2 +/hatafqamats 16#05b3 +/hatafqamats1b 16#05b3 +/hatafqamats28 16#05b3 +/hatafqamats34 16#05b3 +/hatafqamatshebrew 16#05b3 +/hatafqamatsnarrowhebrew 16#05b3 +/hatafqamatsquarterhebrew 16#05b3 +/hatafqamatswidehebrew 16#05b3 +/hatafsegol 16#05b1 +/hatafsegol17 16#05b1 +/hatafsegol24 16#05b1 +/hatafsegol30 16#05b1 +/hatafsegolhebrew 16#05b1 +/hatafsegolnarrowhebrew 16#05b1 +/hatafsegolquarterhebrew 16#05b1 +/hatafsegolwidehebrew 16#05b1 +/hbar 16#0127 +/hbopomofo 16#310f +/hbrevebelow 16#1e2b +/hcedilla 16#1e29 +/hcircle 16#24d7 +/hcircumflex 16#0125 +/hdieresis 16#1e27 +/hdotaccent 16#1e23 +/hdotbelow 16#1e25 +/he 16#05d4 +/heart 16#2665 +/heartsuitblack 16#2665 +/heartsuitwhite 16#2661 +/hedagesh 16#fb34 +/hedageshhebrew 16#fb34 +/hehaltonearabic 16#06c1 +/heharabic 16#0647 +/hehebrew 16#05d4 +/hehfinalaltonearabic 16#fba7 +/hehfinalalttwoarabic 16#feea +/hehfinalarabic 16#feea +/hehhamzaabovefinalarabic 16#fba5 +/hehhamzaaboveisolatedarabic 16#fba4 +/hehinitialaltonearabic 16#fba8 +/hehinitialarabic 16#feeb +/hehiragana 16#3078 +/hehmedialaltonearabic 16#fba9 +/hehmedialarabic 16#feec +/heiseierasquare 16#337b +/hekatakana 16#30d8 +/hekatakanahalfwidth 16#ff8d +/hekutaarusquare 16#3336 +/henghook 16#0267 +/herutusquare 16#3339 +/het 16#05d7 +/hethebrew 16#05d7 +/hhook 16#0266 +/hhooksuperior 16#02b1 +/hieuhacirclekorean 16#327b +/hieuhaparenkorean 16#321b +/hieuhcirclekorean 16#326d +/hieuhkorean 16#314e +/hieuhparenkorean 16#320d +/hihiragana 16#3072 +/hikatakana 16#30d2 +/hikatakanahalfwidth 16#ff8b +/hiriq 16#05b4 +/hiriq14 16#05b4 +/hiriq21 16#05b4 +/hiriq2d 16#05b4 +/hiriqhebrew 16#05b4 +/hiriqnarrowhebrew 16#05b4 +/hiriqquarterhebrew 16#05b4 +/hiriqwidehebrew 16#05b4 +/hlinebelow 16#1e96 +/hmonospace 16#ff48 +/hoarmenian 16#0570 +/hohipthai 16#0e2b +/hohiragana 16#307b +/hokatakana 16#30db +/hokatakanahalfwidth 16#ff8e +/holam 16#05b9 +/holam19 16#05b9 +/holam26 16#05b9 +/holam32 16#05b9 +/holamhebrew 16#05b9 +/holamnarrowhebrew 16#05b9 +/holamquarterhebrew 16#05b9 +/holamwidehebrew 16#05b9 +/honokhukthai 16#0e2e +/hookabovecomb 16#0309 +/hookcmb 16#0309 +/hookpalatalizedbelowcmb 16#0321 +/hookretroflexbelowcmb 16#0322 +/hoonsquare 16#3342 +/horicoptic 16#03e9 +/horizontalbar 16#2015 +/horncmb 16#031b +/hotsprings 16#2668 +/house 16#2302 +/hparen 16#24a3 +/hsuperior 16#02b0 +/hturned 16#0265 +/huhiragana 16#3075 +/huiitosquare 16#3333 +/hukatakana 16#30d5 +/hukatakanahalfwidth 16#ff8c +/hungarumlaut 16#02dd +/hungarumlautcmb 16#030b +/hv 16#0195 +/hyphen 16#002d +/hypheninferior 16#f6e5 +/hyphenmonospace 16#ff0d +/hyphensmall 16#fe63 +/hyphensuperior 16#f6e6 +/hyphentwo 16#2010 +/i 16#0069 +/iacute 16#00ed +/iacyrillic 16#044f +/ibengali 16#0987 +/ibopomofo 16#3127 +/ibreve 16#012d +/icaron 16#01d0 +/icircle 16#24d8 +/icircumflex 16#00ee +/icyrillic 16#0456 +/idblgrave 16#0209 +/ideographearthcircle 16#328f +/ideographfirecircle 16#328b +/ideographicallianceparen 16#323f +/ideographiccallparen 16#323a +/ideographiccentrecircle 16#32a5 +/ideographicclose 16#3006 +/ideographiccomma 16#3001 +/ideographiccommaleft 16#ff64 +/ideographiccongratulationparen 16#3237 +/ideographiccorrectcircle 16#32a3 +/ideographicearthparen 16#322f +/ideographicenterpriseparen 16#323d +/ideographicexcellentcircle 16#329d +/ideographicfestivalparen 16#3240 +/ideographicfinancialcircle 16#3296 +/ideographicfinancialparen 16#3236 +/ideographicfireparen 16#322b +/ideographichaveparen 16#3232 +/ideographichighcircle 16#32a4 +/ideographiciterationmark 16#3005 +/ideographiclaborcircle 16#3298 +/ideographiclaborparen 16#3238 +/ideographicleftcircle 16#32a7 +/ideographiclowcircle 16#32a6 +/ideographicmedicinecircle 16#32a9 +/ideographicmetalparen 16#322e +/ideographicmoonparen 16#322a +/ideographicnameparen 16#3234 +/ideographicperiod 16#3002 +/ideographicprintcircle 16#329e +/ideographicreachparen 16#3243 +/ideographicrepresentparen 16#3239 +/ideographicresourceparen 16#323e +/ideographicrightcircle 16#32a8 +/ideographicsecretcircle 16#3299 +/ideographicselfparen 16#3242 +/ideographicsocietyparen 16#3233 +/ideographicspace 16#3000 +/ideographicspecialparen 16#3235 +/ideographicstockparen 16#3231 +/ideographicstudyparen 16#323b +/ideographicsunparen 16#3230 +/ideographicsuperviseparen 16#323c +/ideographicwaterparen 16#322c +/ideographicwoodparen 16#322d +/ideographiczero 16#3007 +/ideographmetalcircle 16#328e +/ideographmooncircle 16#328a +/ideographnamecircle 16#3294 +/ideographsuncircle 16#3290 +/ideographwatercircle 16#328c +/ideographwoodcircle 16#328d +/ideva 16#0907 +/idieresis 16#00ef +/idieresisacute 16#1e2f +/idieresiscyrillic 16#04e5 +/idotbelow 16#1ecb +/iebrevecyrillic 16#04d7 +/iecyrillic 16#0435 +/ieungacirclekorean 16#3275 +/ieungaparenkorean 16#3215 +/ieungcirclekorean 16#3267 +/ieungkorean 16#3147 +/ieungparenkorean 16#3207 +/igrave 16#00ec +/igujarati 16#0a87 +/igurmukhi 16#0a07 +/ihiragana 16#3044 +/ihookabove 16#1ec9 +/iibengali 16#0988 +/iicyrillic 16#0438 +/iideva 16#0908 +/iigujarati 16#0a88 +/iigurmukhi 16#0a08 +/iimatragurmukhi 16#0a40 +/iinvertedbreve 16#020b +/iishortcyrillic 16#0439 +/iivowelsignbengali 16#09c0 +/iivowelsigndeva 16#0940 +/iivowelsigngujarati 16#0ac0 +/ij 16#0133 +/ikatakana 16#30a4 +/ikatakanahalfwidth 16#ff72 +/ikorean 16#3163 +/ilde 16#02dc +/iluyhebrew 16#05ac +/imacron 16#012b +/imacroncyrillic 16#04e3 +/imageorapproximatelyequal 16#2253 +/imatragurmukhi 16#0a3f +/imonospace 16#ff49 +/increment 16#2206 +/infinity 16#221e +/iniarmenian 16#056b +/integral 16#222b +/integralbottom 16#2321 +/integralbt 16#2321 +/integralex 16#f8f5 +/integraltop 16#2320 +/integraltp 16#2320 +/intersection 16#2229 +/intisquare 16#3305 +/invbullet 16#25d8 +/invcircle 16#25d9 +/invsmileface 16#263b +/iocyrillic 16#0451 +/iogonek 16#012f +/iota 16#03b9 +/iotadieresis 16#03ca +/iotadieresistonos 16#0390 +/iotalatin 16#0269 +/iotatonos 16#03af +/iparen 16#24a4 +/irigurmukhi 16#0a72 +/ismallhiragana 16#3043 +/ismallkatakana 16#30a3 +/ismallkatakanahalfwidth 16#ff68 +/issharbengali 16#09fa +/istroke 16#0268 +/isuperior 16#f6ed +/iterationhiragana 16#309d +/iterationkatakana 16#30fd +/itilde 16#0129 +/itildebelow 16#1e2d +/iubopomofo 16#3129 +/iucyrillic 16#044e +/ivowelsignbengali 16#09bf +/ivowelsigndeva 16#093f +/ivowelsigngujarati 16#0abf +/izhitsacyrillic 16#0475 +/izhitsadblgravecyrillic 16#0477 +/j 16#006a +/jaarmenian 16#0571 +/jabengali 16#099c +/jadeva 16#091c +/jagujarati 16#0a9c +/jagurmukhi 16#0a1c +/jbopomofo 16#3110 +/jcaron 16#01f0 +/jcircle 16#24d9 +/jcircumflex 16#0135 +/jcrossedtail 16#029d +/jdotlessstroke 16#025f +/jecyrillic 16#0458 +/jeemarabic 16#062c +/jeemfinalarabic 16#fe9e +/jeeminitialarabic 16#fe9f +/jeemmedialarabic 16#fea0 +/jeharabic 16#0698 +/jehfinalarabic 16#fb8b +/jhabengali 16#099d +/jhadeva 16#091d +/jhagujarati 16#0a9d +/jhagurmukhi 16#0a1d +/jheharmenian 16#057b +/jis 16#3004 +/jmonospace 16#ff4a +/jparen 16#24a5 +/jsuperior 16#02b2 +/k 16#006b +/kabashkircyrillic 16#04a1 +/kabengali 16#0995 +/kacute 16#1e31 +/kacyrillic 16#043a +/kadescendercyrillic 16#049b +/kadeva 16#0915 +/kaf 16#05db +/kafarabic 16#0643 +/kafdagesh 16#fb3b +/kafdageshhebrew 16#fb3b +/kaffinalarabic 16#feda +/kafhebrew 16#05db +/kafinitialarabic 16#fedb +/kafmedialarabic 16#fedc +/kafrafehebrew 16#fb4d +/kagujarati 16#0a95 +/kagurmukhi 16#0a15 +/kahiragana 16#304b +/kahookcyrillic 16#04c4 +/kakatakana 16#30ab +/kakatakanahalfwidth 16#ff76 +/kappa 16#03ba +/kappasymbolgreek 16#03f0 +/kapyeounmieumkorean 16#3171 +/kapyeounphieuphkorean 16#3184 +/kapyeounpieupkorean 16#3178 +/kapyeounssangpieupkorean 16#3179 +/karoriisquare 16#330d +/kashidaautoarabic 16#0640 +/kashidaautonosidebearingarabic 16#0640 +/kasmallkatakana 16#30f5 +/kasquare 16#3384 +/kasraarabic 16#0650 +/kasratanarabic 16#064d +/kastrokecyrillic 16#049f +/katahiraprolongmarkhalfwidth 16#ff70 +/kaverticalstrokecyrillic 16#049d +/kbopomofo 16#310e +/kcalsquare 16#3389 +/kcaron 16#01e9 +/kcedilla 16#0137 +/kcircle 16#24da +/kcommaaccent 16#0137 +/kdotbelow 16#1e33 +/keharmenian 16#0584 +/kehiragana 16#3051 +/kekatakana 16#30b1 +/kekatakanahalfwidth 16#ff79 +/kenarmenian 16#056f +/kesmallkatakana 16#30f6 +/kgreenlandic 16#0138 +/khabengali 16#0996 +/khacyrillic 16#0445 +/khadeva 16#0916 +/khagujarati 16#0a96 +/khagurmukhi 16#0a16 +/khaharabic 16#062e +/khahfinalarabic 16#fea6 +/khahinitialarabic 16#fea7 +/khahmedialarabic 16#fea8 +/kheicoptic 16#03e7 +/khhadeva 16#0959 +/khhagurmukhi 16#0a59 +/khieukhacirclekorean 16#3278 +/khieukhaparenkorean 16#3218 +/khieukhcirclekorean 16#326a +/khieukhkorean 16#314b +/khieukhparenkorean 16#320a +/khokhaithai 16#0e02 +/khokhonthai 16#0e05 +/khokhuatthai 16#0e03 +/khokhwaithai 16#0e04 +/khomutthai 16#0e5b +/khook 16#0199 +/khorakhangthai 16#0e06 +/khzsquare 16#3391 +/kihiragana 16#304d +/kikatakana 16#30ad +/kikatakanahalfwidth 16#ff77 +/kiroguramusquare 16#3315 +/kiromeetorusquare 16#3316 +/kirosquare 16#3314 +/kiyeokacirclekorean 16#326e +/kiyeokaparenkorean 16#320e +/kiyeokcirclekorean 16#3260 +/kiyeokkorean 16#3131 +/kiyeokparenkorean 16#3200 +/kiyeoksioskorean 16#3133 +/kjecyrillic 16#045c +/klinebelow 16#1e35 +/klsquare 16#3398 +/kmcubedsquare 16#33a6 +/kmonospace 16#ff4b +/kmsquaredsquare 16#33a2 +/kohiragana 16#3053 +/kohmsquare 16#33c0 +/kokaithai 16#0e01 +/kokatakana 16#30b3 +/kokatakanahalfwidth 16#ff7a +/kooposquare 16#331e +/koppacyrillic 16#0481 +/koreanstandardsymbol 16#327f +/koroniscmb 16#0343 +/kparen 16#24a6 +/kpasquare 16#33aa +/ksicyrillic 16#046f +/ktsquare 16#33cf +/kturned 16#029e +/kuhiragana 16#304f +/kukatakana 16#30af +/kukatakanahalfwidth 16#ff78 +/kvsquare 16#33b8 +/kwsquare 16#33be +/l 16#006c +/labengali 16#09b2 +/lacute 16#013a +/ladeva 16#0932 +/lagujarati 16#0ab2 +/lagurmukhi 16#0a32 +/lakkhangyaothai 16#0e45 +/lamaleffinalarabic 16#fefc +/lamalefhamzaabovefinalarabic 16#fef8 +/lamalefhamzaaboveisolatedarabic 16#fef7 +/lamalefhamzabelowfinalarabic 16#fefa +/lamalefhamzabelowisolatedarabic 16#fef9 +/lamalefisolatedarabic 16#fefb +/lamalefmaddaabovefinalarabic 16#fef6 +/lamalefmaddaaboveisolatedarabic 16#fef5 +/lamarabic 16#0644 +/lambda 16#03bb +/lambdastroke 16#019b +/lamed 16#05dc +/lameddagesh 16#fb3c +/lameddageshhebrew 16#fb3c +/lamedhebrew 16#05dc +/lamfinalarabic 16#fede +/lamhahinitialarabic 16#fcca +/laminitialarabic 16#fedf +/lamjeeminitialarabic 16#fcc9 +/lamkhahinitialarabic 16#fccb +/lamlamhehisolatedarabic 16#fdf2 +/lammedialarabic 16#fee0 +/lammeemhahinitialarabic 16#fd88 +/lammeeminitialarabic 16#fccc +/largecircle 16#25ef +/lbar 16#019a +/lbelt 16#026c +/lbopomofo 16#310c +/lcaron 16#013e +/lcedilla 16#013c +/lcircle 16#24db +/lcircumflexbelow 16#1e3d +/lcommaaccent 16#013c +/ldot 16#0140 +/ldotaccent 16#0140 +/ldotbelow 16#1e37 +/ldotbelowmacron 16#1e39 +/leftangleabovecmb 16#031a +/lefttackbelowcmb 16#0318 +/less 16#003c +/lessequal 16#2264 +/lessequalorgreater 16#22da +/lessmonospace 16#ff1c +/lessorequivalent 16#2272 +/lessorgreater 16#2276 +/lessoverequal 16#2266 +/lesssmall 16#fe64 +/lezh 16#026e +/lfblock 16#258c +/lhookretroflex 16#026d +/lira 16#20a4 +/liwnarmenian 16#056c +/lj 16#01c9 +/ljecyrillic 16#0459 +/ll 16#f6c0 +/lladeva 16#0933 +/llagujarati 16#0ab3 +/llinebelow 16#1e3b +/llladeva 16#0934 +/llvocalicbengali 16#09e1 +/llvocalicdeva 16#0961 +/llvocalicvowelsignbengali 16#09e3 +/llvocalicvowelsigndeva 16#0963 +/lmiddletilde 16#026b +/lmonospace 16#ff4c +/lmsquare 16#33d0 +/lochulathai 16#0e2c +/logicaland 16#2227 +/logicalnot 16#00ac +/logicalnotreversed 16#2310 +/logicalor 16#2228 +/lolingthai 16#0e25 +/longs 16#017f +/lowlinecenterline 16#fe4e +/lowlinecmb 16#0332 +/lowlinedashed 16#fe4d +/lozenge 16#25ca +/lparen 16#24a7 +/lslash 16#0142 +/lsquare 16#2113 +/lsuperior 16#f6ee +/ltshade 16#2591 +/luthai 16#0e26 +/lvocalicbengali 16#098c +/lvocalicdeva 16#090c +/lvocalicvowelsignbengali 16#09e2 +/lvocalicvowelsigndeva 16#0962 +/lxsquare 16#33d3 +/m 16#006d +/mabengali 16#09ae +/macron 16#00af +/macronbelowcmb 16#0331 +/macroncmb 16#0304 +/macronlowmod 16#02cd +/macronmonospace 16#ffe3 +/macute 16#1e3f +/madeva 16#092e +/magujarati 16#0aae +/magurmukhi 16#0a2e +/mahapakhhebrew 16#05a4 +/mahapakhlefthebrew 16#05a4 +/mahiragana 16#307e +/maichattawalowleftthai 16#f895 +/maichattawalowrightthai 16#f894 +/maichattawathai 16#0e4b +/maichattawaupperleftthai 16#f893 +/maieklowleftthai 16#f88c +/maieklowrightthai 16#f88b +/maiekthai 16#0e48 +/maiekupperleftthai 16#f88a +/maihanakatleftthai 16#f884 +/maihanakatthai 16#0e31 +/maitaikhuleftthai 16#f889 +/maitaikhuthai 16#0e47 +/maitholowleftthai 16#f88f +/maitholowrightthai 16#f88e +/maithothai 16#0e49 +/maithoupperleftthai 16#f88d +/maitrilowleftthai 16#f892 +/maitrilowrightthai 16#f891 +/maitrithai 16#0e4a +/maitriupperleftthai 16#f890 +/maiyamokthai 16#0e46 +/makatakana 16#30de +/makatakanahalfwidth 16#ff8f +/male 16#2642 +/mansyonsquare 16#3347 +/maqafhebrew 16#05be +/mars 16#2642 +/masoracirclehebrew 16#05af +/masquare 16#3383 +/mbopomofo 16#3107 +/mbsquare 16#33d4 +/mcircle 16#24dc +/mcubedsquare 16#33a5 +/mdotaccent 16#1e41 +/mdotbelow 16#1e43 +/meemarabic 16#0645 +/meemfinalarabic 16#fee2 +/meeminitialarabic 16#fee3 +/meemmedialarabic 16#fee4 +/meemmeeminitialarabic 16#fcd1 +/meemmeemisolatedarabic 16#fc48 +/meetorusquare 16#334d +/mehiragana 16#3081 +/meizierasquare 16#337e +/mekatakana 16#30e1 +/mekatakanahalfwidth 16#ff92 +/mem 16#05de +/memdagesh 16#fb3e +/memdageshhebrew 16#fb3e +/memhebrew 16#05de +/menarmenian 16#0574 +/merkhahebrew 16#05a5 +/merkhakefulahebrew 16#05a6 +/merkhakefulalefthebrew 16#05a6 +/merkhalefthebrew 16#05a5 +/mhook 16#0271 +/mhzsquare 16#3392 +/middledotkatakanahalfwidth 16#ff65 +/middot 16#00b7 +/mieumacirclekorean 16#3272 +/mieumaparenkorean 16#3212 +/mieumcirclekorean 16#3264 +/mieumkorean 16#3141 +/mieumpansioskorean 16#3170 +/mieumparenkorean 16#3204 +/mieumpieupkorean 16#316e +/mieumsioskorean 16#316f +/mihiragana 16#307f +/mikatakana 16#30df +/mikatakanahalfwidth 16#ff90 +/minus 16#2212 +/minusbelowcmb 16#0320 +/minuscircle 16#2296 +/minusmod 16#02d7 +/minusplus 16#2213 +/minute 16#2032 +/miribaarusquare 16#334a +/mirisquare 16#3349 +/mlonglegturned 16#0270 +/mlsquare 16#3396 +/mmcubedsquare 16#33a3 +/mmonospace 16#ff4d +/mmsquaredsquare 16#339f +/mohiragana 16#3082 +/mohmsquare 16#33c1 +/mokatakana 16#30e2 +/mokatakanahalfwidth 16#ff93 +/molsquare 16#33d6 +/momathai 16#0e21 +/moverssquare 16#33a7 +/moverssquaredsquare 16#33a8 +/mparen 16#24a8 +/mpasquare 16#33ab +/mssquare 16#33b3 +/msuperior 16#f6ef +/mturned 16#026f +/mu 16#00b5 +/mu1 16#00b5 +/muasquare 16#3382 +/muchgreater 16#226b +/muchless 16#226a +/mufsquare 16#338c +/mugreek 16#03bc +/mugsquare 16#338d +/muhiragana 16#3080 +/mukatakana 16#30e0 +/mukatakanahalfwidth 16#ff91 +/mulsquare 16#3395 +/multiply 16#00d7 +/mumsquare 16#339b +/munahhebrew 16#05a3 +/munahlefthebrew 16#05a3 +/musicalnote 16#266a +/musicalnotedbl 16#266b +/musicflatsign 16#266d +/musicsharpsign 16#266f +/mussquare 16#33b2 +/muvsquare 16#33b6 +/muwsquare 16#33bc +/mvmegasquare 16#33b9 +/mvsquare 16#33b7 +/mwmegasquare 16#33bf +/mwsquare 16#33bd +/n 16#006e +/nabengali 16#09a8 +/nabla 16#2207 +/nacute 16#0144 +/nadeva 16#0928 +/nagujarati 16#0aa8 +/nagurmukhi 16#0a28 +/nahiragana 16#306a +/nakatakana 16#30ca +/nakatakanahalfwidth 16#ff85 +/napostrophe 16#0149 +/nasquare 16#3381 +/nbopomofo 16#310b +/nbspace 16#00a0 +/ncaron 16#0148 +/ncedilla 16#0146 +/ncircle 16#24dd +/ncircumflexbelow 16#1e4b +/ncommaaccent 16#0146 +/ndotaccent 16#1e45 +/ndotbelow 16#1e47 +/nehiragana 16#306d +/nekatakana 16#30cd +/nekatakanahalfwidth 16#ff88 +/newsheqelsign 16#20aa +/nfsquare 16#338b +/ngabengali 16#0999 +/ngadeva 16#0919 +/ngagujarati 16#0a99 +/ngagurmukhi 16#0a19 +/ngonguthai 16#0e07 +/nhiragana 16#3093 +/nhookleft 16#0272 +/nhookretroflex 16#0273 +/nieunacirclekorean 16#326f +/nieunaparenkorean 16#320f +/nieuncieuckorean 16#3135 +/nieuncirclekorean 16#3261 +/nieunhieuhkorean 16#3136 +/nieunkorean 16#3134 +/nieunpansioskorean 16#3168 +/nieunparenkorean 16#3201 +/nieunsioskorean 16#3167 +/nieuntikeutkorean 16#3166 +/nihiragana 16#306b +/nikatakana 16#30cb +/nikatakanahalfwidth 16#ff86 +/nikhahitleftthai 16#f899 +/nikhahitthai 16#0e4d +/nine 16#0039 +/ninearabic 16#0669 +/ninebengali 16#09ef +/ninecircle 16#2468 +/ninecircleinversesansserif 16#2792 +/ninedeva 16#096f +/ninegujarati 16#0aef +/ninegurmukhi 16#0a6f +/ninehackarabic 16#0669 +/ninehangzhou 16#3029 +/nineideographicparen 16#3228 +/nineinferior 16#2089 +/ninemonospace 16#ff19 +/nineoldstyle 16#f739 +/nineparen 16#247c +/nineperiod 16#2490 +/ninepersian 16#06f9 +/nineroman 16#2178 +/ninesuperior 16#2079 +/nineteencircle 16#2472 +/nineteenparen 16#2486 +/nineteenperiod 16#249a +/ninethai 16#0e59 +/nj 16#01cc +/njecyrillic 16#045a +/nkatakana 16#30f3 +/nkatakanahalfwidth 16#ff9d +/nlegrightlong 16#019e +/nlinebelow 16#1e49 +/nmonospace 16#ff4e +/nmsquare 16#339a +/nnabengali 16#09a3 +/nnadeva 16#0923 +/nnagujarati 16#0aa3 +/nnagurmukhi 16#0a23 +/nnnadeva 16#0929 +/nohiragana 16#306e +/nokatakana 16#30ce +/nokatakanahalfwidth 16#ff89 +/nonbreakingspace 16#00a0 +/nonenthai 16#0e13 +/nonuthai 16#0e19 +/noonarabic 16#0646 +/noonfinalarabic 16#fee6 +/noonghunnaarabic 16#06ba +/noonghunnafinalarabic 16#fb9f +/nooninitialarabic 16#fee7 +/noonjeeminitialarabic 16#fcd2 +/noonjeemisolatedarabic 16#fc4b +/noonmedialarabic 16#fee8 +/noonmeeminitialarabic 16#fcd5 +/noonmeemisolatedarabic 16#fc4e +/noonnoonfinalarabic 16#fc8d +/notcontains 16#220c +/notelement 16#2209 +/notelementof 16#2209 +/notequal 16#2260 +/notgreater 16#226f +/notgreaternorequal 16#2271 +/notgreaternorless 16#2279 +/notidentical 16#2262 +/notless 16#226e +/notlessnorequal 16#2270 +/notparallel 16#2226 +/notprecedes 16#2280 +/notsubset 16#2284 +/notsucceeds 16#2281 +/notsuperset 16#2285 +/nowarmenian 16#0576 +/nparen 16#24a9 +/nssquare 16#33b1 +/nsuperior 16#207f +/ntilde 16#00f1 +/nu 16#03bd +/nuhiragana 16#306c +/nukatakana 16#30cc +/nukatakanahalfwidth 16#ff87 +/nuktabengali 16#09bc +/nuktadeva 16#093c +/nuktagujarati 16#0abc +/nuktagurmukhi 16#0a3c +/numbersign 16#0023 +/numbersignmonospace 16#ff03 +/numbersignsmall 16#fe5f +/numeralsigngreek 16#0374 +/numeralsignlowergreek 16#0375 +/numero 16#2116 +/nun 16#05e0 +/nundagesh 16#fb40 +/nundageshhebrew 16#fb40 +/nunhebrew 16#05e0 +/nvsquare 16#33b5 +/nwsquare 16#33bb +/nyabengali 16#099e +/nyadeva 16#091e +/nyagujarati 16#0a9e +/nyagurmukhi 16#0a1e +/o 16#006f +/oacute 16#00f3 +/oangthai 16#0e2d +/obarred 16#0275 +/obarredcyrillic 16#04e9 +/obarreddieresiscyrillic 16#04eb +/obengali 16#0993 +/obopomofo 16#311b +/obreve 16#014f +/ocandradeva 16#0911 +/ocandragujarati 16#0a91 +/ocandravowelsigndeva 16#0949 +/ocandravowelsigngujarati 16#0ac9 +/ocaron 16#01d2 +/ocircle 16#24de +/ocircumflex 16#00f4 +/ocircumflexacute 16#1ed1 +/ocircumflexdotbelow 16#1ed9 +/ocircumflexgrave 16#1ed3 +/ocircumflexhookabove 16#1ed5 +/ocircumflextilde 16#1ed7 +/ocyrillic 16#043e +/odblacute 16#0151 +/odblgrave 16#020d +/odeva 16#0913 +/odieresis 16#00f6 +/odieresiscyrillic 16#04e7 +/odotbelow 16#1ecd +/oe 16#0153 +/oekorean 16#315a +/ogonek 16#02db +/ogonekcmb 16#0328 +/ograve 16#00f2 +/ogujarati 16#0a93 +/oharmenian 16#0585 +/ohiragana 16#304a +/ohookabove 16#1ecf +/ohorn 16#01a1 +/ohornacute 16#1edb +/ohorndotbelow 16#1ee3 +/ohorngrave 16#1edd +/ohornhookabove 16#1edf +/ohorntilde 16#1ee1 +/ohungarumlaut 16#0151 +/oi 16#01a3 +/oinvertedbreve 16#020f +/okatakana 16#30aa +/okatakanahalfwidth 16#ff75 +/okorean 16#3157 +/olehebrew 16#05ab +/omacron 16#014d +/omacronacute 16#1e53 +/omacrongrave 16#1e51 +/omdeva 16#0950 +/omega 16#03c9 +/omega1 16#03d6 +/omegacyrillic 16#0461 +/omegalatinclosed 16#0277 +/omegaroundcyrillic 16#047b +/omegatitlocyrillic 16#047d +/omegatonos 16#03ce +/omgujarati 16#0ad0 +/omicron 16#03bf +/omicrontonos 16#03cc +/omonospace 16#ff4f +/one 16#0031 +/onearabic 16#0661 +/onebengali 16#09e7 +/onecircle 16#2460 +/onecircleinversesansserif 16#278a +/onedeva 16#0967 +/onedotenleader 16#2024 +/oneeighth 16#215b +/onefitted 16#f6dc +/onegujarati 16#0ae7 +/onegurmukhi 16#0a67 +/onehackarabic 16#0661 +/onehalf 16#00bd +/onehangzhou 16#3021 +/oneideographicparen 16#3220 +/oneinferior 16#2081 +/onemonospace 16#ff11 +/onenumeratorbengali 16#09f4 +/oneoldstyle 16#f731 +/oneparen 16#2474 +/oneperiod 16#2488 +/onepersian 16#06f1 +/onequarter 16#00bc +/oneroman 16#2170 +/onesuperior 16#00b9 +/onethai 16#0e51 +/onethird 16#2153 +/oogonek 16#01eb +/oogonekmacron 16#01ed +/oogurmukhi 16#0a13 +/oomatragurmukhi 16#0a4b +/oopen 16#0254 +/oparen 16#24aa +/openbullet 16#25e6 +/option 16#2325 +/ordfeminine 16#00aa +/ordmasculine 16#00ba +/orthogonal 16#221f +/oshortdeva 16#0912 +/oshortvowelsigndeva 16#094a +/oslash 16#00f8 +/oslashacute 16#01ff +/osmallhiragana 16#3049 +/osmallkatakana 16#30a9 +/osmallkatakanahalfwidth 16#ff6b +/ostrokeacute 16#01ff +/osuperior 16#f6f0 +/otcyrillic 16#047f +/otilde 16#00f5 +/otildeacute 16#1e4d +/otildedieresis 16#1e4f +/oubopomofo 16#3121 +/overline 16#203e +/overlinecenterline 16#fe4a +/overlinecmb 16#0305 +/overlinedashed 16#fe49 +/overlinedblwavy 16#fe4c +/overlinewavy 16#fe4b +/overscore 16#00af +/ovowelsignbengali 16#09cb +/ovowelsigndeva 16#094b +/ovowelsigngujarati 16#0acb +/p 16#0070 +/paampssquare 16#3380 +/paasentosquare 16#332b +/pabengali 16#09aa +/pacute 16#1e55 +/padeva 16#092a +/pagedown 16#21df +/pageup 16#21de +/pagujarati 16#0aaa +/pagurmukhi 16#0a2a +/pahiragana 16#3071 +/paiyannoithai 16#0e2f +/pakatakana 16#30d1 +/palatalizationcyrilliccmb 16#0484 +/palochkacyrillic 16#04c0 +/pansioskorean 16#317f +/paragraph 16#00b6 +/parallel 16#2225 +/parenleft 16#0028 +/parenleftaltonearabic 16#fd3e +/parenleftbt 16#f8ed +/parenleftex 16#f8ec +/parenleftinferior 16#208d +/parenleftmonospace 16#ff08 +/parenleftsmall 16#fe59 +/parenleftsuperior 16#207d +/parenlefttp 16#f8eb +/parenleftvertical 16#fe35 +/parenright 16#0029 +/parenrightaltonearabic 16#fd3f +/parenrightbt 16#f8f8 +/parenrightex 16#f8f7 +/parenrightinferior 16#208e +/parenrightmonospace 16#ff09 +/parenrightsmall 16#fe5a +/parenrightsuperior 16#207e +/parenrighttp 16#f8f6 +/parenrightvertical 16#fe36 +/partialdiff 16#2202 +/paseqhebrew 16#05c0 +/pashtahebrew 16#0599 +/pasquare 16#33a9 +/patah 16#05b7 +/patah11 16#05b7 +/patah1d 16#05b7 +/patah2a 16#05b7 +/patahhebrew 16#05b7 +/patahnarrowhebrew 16#05b7 +/patahquarterhebrew 16#05b7 +/patahwidehebrew 16#05b7 +/pazerhebrew 16#05a1 +/pbopomofo 16#3106 +/pcircle 16#24df +/pdotaccent 16#1e57 +/pe 16#05e4 +/pecyrillic 16#043f +/pedagesh 16#fb44 +/pedageshhebrew 16#fb44 +/peezisquare 16#333b +/pefinaldageshhebrew 16#fb43 +/peharabic 16#067e +/peharmenian 16#057a +/pehebrew 16#05e4 +/pehfinalarabic 16#fb57 +/pehinitialarabic 16#fb58 +/pehiragana 16#307a +/pehmedialarabic 16#fb59 +/pekatakana 16#30da +/pemiddlehookcyrillic 16#04a7 +/perafehebrew 16#fb4e +/percent 16#0025 +/percentarabic 16#066a +/percentmonospace 16#ff05 +/percentsmall 16#fe6a +/period 16#002e +/periodarmenian 16#0589 +/periodcentered 16#00b7 +/periodhalfwidth 16#ff61 +/periodinferior 16#f6e7 +/periodmonospace 16#ff0e +/periodsmall 16#fe52 +/periodsuperior 16#f6e8 +/perispomenigreekcmb 16#0342 +/perpendicular 16#22a5 +/perthousand 16#2030 +/peseta 16#20a7 +/pfsquare 16#338a +/phabengali 16#09ab +/phadeva 16#092b +/phagujarati 16#0aab +/phagurmukhi 16#0a2b +/phi 16#03c6 +/phi1 16#03d5 +/phieuphacirclekorean 16#327a +/phieuphaparenkorean 16#321a +/phieuphcirclekorean 16#326c +/phieuphkorean 16#314d +/phieuphparenkorean 16#320c +/philatin 16#0278 +/phinthuthai 16#0e3a +/phisymbolgreek 16#03d5 +/phook 16#01a5 +/phophanthai 16#0e1e +/phophungthai 16#0e1c +/phosamphaothai 16#0e20 +/pi 16#03c0 +/pieupacirclekorean 16#3273 +/pieupaparenkorean 16#3213 +/pieupcieuckorean 16#3176 +/pieupcirclekorean 16#3265 +/pieupkiyeokkorean 16#3172 +/pieupkorean 16#3142 +/pieupparenkorean 16#3205 +/pieupsioskiyeokkorean 16#3174 +/pieupsioskorean 16#3144 +/pieupsiostikeutkorean 16#3175 +/pieupthieuthkorean 16#3177 +/pieuptikeutkorean 16#3173 +/pihiragana 16#3074 +/pikatakana 16#30d4 +/pisymbolgreek 16#03d6 +/piwrarmenian 16#0583 +/plus 16#002b +/plusbelowcmb 16#031f +/pluscircle 16#2295 +/plusminus 16#00b1 +/plusmod 16#02d6 +/plusmonospace 16#ff0b +/plussmall 16#fe62 +/plussuperior 16#207a +/pmonospace 16#ff50 +/pmsquare 16#33d8 +/pohiragana 16#307d +/pointingindexdownwhite 16#261f +/pointingindexleftwhite 16#261c +/pointingindexrightwhite 16#261e +/pointingindexupwhite 16#261d +/pokatakana 16#30dd +/poplathai 16#0e1b +/postalmark 16#3012 +/postalmarkface 16#3020 +/pparen 16#24ab +/precedes 16#227a +/prescription 16#211e +/primemod 16#02b9 +/primereversed 16#2035 +/product 16#220f +/projective 16#2305 +/prolongedkana 16#30fc +/propellor 16#2318 +/propersubset 16#2282 +/propersuperset 16#2283 +/proportion 16#2237 +/proportional 16#221d +/psi 16#03c8 +/psicyrillic 16#0471 +/psilipneumatacyrilliccmb 16#0486 +/pssquare 16#33b0 +/puhiragana 16#3077 +/pukatakana 16#30d7 +/pvsquare 16#33b4 +/pwsquare 16#33ba +/q 16#0071 +/qadeva 16#0958 +/qadmahebrew 16#05a8 +/qafarabic 16#0642 +/qaffinalarabic 16#fed6 +/qafinitialarabic 16#fed7 +/qafmedialarabic 16#fed8 +/qamats 16#05b8 +/qamats10 16#05b8 +/qamats1a 16#05b8 +/qamats1c 16#05b8 +/qamats27 16#05b8 +/qamats29 16#05b8 +/qamats33 16#05b8 +/qamatsde 16#05b8 +/qamatshebrew 16#05b8 +/qamatsnarrowhebrew 16#05b8 +/qamatsqatanhebrew 16#05b8 +/qamatsqatannarrowhebrew 16#05b8 +/qamatsqatanquarterhebrew 16#05b8 +/qamatsqatanwidehebrew 16#05b8 +/qamatsquarterhebrew 16#05b8 +/qamatswidehebrew 16#05b8 +/qarneyparahebrew 16#059f +/qbopomofo 16#3111 +/qcircle 16#24e0 +/qhook 16#02a0 +/qmonospace 16#ff51 +/qof 16#05e7 +/qofdagesh 16#fb47 +/qofdageshhebrew 16#fb47 +/qofhebrew 16#05e7 +/qparen 16#24ac +/quarternote 16#2669 +/qubuts 16#05bb +/qubuts18 16#05bb +/qubuts25 16#05bb +/qubuts31 16#05bb +/qubutshebrew 16#05bb +/qubutsnarrowhebrew 16#05bb +/qubutsquarterhebrew 16#05bb +/qubutswidehebrew 16#05bb +/question 16#003f +/questionarabic 16#061f +/questionarmenian 16#055e +/questiondown 16#00bf +/questiondownsmall 16#f7bf +/questiongreek 16#037e +/questionmonospace 16#ff1f +/questionsmall 16#f73f +/quotedbl 16#0022 +/quotedblbase 16#201e +/quotedblleft 16#201c +/quotedblmonospace 16#ff02 +/quotedblprime 16#301e +/quotedblprimereversed 16#301d +/quotedblright 16#201d +/quoteleft 16#2018 +/quoteleftreversed 16#201b +/quotereversed 16#201b +/quoteright 16#2019 +/quoterightn 16#0149 +/quotesinglbase 16#201a +/quotesingle 16#0027 +/quotesinglemonospace 16#ff07 +/r 16#0072 +/raarmenian 16#057c +/rabengali 16#09b0 +/racute 16#0155 +/radeva 16#0930 +/radical 16#221a +/radicalex 16#f8e5 +/radoverssquare 16#33ae +/radoverssquaredsquare 16#33af +/radsquare 16#33ad +/rafe 16#05bf +/rafehebrew 16#05bf +/ragujarati 16#0ab0 +/ragurmukhi 16#0a30 +/rahiragana 16#3089 +/rakatakana 16#30e9 +/rakatakanahalfwidth 16#ff97 +/ralowerdiagonalbengali 16#09f1 +/ramiddlediagonalbengali 16#09f0 +/ramshorn 16#0264 +/ratio 16#2236 +/rbopomofo 16#3116 +/rcaron 16#0159 +/rcedilla 16#0157 +/rcircle 16#24e1 +/rcommaaccent 16#0157 +/rdblgrave 16#0211 +/rdotaccent 16#1e59 +/rdotbelow 16#1e5b +/rdotbelowmacron 16#1e5d +/referencemark 16#203b +/reflexsubset 16#2286 +/reflexsuperset 16#2287 +/registered 16#00ae +/registersans 16#f8e8 +/registerserif 16#f6da +/reharabic 16#0631 +/reharmenian 16#0580 +/rehfinalarabic 16#feae +/rehiragana 16#308c +/rekatakana 16#30ec +/rekatakanahalfwidth 16#ff9a +/resh 16#05e8 +/reshdageshhebrew 16#fb48 +/reshhebrew 16#05e8 +/reversedtilde 16#223d +/reviahebrew 16#0597 +/reviamugrashhebrew 16#0597 +/revlogicalnot 16#2310 +/rfishhook 16#027e +/rfishhookreversed 16#027f +/rhabengali 16#09dd +/rhadeva 16#095d +/rho 16#03c1 +/rhook 16#027d +/rhookturned 16#027b +/rhookturnedsuperior 16#02b5 +/rhosymbolgreek 16#03f1 +/rhotichookmod 16#02de +/rieulacirclekorean 16#3271 +/rieulaparenkorean 16#3211 +/rieulcirclekorean 16#3263 +/rieulhieuhkorean 16#3140 +/rieulkiyeokkorean 16#313a +/rieulkiyeoksioskorean 16#3169 +/rieulkorean 16#3139 +/rieulmieumkorean 16#313b +/rieulpansioskorean 16#316c +/rieulparenkorean 16#3203 +/rieulphieuphkorean 16#313f +/rieulpieupkorean 16#313c +/rieulpieupsioskorean 16#316b +/rieulsioskorean 16#313d +/rieulthieuthkorean 16#313e +/rieultikeutkorean 16#316a +/rieulyeorinhieuhkorean 16#316d +/rightangle 16#221f +/righttackbelowcmb 16#0319 +/righttriangle 16#22bf +/rihiragana 16#308a +/rikatakana 16#30ea +/rikatakanahalfwidth 16#ff98 +/ring 16#02da +/ringbelowcmb 16#0325 +/ringcmb 16#030a +/ringhalfleft 16#02bf +/ringhalfleftarmenian 16#0559 +/ringhalfleftbelowcmb 16#031c +/ringhalfleftcentered 16#02d3 +/ringhalfright 16#02be +/ringhalfrightbelowcmb 16#0339 +/ringhalfrightcentered 16#02d2 +/rinvertedbreve 16#0213 +/rittorusquare 16#3351 +/rlinebelow 16#1e5f +/rlongleg 16#027c +/rlonglegturned 16#027a +/rmonospace 16#ff52 +/rohiragana 16#308d +/rokatakana 16#30ed +/rokatakanahalfwidth 16#ff9b +/roruathai 16#0e23 +/rparen 16#24ad +/rrabengali 16#09dc +/rradeva 16#0931 +/rragurmukhi 16#0a5c +/rreharabic 16#0691 +/rrehfinalarabic 16#fb8d +/rrvocalicbengali 16#09e0 +/rrvocalicdeva 16#0960 +/rrvocalicgujarati 16#0ae0 +/rrvocalicvowelsignbengali 16#09c4 +/rrvocalicvowelsigndeva 16#0944 +/rrvocalicvowelsigngujarati 16#0ac4 +/rsuperior 16#f6f1 +/rtblock 16#2590 +/rturned 16#0279 +/rturnedsuperior 16#02b4 +/ruhiragana 16#308b +/rukatakana 16#30eb +/rukatakanahalfwidth 16#ff99 +/rupeemarkbengali 16#09f2 +/rupeesignbengali 16#09f3 +/rupiah 16#f6dd +/ruthai 16#0e24 +/rvocalicbengali 16#098b +/rvocalicdeva 16#090b +/rvocalicgujarati 16#0a8b +/rvocalicvowelsignbengali 16#09c3 +/rvocalicvowelsigndeva 16#0943 +/rvocalicvowelsigngujarati 16#0ac3 +/s 16#0073 +/sabengali 16#09b8 +/sacute 16#015b +/sacutedotaccent 16#1e65 +/sadarabic 16#0635 +/sadeva 16#0938 +/sadfinalarabic 16#feba +/sadinitialarabic 16#febb +/sadmedialarabic 16#febc +/sagujarati 16#0ab8 +/sagurmukhi 16#0a38 +/sahiragana 16#3055 +/sakatakana 16#30b5 +/sakatakanahalfwidth 16#ff7b +/sallallahoualayhewasallamarabic 16#fdfa +/samekh 16#05e1 +/samekhdagesh 16#fb41 +/samekhdageshhebrew 16#fb41 +/samekhhebrew 16#05e1 +/saraaathai 16#0e32 +/saraaethai 16#0e41 +/saraaimaimalaithai 16#0e44 +/saraaimaimuanthai 16#0e43 +/saraamthai 16#0e33 +/saraathai 16#0e30 +/saraethai 16#0e40 +/saraiileftthai 16#f886 +/saraiithai 16#0e35 +/saraileftthai 16#f885 +/saraithai 16#0e34 +/saraothai 16#0e42 +/saraueeleftthai 16#f888 +/saraueethai 16#0e37 +/saraueleftthai 16#f887 +/sarauethai 16#0e36 +/sarauthai 16#0e38 +/sarauuthai 16#0e39 +/sbopomofo 16#3119 +/scaron 16#0161 +/scarondotaccent 16#1e67 +/scedilla 16#015f +/schwa 16#0259 +/schwacyrillic 16#04d9 +/schwadieresiscyrillic 16#04db +/schwahook 16#025a +/scircle 16#24e2 +/scircumflex 16#015d +/scommaaccent 16#0219 +/sdotaccent 16#1e61 +/sdotbelow 16#1e63 +/sdotbelowdotaccent 16#1e69 +/seagullbelowcmb 16#033c +/second 16#2033 +/secondtonechinese 16#02ca +/section 16#00a7 +/seenarabic 16#0633 +/seenfinalarabic 16#feb2 +/seeninitialarabic 16#feb3 +/seenmedialarabic 16#feb4 +/segol 16#05b6 +/segol13 16#05b6 +/segol1f 16#05b6 +/segol2c 16#05b6 +/segolhebrew 16#05b6 +/segolnarrowhebrew 16#05b6 +/segolquarterhebrew 16#05b6 +/segoltahebrew 16#0592 +/segolwidehebrew 16#05b6 +/seharmenian 16#057d +/sehiragana 16#305b +/sekatakana 16#30bb +/sekatakanahalfwidth 16#ff7e +/semicolon 16#003b +/semicolonarabic 16#061b +/semicolonmonospace 16#ff1b +/semicolonsmall 16#fe54 +/semivoicedmarkkana 16#309c +/semivoicedmarkkanahalfwidth 16#ff9f +/sentisquare 16#3322 +/sentosquare 16#3323 +/seven 16#0037 +/sevenarabic 16#0667 +/sevenbengali 16#09ed +/sevencircle 16#2466 +/sevencircleinversesansserif 16#2790 +/sevendeva 16#096d +/seveneighths 16#215e +/sevengujarati 16#0aed +/sevengurmukhi 16#0a6d +/sevenhackarabic 16#0667 +/sevenhangzhou 16#3027 +/sevenideographicparen 16#3226 +/seveninferior 16#2087 +/sevenmonospace 16#ff17 +/sevenoldstyle 16#f737 +/sevenparen 16#247a +/sevenperiod 16#248e +/sevenpersian 16#06f7 +/sevenroman 16#2176 +/sevensuperior 16#2077 +/seventeencircle 16#2470 +/seventeenparen 16#2484 +/seventeenperiod 16#2498 +/seventhai 16#0e57 +/sfthyphen 16#00ad +/shaarmenian 16#0577 +/shabengali 16#09b6 +/shacyrillic 16#0448 +/shaddaarabic 16#0651 +/shaddadammaarabic 16#fc61 +/shaddadammatanarabic 16#fc5e +/shaddafathaarabic 16#fc60 +/shaddakasraarabic 16#fc62 +/shaddakasratanarabic 16#fc5f +/shade 16#2592 +/shadedark 16#2593 +/shadelight 16#2591 +/shademedium 16#2592 +/shadeva 16#0936 +/shagujarati 16#0ab6 +/shagurmukhi 16#0a36 +/shalshelethebrew 16#0593 +/shbopomofo 16#3115 +/shchacyrillic 16#0449 +/sheenarabic 16#0634 +/sheenfinalarabic 16#feb6 +/sheeninitialarabic 16#feb7 +/sheenmedialarabic 16#feb8 +/sheicoptic 16#03e3 +/sheqel 16#20aa +/sheqelhebrew 16#20aa +/sheva 16#05b0 +/sheva115 16#05b0 +/sheva15 16#05b0 +/sheva22 16#05b0 +/sheva2e 16#05b0 +/shevahebrew 16#05b0 +/shevanarrowhebrew 16#05b0 +/shevaquarterhebrew 16#05b0 +/shevawidehebrew 16#05b0 +/shhacyrillic 16#04bb +/shimacoptic 16#03ed +/shin 16#05e9 +/shindagesh 16#fb49 +/shindageshhebrew 16#fb49 +/shindageshshindot 16#fb2c +/shindageshshindothebrew 16#fb2c +/shindageshsindot 16#fb2d +/shindageshsindothebrew 16#fb2d +/shindothebrew 16#05c1 +/shinhebrew 16#05e9 +/shinshindot 16#fb2a +/shinshindothebrew 16#fb2a +/shinsindot 16#fb2b +/shinsindothebrew 16#fb2b +/shook 16#0282 +/sigma 16#03c3 +/sigma1 16#03c2 +/sigmafinal 16#03c2 +/sigmalunatesymbolgreek 16#03f2 +/sihiragana 16#3057 +/sikatakana 16#30b7 +/sikatakanahalfwidth 16#ff7c +/siluqhebrew 16#05bd +/siluqlefthebrew 16#05bd +/similar 16#223c +/sindothebrew 16#05c2 +/siosacirclekorean 16#3274 +/siosaparenkorean 16#3214 +/sioscieuckorean 16#317e +/sioscirclekorean 16#3266 +/sioskiyeokkorean 16#317a +/sioskorean 16#3145 +/siosnieunkorean 16#317b +/siosparenkorean 16#3206 +/siospieupkorean 16#317d +/siostikeutkorean 16#317c +/six 16#0036 +/sixarabic 16#0666 +/sixbengali 16#09ec +/sixcircle 16#2465 +/sixcircleinversesansserif 16#278f +/sixdeva 16#096c +/sixgujarati 16#0aec +/sixgurmukhi 16#0a6c +/sixhackarabic 16#0666 +/sixhangzhou 16#3026 +/sixideographicparen 16#3225 +/sixinferior 16#2086 +/sixmonospace 16#ff16 +/sixoldstyle 16#f736 +/sixparen 16#2479 +/sixperiod 16#248d +/sixpersian 16#06f6 +/sixroman 16#2175 +/sixsuperior 16#2076 +/sixteencircle 16#246f +/sixteencurrencydenominatorbengali 16#09f9 +/sixteenparen 16#2483 +/sixteenperiod 16#2497 +/sixthai 16#0e56 +/slash 16#002f +/slashmonospace 16#ff0f +/slong 16#017f +/slongdotaccent 16#1e9b +/smileface 16#263a +/smonospace 16#ff53 +/sofpasuqhebrew 16#05c3 +/softhyphen 16#00ad +/softsigncyrillic 16#044c +/sohiragana 16#305d +/sokatakana 16#30bd +/sokatakanahalfwidth 16#ff7f +/soliduslongoverlaycmb 16#0338 +/solidusshortoverlaycmb 16#0337 +/sorusithai 16#0e29 +/sosalathai 16#0e28 +/sosothai 16#0e0b +/sosuathai 16#0e2a +/space 16#0020 +/spacehackarabic 16#0020 +/spade 16#2660 +/spadesuitblack 16#2660 +/spadesuitwhite 16#2664 +/sparen 16#24ae +/squarebelowcmb 16#033b +/squarecc 16#33c4 +/squarecm 16#339d +/squarediagonalcrosshatchfill 16#25a9 +/squarehorizontalfill 16#25a4 +/squarekg 16#338f +/squarekm 16#339e +/squarekmcapital 16#33ce +/squareln 16#33d1 +/squarelog 16#33d2 +/squaremg 16#338e +/squaremil 16#33d5 +/squaremm 16#339c +/squaremsquared 16#33a1 +/squareorthogonalcrosshatchfill 16#25a6 +/squareupperlefttolowerrightfill 16#25a7 +/squareupperrighttolowerleftfill 16#25a8 +/squareverticalfill 16#25a5 +/squarewhitewithsmallblack 16#25a3 +/srsquare 16#33db +/ssabengali 16#09b7 +/ssadeva 16#0937 +/ssagujarati 16#0ab7 +/ssangcieuckorean 16#3149 +/ssanghieuhkorean 16#3185 +/ssangieungkorean 16#3180 +/ssangkiyeokkorean 16#3132 +/ssangnieunkorean 16#3165 +/ssangpieupkorean 16#3143 +/ssangsioskorean 16#3146 +/ssangtikeutkorean 16#3138 +/ssuperior 16#f6f2 +/sterling 16#00a3 +/sterlingmonospace 16#ffe1 +/strokelongoverlaycmb 16#0336 +/strokeshortoverlaycmb 16#0335 +/subset 16#2282 +/subsetnotequal 16#228a +/subsetorequal 16#2286 +/succeeds 16#227b +/suchthat 16#220b +/suhiragana 16#3059 +/sukatakana 16#30b9 +/sukatakanahalfwidth 16#ff7d +/sukunarabic 16#0652 +/summation 16#2211 +/sun 16#263c +/superset 16#2283 +/supersetnotequal 16#228b +/supersetorequal 16#2287 +/svsquare 16#33dc +/syouwaerasquare 16#337c +/t 16#0074 +/tabengali 16#09a4 +/tackdown 16#22a4 +/tackleft 16#22a3 +/tadeva 16#0924 +/tagujarati 16#0aa4 +/tagurmukhi 16#0a24 +/taharabic 16#0637 +/tahfinalarabic 16#fec2 +/tahinitialarabic 16#fec3 +/tahiragana 16#305f +/tahmedialarabic 16#fec4 +/taisyouerasquare 16#337d +/takatakana 16#30bf +/takatakanahalfwidth 16#ff80 +/tatweelarabic 16#0640 +/tau 16#03c4 +/tav 16#05ea +/tavdages 16#fb4a +/tavdagesh 16#fb4a +/tavdageshhebrew 16#fb4a +/tavhebrew 16#05ea +/tbar 16#0167 +/tbopomofo 16#310a +/tcaron 16#0165 +/tccurl 16#02a8 +/tcedilla 16#0163 +/tcheharabic 16#0686 +/tchehfinalarabic 16#fb7b +/tchehinitialarabic 16#fb7c +/tchehmedialarabic 16#fb7d +/tcircle 16#24e3 +/tcircumflexbelow 16#1e71 +/tcommaaccent 16#0163 +/tdieresis 16#1e97 +/tdotaccent 16#1e6b +/tdotbelow 16#1e6d +/tecyrillic 16#0442 +/tedescendercyrillic 16#04ad +/teharabic 16#062a +/tehfinalarabic 16#fe96 +/tehhahinitialarabic 16#fca2 +/tehhahisolatedarabic 16#fc0c +/tehinitialarabic 16#fe97 +/tehiragana 16#3066 +/tehjeeminitialarabic 16#fca1 +/tehjeemisolatedarabic 16#fc0b +/tehmarbutaarabic 16#0629 +/tehmarbutafinalarabic 16#fe94 +/tehmedialarabic 16#fe98 +/tehmeeminitialarabic 16#fca4 +/tehmeemisolatedarabic 16#fc0e +/tehnoonfinalarabic 16#fc73 +/tekatakana 16#30c6 +/tekatakanahalfwidth 16#ff83 +/telephone 16#2121 +/telephoneblack 16#260e +/telishagedolahebrew 16#05a0 +/telishaqetanahebrew 16#05a9 +/tencircle 16#2469 +/tenideographicparen 16#3229 +/tenparen 16#247d +/tenperiod 16#2491 +/tenroman 16#2179 +/tesh 16#02a7 +/tet 16#05d8 +/tetdagesh 16#fb38 +/tetdageshhebrew 16#fb38 +/tethebrew 16#05d8 +/tetsecyrillic 16#04b5 +/tevirhebrew 16#059b +/tevirlefthebrew 16#059b +/thabengali 16#09a5 +/thadeva 16#0925 +/thagujarati 16#0aa5 +/thagurmukhi 16#0a25 +/thalarabic 16#0630 +/thalfinalarabic 16#feac +/thanthakhatlowleftthai 16#f898 +/thanthakhatlowrightthai 16#f897 +/thanthakhatthai 16#0e4c +/thanthakhatupperleftthai 16#f896 +/theharabic 16#062b +/thehfinalarabic 16#fe9a +/thehinitialarabic 16#fe9b +/thehmedialarabic 16#fe9c +/thereexists 16#2203 +/therefore 16#2234 +/theta 16#03b8 +/theta1 16#03d1 +/thetasymbolgreek 16#03d1 +/thieuthacirclekorean 16#3279 +/thieuthaparenkorean 16#3219 +/thieuthcirclekorean 16#326b +/thieuthkorean 16#314c +/thieuthparenkorean 16#320b +/thirteencircle 16#246c +/thirteenparen 16#2480 +/thirteenperiod 16#2494 +/thonangmonthothai 16#0e11 +/thook 16#01ad +/thophuthaothai 16#0e12 +/thorn 16#00fe +/thothahanthai 16#0e17 +/thothanthai 16#0e10 +/thothongthai 16#0e18 +/thothungthai 16#0e16 +/thousandcyrillic 16#0482 +/thousandsseparatorarabic 16#066c +/thousandsseparatorpersian 16#066c +/three 16#0033 +/threearabic 16#0663 +/threebengali 16#09e9 +/threecircle 16#2462 +/threecircleinversesansserif 16#278c +/threedeva 16#0969 +/threeeighths 16#215c +/threegujarati 16#0ae9 +/threegurmukhi 16#0a69 +/threehackarabic 16#0663 +/threehangzhou 16#3023 +/threeideographicparen 16#3222 +/threeinferior 16#2083 +/threemonospace 16#ff13 +/threenumeratorbengali 16#09f6 +/threeoldstyle 16#f733 +/threeparen 16#2476 +/threeperiod 16#248a +/threepersian 16#06f3 +/threequarters 16#00be +/threequartersemdash 16#f6de +/threeroman 16#2172 +/threesuperior 16#00b3 +/threethai 16#0e53 +/thzsquare 16#3394 +/tihiragana 16#3061 +/tikatakana 16#30c1 +/tikatakanahalfwidth 16#ff81 +/tikeutacirclekorean 16#3270 +/tikeutaparenkorean 16#3210 +/tikeutcirclekorean 16#3262 +/tikeutkorean 16#3137 +/tikeutparenkorean 16#3202 +/tilde 16#02dc +/tildebelowcmb 16#0330 +/tildecmb 16#0303 +/tildecomb 16#0303 +/tildedoublecmb 16#0360 +/tildeoperator 16#223c +/tildeoverlaycmb 16#0334 +/tildeverticalcmb 16#033e +/timescircle 16#2297 +/tipehahebrew 16#0596 +/tipehalefthebrew 16#0596 +/tippigurmukhi 16#0a70 +/titlocyrilliccmb 16#0483 +/tiwnarmenian 16#057f +/tlinebelow 16#1e6f +/tmonospace 16#ff54 +/toarmenian 16#0569 +/tohiragana 16#3068 +/tokatakana 16#30c8 +/tokatakanahalfwidth 16#ff84 +/tonebarextrahighmod 16#02e5 +/tonebarextralowmod 16#02e9 +/tonebarhighmod 16#02e6 +/tonebarlowmod 16#02e8 +/tonebarmidmod 16#02e7 +/tonefive 16#01bd +/tonesix 16#0185 +/tonetwo 16#01a8 +/tonos 16#0384 +/tonsquare 16#3327 +/topatakthai 16#0e0f +/tortoiseshellbracketleft 16#3014 +/tortoiseshellbracketleftsmall 16#fe5d +/tortoiseshellbracketleftvertical 16#fe39 +/tortoiseshellbracketright 16#3015 +/tortoiseshellbracketrightsmall 16#fe5e +/tortoiseshellbracketrightvertical 16#fe3a +/totaothai 16#0e15 +/tpalatalhook 16#01ab +/tparen 16#24af +/trademark 16#2122 +/trademarksans 16#f8ea +/trademarkserif 16#f6db +/tretroflexhook 16#0288 +/triagdn 16#25bc +/triaglf 16#25c4 +/triagrt 16#25ba +/triagup 16#25b2 +/ts 16#02a6 +/tsadi 16#05e6 +/tsadidagesh 16#fb46 +/tsadidageshhebrew 16#fb46 +/tsadihebrew 16#05e6 +/tsecyrillic 16#0446 +/tsere 16#05b5 +/tsere12 16#05b5 +/tsere1e 16#05b5 +/tsere2b 16#05b5 +/tserehebrew 16#05b5 +/tserenarrowhebrew 16#05b5 +/tserequarterhebrew 16#05b5 +/tserewidehebrew 16#05b5 +/tshecyrillic 16#045b +/tsuperior 16#f6f3 +/ttabengali 16#099f +/ttadeva 16#091f +/ttagujarati 16#0a9f +/ttagurmukhi 16#0a1f +/tteharabic 16#0679 +/ttehfinalarabic 16#fb67 +/ttehinitialarabic 16#fb68 +/ttehmedialarabic 16#fb69 +/tthabengali 16#09a0 +/tthadeva 16#0920 +/tthagujarati 16#0aa0 +/tthagurmukhi 16#0a20 +/tturned 16#0287 +/tuhiragana 16#3064 +/tukatakana 16#30c4 +/tukatakanahalfwidth 16#ff82 +/tusmallhiragana 16#3063 +/tusmallkatakana 16#30c3 +/tusmallkatakanahalfwidth 16#ff6f +/twelvecircle 16#246b +/twelveparen 16#247f +/twelveperiod 16#2493 +/twelveroman 16#217b +/twentycircle 16#2473 +/twentyhangzhou 16#5344 +/twentyparen 16#2487 +/twentyperiod 16#249b +/two 16#0032 +/twoarabic 16#0662 +/twobengali 16#09e8 +/twocircle 16#2461 +/twocircleinversesansserif 16#278b +/twodeva 16#0968 +/twodotenleader 16#2025 +/twodotleader 16#2025 +/twodotleadervertical 16#fe30 +/twogujarati 16#0ae8 +/twogurmukhi 16#0a68 +/twohackarabic 16#0662 +/twohangzhou 16#3022 +/twoideographicparen 16#3221 +/twoinferior 16#2082 +/twomonospace 16#ff12 +/twonumeratorbengali 16#09f5 +/twooldstyle 16#f732 +/twoparen 16#2475 +/twoperiod 16#2489 +/twopersian 16#06f2 +/tworoman 16#2171 +/twostroke 16#01bb +/twosuperior 16#00b2 +/twothai 16#0e52 +/twothirds 16#2154 +/u 16#0075 +/uacute 16#00fa +/ubar 16#0289 +/ubengali 16#0989 +/ubopomofo 16#3128 +/ubreve 16#016d +/ucaron 16#01d4 +/ucircle 16#24e4 +/ucircumflex 16#00fb +/ucircumflexbelow 16#1e77 +/ucyrillic 16#0443 +/udattadeva 16#0951 +/udblacute 16#0171 +/udblgrave 16#0215 +/udeva 16#0909 +/udieresis 16#00fc +/udieresisacute 16#01d8 +/udieresisbelow 16#1e73 +/udieresiscaron 16#01da +/udieresiscyrillic 16#04f1 +/udieresisgrave 16#01dc +/udieresismacron 16#01d6 +/udotbelow 16#1ee5 +/ugrave 16#00f9 +/ugujarati 16#0a89 +/ugurmukhi 16#0a09 +/uhiragana 16#3046 +/uhookabove 16#1ee7 +/uhorn 16#01b0 +/uhornacute 16#1ee9 +/uhorndotbelow 16#1ef1 +/uhorngrave 16#1eeb +/uhornhookabove 16#1eed +/uhorntilde 16#1eef +/uhungarumlaut 16#0171 +/uhungarumlautcyrillic 16#04f3 +/uinvertedbreve 16#0217 +/ukatakana 16#30a6 +/ukatakanahalfwidth 16#ff73 +/ukcyrillic 16#0479 +/ukorean 16#315c +/umacron 16#016b +/umacroncyrillic 16#04ef +/umacrondieresis 16#1e7b +/umatragurmukhi 16#0a41 +/umonospace 16#ff55 +/underscore 16#005f +/underscoredbl 16#2017 +/underscoremonospace 16#ff3f +/underscorevertical 16#fe33 +/underscorewavy 16#fe4f +/union 16#222a +/universal 16#2200 +/uogonek 16#0173 +/uparen 16#24b0 +/upblock 16#2580 +/upperdothebrew 16#05c4 +/upsilon 16#03c5 +/upsilondieresis 16#03cb +/upsilondieresistonos 16#03b0 +/upsilonlatin 16#028a +/upsilontonos 16#03cd +/uptackbelowcmb 16#031d +/uptackmod 16#02d4 +/uragurmukhi 16#0a73 +/uring 16#016f +/ushortcyrillic 16#045e +/usmallhiragana 16#3045 +/usmallkatakana 16#30a5 +/usmallkatakanahalfwidth 16#ff69 +/ustraightcyrillic 16#04af +/ustraightstrokecyrillic 16#04b1 +/utilde 16#0169 +/utildeacute 16#1e79 +/utildebelow 16#1e75 +/uubengali 16#098a +/uudeva 16#090a +/uugujarati 16#0a8a +/uugurmukhi 16#0a0a +/uumatragurmukhi 16#0a42 +/uuvowelsignbengali 16#09c2 +/uuvowelsigndeva 16#0942 +/uuvowelsigngujarati 16#0ac2 +/uvowelsignbengali 16#09c1 +/uvowelsigndeva 16#0941 +/uvowelsigngujarati 16#0ac1 +/v 16#0076 +/vadeva 16#0935 +/vagujarati 16#0ab5 +/vagurmukhi 16#0a35 +/vakatakana 16#30f7 +/vav 16#05d5 +/vavdagesh 16#fb35 +/vavdagesh65 16#fb35 +/vavdageshhebrew 16#fb35 +/vavhebrew 16#05d5 +/vavholam 16#fb4b +/vavholamhebrew 16#fb4b +/vavvavhebrew 16#05f0 +/vavyodhebrew 16#05f1 +/vcircle 16#24e5 +/vdotbelow 16#1e7f +/vecyrillic 16#0432 +/veharabic 16#06a4 +/vehfinalarabic 16#fb6b +/vehinitialarabic 16#fb6c +/vehmedialarabic 16#fb6d +/vekatakana 16#30f9 +/venus 16#2640 +/verticalbar 16#007c +/verticallineabovecmb 16#030d +/verticallinebelowcmb 16#0329 +/verticallinelowmod 16#02cc +/verticallinemod 16#02c8 +/vewarmenian 16#057e +/vhook 16#028b +/vikatakana 16#30f8 +/viramabengali 16#09cd +/viramadeva 16#094d +/viramagujarati 16#0acd +/visargabengali 16#0983 +/visargadeva 16#0903 +/visargagujarati 16#0a83 +/vmonospace 16#ff56 +/voarmenian 16#0578 +/voicediterationhiragana 16#309e +/voicediterationkatakana 16#30fe +/voicedmarkkana 16#309b +/voicedmarkkanahalfwidth 16#ff9e +/vokatakana 16#30fa +/vparen 16#24b1 +/vtilde 16#1e7d +/vturned 16#028c +/vuhiragana 16#3094 +/vukatakana 16#30f4 +/w 16#0077 +/wacute 16#1e83 +/waekorean 16#3159 +/wahiragana 16#308f +/wakatakana 16#30ef +/wakatakanahalfwidth 16#ff9c +/wakorean 16#3158 +/wasmallhiragana 16#308e +/wasmallkatakana 16#30ee +/wattosquare 16#3357 +/wavedash 16#301c +/wavyunderscorevertical 16#fe34 +/wawarabic 16#0648 +/wawfinalarabic 16#feee +/wawhamzaabovearabic 16#0624 +/wawhamzaabovefinalarabic 16#fe86 +/wbsquare 16#33dd +/wcircle 16#24e6 +/wcircumflex 16#0175 +/wdieresis 16#1e85 +/wdotaccent 16#1e87 +/wdotbelow 16#1e89 +/wehiragana 16#3091 +/weierstrass 16#2118 +/wekatakana 16#30f1 +/wekorean 16#315e +/weokorean 16#315d +/wgrave 16#1e81 +/whitebullet 16#25e6 +/whitecircle 16#25cb +/whitecircleinverse 16#25d9 +/whitecornerbracketleft 16#300e +/whitecornerbracketleftvertical 16#fe43 +/whitecornerbracketright 16#300f +/whitecornerbracketrightvertical 16#fe44 +/whitediamond 16#25c7 +/whitediamondcontainingblacksmalldiamond 16#25c8 +/whitedownpointingsmalltriangle 16#25bf +/whitedownpointingtriangle 16#25bd +/whiteleftpointingsmalltriangle 16#25c3 +/whiteleftpointingtriangle 16#25c1 +/whitelenticularbracketleft 16#3016 +/whitelenticularbracketright 16#3017 +/whiterightpointingsmalltriangle 16#25b9 +/whiterightpointingtriangle 16#25b7 +/whitesmallsquare 16#25ab +/whitesmilingface 16#263a +/whitesquare 16#25a1 +/whitestar 16#2606 +/whitetelephone 16#260f +/whitetortoiseshellbracketleft 16#3018 +/whitetortoiseshellbracketright 16#3019 +/whiteuppointingsmalltriangle 16#25b5 +/whiteuppointingtriangle 16#25b3 +/wihiragana 16#3090 +/wikatakana 16#30f0 +/wikorean 16#315f +/wmonospace 16#ff57 +/wohiragana 16#3092 +/wokatakana 16#30f2 +/wokatakanahalfwidth 16#ff66 +/won 16#20a9 +/wonmonospace 16#ffe6 +/wowaenthai 16#0e27 +/wparen 16#24b2 +/wring 16#1e98 +/wsuperior 16#02b7 +/wturned 16#028d +/wynn 16#01bf +/x 16#0078 +/xabovecmb 16#033d +/xbopomofo 16#3112 +/xcircle 16#24e7 +/xdieresis 16#1e8d +/xdotaccent 16#1e8b +/xeharmenian 16#056d +/xi 16#03be +/xmonospace 16#ff58 +/xparen 16#24b3 +/xsuperior 16#02e3 +/y 16#0079 +/yaadosquare 16#334e +/yabengali 16#09af +/yacute 16#00fd +/yadeva 16#092f +/yaekorean 16#3152 +/yagujarati 16#0aaf +/yagurmukhi 16#0a2f +/yahiragana 16#3084 +/yakatakana 16#30e4 +/yakatakanahalfwidth 16#ff94 +/yakorean 16#3151 +/yamakkanthai 16#0e4e +/yasmallhiragana 16#3083 +/yasmallkatakana 16#30e3 +/yasmallkatakanahalfwidth 16#ff6c +/yatcyrillic 16#0463 +/ycircle 16#24e8 +/ycircumflex 16#0177 +/ydieresis 16#00ff +/ydotaccent 16#1e8f +/ydotbelow 16#1ef5 +/yeharabic 16#064a +/yehbarreearabic 16#06d2 +/yehbarreefinalarabic 16#fbaf +/yehfinalarabic 16#fef2 +/yehhamzaabovearabic 16#0626 +/yehhamzaabovefinalarabic 16#fe8a +/yehhamzaaboveinitialarabic 16#fe8b +/yehhamzaabovemedialarabic 16#fe8c +/yehinitialarabic 16#fef3 +/yehmedialarabic 16#fef4 +/yehmeeminitialarabic 16#fcdd +/yehmeemisolatedarabic 16#fc58 +/yehnoonfinalarabic 16#fc94 +/yehthreedotsbelowarabic 16#06d1 +/yekorean 16#3156 +/yen 16#00a5 +/yenmonospace 16#ffe5 +/yeokorean 16#3155 +/yeorinhieuhkorean 16#3186 +/yerahbenyomohebrew 16#05aa +/yerahbenyomolefthebrew 16#05aa +/yericyrillic 16#044b +/yerudieresiscyrillic 16#04f9 +/yesieungkorean 16#3181 +/yesieungpansioskorean 16#3183 +/yesieungsioskorean 16#3182 +/yetivhebrew 16#059a +/ygrave 16#1ef3 +/yhook 16#01b4 +/yhookabove 16#1ef7 +/yiarmenian 16#0575 +/yicyrillic 16#0457 +/yikorean 16#3162 +/yinyang 16#262f +/yiwnarmenian 16#0582 +/ymonospace 16#ff59 +/yod 16#05d9 +/yoddagesh 16#fb39 +/yoddageshhebrew 16#fb39 +/yodhebrew 16#05d9 +/yodyodhebrew 16#05f2 +/yodyodpatahhebrew 16#fb1f +/yohiragana 16#3088 +/yoikorean 16#3189 +/yokatakana 16#30e8 +/yokatakanahalfwidth 16#ff96 +/yokorean 16#315b +/yosmallhiragana 16#3087 +/yosmallkatakana 16#30e7 +/yosmallkatakanahalfwidth 16#ff6e +/yotgreek 16#03f3 +/yoyaekorean 16#3188 +/yoyakorean 16#3187 +/yoyakthai 16#0e22 +/yoyingthai 16#0e0d +/yparen 16#24b4 +/ypogegrammeni 16#037a +/ypogegrammenigreekcmb 16#0345 +/yr 16#01a6 +/yring 16#1e99 +/ysuperior 16#02b8 +/ytilde 16#1ef9 +/yturned 16#028e +/yuhiragana 16#3086 +/yuikorean 16#318c +/yukatakana 16#30e6 +/yukatakanahalfwidth 16#ff95 +/yukorean 16#3160 +/yusbigcyrillic 16#046b +/yusbigiotifiedcyrillic 16#046d +/yuslittlecyrillic 16#0467 +/yuslittleiotifiedcyrillic 16#0469 +/yusmallhiragana 16#3085 +/yusmallkatakana 16#30e5 +/yusmallkatakanahalfwidth 16#ff6d +/yuyekorean 16#318b +/yuyeokorean 16#318a +/yyabengali 16#09df +/yyadeva 16#095f +/z 16#007a +/zaarmenian 16#0566 +/zacute 16#017a +/zadeva 16#095b +/zagurmukhi 16#0a5b +/zaharabic 16#0638 +/zahfinalarabic 16#fec6 +/zahinitialarabic 16#fec7 +/zahiragana 16#3056 +/zahmedialarabic 16#fec8 +/zainarabic 16#0632 +/zainfinalarabic 16#feb0 +/zakatakana 16#30b6 +/zaqefgadolhebrew 16#0595 +/zaqefqatanhebrew 16#0594 +/zarqahebrew 16#0598 +/zayin 16#05d6 +/zayindagesh 16#fb36 +/zayindageshhebrew 16#fb36 +/zayinhebrew 16#05d6 +/zbopomofo 16#3117 +/zcaron 16#017e +/zcircle 16#24e9 +/zcircumflex 16#1e91 +/zcurl 16#0291 +/zdot 16#017c +/zdotaccent 16#017c +/zdotbelow 16#1e93 +/zecyrillic 16#0437 +/zedescendercyrillic 16#0499 +/zedieresiscyrillic 16#04df +/zehiragana 16#305c +/zekatakana 16#30bc +/zero 16#0030 +/zeroarabic 16#0660 +/zerobengali 16#09e6 +/zerodeva 16#0966 +/zerogujarati 16#0ae6 +/zerogurmukhi 16#0a66 +/zerohackarabic 16#0660 +/zeroinferior 16#2080 +/zeromonospace 16#ff10 +/zerooldstyle 16#f730 +/zeropersian 16#06f0 +/zerosuperior 16#2070 +/zerothai 16#0e50 +/zerowidthjoiner 16#feff +/zerowidthnonjoiner 16#200c +/zerowidthspace 16#200b +/zeta 16#03b6 +/zhbopomofo 16#3113 +/zhearmenian 16#056a +/zhebrevecyrillic 16#04c2 +/zhecyrillic 16#0436 +/zhedescendercyrillic 16#0497 +/zhedieresiscyrillic 16#04dd +/zihiragana 16#3058 +/zikatakana 16#30b8 +/zinorhebrew 16#05ae +/zlinebelow 16#1e95 +/zmonospace 16#ff5a +/zohiragana 16#305e +/zokatakana 16#30be +/zparen 16#24b5 +/zretroflexhook 16#0290 +/zstroke 16#01b6 +/zuhiragana 16#305a +/zukatakana 16#30ba +.dicttomark readonly def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding .findencoding +/MacGlyphEncoding +/.notdef/.null/CR +4 index 32 95 getinterval aload pop +99 index 128 45 getinterval aload pop +/notequal/AE +/Oslash/infinity/plusminus/lessequal/greaterequal +/yen/mu1/partialdiff/summation/product +/pi/integral/ordfeminine/ordmasculine/Ohm +/ae/oslash/questiondown/exclamdown/logicalnot +/radical/florin/approxequal/increment/guillemotleft +/guillemotright/ellipsis/nbspace +174 index 203 12 getinterval aload pop +/lozenge +187 index 216 24 getinterval aload pop +/applelogo +212 index 241 7 getinterval aload pop +/overscore +220 index 249 7 getinterval aload pop +/Lslash/lslash/Scaron/scaron +/Zcaron/zcaron/brokenbar/Eth/eth +/Yacute/yacute/Thorn/thorn/minus +/multiply/onesuperior/twosuperior/threesuperior/onehalf +/onequarter/threequarters/franc/Gbreve/gbreve +/Idotaccent/Scedilla/scedilla/Cacute/cacute +/Ccaron/ccaron/dmacron +260 -1 roll pop +258 packedarray +7 1 index .registerencoding +.defineencoding +exec + +%%BeginResource: file (PDF CharProc obj_13) +13 0 obj +<>stream +85.2 0 4 -91 94 0 d1 +90 0 0 91 4 -91 cm +BI +/IM true +/W 90 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fjg7-m/Khs7m.V%1*"6s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W*_p&G'iLHu,t +J,fQKs8W-!s8TV=*98r"qu?V#D>4'7C>Wl4$\JV8$Y*\Y_hYVM$kP*q%)N9^OT~> +EI +endstream +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_15) +15 0 obj +<>stream +79.9 0 3 -92 77 -1 d1 +74 0 0 91 3 -92 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q98m=ruoeis8W-! +hYog9^YA^6p=F6L0#LtI+a)H,qr*6].0Dtj +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_16) +16 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_19) +19 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_22) +22 0 obj +<>stream +79.9 0 3 -91 77 0 d1 +74 0 0 91 3 -91 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q8NC6s8VX1+92B@ +s8W-!s0r%-huA0)ho#.0Y^XWJhZq!g%:`3~> +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_24) +24 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_27) +27 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_23) +23 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 74 91]/FirstChar 0/LastChar 0/Widths[ +79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_14) +14 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 90 92]/FirstChar 0/LastChar 1/Widths[ +85.2 79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_8) +8 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_10) +10 0 obj +<> +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_30) +30 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_9) +9 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_28) +28 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QT8#7''lVQqe5A+D`J0!5"2&A"\A]lVo+g/]e'Ub]#A->j-s$ +&dSPl5nR^M@H>ZQ!!4&M5`e7XAMBMQi2,p4#Teg3N>-F>4]Vl*_#RlaLlfu#3Z][MfuO0/Cc@a* +1]Z!V+u5+K%KJo$&G93D6pq7>$+.lc!^oFH"*r,TA%+`,#6U*Qi0#T97oc::&.3me!4*d]hIf!? +0E<00&:ac1!'J2@7;UXr!b0XZ&Gkl!W54u(VDE`(DudBJ*e4fp#F^$-iWqQK.#9q/O'jE:df9KN;$Y*< +af5E6&YR4p7R/XU!An`IOW/hd,=6FZ0&YapJ0C9a)1Y5p2Vthe9Jk"Z9ZRFeJ.bi"'7c8laTFF1 +3DA)5,iAe[!(!-t!6_#KBS&2jfDo+U&2XXm&h&R3!)'7:#)&V!!N#mPTF-/!3rf79!gk[/%OD)u +#Rgq<+a=L@4$WcT(Q^@2!"XU!0]ms3jff-pJ:JX+!!RoR+BSV0.$?>$!W\rG"9q,s&;?fhEEuY2 +ompORQ)Gf-KEZrC=952<5[5Dopn0/j)@,*W_S\6#$aWAY;]tQ?ki/+97+X@LW=M +3!NJ"r'=^$!.8Ga&+p+$5G>&%&,QJ*L"i)!N9`r0[:S8E@ +-mSkY^uu$Z!+dsOE-`,+5o_+SY`=B5TE0kb(5)g#:5.U776BH@+p7$4&M3uN4SWjq`%u9B +Y!><9nHdTs(kMfs'oDuG"<9[O"c5JQ5R7$7+;tA`!+GiC#Nq[#RK.aHJ:%EReq"[R(jcchGWiD6 +oH%?bCB.f-f*@E,q]gUn%k\JVJ2$ER8L)@f_5mZm=.UF9ZcN2Uc(G:iTE.ED5`,OM34e,U$\0XE +BE>g!L?="*=o`@?!":`l0\"MQ6U2(I+>^MmbickoA.4Ft+:-?7+TiBT$n[Pp1]Y/lJ/DPmEC;Fd +!4E"q(g.4W-nKts#;X(3=)#KR[fo$oiW>lXRc"T'!MBW26@]gOTgTND0VAMuJ-DGc$n'>N$5:4b +!sue#%KK=qf`GhYEmrA9K\$JC!.=GGJA_JA\_IhOE(Z`f'I>Y/oDl`n7m[5"Z;D_K&V;O!#gGAZ +JA;O^5Suq>O8&bZ8-fdD&/YD@%BS!>"qX*$%KN1+Z31/D!^J=l!+>o["7UUD5U\j3+Sq^\:ja'E +(d4N7(8$+2GRit749@bV*J:86;udar#:Mp>!'7Og_8&!e+Q9U.H>Wb!&-E.)\sn4(CuGDn1o3If +XFic>:+MK+!A>i=[?+o+>d,ts!6(de!#Z$XK9-8pP+VmN1(/X?&-^?F@_-M^ej3kk!2-W.!lkUQ +^_eO(^`W]1VgVqQ(b'ESTG+nU:t@oqUB%a0!J5M%B\+hp!2,UUJj:Xg5V7op@#j,p:e&e4'p/Kh +M6):?6"qm+!sC6fkC>6Oi;ihq"5p2MMa0B-6"gE(^utfMf00EY+<,6LBr:utS-CSo(h`nS$WI*Z ++TSph^7YlAJ5dWp>_!Lj!"91Zl[AiLQ/DY88[8@8p&T(3!s02g#W)N'4/`DeSJZ(m!8@ta5\jE) +j__k.0EqT_GRA1CliDWe%hcZF;8qH&=.obM!:TV@E/MWjJ4\`$*H2)\0h2?H3d(N;Zr$ft"!Q_Q +>Q>[E!>b_=1'g_q!'spob?8a9A_atco*/XI=cY=M>g8].7VU(_X#4MEh4+"jEQd]Nbm%VS>sgEe ++Y:\7!MFrF!$KTe6Tl!2:tbo.#VR$I:j)pP!!G,jN!98U#_EU3$$da5H()i#Dt4 +J`If$1%uf&KE)!Kk)=fk"p^h%%03UF!PfOqe\EG%!"eLqJNsJA5YF?B%>"l$&0dYIcuomaAYT6U +jO(cUG7NTu4+WJ)(kBCE!0CRiJUe-4^q^/)5QV`fQo,(U6kP&J63TXrQ/+\n0FRE"6A>IA$%a-Z +J3h0r6cf-.UTf4RZTJs-pu;@RK``Oi.O+up0a#4Z;h4p#9S"q@'L4Vk$4maPK_Q2m+CGY8huY(!X>qsa(ig,Fr%X!$6lk)" +UP#/=dK#(`gOQTsK:jV'^o0I!_#+Rmn1YBga>j>g4;A+j3-E\KD*Io'f$+tcm!;j,F,nNAQJZkICTMq20+D_&\5aWY/ +(aBC'gaL-dq]DQt3X28>"p9Zg)2UHcJ.N>XK^a[(@AkN+n>$p%&<.d,YWR_\W"]D[UD@=[+,CL% +'uLmM"@.cX&(/$I6XXI6To_/E+pJXSDjAJ%=R_b'tQ +PQG5P#lkA7i+`=$+9A-o0Hb*45R[\o":-,4kFpPl?t@rNM$%Ul#E>_blNHKjN9Lh8lU:LMi'(-/ +lL=k?('#$UJ?Ti_!%J1^+C^uG_>Y8ODuq/"#6;%F^g7-%*WtA/<=R=3D;*h73X/u&!l-;U:Dhqr +B_)3l!77>-@#P`W/c['c#Q[I,Tk5)!0HZtq&0Qi;T[jO&":ldq%j_Z!%09 +E!&of*.d;nJbTJ0U]:C$fs9W>m\p>lZkbn,"(237OB`-S=oi$0$ZKS$TE,8'&-GaM#B4ts+_VJG +2AQ9N!)^c+D]807+pP1%h9j=9Z2ZVQ#TeOLojE7WnA7+MoE[^d%:I0e,g%3ZV%(f1%R:.#@.GD5 +-5aPL'>[cN+h&!/ro!mt!.f7jAnD-q!">NO$DJ7Rd4$">.M3dO!:R$iiC#i&h\24;m'>!.fS!!Ib$bIK8>U!C:oI?6B\i4ToY>>KA&(1]TeF)F778_1i"VmK!?Y(?"fpJSGosi>phf!$G)[_36j! +OpqPI!!9Y5+92^uJ-;SN!['N)5R8'S1]]m5!e!$DaW'dMG/i$8As +"9LoA!amJ^+@lU>-3<%4"]9+"!Qe2VW$"a_Ki#i':gL=Q2e,4+:.pR('"=e!!$1.&LJ)4 +(]_Ab!^SpLJDe4NHifsa!?caji+)p)#goar4jJs_i#i+EJ--q0Jh>7NY>$'[1A#SR6uh>h'MX>? +";QIF$Xg=O+Q')Yc@H"hU9q8h/1m%+D:u0 +7K?l2%KI%H@#>:-c2hAO*jFc35qWhe4<-Yq$DBiobPV[^Qk!O+&KpWdJX54*g(9re(>pPQAkE7[ +&cc?:!2I)UTY(O13WeiQ6r2;45Tr10\,a;I'_k&ri$.p2$C"ou#8fiMJ9_4TQl:O44cLNbiTMAD +L_u,V)#5a;Es46R%0f9n0h+\9)*]k7C^K#T$fEcNkTUD--^F'Kd]XNEnbkiH2"Equ'1c##QT5P5q2mY3Z%n+'8InF+9DjNml)BS&R^D%^pFdnRMPIQ+5u!a9`P=S!$gI8#QV:6@0cpb +-36CF<^B.9ZF0dA&ZS0T_qMU$/6l4B"p+&d!Pg25!L[GZ4&EcH";Ws$(+]h/0E@g$";WZl!SasX +6Cg2!#$X$nHU5#(&$qQg(-i?1ErHH>J-SE,"^i#Kn*0ng&D"W,65m?7J1q"a.8nGq@),_C+A`-/ +E!FJ?!.](jJ;sU0NW:2V!+:N]J;aL/PQ?<;!!'/&+L2#u1Nfl30@5m=&`L.u7ii93"EOD?J=mrL +O?J.5N59raJ\iC8j<)3c%Y+Zi5l74-ard:"hbF215Qh`dq@)(r2^*bQ6#cb;!!d+L$'3YJJ?)@O +!!9q[!<<`6EbGL47!.BS!l6u"TG,7P:TK"Z!i%t],ecS1O"$lkf%hX#N575c1n[VpI&=3]r#RQ%@!5P66JERQ\Jfh5&'MT,CJQ@_; +Z2fDe+2N[=TV`TXC*17%RQtTu+aOUUen$'gr<"enoXfZ^/&G\E^gU1C+=0d6:QH-q$"+2ni"uLq +-NP(m.T5+-=p36<&^pd5)hHYrJ//7F0(,CJ!oY1%iEu`XCSP$B*j8$5cQM7.>?%;@%KN40i8+q$ +SdHUuB(3eLn?iXS$4;>_-&YTI^hU&5,;k"Q2*K+=\+n/RC>bkK\V@nVIBr +K428_TM^4ZcDLbk0=*Pk@obU"ei@8'Lt::i!Id/8i#2W(*!"SqVh"aM@6Oj'IKaLb!?b8@5Z.Vj +=93qS!ME1'GDT)'-J,*+;tn9 +*"sG['-KUT+@Hkc7MR$Y'd+2*+;P\7(_n/3'd+J2+@$Ya65:V2'd,sNOi;JDB6I'FG*d%9F[sSU +HiQ*V*3mcl^q^F&*"p'h%=mRI+OUlg8eQ^5+$dIWT`P]H&eQ8e/HC;.@3QU55TdiA+2QqF@D"U. +;@_X]$"/\t!/q"F8d-@n&4'J7+?foOr#UCB%D[i,5])-]8d:tK&Rf>f@\J`g2BTb?!(?45VG[O> +J-#NC0JTLK#V](#!!N@Q!+;IP;2FQF%RqQ@KCQIi#`_D"!4_e*4TL:)Tg0//2J=fF6`ZLT'WBAI +'nHhGo*!bIRfIs?p\TmV7KWeo'EJI>N^+4J!20t>Gt82L.074!&.JU>;$2gYK^_Mj4p?uK?m2IJ ++p8/O#6H$#dF^2l3b+VGVh#Fki:V7&G`% +J5"._1;V,p=/hNb?jlqUrZ$J-i'B=&2un2b$\7jl5Tf%k"$f-4,hP'o$iknC:FL05KF3=WTI_Dk +i349r!bi2q-3=]c*N2"pbo.a&lE(.noD/r0Q?$3l%]E!?W!!13t`6_L@`$ikh!/d?n-Qll_;Zlgn4Jmg&U)M2Cr-lrHKi%Q2S ++lG0u"(C+I,6J!$1+@faQmaHe!jFEj!V@3[!=PtO$E17(TP=je^^E+DY\ZWk_#ec#.M71upg?K" +@>OCtNZ]0n+c%=m;'cDkQio1*i!:aH +^aUT3R\0X1!"%Wb;?i;7=X468J;=\,JL$<]3s$[H$9<]G#jdBKJ<1`bJH1j^'`pWs7KWX@!)N\! +5dJtN(l.$oE\BqVg_h_iEU7lia7AeA+3,L3=omQk4pum7+D)OHCc`<)YtVlg>_4,d.PM\#p^.n$ +-gOAfOX*Nr6ChW-#]YnQnN^l^_$PLYR5VE +J,k$@"!@Ue$]i(?)FoB(n/):h?l7f2J\[?a%4EAJ$jM?"=kII,Ol@Pj*/CCf]]Qk?)AiR/GW7a7 +6eF.WK1,Jog=;Sc64bm;3'nJ_J@c:-!%a37a9#&nDqG/sr%j-#!t`BF,_-JE!(5+e!$HegL[\%p +Kh0o9K2?Fl;0iSb#c\m)J,kHM!?a6&_#tU\?t@DM,!:otea'njIZVBj49phi,S0,HP"0OY#:TuIJ,j*f_2pnd +6%BgX!+[=jPNr2q0GuJ9Qt;^'&MrR&Z8pT..7"Q?PV.5fal"]N#1uN_J]q>V=%"4LpcSsmGVfZq +qBuI@4pjT)?]WSGl!684'EP^0'eo1sK*]dA,P5`RTE7923+rpK(k.MpYr8K?hOFW.^k\%'(IG?9 +D1DTu!!'5'#2fLfJ-9=:0E`RIa9!?;O9(C"#SR1\U&^kM!f4W!1Oq0F!5e4-JRAs@J41+UJ072Z +O:aQ>!B;4n[%ICZg&PG`D+8V^P>Z^(8\dJ<-GW*:;Xa[:$4RoKZa><_!!EFT!!knbJG-1./j`.8 +'`ih!!!(O59Ia%8WKfB><;N:]f`9N=N.I'fdGQ'9q#;\Y^^sMUBE/nN2PkOcQI]ft9rX=m-krtU +d`QK38[nbu:tPam0Gdi\ANt$ikR3K&!!9+G%O+.<"qXhg;@0XMUc$S[f^`j;b;]J-JX1!R@-SHD +-uob?Qkk>thAZPC@;V`*`)eFX7VYl.*Yi^_Y##]L+cXk3^c0%9p!J78P7)#kW7&0$-"G>NlF";!B+jF@4hE(S+R'Z9ii!)["6 +Y7LmGcEm]ZH[fET75Sk3#VQR:@Oq\-\dRFY*Y2'I#OPH+)Im:]!f>ZaE-V0c"7U;\iMlrF9<>sO +BRkU~> +endstream +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_11) +11 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_29) +29 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QkTX7''lVQqe5A+Up^?!A=joA"\Ao1KD+4/]]%<-tYFVc)u-j +`JG^s_%C:#@H>ZQ!!4D'!RZGEAMBMR.7N`L#Y5_!7`L$+.lc/jr()"*r,T5U6Fb7g"m3%!.YQVN-YJ0!#8j7kS9Nd'$,m)!#k>L!$OA> +:]Of%#06j3J-@%sC4HEM!(O;5RfprcYbP1J$rH:YC4N44!5Q,4/3aVp^n]C:1GE$&;DcbtL&d)r +(r-02^^.0tZ_.V(!Jq:8$IjTY"Hifhnmn7733;_T'S&F^B[/J5TE&SS6Jqt\ac[?6'h`IDp)^up +j9m0IXRi@kSLo'j`?9]P$=JAc:_"cO^gI3G!:[4kdgoh'AcS#[17U$bTH+6e$-b:\-NGhN2ulCd +YRCTHmQ^af"9=!\!?B;SJ.<,+#[(O>O!+OCJ"P_NYQ=o7 +.'cqTT]'8ZKV1V=!X,27_d6Eq"bgDfejYj9=k8*7E7P(rNF!JH.#D#+'p+;,#aZs:/65hpee$FL +:g00XJ2l84.DPp-%\G)apc&J1c@`q"b#XJ63"]l,D%j$36pLA-(t' +)0)^Cq-e-+(:djdQ53V3@TWoo.:V[]!#].0("uepQ5+ph#$$pR?j]ncJ0+7^PrcHQRhXfM##]3t +)+64[V&idYJ7T$<#6:S+8cb.Y^_?j7*4\6ZJ7S-l!L'3r##5a1n-Vp%K\80f!2S7.o5nNb1!1.l +\M;>/]sn8?B*>sr!g>/q@%D +!5r*_&OI`UJ643"`)AW-/u/Qb^]ktc3"Z.nVA$$cJ.Mt\"GIs,6G3p;+^)/!!+H?E!&4U&J/eOh +@K8/C_#VX\phY*Sr!\*0r#]1:IVSCpER4ltQ55lr=U9Nd/2G#Db6#$K$EUH\ZXBTd6AnngO^KRoYats4(et>[!$M=rR+$Xc +2@1L^"9;8^&->4##iH0E"En)`J<0j=TF&kr=IKg')qYFZ/0TZo@7!3r63o7LLB'?c!^J=N!,n0_ +_VfqY^`Yjt!;HTscjC;8BEJL4nYu]C5S!nMS#(WD*]&[_!5[#B!^IG?1k9TV+]UQ'FT;GpG'XUc +?o8.J:`?XTBFNb:92NFGc.)du%"XBTWg-nO6Q361_140@!#-8E0O>-;W!07f$l?Zd>R-eTBE2GN +j9![@irNs]"b<_T!lmP5kF`!^J.*1!J5nl8-n8iEU_Gs7;@l)1.&!O>9FR0VD0EqgL%AU;sid(SY63o(Y+_^q,&&PAT?6?BnXoK6kJ1s1X.t@^(bhrt_0Eqb05T9iV +$k36(U^!qT)7"HG!J,u-"meJjAUmq2JP[cF!3D([J5,B9n-0%6`T.#,9$)W3qZ.^f&S6u^fDu<4 +"7*H#!V$-p=YLi=!,[Ou^^LFRJ/HH0?&/Mi!$"P6'n/DH9`?XB5"Wk!0.(5b +SWDD0V@:B;9)q6$!E#NtA&)b#!5Jjp^]4QUi!+L]ciea4Gf1MQYS_lj+e&")0EPWM&:kBcSO!Nn +5%F(BJ1rlG#;/sUi&H)p+QNQ`+TjTP!o>*I!'u0d5Qa8&"FtFq)o*k2!?qLDLA\mp!'gklq02mS +!$VDo#S$nK2?._5o;H^+B/s99md(2LqX\@#UA]@<$&qR +"TSS)234sc5)8Wc,R;\GN\C__^`lT25bJ)^i.)3NfHC9'B/_3roEI^N#SGug&;]76,=(aZ"Mui! +L&`&3J8bQb^]@Mg+;tUfcjp*VScF>76j8-<.Fho>G%Rsh%#5r:*Pb&L"-@T*a)L)]g=UIdX_n8d +pF,(56kTM#<#`YMGQe0L'`^MlbeOM"!(-_eN(.gg7N_mPJ5ftY@>G*,!#QOQA7,G2)AbXL:^4A$ +"'sh9%)J#`c="j'Je2Z!J.8F[eL2@=5.h=*2cKeS",=TDD+2X*\M?)3Y +7Y'nm^^*Mf:u!1DJ6r]de12!Uc2^1Mi=<]f2i&Us!(GiE)F:;^KV48W"TYA7_'D.\JAa=]81>Kg +8:dG,!!*=Ji;a$B5m#sS"$iLt4l?GNLeng&?!&$I:"TH$TG/Ufck-MU9F_->$j4=R'*R5M*<8hG +!J*;(!'n=1C9biA36&&[5EAs"c"[EuOSg-SCQ8F7EXW,U0*C22%uUEPM`QA]('%;`"bCt"!'D@^ +J72hK!!hAZ!,`#AZIc4-fI_jFY205Q,3t9%fC%#NOQBeY!$EHeJ.1d0:=m9DmEW!BTE=Hf +:]O+P!`%SRm=YP6!s7CKlC]Qjm]m%i#R4`4*?`cI!3ck3,S7cf'L=>U_+kMLL`[f0(ngR:i,&S4 +r"B)X&V1o7+X.N7(_UGJ++Ud>U%/?%9H2p:$it5_JK>5M^&T9n+$oN!+D_GDa:uG@+2Jd1iKP;_ +\f64=)))8%J8X,7#TI,)@oRW'7^]e76Ue2$3]8k"b6XZ5TBrX ++9^U>"lM5fD-A!3a<,qWej'3=njWkF^uI[jjUOEOhu`pD(B:T;"%V3VEbkhS"T]/K(4cAd@:01F +"TL.L-@c+E:^/%_Erb,C!?eZJ/F*@t^?ct1ltq:*;(i[bC^."l!(!VT_-A(u1^7AVn)7"U^]Fo% +^(4%>'EjdFJ;+M!GRZpp)'Q-_5]R7(^pC(!<<`6Z>9VN!oY8$"-Pq"mOB*9q'9qW!Wi61:0%W%Xok>I"/,X:@@dH" +ScBq*!(!1XTq5C>T]uuA(%/:1^hs?r6j,aTWC*7$!"K1\W)*I"$GlKWiC"?pne5Cp&qF()Tn4:. +r#D@2!l;er+9DO/VuXXX&HMeC5Thku&/sN9&)d:!n2^b^r#_&%+2P)q+`nNoHl"G<2.J0Am2Q2% +-3sTH!T=(]+TMPA!!)CEdd8dkD)q]*r8""e!Pg)a5S6AV$pJ&i!^IILi'P&;nC>@Rif/(,N^22* +DBH]Neh^XaNK4+gY0Rf'.h9)B+aa9@N"9@nm@jFg@.k\X"s1eU8:]t3: +1c%fC.BjKhZD@T(KE*/d'uB_e+^u30!Y$i&g)tqP"Pk.beFl-C!!"W\J:I]/!"n-+!5Ta51H#=C +Qi`q:!Ad7K&jY!2#A1-#?G"L2GOO^%t'00,5dlMpps_`A5--kbJk&s\e$J^>LT +bQ&b@*?im8Jc$MGN#b4**0mX1U!sKgg`OB1!$Geo_4=h^r'0<1WQ^B?lfhD +,11ol&V(c#2=qQ4(IS6+?XOu[J0Y..3!FgP"opFhc7mfMM+0AJ(r;0k5Tgoh:ur-1#6m!d!!>D8 +kQ$P+!h^[JJ1^m'0dFRc#QOo3!!EQ72?88X!2,,LTR[*ZJ-+YZ!u)Fl?j1'SiWK5_"98Q)dt]8* +Mbh,E:a-,"NS..6SJ&_.3`%O4DS&EC*tu_A)Ju2T^m5Q5+r[0O)6c+'^ha`NoECo-!.[rh_<_Kd +S/6`a+4,K@TVr;CH4Af`!R8(G^]Y&G$SYRB5sUWH?j6WS,S*-g'7_4_pADgG%KV)T!cO_5+CR]5 +>T\O61tHnEa- +VuT(,!YJ,l1_:@OKHJ$n*Pj!C68T.E!YRa"#pAj?+=Io]iWPsh)'RiX_<`3$:)a1@!$N*r+g)6* +1]SXZ(4ZGoJ-$HnJ-[=r'`iPqVWMZfE$)o"'B)&^Dd3;#]_4Tu!!-#S?pFfZ-39bF!6-Jg?k*:3 ++:tS)%mX#+N:$cJ."EEM%nB;*J49U[-3GA;!C1r3J4*?:&-\CK!5O$bi-GJJ:'.Vn#N/D^J5cXO +:'?)L"MeCL2BdR57t6M%eh(@kN^"fIGl5?f*RE*nE``Arh#5JA!FU?\5e[Ffh?H7g#!lY7[nTZ% +rWY;\c)fZ7:_cqP?3*;t!FT48lGORu'H,gE);m+bmZ[o@''^#OG&T6Q0J)TG>FFt1!]>OtQF$_( +RKCI,#,+Wu_+k\q9h@W9$io,p@0.,Dr$Y^mSJfoWM^eOsHrW8b7HiPE$+AN=_';M3e"/$2,i#Vrm"Q;TW"X#8pi(49k!!2!\"\pE(YJ4QW +2\?N_20\p/+l).(7/c&0?=46E!$!#j\#]ACX'i496"C#s=*1+H#QPVC!*0:(JC.BjNa"]B4\HOL'UG>Q)\#QX&l!#,SZ('Pft"X"]e+?frO5Qr8s"X$263fS9"CRAn5`u.UPQ?;t!MGMVi0"3COp!5r$Qp,k+;P>- +(^hH)$Qq]7g#L"i'%,q3kN05">Ztn^ubWj +Fr0+J(LZ5<_29/I?PF[I%0>r1JDpVR@MYY"'VP4=+`\H4jrHbc*ME*Ji/dp]W(93D&YT[DJER3q +FpK7E'd7rC5[">"r"q^^JDg,1@.X\SD?lk]'B-59Jfl6j=t\an9Ahce@"8Bq%s=+29V;@fL[G6e +j)Of1!mM:,d&jIP\T6(1=hjT>iFHVeh5Pd&Tgl3Q84C$[o=fn +SX0>^(?HAA'@I-U3X`S!loZ7b;P%/bm1%Tk"qS0\qI!#Aq&Xf9'"I!"BTV!ol*=!#cI--oYQ+!5J^NJ1(g+ +0rs4V!$GC=&h,+!@F)-nF.o"c/Rp&e_+(eG-.lu45T;-%j>*G7?9g6MEh!CBdK&250u+8#TFoC5 +9E>-"""9NKi%bu(1''YO!e!]CD!BGJNIqn0.ZVLfTgTS\EW@P]'YnAf^lSge";,#R);l'YF/*#M')f?kVk$ +##h/t'AsA;TE5ed"9Ao\!apDg?l/p;(]k.A!^M,6^=3J!l2W@`![&B]bZ,g=k?pt;!am>/)Ebk& +.`GEW!2(?C_5J64h#+HL,u;ph?t$+/Z)cdi*O!kki"-pD1%RnDo"\i-T/lL-2tS$6(-o^4DPDjo +=`f0F!Ec]3S]h+";0N!A#G;b9+=7AcB=@jf$K)U+^a9JT-36B[!at6eTG.o%-4rKW!l,4SXN1B2 +H]+I'6@]IF5S%7F9"\urA0;"di$W&c$3C29=$SA=!$V:W($]0B!rs/>bK'a89E5&h3+*@%^_?oZ +(TG2LcG1bL!aq\b!':1A^dIT.r!5LgO2/[&39Uo8"HGc8Y[HB-3!g(HA!!B$!(?mM5m1"U(_fFC +P!ObOBcnNh#a,6WJ=.6&;#h:1,leNB##G@8!2TZM5RpTn'EKL&;,A$1#o/&'0VL`_@K75F-3+X> +#%RcP!2]`NJ.>ri(]bs+;32Q*$(-=!!3t#RGQ==#8'i.G#^HKC5f\sHkR]uiSj=`3;8a5m"s&8m +?uag?G6f5+-ZG3p-?fe@JLHUY!%`@IJ.&$3#Y[]F&;.;hi:MOo>^_EJB,G*!!iR:J%3:S0JH<(r"+A[G^pG/ +^`Xa,J7&@48cbU\-j,&GcmC`&"4Gm-Oamug(':.Z"quM1?iV*tJC"uF"@.P%FrlD^p`9Zq+CYlpkO5Usa&V,B;\e9a*W'VDRc-SiZ#,.\8)2:D\/dSr%*3^(Z +@1WhSJq15:)ZYGW@"/gjYtdHLLWT$pO(C:eO8o92".S]ZQ9ZRK!!OJGZ60E/+9W;[+n-@6b%YOlP(L%3Rn3@P8 +J?T)OJ->o[7tfg*64/qWd2iT+JN1F[";UDm%Y4Vi=pfnUn/_]8i2DSI!'t9>P(cb)Lis]!ZumDk +;>bn]!YK6M*1b-Th&aW==JdVLi.)ejhr$[-Iu>H^A.SoP%%8:H!B<7VKE4&!'8/Y27P+X-ck\26 +K$YDf"6.Zm/Hd9E6nAIO0Kqi,">E/0"@Oq59*=7Z5YD5*YXD+eAM?;H"9gJG;ZoNC7Lk4T=T0&# +i1XHaQ/JoR$^KYd?4<1YTmd?8i3@_=Qf,]/%"ZZJ\f6BtQokAn;\378Ktn,$)bY5;EP+u/1scb` +4-\"m9S"n[2#r;D'L!'pq(b:!,MB/)MM9Et`K:8$kW=\j3@%7ZV`C&!R"%E18OQtdY.^%33F#P#kP(.3=,Ll7o7WA5Y?+93A??3G-D18]0A%"YWA!.]/)NT"8+ +#OpjU+D>j$;32Y_=;;FB$qcA-/gZ.[NWVZh<=:/95C`b6!$K2rK)tm4"CQa"j-XltJG:3m8H1^N +j8oSX\c'!+;t;H0EV;@kQQK&3!=p$Duu[l"\(0U!EC+G!K2%,JA;?o5_.?$ +O1YaNP^Ok0\i0kHYR?(/F>\e0Q^!ET(bc^0"99k;PO&h`%bY,=,ugrM9G)t'kdiiX@'X2ollZJ) +/d*@PB`KIS!W[0\LB0pL"YZ\c!3f3#JN+/C^d'FN&>fGZWC[)`<2G+QV?+Q<$4=R"1]S7;=pn/; +!9)Q1*FS@:KCAsR^^rO,;!;@R89b/di!+su*$%:hFTMTr#_ueE*Iudc"+[)RJ5C-$NNouPPYBlI +i'[m&4)f(/VuVaKN'Dr^GlT(b<<*dW$H2]?&`MMp!K^h5K6T$X@)su$?ucbY\3h*B_uYhWg'L"U +gH9!4.L3bt"9<\i#_;7_T-Zr>L[aO.,8:+f0E;.u&3uBnA-,4S!!,?H!!$CR8Zq1=]uH_h8)V/j +KAZeA>FJLki@$>_JVjL3LlrV6'O?Mk8h.l[>#Zlr*KT-[!36m*HY!HW&ZJRjoD!1X7G!(ctfO>7f+aV?Ic2N;(2mZ\"E +Ij=$)/Hbbo()7-&J/AjR!MX'tXEKHP"L\Gs3!+("S-YqoU^Y$EUefu-5mZ!J/d7%3%4T7VO+HdT +'>f&;USM"B+HRL2!6H3JE,L[:PV#7+M$rA=ALQO81/sA7")!Tj!!.\"^^/*`"1S=2YQ,.:TFCnA +a9G3jpb;hPYQA6$/.5"L=-7_=7H%eq$U=n55Y,;#kc5YcPo(^g?=Y82`jD@IQ=>]@t2@"c=9 +%Dm'Z#2nPh#(U]V_8](R[6T5%PN2a2cik>coDjL4J.Y%[$iiOD1'%A!":LS'!C0.3J=n&#!#Ph= +EHWi5!"#1tBF9S]/-KT>hhM:F&ca)f!!'eY!l1=\!\mdaJ90oVJ=%V,^_?c$F?$o;+T*43&.#I. +l)2ACU6A-lG$F2m-fhq't:%DYLo!C6PdK9-o\^gK/'T`9n"i-kdEp^d_H,U@oEX9(`0 +$O^>r/V)3s3IkLU!J-mJkS!M.Ve?>H!%r^ri>r/R95Vs8-],K!ZlkgN.<$=*e?")$NMjk"b9A&"/#o-+$_1R!3cJ+!'H-9[CepqOaLC:Ae,,cmZZ]% +j%4CY$jEjg"6'.gMZ?!"2<_7G])uIBmC9+1n,W2k")r)GB&"$p[K8Bt,'6S,FPHj2k^cQ/$NL5H +!LTVkK"t:l62U`dpg4Ou!(.(ne,_l9C*0-O2?r-)22CD8;!626M",RFLDT%PfDu`g +!&LrR3/%&6'0$4"p]c7f$G[g(J9!8m3F;at#(c7H2kiJ[85Fai"0gubJCji%4:H`A\2G6dJB/0" +&.O3[$R;SsUaQ=q!!3-c%03U6]Dt(p^]B,H$%R=m!'i[IL]me2%$9HpJ862M91+`t"FuRAJE!ni +j%g9W)$,(`JWU`on/3&><[CC?V5m^pP?B3$=@1bF_WtANq1\kWC,VR82ToM/j4p@C3'HkF[Wio" +!!3-#"[GJ8d#h!%WRZ/:_[j!2q[aVuqZ;#6R3uVuSr1W'Z"77=]=a1Z/D1 +ZEg^m#Cn32J1:*jg(M4M%0.4RJ635P-jG4##Ct$$!72('fG#''&-*7W!#Q?!=;$-l'EDl]JMLs? +J.hp='S+7=JC"s[fGo]K>7HhhuJDf!<_6\KAa[uBKL``3WOCc!.[*1 +LcPO/4926D8"@rWJ?j23k"p@I$KLc=N3!Y*r$3W$iKJ3gf0F\.=%>*9ANL8TO +Tt->C\,]d+Y7%"_^]=M0DhN?8KZgA#(]].q7>L@>KK+%.5XbqI2?[[nJLH!OkWs_)D1hTa"A-.b +(k3uR)jE;^Jae-n'X\(:!/:"L&"!>$WsK"*!JAQ'J,ft-!"XY]#I0'fJ>b/PHPq@L#r(YaJAOmR +kSYJ!pQ)h9@e:[etC +"R,tq,).(jKKt"k(aah_@/pQsKKoTm!$DGA5_8]3LO^t.KaZ8K/ ++.J05SXpf7M/*ee9Q;!9!T>n#*9&\kOj]0LGL=:B]c5F@fGK_dERYYTeJ$R6JnK_hMF +68?8("JZe?J>!C%W#l"kV#Y`^,0UaOW$[&"E?jI*U[S;*%T@`<'qR(QpOr`Roo_8>o75[^Y+GJ +dOp&D_Z6rZU!%8$O.h2Pu!!%)ZJ3XEk>IaaA)uu?0===K+?jV@!^DJM(!8%VY^^>V%$NWKqJNsA> +5Qu]m#?K1eJ:J@7L_ToO'nDtef&.?pfGafu)ZXOj!,rp.J/X7M$A%s]\EG+:?m5Sa+olR+J=%m< +81Xa;/-&ss!jDr^YcE;A1]U'&!+7S_Ck"tU1Ot!0J;>n0O>-a&14Z#R!3u$G_L8n<"bY/-"2G1p +^^1+I$%pS3KNJP6=:,1%$A:qX"F(C-QqIF0>_#@N!)Qr$=Bkj1.N<%8S&cJ](_F7MSrMO!RtW5m +p]1FmIYZi[03Vfh!)/E_>7P$@KV2"ok^!BM[Y0H857@":jIl_CZNf?:L6T(LW'c@0Bg8j$.gR:q +;0;un+9:$sJ1Gu!GQWR3\hl)E(D$WJGQRqb&cb9e1qGMC6:qi'@Qa5A6Ajb-TRR"#@KD_l[I`-I +gL@C5!.]]54npR^O:Snnfs[,%K%k-L:gdX!o0\^\JcGt*GR/p&mJr&>!/P!4L]W1oSrNLNgj%^; ++97'VU]O(MJ1)39fRErqX+2==.\JI#n5'?\I=Pi(O-7Bk]#?a5rr<$DJcHF7#QfO5"23Vb=0P:0 +TKN8m$%pS0$ZJQ8PZ%QfS&Nk=+p]"t5nu!*hN:bcOf9:dfcDb3qiX8DJ\B)f.Ck"mm8P:taoDF* +6Kp+r1C%L:05tARK)$)$Ig!@V0.QRX/_3-/2O%,B0LH!G-.TSQrNGMdL/;6WJ,g.Jq1Zd&0YeWZ +"AOD#2h4.J6b#(LYQ05"l[UqqJKP#F$Q?/5:/$"5/b;o($JU)E-idp7!,+=lBKuQ6!rt&&P'ip- +D9.55I0K+hKudU)n,WSM?PGTkJ-dW=V:Yo,iJ@V($ro8#J2e)? +3cK]iG/3_Ve*mfs+:WiL$Hs=j6g,6b+;Fl)'`^c>&MOFj^]4CcRc.'I`l(2q^]ss$!(;?!!$F?' +-p)r54?97EVsk0Vj.FHe=64s^"3QcU16a4SQ)SYhO'83V)"EY>56E&*J1so!:^MXP3!'8GJ:n=r +_PJ_Y-@gUKJ.?FH(cQtA!eV/Y"+>\"8.nohgji_7J:-iC\toB<&Cf1SJW]]>p:!AE@kJmN4VHSa +6nF]OA8B.pQuf!hO9Yb= +83Dq]AEDH$LY+B_+;^(UI07Ol#>fi%mLbMSW@FQ\bKT8_i"6"k%]]")!sf)2-A6mP:k4W.[*9[7 +K\`H'*/8LBX*V;(E!(W\bbM8aS3jh<_S$)6+3aZ5blB)klG'D-_13X3bmPjm>6f[Tq#EYtd81/M +#YP4$FUOmI$Q:dNB)0s5A<&&CAon"QGVTff$35$#5WJQ>TEVgq5Cb:$`9TA_0*MDj#A5ao6-SbI +-o]I0j,c](65`udT*6Iu;1O&4[)ciGK@%rO.Dj&3kBo#IP$0`@(8[0oV:Z)3WO;:!"(O_ +)R@i]"Mf)hJ3kqYN'2[s$NLbKJ>`MLa92La"Rn:'JA;AY=;(Z7'*&:O!"]eD(_hKC&ccd1!N6#" +TE0VJ"bEc9PX\X!2cT*^ki;&Cm8#V5re.tAHgJ0h"CbEDpF07\:#J:K;' +LbF:?07]ECJ=nQGZpoZr!.u[#""42&5QV$I!eW00"#'k13!BCD\q"DoK.KQDGVoJO2#rFh!2)Bt +^]E[J3e0IVN/.W>W!.g`"p:TLJ9X6XJ3Esh4Fj(T3T\?llAH+5)9O?>J1qDG^f:X/Jj>Phq2!q0>GbNLAV!#5L8*/"S'jZ#N1 +hun];X(ogEJ=&S%=?fO4"sVU\!2Ec9\.Se*2X*6qU=C*N`prU=Td<*Js):Lh?s=n!%&P'X>h32 +O92H"$pE6"Jca5JJ.&0'"PCL!KQmgLAfX1Q:4W*J!GDik+9MVJ)ZY3=!FQ*4J.L1tE_M:5,hX.A +,#F"J#R5?I&d-[8!n.7%&3Z776X+C-r&90(^N&jaKqLGV\2f)Tq?$*K1*5[Ri"HQpibk3DW7e]? +\/PIIAqCj9JT)ca#T*Se+b=>jK.p_f=JuC+"fIOSd(BP^'!H8j,&0V;J4`)#qKcjZP +#S;aC0ETTaKFU4D-uFb?"jR9dJ,oWMkl;V(K)lBGQoGd*!!.[<%7VSH,WQ]l!Y7b.jDlp\O+8J% +#g=7h"/JN,Ae5+CM#n%)lGO8,>4O7q!$DB"!!!3k_#OM?!I0,I$_RMCn5pY7"#kitVBErZ+p.h7 +_'e0.!%86g!eWaH+&d:!Rq*lIN8Ii9;=5?bT\8MLdIgiLkeKsdtC2!;%A@[XpU\#bMWsQHijIg2bW?!ja?uS09&4n +!NalNIK4ngVq;"!C&oHLVrLb_!rj`7MSLRP(aoABO98m@GU@lM!h4d,cq1kc@L40/THJI\a:8K- +JH2]&@NU@M!02X9@HbE\#P!`YUd9M4-'eO-W%8aX!%IsS$1oq\+6EQB#_qNVt!;NP3!kbIh(kU"E9l$.6^Fl`[Uh-+3(h?:)-2h2Dl#`5nZAR7'hp7 +QR0HT:BEetL/Ju1P(aAR5RG"(Pe[jKM?!WrBE8)Am6YDM`hAc_1r0I)",VfQ$8E*rjO=86.PNOV +K`V71#RlWA&d8:Y?krbD6QdEU!T9Un#d+/^>R1D=fUDjA.c;=5.V!]?X+J-E]!-`NBGLWq!&,Z+ +XT5Bf\HIi+168WZi-8;m\.!3!%'M]dPU$B5%9ou[?/BGJaB?r.[B!MD+d!s.=6+9MZf^_P%ETPu@c +k]D&#$.iT^'G>t*-lN!BUgE.eIP!/Q.3 +#QU6B$4$XYV?I>-=Khu:TP1>1$35=T#R^WgdKPUQ@*/\4TQ&*[N'Kcb!?f/\_Z1A]+=oa-Yjqku +p^@YJ1ck]qliY/H&.]mO+be8CB@XPo2#meb)KXDDed8]A`q\aQ`quI5R<'Q'br(Y+5a<"7 +E(Z2Mn?eLS_AiOY!tXA_3!\rn*8h*M$5"s=70;d\Tr`6m&V)kHkhV'XBE/R=coh@Wn,NG:!!e%) +#65q6!5K9LL.Qh-:#VWCTGTM9J-$_+!!rY`7(E:?(4]3m`%]>q@Na_Og"T%&!0,!:[rbT'&WdAf +89/bOZp'LI+d3$/!"],A?33E;$35X"'`bTjL$)>j-hF/D:;F/O9i(utTTmhBBKuP_+T<9e"?$Oc +(`IoIg)+9-Fq:8=/(!4K+2\3^#ga!)^h<]MKI?rN:^e=L%(@`p#R:t3pb;f4"s8MOOan!:!/l@? +#2iG_;nsO)BaF;P"5nH]TaW)teK56n"DiT"`W/@P:^s+S2%SXE5D:$"X&O&1M&JPXKC'l`'U0'? +"U78l?jd#Y*\niLA326J3$a%()Z_/@!.d*e;>'9HM4kD&`6e.ToR-j:&&1cq[%)?TuP[fA!>">eCI!'lVR"/LsdU5$=Z*G8Q +8-&b/ph'VX(dE[5!Y+,&^doISTR7'$5U744^*`s>UcJJUapE\K!t?A80ESID#I,[%"Z#!JJ7&dg +m4>aK5R8+["ZMUgKuI!q%0Va.fE;C9aW8NoP$O/[Y*J"\!fI()Job1XQ&L4rb0\M9/'7mC3$T:! +e8'cs[QT=@S/28YIh$`L*CfgA%KInY$/mWj7Bj!(i5euWnKD;YW!s4:'MAMC>VAN2LDHP5%1R;X +1e.6q#%.QG#luG*7*r.RTpSB-+U0./!.I:dK+7lh`)37RD?pa2N><'<+^,]l!/*$bJG&sHK)cei +C)jY^```ZKO9&2B_DR[e#WWG6K0[>:Yr5$FE>83n(4^cAL&a+3O\-5f8@2J"1gl8meE84VZjfd; +7#;)?O98sEER0G-C&ic"bb/PZ6/pf&!=\F1J:(^S+HS7qf]=*IlsG8Tn1UTc%-#1S!f!J756p-G +**djkJ`$`R_cZh@_Q84s?igQ5#ZG(](cgmn4(ouumfebo!!_UI)h>j#$ikq]W1XeA$s +E"#,'9`P`^!(;Qjmbp,*Kb+:uOH4r7_Rt@LO_s'p=Cgi)XBLNY!bHuq@lr4[=c_OY)uQ`3!!!:S +O$\L#7bL7=`(X3b!29H>n--3b"9E$W,[K(;^B+>@!BLh69R\&,pH5F"%!!*J2Q6d'0l[' +M!uLZO:Ye&!eF/J5UmCTqA^YP&#&h3JGKt1"9Y;"(r>nJUQ,dloFdpr!$I@F_/Q0($jZ)Z((3B8 +`8D0[6O$ +OO>e=[VZQ%S*&T,`pfR3p_LY114U8G!#tuQn3T_=69lAW"=+#Q&f(UV7O0Sf6phI*Vp +!&+F]!cMIc!$IGuMLkoF"9f$b!'kK(5`Xel"Tgpj![H4,j'j;Z;DnV^!)2k^5R&"?q?m>^+0/9O +_2Rqnr#B/'=?m&m622G9quFO^!$FlCTEZHgp]3Y2+2PCB!!!GF]E!mO#_2o7#f[3f7Kd*/!amW( +J3Xa(E">2^]"mtV!@S!M(]cn;!+?!3JN*d_#R,`2!alE>j6d)$!!])W"$db.5Y*P:k\B%#CEs_h%:52jp)McIK@FmTJ8&7JC4E_bQ/ghK8BF_WYE)'U]<\;+/.[' +5R%Y5q@(.B#XHrJdps7#5RP@&'-Vs18RMtDKE0to@t4W.!0.+gaS12p!^Og-%sgJLfVDmt!8n=e +`c;,g,b*!`.Y&(D5Tg)Z\./$j!6'*_@\a(ccif%`"G3u^+<"-#8-**)4lc*J?p\V6(`eU5*/pa7 +K*DQ-\g).30h0#7!+]omlS;r/S.Foai#ZfTp(7V$/O1?Y5V`>t0EOL'!`/@ji$8IK-3YM?#66"S +i\gjGEWUcS!8rq?5b8$BPQG6W!f#24!$hs1,RZja$U?*L+:\h\,RrZW%3Qu,+=I`X%M/1maA]&5 +^a9'^-j%0o!gKP`?q^R[dKJ(*!e>(ei+;uiC'%dX\mQ!RTF_BZ-FuIB!8sdV!34j?.63Tb%"KZ5 +?mlM8%M#-C%Y,l9?mlQd1_\e((#Unbi%tRu,W#f51pLFGW(8g=(50MO)'Atr?j-74(]Y^5(u]oc +TlB"A!"kq&!!mO(+ncj1dLB]\3a`4)61u>W#Qc1C3tfULbW#TQngM:;!"Vs1UNcm6n?n$B%Y,T/ +TI:5A%9%fF!!'q +i&o[X!<;_>"6nlG.5;RBC#NVJ-]Nc*RV/(209G25`+DkK4'34 +J,f[:5fTHD%=f]7/6cNJ=90sj$iis&J.s2^h!h_SgJ1L]9('MXY5m9_5'usP^(GD@DB0nt!!3#WJ[c$F>ROrt!MKW*TnMEVHkF>f&_F#r!!Et.QLKDA*OHU8C;?E`T5/]"ePB@)N%!]96b9QO8\^`idZ-38WDpo7e7VIBTL;?;;G!MGqbi1'oMS-0r[lAX8)Z;^gI8loC#8Jb^k +N4&fJ:PS;E!'r^Z\C(t_*YQ:C(EeMKJCkh:-6L(QGbP'Q^kE[#Q4%*[!J(@_f;&](iG1`AI\EhC +6/d0ArFt61+2Qe6+S#LT]Ds)d!$PWr!UL5pZ5Zr<&G:,Wp\;1i7XOK4F.g]IeY3-JGZS8cF?gTD +&f.X;6KpaClE7;U+@PO'/kk[, +_,qeq>I*Ok'*&(C_Ria?r?ob+&mIqqjt[/#N%#Oj&HI=f#<$45RKS,KMoI3-\Fa0^&P;#f+Rd!OD6(5TLu%m_QUU +@JU[lW#hY>*MHXYT_&4,:(m>R'&ia-+9W[W-4=4W+2EdP_6sq@U*$(B3bWOP!Ib\J@KbCe'$N-& +idgZ8BSiN?#G?SL.'Yn-`0UbB!%1s/Ls9cZ,)ni=g-mj?af]G(pbG)I"op7^igKr-4p'b*l@Fujr"K20`Zflo ++iXMUL9q\s#l1Y=i#:5j&e2au&)]JWJ-HIu2+\q,=4Su)gUI?p$?Q8#"J@sBc)Fr.lKMI@61F^R +!+5p0ScfP#!'3^T$AEVuJ-P>T2*_V*4N^Yh#Qip/F!*pk_2MP@r0%0Z%O%>MXRZ?7a:P'C)6XSd +_>Fa"3WL;.&.r.\?&0;81)??3+2Mh:_-@3W4:ia')IT$A@86eXUQRo8#@Mcu_)q\us(=UA=$[T% +^rQRB9ueG@$m:uD00CWDp)BY/?fhD5L'V2,&-_$_@:gDZAf_=F"pokU@\tb*q4(/eION?24J5.f +cX?GNfe0T!0-L>H5S=VA!;\qj!C._hFqk@a@Nu88Rj'c#_<`8m+;g:g^8BjU0E1uZ2,fULp*L3N +&B[mBE1G:TUnAb8i#Vo!(q_,N(5VlH5e$f&7,rgk!.d*OJA'unoEbRFVI6gXU"gP0r"bI:)B]5* +^]Xe@5To@@4D#'(!7E%m.=r`p)N&.Ki^&77[:]MYT&g@>SFfQUejJW>L"Z8Kj^dHMNf(r$+U&YJ'"t]ct!1#lNVuR#% +'bCEh.1Ck2!W\EL5QaOi=oeY^fn5F._uL?p1BmufR:$L9!jZJr1<>7Q1B<6H5pZXK5otEC@_`8d +W!M_j*5KQc!!)AnMub7j5_Dq%34$p2"LWb*WGVqU$Y>%U!!rU4A +9)sDt+cQc`0%Z$3n-OQZ@'GsTR8YW(+D*CQ%,MC+9)sK:i".'^r2d'9OT6'6D'S$VM#fm(G +!uQi$*IK6=;'i@mDq]"(m'AEW^ls3%P/d!'#!$Tn@:a-8M5B +YH"6$1lHn4Uq\TW1C+LF#%=5W$\Q79Qm%2MW,*IZ_@V;A#N4fA.L.,9)BskX5`?H]JS8EkLS6D@ +S-XXi6lUtk5QD6"1ACtaJtSJ>#QTD-(_m/r8/qY]5eqOHJq/Xa&qWC,/07JbEiLDh@/)te#m#H] +>ZWf5G;'QE$+9>/9h:5<4'B6dj9)RJ.k"`$\/6H!"=AZ?iV@#!K[:"J,ukS +*<6-0!$M=D#QW8-huGe<:DIhh!!U.<)?:&9!)`dt!!%rX"b6SD!!T"uVMkbQ!)*@t!!7+t#_2mr +!&m3Tg&P"6[(/b0$"ud.!h]N?!)(+Zq@.rT@RL2!+93#S!Qt0O!!<3$FoVPN"L&/^!%7g[J,kZ2 +%KHL5!ERhKFMoI*!E]=4J/+e0,QJRnT<;t@p:mh5Fn.2\9"Qi105&'#LbarW#cp(E@jpCpN6T># +!0S69_d6_Nal-a_FiB.e1B=/"!'#L`0+\32!`09)nM@su!Z.@l"@]'#.3$8,7"0:\)E^7h +Bn-7d7F_ClW9+2Fh,"GAJ-B<`HZ_Rp2B@=fc=>":'[Qh?J=WX_!YD:*pWdr.W-@Bk+=N>$SQq4T +!YBP72ujki&SM.P5UE^Lr*TOL!dEVU$7fcg#^-7,*,h'ig28WVeH$K%'EXa%#^[ZOn`GZ>$pL1h +!sYOu.Y(C5iu@Jk!3d;"J5F2E!%QYD5Rj`N-oCbX\,[+[HqjZMHiO6K#'=:t!fV-u4^e%LGV:5" +Kcgq%*(nm!d!S*pnIl/HA3>M(*!7MFiW4[1N%;(Da#kOt" +endstream +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_12) +12 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF object obj_1) +1 0 obj +<<>>endobj +%%EndResource +%%EndProlog +%%Page: 1 1 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +4 0 obj +<> +/Contents 7 0 R +>> +endobj +%%EndPageSetup +7 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R8 24 Tf +1 0 0 1 34.3477 774.039 Tm +[(La)1(ngua)1(ge a)1(nd So)1(ft)1(w)0.998942(a)1(r)1(e St)1(udi)0.998942(es)1(, by)]TJ +28.1953 TL +T*[(F)1(l)1(o)1(r)1(i)1(a)1(n C)1(r)1(a)1(mer)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 712.965 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 712.965 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 712.965 Tm +[(F)1(l)1(ori)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.207 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.02 712.965 Tm +[(Crame)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.309 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.125 712.965 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.098 712.965 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.289 712.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.359 712.965 Tm +[( )0.998942(are)1( )1(i)0.998942(nt)0.998942(ri)1(nsi)0.998942(cal)1(l)0.996908(y)1( )1(re)0.996908(l)1(at)1(e)1(d )1(,)1( )1(si)0.996908(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 698.996 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 698.996 Tm +[( )1(may)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.199 698.996 Tm +[(proce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.98 698.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.793 698.996 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.863 698.996 Tm +[( )0.998942(,)0.998942( )0.998942(and )1(i)0.998942(s )1(const)0.998942(ruct)1(e)1(d )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.137 698.996 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.203 698.996 Tm +[( )1(.)1( )1(Y)87.0117(e)1(t)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.266 698.996 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.332 698.996 Tm +[( )1(me)0.996908(ans )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 685.027 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 45.8 685 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 54.3754 685.027 Tm +[(e)1(re)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.8828 685.027 Tm +[( )1(t)1(hi)1(ngs )1(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.316 685.027 Tm +[(cont)1(e)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.504 685.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.797 685.027 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.602 685.027 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.273 685.027 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.047 685.027 Tm +[( )0.998942(l)0.998942(anguage)1(s )1(i)1(n )0.996908(w)1(hi)1(ch )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.387 685.027 Tm +[(al)1(gori)0.996908(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.945 685.027 Tm +[( )1]TJ +-508.598 -13.9688 Td +[(are)1( )1(e)1(x)1(pre)1(sse)1(d )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.836 671.059 Tm +[(soft)1(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.746 671.059 Tm +[( )0.998942(i)0.998942(s )1(i)0.998942(mpl)0.998942(e)1(me)1(nt)0.998942(e)1(d )0.998942(,)0.998942( )1(and )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.227 671.059 Tm +[(so-)1(cal)0.998942(l)0.998942(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.996 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.813 671.059 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.945 671.059 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.762 671.059 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.922 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.738 671.059 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.871 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.688 671.059 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.852 671.059 Tm +[( )1]TJ +-487.504 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.016 657.09 Tm +[(T)1(he)1(re)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.688 657.09 Tm +[( )1(are)1( )1(at)1( )1(l)1(e)1(ast)1( )0.998942(t)0.998942(w)1(o )0.998942(l)0.998942(ay)1(e)1(rs )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.184 657.09 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.957 657.09 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.773 657.09 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.84 657.09 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.035 657.09 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.945 657.09 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 643.121 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 643.121 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 643.121 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 643.121 Tm +[( )1(i)1(n )1(w)1(hi)0.998942(ch )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.215 643.121 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.125 643.121 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(ri)1(t)0.998942(t)1(e)0.998942(n )1(,)0.998942( )0.998942(and )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.359 643.121 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.426 643.121 Tm +[( )1]TJ +-458.078 -13.9688 Td +[(i)1(mpl)1(e)1(me)1(nt)1(e)1(d)-318(w)1(i)1(t)1(hi)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.32 629.152 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.23 629.152 Tm +[( )0.998942(as )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.805 629.152 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.426 629.152 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(.)1( )0.998942(In )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.887 629.152 Tm +[(case)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.02 629.152 Tm +[( )1(of )1(compi)1(l)1(e)0.996908(rs )1(,)1( )1]TJ +-426.672 -13.9688 Td +[(she)1(l)1(l)1(s )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.992 615.184 Tm +(macro)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.207 615.184 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.906 615.184 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.93 615.184 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1(se)1( )0.998942(l)0.998942(ay)1(e)0.998942(rs )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.102 615.184 Tm +[(ov)1(e)1(rl)0.996908(ap)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.617 615.184 Tm +[( )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.059 615.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.195 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.008 615.184 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.941 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.758 615.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.891 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 601.215 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 601.215 Tm +[( )1(i)1(s )1(w)1(hat)1( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.25 601.215 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.031 601.215 Tm +[( )1(proce)1(sse)1(d )1(as )0.998942(dat)1(a )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.254 601.215 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.164 601.215 Tm +[( )0.998942(;)0.998942( )1(si)0.998942(nce)0.996908( )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.559 601.215 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 509.59 601.215 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 587.246 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 587.246 Tm +[( )1(,)1( )1(how)1(e)1(v)1(e)1(r )1(,)1( )1(i)1(t)1( )1(i)1(s )1(re)1(st)1(ri)1(ct)0.998942(e)1(d )0.998942(t)0.998942(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.629 587.246 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.367 587.246 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(.)0.998942( )0.998942(W)0.996908(hi)1(l)0.996908(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.949 587.246 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 450.4 587.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 458.977 587.246 Tm +[(e)1(re)0.996908(nt)1(i)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 587.246 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 573.277 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 573.277 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 573.277 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 573.277 Tm +[( )1(l)1(anguage)1(s )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.758 573.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.895 573.277 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.707 573.277 Tm +[(art)1(i)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 298.2 573.2 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 306.227 573.277 Tm +[(ci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.813 573.277 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9420>1(from )0.996908(l)1(anguage)0.992839(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 559.309 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.0781 559.309 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.02 559.309 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.156 559.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.969 559.309 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.133 559.309 Tm +[( )1(l)1(anguage)1(s )0.998942<9420>1(i)0.998942(s )0.998942(conce)0.998942(pt)1(ual)0.998942(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.898 559.309 Tm +[(i)0.998942(mport)1(ant)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.285 559.309 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.48 559.309 Tm +[(undi)0.992839(sput)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.629 559.309 Tm +[( )1(,)1( )1(i)1(t)1( )1]TJ +-454.281 -13.9688 Td +[(re)1(mai)1(ns )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 545.34 Tm +[(probl)1(e)1(mat)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.434 545.34 Tm +[( )1(i)1(n )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.262 545.34 Tm +[(pure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.512 545.34 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.324 545.34 Tm +[(t)0.998942(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.68 545.34 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.352 545.34 Tm +[(T)1(he)0.998942(re)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.023 545.34 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.648 545.34 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.398 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.215 545.34 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.348 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.164 545.34 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.324 545.34 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.141 545.34 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.273 545.34 Tm +[( )1(about)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 531.371 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.5117 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.3281 531.371 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.395 531.371 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.32 531.371 Tm +[(cul)1(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.887 531.371 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.703 531.371 Tm +[(const)1(ruct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.363 531.371 Tm +[( )0.998942(and )1(t)0.998942(hus )1(just)0.998942( )1(as )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.18 531.371 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.316 531.371 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.129 531.371 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 430.7 531.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 438.649 531.371 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.234 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.051 531.371 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.184 531.371 Tm +[( )1(as )1(any)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.602 531.371 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.375 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 517.402 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8125 517.402 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 133.105 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.922 517.402 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.988 517.402 Tm +[( )1(.)1( )1(T)77.9928(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.543 517.402 Tm +[(cal)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.094 517.402 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.91 517.402 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.129 517.402 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9320>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.934 517.402 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.586 517.402 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 503.434 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.2422 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.0547 503.434 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.8711 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.6836 503.434 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5078 503.434 Tm +[( )1(sol)1(v)1(e)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.703 503.434 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.348 503.434 Tm +[( )1(e)1(i)0.998942(t)0.998942(he)1(r )1(,)0.998942( )0.998942(as )1(i)0.998942(t)0.998942( )0.998942(obscure)1.00301(s )0.998942(t)1(hat)0.998942( )1<9320>0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.148 503.434 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.801 503.434 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 489.465 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 489.465 Tm +[( )1(cre)1(at)1(i)1(ons )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.809 489.465 Tm +[(Hi)1(gh-)1.00199(l)1(e)1(v)1(e)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.234 489.465 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.047 489.465 Tm +[(machi)0.998942(ne)1(-)1(i)0.998942(nde)1(pe)1(nde)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.949 489.465 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.762 489.465 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.984 489.465 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.84 489.465 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.176 489.465 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 475.496 Tm +[(F)56.0117(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.418 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.8633 475.496 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.043 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.488 475.496 Tm +[(J)1(av)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.387 475.496 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.207 475.496 Tm +[(B)1(asi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.898 475.496 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(e)1(v)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.633 475.496 Tm +[(di)0.998942(re)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.535 475.496 Tm +[( )0.998942(mappi)1(ngs )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.945 475.496 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.598 475.496 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.41 475.496 Tm +[(l)1(ogi)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.715 475.496 Tm +[( )1(.)1( )1(If )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 461.527 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 461.527 Tm +[( )1(l)1(anguage)1.00199(s )1(are)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.23 461.527 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.949 461.527 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.02 461.527 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.672 461.527 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.484 461.527 Tm +[(cont)1(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.781 461.527 Tm +[( )1(,)1( )1(t)1(he)1(y)0.996908( )1(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.477 461.527 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.262 461.527 Tm +[( )1]TJ +-501.914 -13.9688 Td +[(cal)1(l)1(e)1(d )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 447.559 Tm +[(cy)1(be)1(rne)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.727 447.559 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(.)0.998942( )0.998942(B)1(ut)0.998942( )1(t)0.998942(he)1(se)1( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(can )0.998942(al)0.998942(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.77 447.559 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.551 447.559 Tm +[( )1(use)1(d )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 448.852 447.559 Tm +[(out)1(si)1(de)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.406 447.559 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.219 447.559 Tm +[(machi)0.996908(ne)0.996908(s)]TJ +-462.871 -13.9688 Td +[<9769>1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.9141 433.59 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.7266 433.59 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.949 433.59 Tm +[( )1(handbook)1(s )1(,)0.998942( )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.277 433.59 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.301 433.59 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.125 433.59 Tm +[(programme)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.934 433.59 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.75 433.59 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.563 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.379 433.59 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.535 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.352 433.59 Tm +[(di)0.996908(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.164 433.59 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.98 433.59 Tm +[(t)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.578 433.59 Tm +[( )1(jok)1.00505(e)1(s )1(,)1( )1(or )1.00505]TJ +-463.23 -13.9688 Td +[(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.4727 419.621 Tm +[(abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.723 419.621 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.539 419.621 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.313 419.621 Tm +[( )1(l)1(anguage)1(s )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.383 419.621 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.336 419.621 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.152 419.621 Tm +[(l)0.998942(ogi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.445 419.621 Tm +[( )0.998942(const)1(ruct)1(s )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.523 419.621 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.859 419.621 Tm +[( )1(as )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.184 419.621 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.785 419.621 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 405.652 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.3867 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.1992 405.652 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0156 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8281 405.652 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.9883 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.8008 405.652 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.789 405.652 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.551 405.652 Tm +[(P)46.0144(ascal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.113 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.926 405.652 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.148 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.961 405.652 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.031 405.652 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 405.652 Tm +[(e)1(x)0.998942(pl)0.998942(ai)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.816 405.652 Tm +[( )1(aspe)1(ct)1(s )1.00505(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 391.684 Tm +[(st)1(ruct)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.9023 391.684 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.195 391.684 Tm +[(Samue)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.617 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.434 391.684 Tm +[(B)1(e)1(ck)0.998942(e)1(t)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.09 391.684 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.906 391.684 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.719 391.684 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.508 391.684 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng.)0.998942(1)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.871 391.684 Tm +[( )0.998942(In )0.998942(t)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.332 391.684 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.578 391.684 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.023 391.684 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.418 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 391.684 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.527 391.684 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-446.18 -13.9688 Td +[(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3555 377.715 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.1367 377.715 Tm +[( )1(more)1( )1(broadl)1(y)1( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 189.8 377.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 197.809 377.715 Tm +[(ne)1(d )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.359 377.715 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.094 377.715 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(as )1(oppose)1(d )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.508 377.715 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.41 377.715 Tm +[( )1]TJ +-485.063 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(B)0.998942(ut)1( )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.563 363.746 Tm +[(t)1(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.914 363.746 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(i)0.998942(t)1(s )0.998942(probl)1(e)1(ms )0.998942(e)0.996908(i)1(t)1(he)1(r )0.996908(.)1.00505( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.398 363.746 Tm +(Common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.516 363.746 Tm +[( )1]TJ +-471.168 -13.9688 Td +[(l)1(anguage)1(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.25 349.777 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.984 349.777 Tm +[( )1(are)1( )1(bot)0.998942(h )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.875 349.777 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.648 349.777 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.844 349.777 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.746 349.777 Tm +[( )0.998942(;)0.998942( )1(al)0.998942(t)0.998942(hough )0.996908(t)1.00505(he)0.996908(i)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.18 349.777 Tm +[(scope)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.066 349.777 Tm +[( )1(e)1(x)1(t)1(e)1(nds )0.996908]TJ +-458.719 -13.9688 Td +[(be)1(y)1(ond )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.824 335.809 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.598 335.809 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.043 335.809 Tm +[(any)1(t)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.504 335.809 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.078 335.809 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.859 335.809 Tm +[( )0.998942(e)1(x)0.998942(pre)1(sse)1.00301(d )0.998942(i)0.998942(n )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.328 335.809 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.723 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.535 335.809 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.832 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.645 335.809 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.715 335.809 Tm +[( )1]TJ +-509.367 -13.9688 Td +[(can )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.9531 321.84 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 321.84 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.234 321.84 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.891 321.84 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.707 321.84 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.773 321.84 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.998942(fol)0.996908(l)1(ow)0.998942(s )0.998942(t)1(hat)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.746 321.84 Tm +[(comput)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.141 321.84 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.957 321.84 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.25 321.84 Tm +[( )1]TJ +-469.902 -13.9688 Td +[(l)1(anguage)1(s )1(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.164 307.871 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.938 307.871 Tm +[( )1(\( )1(and )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.754 307.871 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.09 307.871 Tm +[( )0.998942(rat)1(he)1(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.996 307.871 Tm +[(pri)1(mi)0.998942(t)0.998942(i)1(v)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.012 307.871 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.32 307.871 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.973 307.871 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.266 307.871 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.922 307.871 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.738 307.871 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.457 307.871 Tm +[( )1]TJ +-494.109 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)78.9948(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.129 293.902 Tm +[(compl)1(i)1(cat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.609 293.902 Tm +[( )1(t)1(hi)0.998942(ngs )1(e)0.998942(v)1(e)1(n )0.998942(furt)1(he)0.998942(r )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.457 293.902 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.852 293.902 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.668 293.902 Tm +[(sci)0.998942(e)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 293.902 Tm +[( )1(has )1(i)0.996908(t)1.00505(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.34 293.902 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.563 293.902 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 279.934 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.117 279.934 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.41 279.934 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.547 279.934 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.359 279.934 Tm +[(ope)1(rat)1(i)1(onal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.863 279.934 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942<9420>1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.883 279.934 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.105 279.934 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.805 279.934 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 548.828 279.934 Tm +[( )1]TJ +-514.48 -13.9688 Td +[(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.1953 265.965 Tm +[(const)1(ruct)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.648 265.965 Tm +[( )1(of )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.91 265.965 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.133 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.945 265.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.016 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.828 265.965 Tm +[(i)0.998942(nt)1(e)0.998942(rpre)1.00301(t)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.234 265.965 Tm +[( )0.998942(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.824 265.965 Tm +[(compi)1(l)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.344 265.965 Tm +[( )1(.)1( )1(J)1(ust)1( )1(as )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 251.996 Tm +[(i)1(nt)1(e)1(rpre)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.754 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.566 251.996 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.277 251.996 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.09 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.906 251.996 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.727 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.543 251.996 Tm +[(pe)1(rform)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.844 251.996 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.656 251.996 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.793 251.996 Tm +[( )0.998942(i)0.998942(nt)1(e)1(rpre)1(t)1(at)0.998942(i)0.998942(ons )1<9420>0.998942(i)1(n )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.215 251.996 Tm +[(he)1(rme)1(ne)1(ut)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.199 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.016 251.996 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.262 251.996 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.559 251.996 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 238.027 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8594 238.027 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.6758 238.027 Tm +[(e)1(x)1(pl)1(i)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.391 238.027 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.301 238.027 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.695 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.508 238.027 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.879 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.691 238.027 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.258 238.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.555 238.027 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.688 238.027 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.379 238.027 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 238.027 Tm +[( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 432.1 237.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 440.08 238.027 Tm +[(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.188 238.027 Tm +[(l)1(i)0.996908(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.379 238.027 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 224.059 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 224.059 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.066 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.879 224.059 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.648 224.059 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.41 224.059 Tm +[(w)0.998942(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.324 224.059 Tm +[( )0.998942(,)0.998942( )0.998942(si)1(nce)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.129 224.059 Tm +[(compi)0.998942(l)0.998942(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.648 224.059 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.465 224.059 Tm +[(const)1(ruct)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.918 224.059 Tm +[( )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 210.09 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 210.09 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.906 210.09 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.125 210.09 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(de)1(not)1(e)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.457 210.09 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.207 210.09 Tm +[( )0.998942(but)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.07 210.09 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.805 210.09 Tm +[( )1]TJ +-442.457 -13.9688 Td +[(mani)1(pul)1(at)1(i)1(ons )1(of )1(sy)1(mbol)1(s )1(.)1( )1(W)1(hat)0.998942( )0.998942(mi)1(ght)0.998942( )1(more)1( )0.998942(sui)0.998942(t)1(abl)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.766 196.121 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.547 196.121 Tm +[( )0.998942(cal)0.998942(l)0.998942(e)0.996908(d )1(t)1(he)1( )1(se)1(mant)0.996908(i)1(cs )1(of )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 182.152 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 182.152 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 182.152 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 182.152 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(re)1(si)1(de)1(s )0.998942(i)0.998942(n )0.998942(t)1(he)1( )0.998942(sy)1(mbol)0.998942(s )0.998942(w)1(i)0.998942(t)0.998942(h )1(w)0.998942(hi)0.998942(ch )1(t)1(hose)1( )1(ope)1(rat)1(i)1(ons )1(are)0.996908( )1]TJ +-105.504 -13.9688 Td +[(de)1(not)1(e)1(d )1(i)1(n )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.281 168.184 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.504 168.184 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.215 168.184 Tm +[(E)1(ngl)0.998942(i)0.998942(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.949 168.184 Tm +[( )0.998942(w)1(ords )1(l)0.998942(i)0.998942(k)0.998942(e)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.648 168.184 Tm +[( )1(i)1(f )1(,)1( )1<9420>0.996908<9320>1(t)1(he)1(n )0.996908(,)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.906 168.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.043 168.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.855 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.992 168.184 Tm +[( )1(e)1(l)0.996908(se)1( )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.4297 154.215 Tm +[( )1(for )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.0898 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2266 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.0391 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.1758 154.215 Tm +[( )1(w)1(hi)1(l)1(e)1( )1(,)1( )1<9420>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.16 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.293 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.109 154.215 Tm +[(got)1(o)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.063 154.215 Tm +[( )1(,)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.504 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.641 154.215 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.832 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.969 154.215 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.781 154.215 Tm +[(pri)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.59 154.215 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.031 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.168 154.215 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.363 154.215 Tm +[(conjunct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.547 154.215 Tm +[( )0.998942(w)1(i)0.998942(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.836 154.215 Tm +[(ari)0.996908(t)1.00505(hme)0.992839(t)1.00505(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.969 154.215 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 140.246 Tm +[(punct)1(uat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.523 140.246 Tm +[( )1(sy)1(mbol)1(s )1(;)0.998942( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.609 140.246 Tm +[(al)1(phabe)1(t)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.332 140.246 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.145 140.246 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.055 140.246 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942(w)0.998942(ords )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.652 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.465 140.246 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.121 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.566 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.699 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.648 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 140.246 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.949 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.391 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.527 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.34 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.477 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 126.277 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.7539 126.277 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1953 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.332 126.277 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.523 126.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.66 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.473 126.277 Tm +[(past)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.391 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.207 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.34 126.277 Tm +[( )1(;)1( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 126.277 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.926 126.277 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.742 126.277 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.652 126.277 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.363 126.277 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.699 126.277 Tm +[( )0.998942(as )1(sy)1(mbol)0.996908(s )1(l)1(i)0.996908(k)1(e)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.004 126.277 Tm +[(t)1(rash)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 552.602 126.277 Tm +[( )1]TJ +-518.254 -13.9688 Td +[(can )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.3945 112.309 Tm +[(F)56.0115(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.715 112.309 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.125 112.309 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.113 112.309 Tm +[( )0.998942(st)1(at)0.998942(e)1(s )1(t)0.998942(hat)1( )0.998942(t)0.998942(he)1( )0.998942(si)1(gns )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.625 112.309 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.281 112.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.098 112.309 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.816 112.309 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.629 112.309 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.699 112.309 Tm +[( )1(are)1( )1]TJ +-477.352 -13.9688 Td +[(arbi)1(t)1(rary)1(2 )1(be)1(cause)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174 98.3398 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.156 98.3398 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.621 98.3398 Tm +[(cul)0.998942(t)1(ural)0.998942(-)1(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 324.176 98.3398 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.988 98.3398 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.887 98.3398 Tm +[( )0.998942(t)1(hat)1( )1(assi)1(gns )0.996908(phone)0.996908(me)1(s )1(t)1(o )1.00505]TJ +-360.539 -13.9688 Td +[(conce)1(pt)1(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9492 84.3711 Tm +[(Li)1(k)0.998942(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.496 84.3711 Tm +[( )1(,)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.043 84.3711 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.203 84.3711 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.664 84.3711 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.23 84.3711 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.047 84.3711 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.941 84.3711 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.617 84.3711 Tm +[(assi)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.336 84.3711 Tm +[( )1(sy)1(mbol)0.996908(s )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.047 84.3711 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.695 84.3711 Tm +[( )1]TJ +-515.348 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(.)1( )1(B)0.998942(ut)1( )1(just)1( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.48 70.4023 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.047 70.4023 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.863 70.4023 Tm +[(choi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.195 70.4023 Tm +[( )0.998942(of )0.998942(phone)1(me)1(s )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.789 70.4023 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.957 70.4023 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.77 70.4023 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.84 70.4023 Tm +[( )1(i)1(s )1]TJ +-462.492 -13.9688 Td +[(re)1(st)1(rai)1(ne)1(d )1(by)1( )1(w)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.754 56.4336 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.473 56.4336 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.285 56.4336 Tm +[(v)1(oi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.949 56.4336 Tm +[( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 283.184 56.4336 Tm +[(pronounce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.059 56.4336 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.969 56.4336 Tm +[(assi)1(gnme)0.992839(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.719 56.4336 Tm +[( )1(of )1(sy)1(mbol)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 42.4648 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 42.4648 Tm +[( )1(ope)1(rat)1(i)1(ons )1(i)1(s )1(l)1(i)1(mi)1(t)1(e)1(d )0.998942(t)1(o )0.998942(w)0.998942(hat)1( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.488 42.4648 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.273 42.4648 Tm +[( )0.998942(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 319.1 42.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 327.689 42.4648 Tm +[(i)0.998942(ci)0.998942(e)1(nt)0.998942(l)0.998942(y)1( )0.998942(proce)1(sse)1(d )1(by)0.996908( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.316 42.4648 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.965 42.4648 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +%%Page: 2 2 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +17 0 obj +<> +/Contents 18 0 R +>> +endobj +%%EndPageSetup +18 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(and )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.207 801.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.02 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.832 801.516 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.82 801.516 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.496 801.516 Tm +[(humans.)1.00199(3)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.824 801.516 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.18 801.516 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.625 801.516 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.063 801.516 Tm +[(ope)1(rabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.758 801.516 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 801.516 Tm +[(usabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.789 801.516 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(obv)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.9805 787.547 Tm +[( )1(i)1(n )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.023 787.547 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.047 787.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.488 787.547 Tm +[(U)1(ni)0.998942(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.938 787.547 Tm +[( )0.998942(commands )1(.)0.998942( )0.998942(O)0.998942(ri)1(gi)0.998942(nal)0.998942(l)1(y)0.998942( )0.998942(use)1(d )1(on )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.957 787.547 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.203 787.547 Tm +[( )1(t)1(e)1(rmi)0.996908(nal)0.996908(s )1(,)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(ope)1(rat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.8594 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6719 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.809 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.621 773.578 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.844 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.977 773.578 Tm +[( )1(w)1(as )1(abbre)1(v)0.998942(i)0.998942(at)1(e)1(d )0.998942(t)1(o )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.066 773.578 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.332 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.148 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.281 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.098 773.578 Tm +(cp)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.5 773.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.941 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.078 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.891 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.84 773.578 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.324 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.141 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.273 773.578 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.086 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.898 773.578 Tm +[(mv)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.059 773.578 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.5 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.637 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.449 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.586 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.398 773.578 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.055 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.1563 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.1055 759.609 Tm +[(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.1016 759.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.5469 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.6797 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.496 759.609 Tm +[(e)1(t)1(c.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.953 759.609 Tm +[( )1(,)1( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.777 759.609 Tm +[(orde)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.258 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.934 759.609 Tm +[(cut)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 223.207 759.609 Tm +[( )0.998942(dow)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.742 759.609 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.391 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.207 759.609 Tm +[(me)1(mory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.805 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.621 759.609 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.609 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.051 759.609 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.301 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.113 759.609 Tm +[(pape)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.469 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 745.641 Tm +[(consumpt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.582 745.641 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.402 745.641 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.121 745.641 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 195.938 745.641 Tm +[(t)1(y)0.998942(pi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.469 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.281 745.641 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 245.3 745.6 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 253.893 745.641 Tm +[(ort)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.691 745.641 Tm +[( )0.998942(at)1( )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.766 745.641 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.559 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.371 745.641 Tm +[(t)0.998942(i)1(me)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.512 745.641 Tm +[( )0.998942(.)0.998942( )0.998942(Any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.945 745.641 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.34 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.152 745.641 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.449 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(i)1(s )1(t)1(hus )1.00199(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.262 731.672 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.828 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.641 731.672 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.086 731.672 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1(t)0.998942(he)1( )0.998942(const)1(rai)0.998942(nt)1(s )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.375 731.672 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.027 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.84 731.672 Tm +[(de)0.996908(si)1<676E97>]TJ +-466.492 -13.9688 Td +[(w)1(hi)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.6328 717.703 Tm +[( )1(i)1(s )1(far )1(from )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142 717.703 Tm +[(obje)1(ct)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.992 717.703 Tm +[( )1(,)1( )0.998942(but)1( )0.998942(base)1.00301(d )0.998942(on )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.84 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.559 717.703 Tm +[( )0.998942(choi)0.998942(ce)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.309 717.703 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.984 717.703 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.809 717.703 Tm +[(t)1(hi)0.996908(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 525.445 717.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 529.258 717.703 Tm +[(st)1(y)1(l)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.957 717.703 Tm +[( )1]TJ +-523.609 -13.9688 Td +[(i)1(t)1(se)1(l)1(f )1(4\227and )1(t)1(he)1( )1(e)1(qual)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.777 703.734 Tm +[(subje)1(ct)0.998942(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.43 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.242 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.969 703.734 Tm +[( )0.998942(pre)1(fe)1(re)1(nce)0.998942(s )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.836 703.734 Tm +[(i)0.998942(nv)1(ol)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.27 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.086 703.734 Tm +[(fuz)1(z)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.68 703.734 Tm +[( )1(fact)1.00505(ors )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(re)1(adabi)1(l)1(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9727 689.766 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 111.414 689.766 Tm +[(e)1(l)1(e)1(gance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.844 689.766 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.664 689.766 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.488 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.305 689.766 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 250.3 689.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 258.917 689.766 Tm +[(i)0.998942(ci)0.998942(e)1(ncy)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.656 689.766 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)1( )0.998942(sy)1(mbol)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.262 689.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.656 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.473 689.766 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.766 689.766 Tm +[( )1]TJ +-479.418 -13.9688 Td +[(l)1(anguage)1(s )1(i)1(ne)1(v)1(i)1(t)0.998942(abl)1(y)1( )1(do )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.484 675.797 Tm +[(hav)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.246 675.797 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.063 675.797 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.965 675.797 Tm +[( )0.998942(connot)1(at)0.998942(i)0.998942(ons )1(si)0.998942(mpl)0.998942(y)1( )0.998942(be)1(cause)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.918 675.797 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.406 675.797 Tm +[( )1(e)1(x)1(i)1(st)1( )1(no )1]TJ +-451.059 -13.9688 Td +[(sy)1(mbol)1(s )1(w)1(i)1(t)1(h )1(w)1(hi)1(ch )1(humans )1(w)0.998942(oul)0.998942(d )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.797 661.828 Tm +[(associ)0.998942(at)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.129 661.828 Tm +[( )0.998942(some)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.621 661.828 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.23 661.828 Tm +[( )1(.)1( )1(B)1(ut)1( )1(sy)1(mbol)0.996908(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.309 661.828 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.125 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.938 661.828 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.762 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(de)1(not)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0078 647.859 Tm +[( )1(any)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.297 647.859 Tm +[(se)1(mant)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.199 647.859 Tm +[( )1(st)1(at)1(e)1(me)1(nt)0.998942(s )1(,)0.998942( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(,)0.998942( )0.998942(t)1(he)1(y)0.998942( )0.998942(do )1(not)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.043 647.859 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.75 647.859 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.563 647.859 Tm +[(me)0.996908(ani)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.176 647.859 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908(i)0.996908(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.41 647.859 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.637 647.859 Tm +[( )1]TJ +-511.289 -13.9688 Td +[(t)1(e)1(rms )1(;)1( )1(humans )1.00199(me)1(t)1(aphori)1(cal)0.996908(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.719 633.891 Tm +[(re)1(ad)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.391 633.891 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.207 633.891 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.816 633.891 Tm +[( )0.998942(i)0.998942(nt)1(o )0.998942(t)0.998942(he)1(m )0.998942(t)1(hrough )0.996908(associ)1.00505(at)1(i)1(ons )1(t)1(he)0.996908(y)1( )1]TJ +-277.469 -13.9688 Td +[(mak)1(e)1( )1(.)1( )1(Language)1.00199(s )1(w)0.998942(i)1(t)1(hout)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.117 619.922 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.02 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.836 619.922 Tm +[(de)1(not)0.998942(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.16 619.922 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(hi)0.998942(st)1(ori)0.996908(cal)1(l)1(y)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.863 619.922 Tm +[(ne)0.996908(w)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.965 619.922 Tm +[( )1(phe)0.996908(nome)0.996908(na )1(;)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 605.953 Tm +[( )1(formul)1(as )1(are)1( )1(t)1(he)1(i)0.998942(r )0.998942(ol)0.998942(de)1(st)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.215 605.953 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.238 605.953 Tm +[( )0.998942(.)0.998942( )0.998942(In )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.965 605.953 Tm +[(compari)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.813 605.953 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.488 605.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.145 605.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.957 605.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.676 605.953 Tm +[( )1]TJ +-508.328 -13.9688 Td +[(l)1(anguage)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.484 591.984 Tm +[(mul)1(t)1(i)1(t)1(ude)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.422 591.984 Tm +[( )1(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.719 591.984 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.938 591.984 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(i)0.998942(s )1(of )0.996908(l)1(e)0.998942(sse)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.992 591.984 Tm +[(si)1(gni)0.992839]TJ +/R14 1 Tf +0.1 0 0 -0.1 461.2 591.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 469.204 591.984 Tm +[(cance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.668 591.984 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(cri)1(t)1(e)1(ri)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.0938 578.016 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.387 578.016 Tm +[(T)1(uri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.105 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.918 578.016 Tm +[(compl)1(e)1(t)1(e)0.998942(ne)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.934 578.016 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.199 578.016 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.418 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.234 578.016 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.301 578.016 Tm +[( )1(,)1( )1(t)1(hat)1( )1(i)1(s )1(,)1( )1(t)1.00505(hat)0.996908( )1(any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(comput)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.672 564.047 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.902 564.047 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.688 564.047 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )0.998942(i)0.998942(n )0.998942(i)0.998942(t)1( )0.998942(,)0.998942( )0.998942(me)1(ans )1(t)0.998942(hat)1( )0.998942(e)1(v)0.998942(e)1(ry)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.277 564.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.5 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.313 564.047 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.383 564.047 Tm +[( )1(i)1(s )1(,)1( )1]TJ +-477.035 -13.9688 Td +[(formal)1(l)1(y)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.5508 550.078 Tm +[(spe)1(ak)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.168 550.078 Tm +[( )1(,)1( )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.824 550.078 Tm +[(ri)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 201.3 550.1 Tm +<00>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.922 550.078 Tm +[( )0.998942(on )0.998942(e)1(v)1(e)0.998942(ry)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.816 550.078 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.43 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.246 550.078 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.465 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.281 550.078 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.348 550.078 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.793 550.078 Tm +[(Not)1.00505(hi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.316 550.078 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 539.547 550.078 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.332 550.078 Tm +[( )1]TJ +-519.984 -13.9688 Td +[(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126 536.109 Tm +[(T)1(uri)1(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.586 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.398 536.109 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.469 536.109 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.281 536.109 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.617 536.109 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.559 536.109 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.742 536.109 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.898 536.109 Tm +[(coul)0.998942(dn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.82 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.633 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.449 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.262 536.109 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 434.086 536.109 Tm +[( )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.09 536.109 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.871 536.109 Tm +[( )1(e)1(x)1(pre)0.996908(sse)1(d )1]TJ +-446.523 -13.9688 Td +[(i)1(n )1(anot)1(he)1(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.039 522.141 Tm +[(T)1(uri)1(ngcompl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.625 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.438 522.141 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.508 522.141 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.32 522.141 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.656 522.141 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.598 522.141 Tm +[(Li)0.998942(sp)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.246 522.141 Tm +[( )0.998942(\( )1(or )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.332 522.141 Tm +[(F)56.011(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.402 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.848 522.141 Tm +[(Smal)1(l)0.996908(t)1(al)1(k)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.363 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.805 522.141 Tm +[(J)1(av)0.996908(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.703 522.141 Tm +[( )1(.)1(.)1(.)1( )1(\) )1]TJ +-483.355 -13.9688 Td +[(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.7266 508.172 Tm +[(v)1(i)1(ce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.1641 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.9805 508.172 Tm +[(v)1(e)1(rsa)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.91 508.172 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.895 508.172 Tm +[(ul)1(t)1(i)1(mat)0.998942(e)1(l)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.195 508.172 Tm +[( )0.998942(prov)1(e)1(s )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.973 508.172 Tm +[(i)0.998942(mport)1(ance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 508.172 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.656 508.172 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.375 508.172 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.566 508.172 Tm +[(cul)1(t)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.133 508.172 Tm +[( )1(fact)1.00505(ors )1]TJ +-469.785 -13.9688 Td +[(i)1(n )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.7266 494.203 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.949 494.203 Tm +[( )1(l)1(anguage)1.00199(s )1(:)0.998942( )1(w)0.998942(hi)0.998942(l)0.998942(e)1( )0.998942(t)1(he)0.998942(y)1( )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.305 494.203 Tm +[(i)0.998942(nt)1(e)0.998942(rchange)1.00301(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.422 494.203 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.617 494.203 Tm +[(re)1(gard)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.711 494.203 Tm +[( )1(t)1(o )1.00505(t)1(he)1(i)0.996908(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.426 494.203 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.723 494.203 Tm +[( )1]TJ +-522.375 -13.9688 Td +[(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 480.234 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.477 480.234 Tm +[( )1(funct)1(i)1(ons )1(,)1( )1(t)1(he)1(i)1(r )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.168 480.234 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 217.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 226.196 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.703 480.234 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.516 480.234 Tm +[(st)1(ruct)1(ure)1(s\227se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.133 480.234 Tm +[( )0.998942(de)1(scri)0.996908(pt)1(ors )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.25 480.234 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.469 480.234 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(st)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.0469 466.266 Tm +[( )1(i)1(n )1(w)1(hi)1(ch )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.344 466.266 Tm +[(al)1(gori)1(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.902 466.266 Tm +[( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.137 466.266 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.918 466.266 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.734 466.266 Tm +[(e)1(x)0.998942(pre)1(sse)1<64976C>1(e)0.998942(nd)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.57 466.266 Tm +[( )0.998942(t)1(he)0.998942(mse)1(l)1(v)0.998942(e)1(s )1(not)1( )1.00505(onl)0.996908(y)0.996908( )1.00505(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.203 466.266 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 491.6 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 500.231 466.266 Tm +[(e)1(re)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.738 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9883 452.297 Tm +[( )1(se)1(t)1(s )1(,)1( )1(but)1( )1(al)1(so )1(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.586 452.297 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 204 452.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 212.614 452.297 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.121 452.297 Tm +[( )0.998942(st)1(y)1(l)0.998942(e)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.086 452.297 Tm +[(t)0.998942(hi)1(nk)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.723 452.297 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.168 452.297 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.688 452.297 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.629 452.297 Tm +[(programmi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.848 452.297 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-458.5 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 438.328 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.773 438.328 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.066 438.328 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.723 438.328 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.207 438.328 Tm +[(T)1(uri)0.998942(ngi)1(ncompl)0.998942(e)1(t)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.176 438.328 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.57 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.383 438.328 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.68 438.328 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-440.332 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 424.359 Tm +[(const)1(rai)1(ne)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.016 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.832 424.359 Tm +[(subse)1.00199(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.48 424.359 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.777 424.359 Tm +[(T)1(uri)0.998942(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.363 424.359 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(T)1(hi)0.998942(s )1(promi)0.996908(ne)1(nt)0.996908(l)1(y)0.996908( )1(i)1(ncl)1(ude)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(mark)1(up)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.2969 410.391 Tm +[( )1(l)1(anguage)1.00199(s )1(\( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.648 410.391 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.984 410.391 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.926 410.391 Tm +[(HT)0.998942(M)0.998942(L)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.652 410.391 Tm +[( )0.998942(\) )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 267.6 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 275.582 410.391 Tm +[(l)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.535 410.391 Tm +[( )0.998942(format)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.707 410.391 Tm +[(ne)1(t)0.998942(w)1(ork)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.863 410.391 Tm +[( )0.998942(prot)1(ocol)1.00505(s )1(,)1( )1(and )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.531 410.391 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.254 410.391 Tm +[( )1]TJ +-522.906 -13.9688 Td +[(cont)1(rol)1(s )1(\( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.1094 396.422 Tm +[(se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.473 396.422 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.754 396.422 Tm +[(e)1(nt)1(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.922 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.734 396.422 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.871 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.684 396.422 Tm +[(Int)1(e)1(rface)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.23 396.422 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.047 396.422 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.18 396.422 Tm +[( )0.998942(\) )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.973 396.422 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.367 396.422 Tm +[( )0.998942(programs )1.00301(.)1( )1(In )1(most)1( )1(case)1(s )1.00505(,)1( )1]TJ +-307.02 -13.9688 Td +[(l)1(anguage)1(s )1(of )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.23 382.453 Tm +[(t)1(y)1(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.613 382.453 Tm +[( )1(are)1( )1(re)1(st)0.998942(rai)1(ne)1(d )0.998942(from )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.703 382.453 Tm +[(de)1(not)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.512 382.453 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.324 382.453 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.285 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 368.484 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 368.484 Tm +[(se)1(curi)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.441 368.484 Tm +[( )1(re)1(asons\227t)0.998942(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.379 368.484 Tm +[(pre)1(v)1(e)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.328 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.145 368.484 Tm +[(v)1(i)0.998942(rus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.383 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.199 368.484 Tm +[(i)0.998942(nfe)1(ct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.641 368.484 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.836 368.484 Tm +[(re)1(mot)1.00505(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.199 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.016 368.484 Tm +[(t)1(ak)1(e)1(ov)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.207 368.484 Tm +[( )1(.)1( )1(T)1(hi)0.996908(s )1]TJ +-458.859 -13.9688 Td +[(show)1(s )1(how)1( )1(t)0.998942(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.418 354.516 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.609 354.516 Tm +[( )1(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.871 354.516 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.645 354.516 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.461 354.516 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.527 354.516 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.121 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.313 354.516 Tm +[( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.344 354.516 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.992 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.809 354.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.102 354.516 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(Acce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8711 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5469 340.547 Tm +[(hardw)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.113 340.547 Tm +[( )1(funct)1(i)1(ons )0.998942(i)0.998942(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.941 340.547 Tm +[(l)0.998942(i)0.998942(mi)0.998942(t)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.441 340.547 Tm +[( )0.998942(not)1( )0.998942(onl)0.998942(y)1( )0.998942(t)0.998942(hrough )1.00301(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 340.547 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.07 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.887 340.547 Tm +[(appl)0.996908(i)0.996908(cat)1.00505(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.566 340.547 Tm +[( )1(,)1( )1]TJ +-497.219 -13.9688 Td +[(but)1( )1(t)1(hrough )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.324 326.578 Tm +[(sy)1(nt)1(ax)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.734 326.578 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.016 326.578 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.926 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.742 326.578 Tm +[(appl)1(i)0.998942(cat)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.422 326.578 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.363 326.578 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.352 326.578 Tm +[( )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.383 326.578 Tm +[(st)1(ori)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.574 326.578 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.766 326.578 Tm +[(t)1(ransmi)0.996908(t)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.477 326.578 Tm +[( )1]TJ +-519.129 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 312.609 Tm +[(i)1(nformat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.93 312.609 Tm +[( )1(i)1(t)1( )1(proce)1(sse)1(s )1(.)0.998942( )0.998942(T)78.9887(o)]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.813 312.609 Tm +[(name)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.176 312.609 Tm +[( )0.998942(one)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.859 312.609 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.254 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.07 312.609 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 403.363 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.18 312.609 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.246 312.609 Tm +[( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.031 312.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.164 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 298.641 Tm +[( )1(,)1( )1<9420>1(anot)1(he)0.998942(r )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.121 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.258 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.07 298.641 Tm +[(prot)1(ocol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.543 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.988 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.121 298.641 Tm +[( )0.998942(and )1(y)0.998942(e)1(t)1( )0.998942(anot)1(he)1(r )0.996908(a )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.113 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.246 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 464.1 298.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 472.054 298.641 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.004 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.82 298.641 Tm +[(format)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.578 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.391 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.527 298.641 Tm +[( )1(i)1(s )1]TJ +-503.18 -13.9688 Td +[(me)1(re)1(l)1(y)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.0664 284.672 Tm +[(conv)1(e)1(nt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.961 284.672 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.375 284.672 Tm +[(nome)1(ncl)0.998942(at)0.998942(ure)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.637 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.453 284.672 Tm +[(i)0.998942(ndi)1(cat)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.484 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.297 284.672 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 344.7 284.7 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 353.325 284.672 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.832 284.672 Tm +[( )0.998942(de)1(gre)1(e)1(s )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.504 284.672 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.25 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(re)1(st)1(rai)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.4453 270.703 Tm +[( )1(bui)1(l)1(t)1( )1(i)1(nt)1(o )1(t)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.086 270.703 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.277 270.703 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.539 270.703 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.934 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.75 270.703 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.043 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.859 270.703 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.926 270.703 Tm +[( )1(.)1( )1(In )1(i)0.996908(t)1(s )1.00505(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 256.734 Tm +[(pow)1(e)1(rful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.3711 256.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.1836 256.734 Tm +[(T)1(uri)1(ng-)1(compl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.824 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.641 256.734 Tm +[(supe)1(rse)1.00301(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.129 256.734 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.57 256.734 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.965 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.781 256.734 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.074 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.891 256.734 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.957 256.734 Tm +[( )1(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.582 256.734 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.652 256.734 Tm +[( )1(t)1(hat)1( )1]TJ +-465.305 -13.9688 Td +[(e)1(x)1(e)1(cut)1(e)1(s )1(.)1( )1(As )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.406 242.766 Tm +[(magi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.172 242.766 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.363 242.766 Tm +[(spe)1(cul)0.998942(at)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.289 242.766 Tm +[( )0.998942(conce)1(pt)0.998942(s )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.555 242.766 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.625 242.766 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.535 242.766 Tm +[(w)1(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.449 242.766 Tm +[( )1]TJ +-460.102 -13.9688 Td +[(aut)1(omat)1(i)1(cal)1(l)1(y)1( )1(pe)1(rforms )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.355 228.797 Tm +[(ope)1(rat)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.867 228.797 Tm +[( )0.998942(.)0.998942( )0.998942(Y)87.0097(e)1(t)0.998942( )0.998942(t)1(hi)0.998942(s )0.998942(i)1(s )0.998942(not)1( )0.998942(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.551 228.797 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.332 228.797 Tm +[( )0.998942(confuse)0.996908(d )1(w)1(i)0.996908(t)1.00505(h )0.996908(w)1(hat)1( )1]TJ +-355.984 -13.9688 Td +[(l)1(i)1(ngui)1(st)1(i)1(cs )1(cal)1(l)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.004 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.137 214.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.953 214.828 Tm +[(pe)1(rformat)0.998942(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.949 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.762 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.898 214.828 Tm +[( )0.998942(or )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.488 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.621 214.828 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.438 214.828 Tm +[(i)0.998942(l)0.998942(l)0.998942(ocut)1(i)0.998942(onary)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.906 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.723 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.855 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.672 214.828 Tm +[(spe)1(e)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.164 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.977 214.828 Tm +[(act)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.676 214.828 Tm +[( )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.336 214.828 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.359 214.828 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +-477.012 -13.9688 Td +[(w)1(ords )1(of )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.684 200.859 Tm +[(judge)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.598 200.859 Tm +[( )1(w)1(ho )1(pronounce)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.266 200.859 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.945 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.359 200.859 Tm +[(l)0.998942(e)1(ade)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.973 200.859 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.785 200.859 Tm +[(gi)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.332 200.859 Tm +[( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.117 200.859 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.383 200.859 Tm +[( )1(,)1( )1(or )1.00505(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 186.891 Tm +[(l)1(e)1(gi)1(sl)1(at)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.7383 186.891 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5547 186.891 Tm +[(passi)1.00199(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.953 186.891 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.738 186.891 Tm +[(l)1(aw)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.816 186.891 Tm +[(.)1( )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.094 186.891 Tm +[(e)1(x)0.998942(e)1(cut)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.125 186.891 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.422 186.891 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.816 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.629 186.891 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.926 186.891 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 172.922 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.543 172.922 Tm +[(mani)1(pul)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.66 172.922 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.922 172.922 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.574 172.922 Tm +[( )0.998942(,)0.998942( )0.998942(not)1( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.574 172.922 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.508 172.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.324 172.922 Tm +[(pe)1(rformance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.328 172.922 Tm +[( )1(base)1(d )0.996908(on )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 158.953 Tm +[( )1(conv)1(e)1(nt)1(i)1(ons )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.75 158.953 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.086 158.953 Tm +[( )1(as )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.027 158.953 Tm +[(acce)0.998942(pt)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.477 158.953 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.258 158.953 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.938 158.953 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.383 158.953 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.238 158.953 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.094 158.953 Tm +[(be)0.996908(come)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.301 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 144.984 Tm +[(pe)1(rformat)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.344 144.984 Tm +[( )1(onl)1(y)1( )1(t)1(hrough )1.00199(t)1(he)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.473 144.984 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.406 144.984 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.223 144.984 Tm +[(i)0.998942(mpact)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.816 144.984 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942(proce)1(sse)1.00301(s )0.998942(t)1(he)0.996908(y)0.996908( )1.00505(t)1(ri)0.996908(gge)0.996908(r )1(,)1( )1(e)1(spe)0.996908(ci)1(al)1(l)1(y)0.996908( )1]TJ +-268.469 -13.9688 Td +[(w)1(he)1(n )1(t)1(he)1(i)1(r )1(out)1(put)1(s )1(are)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.547 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.363 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 193.176 131.016 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.813 131.016 Tm +[(cri)0.998942(t)1(i)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(che)1(ck)0.998942(e)0.998942(d )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.684 131.016 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.387 131.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.203 131.016 Tm +[(W)83.0129(e)1(i)0.998942(z)0.998942(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.594 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.406 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.223 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.035 131.016 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.195 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.008 131.016 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.918 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(psy)1(chot)1(he)1(rapi)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.684 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.496 117.047 Tm +[(E)1(l)1(i)1(z)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.41 117.047 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.82 117.047 Tm +[(si)1(mpl)0.998942(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.816 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.633 117.047 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.227 117.047 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(sy)1(nt)1(act)0.998942(i)1(cal)0.998942(l)0.998942(y)0.998942( )1(t)0.998942(ransforms )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.902 117.047 Tm +[(i)1(nput)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.703 117.047 Tm +[( )1(phrase)0.996908(s )1(,)1( )1]TJ +-464.355 -13.9688 Td +[(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 59.125 103.078 Tm +[(cl)1(assi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.707 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.52 103.078 Tm +[(e)1(x)1(ampl)1(e)1(,)1(5)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.992 103.078 Tm +[( )1(as )1(i)1(s )0.998942(t)1(he)0.998942( )1(1987 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.566 103.078 Tm +[(Ne)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.254 103.078 Tm +[(Y)86.9853(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.363 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.18 103.078 Tm +[(St)0.998942(ock)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.254 103.078 Tm +[(E)1(x)0.998942(change)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.895 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.711 103.078 Tm +(crash)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.207 103.078 Tm +[( )1(t)1(hat)1( )1(i)1(nv)0.996908(ol)1(v)0.996908(e)1(d )1]TJ +-432.859 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 89.1094 Tm +[(chai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.4844 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.3008 89.1094 Tm +[(re)1(act)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.625 89.1094 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.922 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.055 89.1094 Tm +[( )1(se)1(l)1(l)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.621 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.754 89.1094 Tm +[( )1(re)0.998942(comme)1(ndat)1(i)0.998942(ons )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.637 89.1094 Tm +[(day)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.254 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.066 89.1094 Tm +[(t)0.998942(radi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.711 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.523 89.1094 Tm +[(soft)1.00505(w)1(are)0.996908(.)1.00505(6)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.883 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.699 89.1094 Tm +[(W)46(ri)0.996908(t)1.00505(i)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.137 89.1094 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 75.1406 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.59 75.1406 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.66 75.1406 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.285 75.1406 Tm +[(phrasi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.992 75.1406 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(for )0.996908(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.039 75.1406 Tm +[(ut)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.25 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.063 75.1406 Tm +[(i)1(di)0.996908(ot)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.469 75.1406 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 61.1719 Tm +[(proje)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.3555 61.1719 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6484 61.1719 Tm +[(Art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 119.7 61.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 127.68 61.1719 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.266 61.1719 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.082 61.1719 Tm +[(Int)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.32 61.1719 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.809 61.1719 Tm +[(prov)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.332 61.1719 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.488 61.1719 Tm +[(i)0.998942(nt)1(e)0.998942(l)1(l)0.998942(i)0.998942(ge)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.824 61.1719 Tm +[( )0.998942(i)0.998942(s )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.664 61.1719 Tm +[(mat)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.68 61.1719 Tm +[( )1(of )1(a )1.00505]TJ +-458.332 -13.9688 Td +(su)Tj +/R14 1 Tf +0.1 0 0 -0.1 48.1 47.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 56.7516 47.2031 Tm +[(i)1(ci)1(e)1(nt)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.238 47.2031 Tm +[(massi)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.809 47.2031 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.621 47.2031 Tm +[(l)1(ay)1(e)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 207.48 47.2031 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.773 47.2031 Tm +[(fool)0.998942(proof)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.813 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 47.2031 Tm +[(re)1(ci)0.998942(pe)1<739769>0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.531 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.344 47.2031 Tm +[(l)0.998942(i)0.998942(ngui)1(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.535 47.2031 Tm +[( )1(t)1(e)1(rms )1(,)1( )1(t)1(hat)1( )1(se)1(mant)0.996908(i)1(cs )1]TJ +-379.188 -13.9688 Td +[(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 48.1563 33.2344 Tm +[(not)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.9102 33.2344 Tm +[( )1(e)1(l)1(se)1( )1(but)1( )1(\( )1(more)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.535 33.2344 Tm +[(e)1(l)1(aborat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.352 33.2344 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.66 33.2344 Tm +[(sy)1(nt)1(ax)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.07 33.2344 Tm +[( )0.998942(.)0.998942( )0.998942(As )0.998942(l)1(ong )0.998942(as )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.566 33.2344 Tm +[(A.)0.998942(I)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.789 33.2344 Tm +[( )0.998942(.)0.998942( )1(fai)1(l)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.336 33.2344 Tm +[(de)0.996908(l)1(i)1(v)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.414 33.2344 Tm +[( )1(t)1(hi)0.996908(s )1.00505]TJ +ET +Q +Q + +endstream +endobj +%%Page: 3 3 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +20 0 obj +<> +/Contents 21 0 R +>> +endobj +%%EndPageSetup +21 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +(proof)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.6563 801.516 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.566 801.516 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 113 801.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 121.594 801.516 Tm +[(e)1(re)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.102 801.516 Tm +[( )1(be)1(t)1(w)1(e)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.539 801.516 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.195 801.516 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.43 801.516 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.824 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.637 801.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.934 801.516 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-441.586 -13.9688 Td +[(cont)1(i)1(nue)1(s )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.074 787.547 Tm +[(e)1(x)1(i)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.762 787.547 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.582 787.547 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.652 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.465 787.547 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.496 787.547 Tm +[( )0.998942(t)1(hrough )1(comput)0.998942(e)1(rs )0.996908(re)1(mai)0.996908(ns )1(re)0.996908(st)1.00505(rai)0.996908(ne)1(d )0.996908]TJ +-271.148 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 773.578 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9805 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.7969 773.578 Tm +[(st)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.762 773.578 Tm +[( )1(mani)1(pul)1(at)1(i)1(ons )1(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.262 773.578 Tm +[(fact)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.398 773.578 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(aft)1(e)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.625 773.578 Tm +[(i)0.998942(ni)0.998942(t)1(i)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.684 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 773.578 Tm +[(e)1(nt)0.998942(husi)0.996908(asm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.293 773.578 Tm +[( )1(has )1(made)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.094 773.578 Tm +[(many)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.137 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +[(e)1(x)1(pe)1(ri)1(me)1(nt)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.598 759.609 Tm +[( )1(poe)1(t)1(s )1(si)1(nce)1( )1(t)1(he)0.998942( )0.998942(1950s )1.00301(abandon )1(t)0.998942(he)1(i)0.998942(r )1(e)1(x)0.998942(pe)1(ri)0.998942(me)1(nt)1(s )1(w)1.00505(i)0.996908(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.469 759.609 Tm +[(comput)1(e)1(r-)0.996908]TJ +-419.121 -13.9688 Td +[(ge)1(ne)1(rat)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.457 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.27 745.641 Tm +[(t)1(e)1(x)1(t)1(s.)1(7)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.391 745.641 Tm +[( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.855 745.641 Tm +[(hi)1(st)1(ory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.141 745.641 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.438 745.641 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.242 745.641 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.867 745.641 Tm +[(ri)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.891 745.641 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(confusi)0.996908(ons )1(of )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.426 745.641 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.199 745.641 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 731.672 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.535 731.672 Tm +[( )1(l)1(anguage)1.00199(s )1(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.398 731.672 Tm +[(fal)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.094 731.672 Tm +[( )0.998942(hope)1(s )1(and )0.998942(promi)1(se)1(s )0.998942(t)1(hat)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.43 731.672 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.203 731.672 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-426.855 -13.9688 Td +[(w)1(oul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.9063 717.703 Tm +[(be)1(come)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.113 717.703 Tm +[( )1(more)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.184 717.703 Tm +[(l)1(i)1(k)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.234 717.703 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.047 717.703 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.703 717.703 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.52 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.238 717.703 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Among )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.684 717.703 Tm +[(unre)0.996908(al)0.996908(i)1(z)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.914 717.703 Tm +[( )1(hope)1(s )1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 703.734 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 55.9 703.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 63.8676 703.734 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.4531 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2656 703.734 Tm +[(i)1(nt)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.605 703.734 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 172.047 703.734 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.582 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.395 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.121 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.934 703.734 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.578 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.395 703.734 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.582 703.734 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(i)1(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.504 703.734 Tm +[(promi)0.996908(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.625 703.734 Tm +[( )1(of )1(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.617 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.75 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(i)1(nt)1(ui)1(t)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8438 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6563 689.766 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 689.766 Tm +[( )1(or )1(,)1( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.871 689.766 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.859 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.676 689.766 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.027 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.844 689.766 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.305 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.117 689.766 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.934 689.766 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.746 689.766 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.906 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 246.719 689.766 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.758 689.766 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.203 689.766 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.336 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.152 689.766 Tm +[(humane)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.973 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.785 689.766 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.43 689.766 Tm +[( )0.998942(,)1( )1<9420>1(8 )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.652 689.766 Tm +(major)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.867 689.766 Tm +[( )1(curre)0.996908(nt)1(s )1]TJ +-464.52 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 675.797 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6797 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.4961 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.207 675.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.652 675.797 Tm +[(D)1(i)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.445 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.258 675.797 Tm +[(i)1(nst)1(al)1(l)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.402 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.219 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.93 675.797 Tm +[( )0.998942(t)1(y)0.998942(pi)1(cal)0.998942(l)0.998942(y)1( )0.998942(mi)0.998942(spe)1(rce)1(i)0.998942(v)1(e)0.998942(s )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.051 675.797 Tm +[(programme)0.992839(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.809 675.797 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(be)1(hav)1(i)1(ori)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.41 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.223 661.828 Tm +[(bl)1(ack)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.891 661.828 Tm +[( )1(box)1(e)1(s )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.578 661.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.715 661.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.527 661.828 Tm +[(i)0.998942(nt)1(e)0.998942(ract)1(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.172 661.828 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.613 661.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.75 661.828 Tm +[( )0.998942(and )1(some)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.621 661.828 Tm +[(di)0.998942(gi)1(t)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.473 661.828 Tm +[( )0.998942(art)1(i)1(st)1(s )1(are)1( )1(caught)0.996908( )1(i)1(n )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(mi)1(sconce)1(pt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.512 647.859 Tm +[( )1(t)1(hat)1( )1(t)1(he)1(y)1( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.332 647.859 Tm +[(ov)1(e)0.998942(rcome)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.602 647.859 Tm +[( )0.998942(w)1(hat)0.998942( )0.998942(t)1(he)1(y)0.998942( )1(se)0.998942(e)1( )0.998942(as )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.223 647.859 Tm +[(W)83.0119(e)1(st)1(e)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.227 647.859 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.039 647.859 Tm +[(mal)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.512 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.328 647.859 Tm +[(bi)0.996908(nari)0.996908(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.84 647.859 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 633.891 Tm +[( )1(l)1(anguage)1.00199(s )1(by)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.871 633.891 Tm +[(re)1(shapi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.68 633.891 Tm +[( )0.998942(t)1(he)0.998942(m )1(aft)0.998942(e)0.998942(r )1(romant)1(i)0.998942(ci)0.998942(z)1(e)0.998942(d )1(i)0.998942(mage)0.996908(s )1.00505(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.379 633.891 Tm +[(i)1(ndi)0.992839(ge)1(nous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 633.891 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 619.922 Tm +[( )1(l)1(anguage)1.00199(s )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.199 619.922 Tm +[(di)1(gi)1(t)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.051 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.867 619.922 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.262 619.922 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.855 619.922 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.473 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.289 619.922 Tm +[(machi)0.998942(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.938 619.922 Tm +[( )1(t)1(hat)1( )1(comput)1(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 605.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.898 605.953 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.965 605.953 Tm +[( )1(and )1(proce)1(sse)1(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.016 605.953 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.797 605.953 Tm +[( )0.998942(sy)1(mbol)0.998942(s )1(;)1( )1(i)0.996908(t)1( )1.00505(t)1(re)0.996908(at)1.00505(s )1(al)0.996908(l)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.23 605.953 Tm +[(dat)1<6197>]TJ +-449.883 -13.9688 Td +[(i)1(ncl)1(udi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.1289 591.984 Tm +[( )1(i)1(mage)1(s )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.449 591.984 Tm +(sounds\227as)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.441 591.984 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.258 591.984 Tm +[(t)0.998942(e)1(x)0.998942(t)1(ual)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.492 591.984 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hat)1( )0.998942(i)0.998942(s )0.998942(,)0.998942( )1(as )0.998942(chunk)1(s )0.998942(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.473 591.984 Tm +[(code)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.883 591.984 Tm +[( )1(sy)1(mbol)0.996908(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(Ne)1(l)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.8984 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.7109 578.016 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.691 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.504 578.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.32 578.016 Tm +[( )1(s )1(cri)1(t)1(e)1(ri)1(a )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.348 578.016 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.266 578.016 Tm +[( )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.207 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.34 578.016 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.156 578.016 Tm +[(di)0.998942(sjunct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.555 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.367 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.504 578.016 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.695 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.832 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.645 578.016 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.805 578.016 Tm +[( )1(,)1( )1<9420>1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.973 578.016 Tm +[(consi)1(st)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.871 578.016 Tm +[( )1]TJ +-512.523 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 564.047 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.551 564.047 Tm +[(si)1(ngl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.898 564.047 Tm +[( )1(e)1(nt)1(i)1(t)1(i)1(e)1(s )1(t)1(hat)0.998942( )1(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 235.6 564 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 244.19 564.047 Tm +[(e)1(r )0.998942(from )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.57 564.047 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.184 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.91 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.723 564.047 Tm +[(si)0.998942(ngl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.07 564.047 Tm +[( )1(e)1(nt)1(i)0.996908(t)1.00505(i)0.996908(e)1(s )1(,)1( )1(al)1(so )1.00505(appl)0.992839(i)1(e)1(s )1]TJ +-388.723 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 550.078 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.0625 550.078 Tm +[( )1]TJ +/R14 1 Tf +0.1 0 0 -0.1 92.9 550 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 100.858 550.078 Tm +[(l)1(e)1(s.)1(9 )1(T)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.102 550.078 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.711 550.078 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.008 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.141 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.957 550.078 Tm +[(di)0.998942(gi)1(t)0.998942(i)0.998942(z)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.746 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.559 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.695 550.078 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.18 550.078 Tm +[(st)1(ruct)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.734 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.551 550.078 Tm +[(anal)0.996908(og)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.332 550.078 Tm +[( )1(dat)1(a )1(as )1]TJ +-450.984 -13.9688 Td +[(numbe)1(rs )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.055 536.109 Tm +[(st)1(ore)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.098 536.109 Tm +[( )1(t)1(he)1(m )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.883 536.109 Tm +[(nume)1(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.109 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.922 536.109 Tm +[(t)0.998942(e)1(x)0.998942(t)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.594 536.109 Tm +[( )0.998942(compose)1(d )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.875 536.109 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 536.109 Tm +[( )1(part)1(s )1(.)1( )1(Al)1(l)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.004 536.109 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.398 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 522.141 Tm +[( )1(cont)1(rol)1(s )1(are)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.145 522.141 Tm +[(l)1(i)1(ngui)1.00199(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.336 522.141 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.152 522.141 Tm +[(re)1(gardl)1(e)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.5 522.141 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1(i)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.836 522.141 Tm +[(pe)1(rce)1(i)0.998942(v)1(abl)0.998942(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.57 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.383 522.141 Tm +[(shape)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.207 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(al)1(phanume)1(ri)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.129 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.941 508.172 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.859 508.172 Tm +[( )1(,)1( )1(graphi)1(cs)-317.985(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.445 508.172 Tm +(sound)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.965 508.172 Tm +[( )0.998942(si)1(gnal)0.998942(s )0.998942(,)1( )0.998942(or )0.998942(w)1(hat)0.998942(e)1(v)1(e)0.996908(r )1(e)1(l)0.996908(se)1( )1(.)1.00505( )1(T)0.996908(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.355 508.172 Tm +[(U)1(ni)0.996908(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.805 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.6133 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.4297 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.563 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.379 494.203 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.492 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 128.3 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 136.3 494.203 Tm +[(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.25 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.066 494.203 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.199 494.203 Tm +[( )1(i)1(s )1(ope)1(rat)1(i)0.998942(onal)0.998942(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.762 494.203 Tm +[(i)0.998942(de)1(nt)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.484 494.203 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.16 494.203 Tm +[(draggi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.344 494.203 Tm +[( )0.998942(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 413.6 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 421.617 494.203 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.566 494.203 Tm +[( )1(i)1(nt)0.996908(o )1.00505(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.277 494.203 Tm +[(t)1(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 540.48 494.203 Tm +[( )1(on )1]TJ +-506.133 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 480.234 Tm +[(de)1(sk)1(t)1(op)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.2578 480.234 Tm +[( )1(.)1( )1(B)1(ot)0.998942(h )1(are)1( )1(just)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.16 480.234 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 198.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 207.188 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.695 480.234 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.871 480.234 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.664 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.477 480.234 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.988 480.234 Tm +[( )1(,)1( )1(just)1.00505( )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(al)1(phabe)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.0664 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.883 466.266 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.949 466.266 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.145 466.266 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.742 466.266 Tm +[( )0.998942(be)1(e)1(ps )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.902 466.266 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 304.3 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 312.93 466.266 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.438 466.266 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.613 466.266 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.406 466.266 Tm +[( )1]TJ +-457.059 -13.9688 Td +[(charact)1(e)1(rs )1(.)1( )1(As )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.43 452.297 Tm +[(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.051 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.863 452.297 Tm +[(handl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.098 452.297 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.902 452.297 Tm +[(e)1(ncodi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.605 452.297 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.547 452.297 Tm +[(e)1(nabl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.152 452.297 Tm +[( )1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.742 452.297 Tm +[(re)1(st)1(rai)0.996908(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.02 452.297 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.832 452.297 Tm +[(ce)1(rt)1(ai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.934 452.297 Tm +[( )1(use)1(s )1]TJ +-487.586 -13.9688 Td +[(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.293 438.328 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.363 438.328 Tm +[( )1(.)1( )1(In )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.449 438.328 Tm +[(re)1(spe)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.773 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 275 438.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 283.649 438.328 Tm +[(e)1(re)1(nce)0.998942(s )1(be)1(t)0.998942(w)1(e)0.998942(e)1(n)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.813 438.328 Tm +[(i)0.998942(de)1(ographi)0.996908(c-)1(pi)0.996908(ct)1.00505(ori)0.996908(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.109 438.328 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(abst)1(ract)1(-)1(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.27 424.359 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.086 424.359 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.742 424.359 Tm +[( )1(l)0.998942(anguage)1.00301(s )0.998942(al)0.998942(so )1(appl)0.998942(y)1( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.598 424.359 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.992 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.805 424.359 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.102 424.359 Tm +[( )1(l)1(anguage)0.992839(s )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(P)1(i)1(ct)1(ori)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.5938 410.391 Tm +[( )1(sy)1(mbol)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.441 410.391 Tm +[(si)1(mpl)1(i)1(fy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.207 410.391 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.504 410.391 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(t)1(hrough )1(pre)1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 395 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 403.02 410.391 Tm +[(ne)0.996908(d )1(obje)1(ct)1.00505(s )1(and )1]TJ +-368.672 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(,)1( )1(but)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.508 396.422 Tm +[(mak)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.414 396.422 Tm +[( )1(i)1(t)1( )1(more)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.957 396.422 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 230.4 396.4 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 238.985 396.422 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 396.422 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 396.422 Tm +[(l)0.998942(i)0.998942(nk)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.301 396.422 Tm +[( )0.998942(t)1(he)0.998942(m )1(t)0.998942(hrough )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.395 396.422 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.617 396.422 Tm +[( )1(and )0.996908(t)1.00505(hus )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(e)1(x)1(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.0508 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8672 382.453 Tm +[(cust)1(om)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.898 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.828 382.453 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.348 382.453 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.258 382.453 Tm +[(pi)0.998942(ct)1(ogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.496 382.453 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.758 382.453 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.699 382.453 Tm +[( )0.998942(i)0.998942(s )1(e)1(asi)0.996908(e)1(r )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.09 382.453 Tm +[(unde)0.996908(rst)1(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.613 382.453 Tm +[( )1]TJ +-502.266 -13.9688 Td +[(t)1(han )1(t)1(he)1( )1(l)1(e)1(t)1(t)1(e)1(rs )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.457 368.484 Tm +[(h-)1(o-)1(u-)1(s-)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.617 368.484 Tm +[( )1(,)1( )1(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.527 368.484 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.32 368.484 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.945 368.484 Tm +[(t)0.998942(rue)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.332 368.484 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.832 368.484 Tm +[(t)0.998942(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.035 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.848 368.484 Tm +[(i)0.998942(con)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.359 368.484 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.555 368.484 Tm +[(compari)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.402 368.484 Tm +[( )1(t)1(o )1.00505(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 354.516 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 354.516 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.4102 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.2266 354.516 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3594 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.1758 354.516 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 354.516 Tm +[( )1(.)1( )1(B)1(ut)1( )1(i)1(t)1( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.355 354.516 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 208.8 354.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 217.384 354.516 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.348 354.516 Tm +[( )0.998942(t)1(o )0.998942(pre)1(ci)0.998942(se)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.793 354.516 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 354.516 Tm +[( )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.777 354.516 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.289 354.516 Tm +[( )1<9320>1(If )0.996908(I )1(am )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.953 354.516 Tm +[(home)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.387 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(t)1(omorrow)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.9648 340.547 Tm +[( )1(at)0.998942( )1(si)1(x)1( )1(,)1( )1(I )1(w)1(i)1(l)1(l)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.934 340.547 Tm +[(cl)1(e)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.477 340.547 Tm +[( )0.998942(up )1(e)0.998942(v)1(e)1(ry)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.828 340.547 Tm +[(se)1(cond)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.441 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.258 340.547 Tm +(room)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.82 340.547 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.484 340.547 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.426 340.547 Tm +[( )1<9420>1(t)1(hrough )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.621 340.547 Tm +[(se)1(ri)0.996908(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.715 340.547 Tm +[( )1(of )1]TJ +-504.367 -13.9688 Td +[(pi)1(ct)1(ograms )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.188 326.578 Tm +[(Abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.949 326.578 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.391 326.578 Tm +[(grammat)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.25 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.063 326.578 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.852 326.578 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )1(are)1( )1(more)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.77 326.578 Tm +[(sui)0.996908(t)1(abl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.094 326.578 Tm +[( )1(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 312.609 Tm +[(compl)1(e)1(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.0586 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.875 312.609 Tm +[(comput)1(at)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.191 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.004 312.609 Tm +[(i)1(nst)1(ruct)1(i)0.998942(ons.)0.998942(10)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.594 312.609 Tm +[( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.055 312.609 Tm +[(ut)1(opi)0.998942(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.504 312.609 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.77 312.609 Tm +[(uni)0.998942(v)1(e)1(rsal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.832 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.645 312.609 Tm +[(pi)0.996908(ct)1.00505(ori)1(al)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 481.5 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.313 312.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.707 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.457 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.523 298.641 Tm +[( )1(\( )1(w)1(i)1(t)1(h )1(i)1(cons )0.998942(,)0.998942( )1(w)0.998942(i)0.998942(ndow)1(s )0.998942(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.418 298.641 Tm +[(poi)0.998942(nt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.551 298.641 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(\) )0.996908(i)1(s )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.125 298.641 Tm +[(re)1(e)0.996908(nact)1.00505(me)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.523 298.641 Tm +[( )1(of )1]TJ +-507.176 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 284.672 Tm +[(ri)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.6484 284.672 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.84 284.672 Tm +[(e)1(v)1(e)1(nt)1(ual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.094 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.91 284.672 Tm +[(fal)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.18 284.672 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.477 284.672 Tm +[(uni)0.998942(v)1(e)1(rsal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.539 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.352 284.672 Tm +[(pi)0.998942(ct)1(ori)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.207 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.02 284.672 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.09 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.902 284.672 Tm +[(ut)1(opi)0.996908(as)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.512 284.672 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.172 284.672 Tm +[(R)0.996908(e)1(nai)0.996908(ssance)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.051 284.672 Tm +[( )1(,)1( )1]TJ +-508.703 -13.9688 Td +[(from )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 270.703 Tm +[(T)79.0116(ommaso)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.535 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.348 270.703 Tm +[(Campane)1.00199(l)1(l)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.559 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.375 270.703 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.188 270.703 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.977 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.109 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.926 270.703 Tm +[(Ci)0.998942(t)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.742 270.703 Tm +[( )0.998942(de)1(l)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.992 270.703 Tm +[(sol)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.316 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.129 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.266 270.703 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.941 270.703 Tm +[(Come)1(ni)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.281 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.094 270.703 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.91 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.723 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.859 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.672 270.703 Tm +[(O)1(rbi)0.992839(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.926 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.738 270.703 Tm +[(pi)0.996908(ct)1.00505(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.688 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.504 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 507.637 270.703 Tm +[( )1<97>]TJ +-473.289 -13.9688 Td +[(al)1(t)1(hough )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.535 256.734 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.387 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.199 256.734 Tm +[(proje)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.207 256.734 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.504 256.734 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.457 256.734 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.27 256.734 Tm +[(onl)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.84 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.656 256.734 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.305 256.734 Tm +[( )0.998942(ope)1(rat)1(i)1(ons )1(i)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.984 256.734 Tm +[(pi)0.996908(ct)1.00505(ograms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 535.383 256.734 Tm +[( )1]TJ +-501.035 -13.9688 Td +[(w)1(as )1(l)1(e)1(ss)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.8164 242.766 Tm +[(ambi)1(t)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.641 242.766 Tm +[( )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.73 242.766 Tm +[(conv)1(e)0.998942(rse)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.281 242.766 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.957 242.766 Tm +[(ut)1(opi)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.137 242.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.949 242.766 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.02 242.766 Tm +[( )0.998942(de)1(si)0.998942(gns )1.00505(occurs )1(w)1.00505(he)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.742 242.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 560.137 242.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 228.797 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 228.797 Tm +[( )1(l)1(anguage)1.00199(s )1(ge)1(t)1( )1(appropri)1(at)1(e)1(d )0.998942(and )0.998942(use)1.00301(d )0.998942(i)0.998942(nformal)0.998942(l)0.998942(y)1( )0.998942(i)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.242 228.797 Tm +[(e)1(v)0.998942(e)1(ry)0.996908(day)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.355 228.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.168 228.797 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.844 228.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 214.828 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.5117 214.828 Tm +[(Sw)1(i)1(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.105 214.828 Tm +[( )1(t)1(e)1(l)1(l)1(s )1(how)1( )1(sci)1(e)0.998942(nt)1(i)0.998942(st)1(s )0.998942(on )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R23 1 Tf +0.1 0 0 -0.1 289.9 214.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 297.918 214.828 Tm +[(y)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.957 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.773 214.828 Tm +[(i)0.998942(sl)0.998942(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.172 214.828 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.465 214.828 Tm +(Lagado)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.332 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.145 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.281 214.828 Tm +[( )1(w)1(oul)1(d )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 200.859 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.3711 200.859 Tm +[( )1(,)1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.8125 200.859 Tm +[(prai)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.484 200.859 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.766 200.859 Tm +[(be)1(aut)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.031 200.859 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.297 200.859 Tm +[(w)0.998942(oman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.055 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(any)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.75 200.859 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.363 200.859 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.176 200.859 Tm +[(ani)0.998942(mal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.27 200.859 Tm +[( )1(.)1(.)1(.)1( )1(by)0.996908( )1(rhombs )1(,)1( )1(ci)1(rcl)0.996908(e)1(s )1(,)1( )1.00505]TJ +-373.922 -13.9688 Td +[(paral)1(l)1(e)1(l)1(ograms )1(,)1( )1(e)1(l)1(l)1(i)1(pse)1(s )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.004 186.891 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.617 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.43 186.891 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.566 186.891 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.379 186.891 Tm +[(ge)1(ome)1(t)0.998942(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.977 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.793 186.891 Tm +[(t)0.998942(e)1(rms.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.805 186.891 Tm +[( )0.998942<9420>1(11 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.652 186.891 Tm +[(Li)1(k)1(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.199 186.891 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.645 186.891 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.133 186.891 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 172.922 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.266 172.922 Tm +[(poe)1(t)0.998942(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.609 172.922 Tm +[( )0.998942(w)1(hi)0.998942(ch )0.998942(,)0.998942( )0.998942(unl)1(i)0.998942(k)0.998942(e)1( )0.998942(most)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.875 172.922 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.836 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.648 172.922 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.996 172.922 Tm +[( )1(,)1( )1(w)1(ri)1(t)1(e)1(s )1(i)1(t)1(s)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.9414 158.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.7539 158.953 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.426 158.953 Tm +[( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.832 158.953 Tm +[(poe)1(t)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.215 158.953 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.027 158.953 Tm +[(w)0.998942(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.531 158.953 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(crossbre)1.00301(e)1(ds )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.023 158.953 Tm +[(cy)1(be)0.998942(rne)1(t)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.254 158.953 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.543 158.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.199 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.016 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.734 158.953 Tm +[( )1]TJ +-525.387 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)1(he)1(se)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.926 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.059 144.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.875 144.984 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.602 144.984 Tm +[( )1(poe)1(ms )0.998942<9420>1(or )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.5 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.637 144.984 Tm +[( )0.998942(code)1(w)0.998942(ork)1(s )0.998942<9420>1(oft)0.998942(e)1(n )0.998942(pl)0.998942(ay)0.996908( )1.00505(w)1(i)0.996908(t)1.00505(h )0.996908(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.945 144.984 Tm +[(i)1(nt)0.996908(e)1(rfe)1(re)0.996908(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.105 144.984 Tm +[( )1]TJ +-508.758 -13.9688 Td +[(be)1(t)1(w)1(e)1(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9688 131.016 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.688 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.504 131.016 Tm +[(age)1(ncy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.668 131.016 Tm +[( )1(and )1(programme)1.00301(d )0.998942(proce)1(sse)1(s )1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.668 131.016 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.063 131.016 Tm +[( )1(ne)0.996908(t)1.00505(w)1(ork)1(s )1.00505(.)1( )1(In )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 117.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 117.047 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.969 117.047 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.363 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.18 117.047 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.547 117.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.992 117.047 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.125 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.941 117.047 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.668 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.484 117.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.617 117.047 Tm +[( )0.998942(i)0.998942(s )1(oft)0.996908(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.375 117.047 Tm +[(unde)0.996908(rst)1(ood)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 117.047 Tm +[( )1(e)1(i)0.996908(t)1.00505(he)0.996908(r )1(as )1]TJ +-465.117 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 103.078 Tm +[(sy)1(nony)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0938 103.078 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.387 103.078 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.781 103.078 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.598 103.078 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.816 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.633 103.078 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.699 103.078 Tm +[( )0.998942(or )1(as )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.387 103.078 Tm +[(t)0.998942(e)1(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.898 103.078 Tm +[( )0.998942(w)1(ri)1(t)1(t)1(e)1(n )1(i)0.996908(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.23 103.078 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.566 103.078 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 89.1094 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 89.1094 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.402 89.1094 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.254 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.066 89.1094 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.891 89.1094 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.652 89.1094 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.691 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.508 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.641 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.457 89.1094 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.184 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.133 89.1094 Tm +[( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 357.3 89.1 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 365.965 89.1094 Tm +[(e)1(rs )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.867 89.1094 Tm +[(t)1(radi)0.996908(t)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.703 89.1094 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 75.1406 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.633 75.1406 Tm +[(cry)1(pt)1(ographi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.137 75.1406 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.953 75.1406 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.52 75.1406 Tm +[( )0.998942(of)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.813 75.1406 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.543 75.1406 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.453 75.1406 Tm +[(se)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.535 75.1406 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.828 75.1406 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.602 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.418 75.1406 Tm +[(t)1(ransformat)0.996908(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.566 75.1406 Tm +[( )1]TJ +-493.219 -13.9688 Td +[(rul)1(e)1(s )1(t)1(hat)1( )1(t)1(ranscri)1(be)1( )1(one)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.426 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.48 61.1719 Tm +[( )0.998942(of )0.998942(sy)1(mbol)0.998942(s )1(t)0.998942(o )0.998942(anot)1(he)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.98 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.031 61.1719 Tm +[( )0.998942(of )1(sy)1(mbol)0.996908(s )1(,)1( )1(for )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.207 61.1719 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.23 61.1719 Tm +[( )1(,)1( )1]TJ +-518.883 -13.9688 Td +[(w)1(ri)1(t)1(t)1(e)1(n )1(l)1(e)1(t)1(t)1(e)1(rs )1(i)1(nt)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.305 47.2031 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.902 47.2031 Tm +[( )1(be)1(e)1(ps )0.998942(.)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.535 47.2031 Tm +[(t)0.998942(ransl)1(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.738 47.2031 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(occurs )1(w)1(he)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.613 47.2031 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.125 47.2031 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 33.2344 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 33.2344 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 33.2344 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 33.2344 Tm +[( )1(ge)1(t)1(s )0.998942(compi)0.998942(l)0.998942(e)1(d )0.998942(i)0.998942(nt)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.551 33.2344 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.199 33.2344 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(i)1(s )1(not)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.43 33.2344 Tm +[(e)1(ncodi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.137 33.2344 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +Q + +endstream +endobj +%%Page: 4 4 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +25 0 obj +<> +/Contents 26 0 R +>> +endobj +%%EndPageSetup +26 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.707 801.516 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.957 801.516 Tm +[( )1(be)1(cause)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.699 801.516 Tm +[(proce)0.998942(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.48 801.516 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.695 801.516 Tm +[(one)1(t)0.998942(o-)1(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.906 801.516 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.719 801.516 Tm +[(re)1(v)1(e)1(rsi)0.998942(bl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.793 801.516 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(hi)0.996908(s )1(i)1(s )1(w)1(hy)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.184 801.516 Tm +[(propri)0.996908(e)1(t)1(ary)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.676 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 787.547 Tm +[( )1(compani)1(e)1(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.289 787.547 Tm +[(k)1(e)1(e)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.445 787.547 Tm +[( )0.998942(t)1(he)0.998942(i)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.301 787.547 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.973 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.785 787.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.922 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.734 787.547 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.465 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.277 787.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.414 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.227 787.547 Tm +[(se)1(cre)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.867 787.547 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.996908(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.5 787.547 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.164 787.547 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 773.578 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.121 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.938 773.578 Tm +[(unde)1(rst)1(andi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.707 773.578 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 256 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.137 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 773.578 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.68 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.492 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.629 773.578 Tm +[( )0.998942(i)0.998942(s )1(hi)0.998942(st)1(ori)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(de)1(ri)1(v)0.996908(e)1(d )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.539 773.578 Tm +[(name)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.902 773.578 Tm +[( )1(of )1]TJ +-498.555 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 57.8 759.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 65.8043 759.609 Tm +[(rst)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.5352 759.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.3477 759.609 Tm +[(hi)1(gh-)1(l)1(e)1(v)1(e)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.039 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.852 759.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.246 759.609 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.063 759.609 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.281 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.098 759.609 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.164 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.609 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.742 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.559 759.609 Tm +[(Short)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.289 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.105 759.609 Tm +[(Code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.109 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.242 759.609 Tm +[( )1(from )1(1950.)0.992839(12 )1]TJ +-420.895 -13.9688 Td +[(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.9961 745.641 Tm +[(onl)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5664 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.3789 745.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.602 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.414 745.641 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.484 745.641 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.418 745.641 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.148 745.641 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.809 745.641 Tm +[(ori)1(gi)0.998942(nal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.848 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.664 745.641 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.91 745.641 Tm +[( )1(i)1(s )1(asse)1(mbl)0.996908(y)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 125.324 731.672 Tm +[(human-)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.098 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.914 731.672 Tm +[(re)1(adabl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.363 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.176 731.672 Tm +[(mne)1(moni)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.277 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.09 731.672 Tm +[(one)1(-)1(t)0.998942(o-)1(one)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.355 731.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.172 731.672 Tm +[(re)1(pre)1(se)1(nt)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.105 731.672 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.402 731.672 Tm +[(proce)1(ssor)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.145 731.672 Tm +[( )1]TJ +-501.797 -13.9688 Td +[(i)1(nst)1(ruct)1(i)1(ons )1(.)1( )1(Conv)1(e)1(rse)1(l)1(y)1( )1(,)1( )1(t)1(hose)1( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.953 717.703 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.734 717.703 Tm +[( )0.998942(code)1(d )0.998942(back)1( )1(,)1( )1.00505(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.82 717.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.957 717.703 Tm +[( )1(di)0.996908(sasse)1(mbl)0.996908(e)1(d )1(,)1( )1]TJ +-423.609 -13.9688 Td +[<9420>1(i)1(nt)1(o )1(asse)1(mbl)1(y)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.789 703.734 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.855 703.734 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.301 703.734 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.273 703.734 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.184 703.734 Tm +[(w)0.998942(hol)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.348 703.734 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(onl)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.945 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.082 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.895 703.734 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.625 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 435.438 703.734 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.574 703.734 Tm +[( )1(but)0.996908( )1.00505(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.402 703.734 Tm +[(sy)0.996908(mbol)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.023 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +(form)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.1289 689.766 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 689.766 Tm +[(i)1(nv)1(ol)1(v)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.379 689.766 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.191 689.766 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.758 689.766 Tm +[( )1(pract)1(i)0.998942(ce)1(s )0.998942(of )0.998942(i)0.998942(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.434 689.766 Tm +[(e)1(mpl)0.998942(oy)1(me)0.998942(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.469 689.766 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.664 689.766 Tm +[(appropri)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.164 689.766 Tm +[( )1(.)1( )1(B)1(ut)1( )1(si)1(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 675.797 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.2617 675.797 Tm +[( )1(i)1(n )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.426 675.797 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.82 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.637 675.797 Tm +[(cont)1(rol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.93 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.746 675.797 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.813 675.797 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(hat)1( )0.998942(mat)1(e)0.998942(ri)1(al)0.998942(l)0.998942(y)1( )0.998942(mak)1(e)1(s )1(up )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.789 675.797 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.699 675.797 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.141 675.797 Tm +[(cri)1(t)1(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.809 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(t)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9844 661.828 Tm +[( )1(about)1( )1(comput)1(e)1(rs )1(i)1(s )0.998942(not)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.992 661.828 Tm +[(possi)1(bl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.672 661.828 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(an )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.434 661.828 Tm +[(i)0.998942(nforme)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.566 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.379 661.828 Tm +[(unde)0.996908(rst)1(andi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 503.148 661.828 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(st)1(ruct)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.6055 647.859 Tm +[(formal)1(i)1(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.754 647.859 Tm +[( )1(of )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.684 647.859 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.977 647.859 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Art)1(i)0.998942(st)1(s )0.998942(and )1(act)0.998942(i)1(v)0.996908(i)1(st)1(s )1.00505(si)0.996908(nce)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.789 647.859 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.133 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 633.891 Tm +[( )1(poe)1(t)1(s )1(and )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.957 633.891 Tm +[(M)1(IT)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.988 633.891 Tm +[( )1(hack)1(e)0.998942(rs )1(i)0.998942(n )0.998942(t)1(he)1( )0.998942(1960s )1(hav)1(e)1( )0.998942(show)1(n )0.998942(how)1.00505( )1(t)1(he)1(i)0.996908(r )1(l)0.996908(i)1(mi)0.996908(t)1(at)1.00505(i)0.996908(ons )1(can )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.1289 619.922 Tm +[( )1(e)1(mbrace)1(d )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 619.922 Tm +[(cre)1(at)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.695 619.922 Tm +[( )1(chal)0.998942(l)0.998942(e)1(nge)1(s )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.004 619.922 Tm +[(Li)0.998942(k)0.998942(e)1(w)0.998942(i)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.555 619.922 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.281 619.922 Tm +[(i)0.998942(ncumbe)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.012 619.922 Tm +[( )1(upon )0.996908(cri)1(t)1(i)1(cs )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.512 619.922 Tm +[(re)1]TJ +/R23 1 Tf +0.1 0 0 -0.1 528.3 619.9 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 536.332 619.922 Tm +[(e)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(t)1(he)-317.004(some)1(t)1(i)1(me)1(s )1(more)1( )1(and )1(some)0.998942(t)1(i)0.998942(me)1(s )0.998942(l)0.998942(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.473 605.953 Tm +[(amusi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.141 605.953 Tm +[( )0.998942(const)1(rai)0.998942(nt)1(s )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.238 605.953 Tm +[(game)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.555 605.953 Tm +[( )1(rul)0.996908(e)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 591.984 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 591.984 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 591.984 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(w)1(ri)0.998942(t)1(e)0.998942( )0.998942(i)1(nt)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.719 591.984 Tm +[(cul)0.998942(t)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.395 591.984 Tm +[( )0.998942(.)0.998942( )0.998942(Not)1(e)1(s )0.998942(1 )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.535 591.984 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.141 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.953 591.984 Tm +[(K)27.0142(e)1(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.992 591.984 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.438 591.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.57 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.387 591.984 Tm +[(B)1(e)1(ck)1.00505(e)0.996908(t)1.00505(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.043 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(T)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.1641 578.016 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.6094 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.742 578.016 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.938 578.016 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.543 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.355 578.016 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.395 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.488 578.016 Tm +[(M)0.998942(e)1(chani)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.766 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.582 578.016 Tm +[(M)0.998942(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.855 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(83\226107 )1.00301(.)0.998942( )0.998942(2 )1(.)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.996 578.016 Tm +[(F)56.0099(e)1(rdi)0.996908(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.316 578.016 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.332 564.047 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.777 564.047 Tm +[(Course)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.906 564.047 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.102 564.047 Tm +[(G)1(e)1(ne)1(ral)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.348 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.164 564.047 Tm +[(Li)0.998942(ngui)0.998942(st)1(i)0.998942(cs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.645 564.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.086 564.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.223 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.035 564.047 Tm +[(Chapt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.441 564.047 Tm +[( )0.998942(I )0.998942(:)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.668 564.047 Tm +[(Nat)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.711 564.047 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.473 564.047 Tm +[(Li)1(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.797 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.609 564.047 Tm +[(Si)1(gn.)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.895 564.047 Tm +[( )1]TJ +-520.547 -13.9688 Td +[<9420>1(3 )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.375 550.078 Tm +[(Se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.7969 550.078 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.078 550.078 Tm +[(se)1(ct)0.998942(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.672 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.117 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.25 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.066 550.078 Tm +[(Saussure)1.00301(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.934 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.75 550.078 Tm +[(Si)0.998942(gns)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.375 550.078 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.57 550.078 Tm +[(M)0.998942(at)1(e)0.998942(ri)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.5 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.316 550.078 Tm +[(M)0.998942(at)1(t)0.998942(e)1(rs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.398 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.84 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.977 550.078 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.172 550.078 Tm +[(N)63.9974(.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.719 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.531 550.078 Tm +[(Kat)1.00505(he)0.996908(ri)0.996908(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.707 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 536.109 Tm +[(Hay)1(l)1(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8438 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2852 536.109 Tm +[(M)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.352 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.168 536.109 Tm +[(M)1(ot)1(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.066 536.109 Tm +[( )1(W)88.0015(as )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.27 536.109 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.125 536.109 Tm +[( )0.998942(,)0.998942( )0.998942(42\22645 )1.00301(.)0.998942( )0.998942(4 )1(.)0.998942( )0.998942(F)56.0038(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.074 536.109 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.098 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.539 536.109 Tm +[(St)1.00505(e)0.996908(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.566 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.379 536.109 Tm +[(W)69.0145(oz)1.00505(ni)0.996908(ak)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.438 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.254 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.066 536.109 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.5352 522.141 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.297 522.141 Tm +[(Appl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.266 522.141 Tm +[( )1(I )1(mai)1(nboard )1(w)1(as )0.998942(consi)0.998942(jde)1(re)1(d )1<9320>0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.852 522.141 Tm +[(be)1(aut)1(i)0.998942(ful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.188 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415 522.141 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.504 522.141 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.801 522.141 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.512 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.328 522.141 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.461 522.141 Tm +[( )1(i)1(n )0.996908(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.289 522.141 Tm +[(t)1(i)1(me)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.43 522.141 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(accordi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.832 508.172 Tm +[( )1(t)1(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.508 508.172 Tm +[(St)1(e)1(v)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.262 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.078 508.172 Tm +[(Le)1(v)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.707 508.172 Tm +[( )1(,)1( )1(Insane)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.191 508.172 Tm +[(G)0.998942(re)1(at)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.594 508.172 Tm +[( )0.998942(:)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.914 508.172 Tm +[(Li)0.998942(fe)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.262 508.172 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.457 508.172 Tm +[(T)1(i)0.998942(me)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.938 508.172 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 508.172 Tm +[(M)1(aci)1(nt)0.996908(osh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.895 508.172 Tm +[( )1(,)1( )1(81 )1(.)1( )1(5 )0.996908(.)1.00505( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.0508 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.8672 494.203 Tm +[(W)83.0129(e)1(i)1(z)1(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.258 494.203 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.699 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.836 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.648 494.203 Tm +[(E)1(LIZ)0.998942<419741>]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.789 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.602 494.203 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.457 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.273 494.203 Tm +[(P)1(rogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.258 494.203 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.758 494.203 Tm +[(St)1.00505(udy)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.988 494.203 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.285 494.203 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.219 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 480.234 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 480.234 Tm +[(Communi)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.309 480.234 Tm +[( )1(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.746 480.234 Tm +[(M)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.914 480.234 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.109 480.234 Tm +[(M)0.998942(achi)0.998942(ne)1(.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.48 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.297 480.234 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.43 480.234 Tm +[( )0.998942(6 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.324 480.234 Tm +[(M)1(arsha)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.543 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.355 480.234 Tm +[(P)46.0124(ascual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.645 480.234 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.09 480.234 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.223 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.039 480.234 Tm +[(B)1(l)1(ack)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.84 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(M)1(onday)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.2031 466.266 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.6445 466.266 Tm +[(Cause)1.00199(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.129 466.266 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.32 466.266 Tm +[(E)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 177 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 185.588 466.266 Tm +[(e)1(ct)1(s.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.223 466.266 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.039 466.266 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.172 466.266 Tm +[( )0.998942(7 )1(.)0.998942( )0.998942(Among )0.998942(t)0.998942(he)1(m )0.998942(concre)1(t)1(e)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.375 466.266 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.723 466.266 Tm +[( )1(w)1(ri)1(t)1(e)1(rs )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.645 466.266 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.984 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 452.297 Tm +[( )1(poe)1(t)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.207 452.297 Tm +[(G)1(e)1(rman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.895 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.707 452.297 Tm +[(poe)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.539 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.352 452.297 Tm +(Hans)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.859 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.672 452.297 Tm +[(M)0.998942(agnus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.41 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.227 452.297 Tm +[(E)1(nz)1(e)0.998942(nsbe)1(rge)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.063 452.297 Tm +[( )0.998942(,)1( )1(and )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.352 452.297 Tm +[(Aust)1(ri)0.996908(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.184 452.297 Tm +[( )1(poe)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 438.328 Tm +[(F)56.0117(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.668 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.48 438.328 Tm +[(Schmat)1(z)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.828 438.328 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.023 438.328 Tm +[(F)1(ranz)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.289 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.105 438.328 Tm +[(J)1(ose)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.84 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.656 438.328 Tm +[(Cz)1(e)0.998942(rni)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.293 438.328 Tm +[( )0.998942(.)0.998942( )0.998942(8 )1(.)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.813 438.328 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.168 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.98 438.328 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.441 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.535 438.328 Tm +[(Humane)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.09 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.906 438.328 Tm +[(Int)1(e)0.996908(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.453 438.328 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(Ne)1(w)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.2188 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.0352 424.359 Tm +[(D)1(i)1(re)1(ct)1(i)1(ons)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.824 424.359 Tm +[( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.855 424.359 Tm +[(D)1(e)1(si)1(gni)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.23 424.359 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.047 424.359 Tm +[(Int)0.998942(e)1(ract)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.59 424.359 Tm +[( )0.998942(Sy)1(st)0.998942(e)1(ms )1(.)0.998942( )0.998942(9 )0.998942(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.547 424.359 Tm +[(Accordi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.543 424.359 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.219 424.359 Tm +[(Ne)1(l)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.77 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.586 424.359 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.563 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 38.1602 410.391 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.9492 410.391 Tm +[(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 66.7 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 74.7129 410.391 Tm +[(ni)1(t)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.914 410.391 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.211 410.391 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.125 410.391 Tm +[( )1(i)1(n )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.969 410.391 Tm +[(Language)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.328 410.391 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.621 410.391 Tm +[(Art)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.848 410.391 Tm +[( )0.998942(,)0.998942( )0.998942(143 )1(.)1( )0.998942(10 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.352 410.391 Tm +[(Al)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.738 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.551 410.391 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.449 410.391 Tm +[( )1(,)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.59 410.391 Tm +[(i)1(nv)0.992839(e)1(nt)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.551 410.391 Tm +[( )1(of )1]TJ +-497.203 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 396.422 Tm +[(graphi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.348 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 119.16 396.422 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.887 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.699 396.422 Tm +[(i)1(nt)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.344 396.422 Tm +[( )0.998942(,)0.998942( )0.998942(conce)1(de)1(d )0.998942(i)0.998942(n )0.998942(1990 )1.00301(t)0.998942(hat)1( )0.998942<9320>1(i)0.998942(t)0.998942( )0.998942(w)1(oul)0.998942(d )1(not)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.211 396.422 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.996 396.422 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.809 396.422 Tm +[(surpri)0.992839(si)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.094 396.422 Tm +[( )1(i)1(f )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(v)1(i)1(sual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.8438 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.6563 382.453 Tm +[(sy)1(st)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.055 382.453 Tm +[( )1(w)1(e)1(re)1( )1(l)1(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.965 382.453 Tm +[(abl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.742 382.453 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.297 382.453 Tm +[(are)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 279.445 382.453 Tm +[( )0.998942(t)1(han )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.973 382.453 Tm +[(me)1(chani)0.998942(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 382.453 Tm +[( )1(t)1(hat)1( )1(sol)1(v)1(e)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.234 382.453 Tm +(noun)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.645 382.453 Tm +[( )1(phrase)0.996908(s )1]TJ +-470.297 -13.9688 Td +[(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 55.5625 368.484 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.7266 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.539 368.484 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.609 368.484 Tm +[( )1(.)1( )1(Al)1(t)1(hough )0.998942(i)0.998942(t)1( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.16 368.484 Tm +[(fai)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.328 368.484 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.004 368.484 Tm +[(say)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.098 368.484 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.254 368.484 Tm +[<91>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.066 368.484 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.883 368.484 Tm +[(i)0.998942(coni)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.953 368.484 Tm +[( )1(l)1(anguage)0.992839(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.227 368.484 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.039 368.484 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.855 368.484 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.676 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.492 368.484 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.996 368.484 Tm +[( )1]TJ +-524.648 -13.9688 Td +[<92>1( )1(just)1( )1(be)1(cause)1( )1(no )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.449 354.516 Tm +[(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.504 354.516 Tm +[( )1(has )1.00199(be)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.602 354.516 Tm +[(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.375 354.516 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.051 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.242 354.516 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.023 354.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.836 354.516 Tm +[( )0.998942(one)1( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.434 354.516 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.102 354.516 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 506.723 354.516 Tm +[(abov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.664 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(e)1(x)1(pl)1(anat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.387 340.547 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.012 340.547 Tm +[(cl)1(ose)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.055 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.73 340.547 Tm +[(t)1(rut)1(h.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.383 340.547 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.195 340.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.332 340.547 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.688 340.547 Tm +[(st)1(at)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.531 340.547 Tm +[( )0.998942(quo )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.797 340.547 Tm +(hasn)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.566 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.379 340.547 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.195 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 359.008 340.547 Tm +[(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.832 340.547 Tm +[( )0.998942(change)1(d )1(si)0.996908(nce)1( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.246 340.547 Tm +[(Al)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.633 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.449 340.547 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.348 340.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.789 340.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.926 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 326.578 Tm +[(U)1(se)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.457 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.2695 326.578 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.816 326.578 Tm +[( )1(:)1( )1(A )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.969 326.578 Tm +[(P)46.0144(e)1(rsonal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.445 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.262 326.578 Tm +[(V)17.9952(i)0.998942(e)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.926 326.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.371 326.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.504 326.578 Tm +[( )0.998942(i)0.998942(n )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.328 326.578 Tm +[(B)0.998942(re)1(nda)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.551 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.363 326.578 Tm +[(Laure)1(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.891 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 326.578 Tm +[(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.488 326.578 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.582 326.578 Tm +[(Art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.805 326.578 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.102 326.578 Tm +[(Human-)0.996908]TJ +-425.754 -13.9688 Td +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.2031 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0156 312.609 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.563 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.379 312.609 Tm +[(D)1(e)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.508 312.609 Tm +[( )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.949 312.609 Tm +[(R)1(e)1(adi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.172 312.609 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.844 312.609 Tm +[(Addi)0.998942(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.82 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.637 312.609 Tm +[(W)83.0129(e)1(sl)0.998942(e)1(y)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.969 312.609 Tm +[( )0.998942(,)0.998942( )0.998942(1989 )1.00505(,)1( )1(203 )0.996908(.)1( )1(11 )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.457 312.609 Tm +[(Sw)1.00505(i)0.996908(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.051 312.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 298.641 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.141 298.641 Tm +[(G)1(ul)1(l)1(i)1(v)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.586 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.402 298.641 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.215 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.031 298.641 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.188 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.004 298.641 Tm +[(T)1(rav)1(e)1(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.773 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.219 298.641 Tm +[(P)1(roje)0.998942(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.617 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.434 298.641 Tm +[(G)0.998942(ut)1(e)0.998942(nbe)1(rg)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.602 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.414 298.641 Tm +[(E)1(book)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.578 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.02 298.641 Tm +[(av)1(ai)0.996908(l)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.559 298.641 Tm +[( )1(at)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.164 298.641 Tm +[(ht)1(t)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.219 298.641 Tm +[( )1(:)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.891 298.641 Tm +[(/)1(/)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.977 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 284.672 Tm +[(w)1(w)1(w)120.004(.)1(gut)1(e)1(nbe)1(rg.)1(org)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.273 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.086 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.129 284.672 Tm +[( )1(di)1(rs )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.172 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.215 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.031 284.672 Tm +[(e)1(x)0.998942(t)0.998942(e)1(x)0.998942(t)1(197)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.316 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.133 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.176 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.988 284.672 Tm +[(gl)0.998942(t)1(rv)1(10.)1(t)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.344 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.156 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.199 284.672 Tm +[( )0.998942(.)0.998942( )0.998942(12 )1(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.355 284.672 Tm +[(Se)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.781 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.594 284.672 Tm +[(W)69.0145(ol)1(fgang)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.863 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.68 284.672 Tm +[(Hage)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.809 284.672 Tm +[( )1(,)1( )1<9320>1(T)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(St)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.1094 270.703 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.4023 270.703 Tm +[(Source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.137 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.949 270.703 Tm +[(Code)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.297 270.703 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.742 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.875 270.703 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +%%Trailer +end +%%EOF diff --git a/pdf-toolkit/TheGhostscriptImposition.ipynb b/pdf-toolkit/TheGhostscriptImposition.ipynb new file mode 100644 index 0000000..913e5c6 --- /dev/null +++ b/pdf-toolkit/TheGhostscriptImposition.ipynb @@ -0,0 +1,1805 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# The Ghostscript Imposition\n", + "\n", + "> Imposition is one of the fundamental steps in the prepress printing process. It consists of the arrangement of the printed product’s pages on the printer’s sheet, in order to obtain faster printing, simplify binding and reduce paper waste.\n", + "\n", + "> Correct imposition minimizes printing time by maximizing the number of pages per impression, reducing cost of press time and materials. To achieve this, the printed sheet must be filled as fully as possible. \n", + "\n", + "https://en.wikipedia.org/wiki/Imposition\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Paged media: A timeline\n", + "\n", + "**1980s**\n", + "\n", + "[![](https://www.graphic-reseau.com/media/catalog/product/cache/3/small_image/170x170/9df78eab33525d08d6e5fb8d27136e95/l/o/logo-adobepostscript.png)](https://en.wikipedia.org/wiki/PostScript) [![](https://www.ghostscript.com/images/ghostscript_logo.png)](https://en.wikipedia.org/wiki/Ghostscript)\n", + "\n", + "\n", + "**1990s**\n", + "\n", + "[![](https://web.archive.org/web/19970304211647im_/http://www3.adobe.com/GIFS/getacro.gif)](https://en.wikipedia.org/wiki/PDF) [![](https://pzwiki.wdka.nl/mw-mediadesign/images/f/f4/Mosaic.png)](https://en.wikipedia.org/wiki/HTML)\n", + "\n", + "[Dave Raggett's Touch of Style tutorial](https://www.w3.org/MarkUp/Guide/Style) from/updated 2002, is a good introduction to and reflection on using CSS for the web -- notice there's almost no discussion of print -- it's all about how pages get rendered online, aka in a web browser. This is still the focus of CSS today... but...\n", + "\n", + "**TODAY**\n", + "\n", + "![](https://upload.wikimedia.org/wikipedia/commons/thumb/6/61/HTML5_logo_and_wordmark.svg/180px-HTML5_logo_and_wordmark.svg.png) [![](https://upload.wikimedia.org/wikipedia/commons/thumb/d/d5/CSS3_logo_and_wordmark.svg/180px-CSS3_logo_and_wordmark.svg.png)](https://drafts.csswg.org/css-page-3/) ![](https://upload.wikimedia.org/wikipedia/commons/thumb/7/7d/Adobe_PDF.svg/150px-Adobe_PDF.svg.png)\n", + "\n", + "https://en.wikipedia.org/wiki/CSS\n", + "\n", + "CSS3 includes an extensive [Paged Media Specification](https://drafts.csswg.org/css-page-3/) describing how CSS can be *also* used to render \"paged media\" (ie when printed or saved as PDF). Most browsers do not implement these rules (except in some cases when you print a page). The *Weasyprint* python library implements some of these guidelines." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## The \"UNIX\" philosophy of small tools composed together (and the pipeline)\n", + "![](https://thedailykylie.files.wordpress.com/2013/03/tool-box.jpg)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Use the !shell\n", + "Jupyter (and ipython before it) supports the use of shell commands fluidly along side your python code. When the line starts with a **!** (the exclamation point, often called **bang** by command line users), the command is interpreted as a shell command and performed, the results displayed below, just like with python code. Note that the shell has different rules about what a good structure is. In any case the first word is the name of a command..." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Wed 28 Oct 2020 09:10:50 PM CET\n" + ] + } + ], + "source": [ + "!date" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "mb\n" + ] + } + ], + "source": [ + "!whoami" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "aalib-pdf.ipynb\t\t\t nltk-tfidf.ipynb\n", + "ASCII-canvas-to-PDF.ipynb\t patches\n", + "ASCII-canvas-to-PDF.pdf\t\t patterns-generating.ipynb\n", + "ASCII-patch-making.ipynb\t patterns-searching-for.ipynb\n", + "ASCII-quilt.ipynb\t\t PIL-basics.ipynb\n", + "ASCII-quilt-making.ipynb\t pillow_imagedraw.ipynb\n", + "ASCII-QUILT.pdf\t\t\t py\n", + "Concordance_Patches\t\t python-cheatsheet.ipynb\n", + "concordance_quilt.ipynb\t\t quilt.ipynb\n", + "dictionary-step-by-step.ipynb\t quilts\n", + "fonts\t\t\t\t reportlab-canvas-A4-bag-of-words.ipynb\n", + "hotseat.ipynb\t\t\t reportlab-canvas-A4-bag-of-words.pdf\n", + "img\t\t\t\t reportlab-cheatsheet.ipynb\n", + "json-dataset.json\t\t reportlab_tests.ipynb\n", + "json-making-datasets.ipynb\t TheGhostscriptImposition.ipynb\n", + "mydocument.pdf\t\t\t txt\n", + "nltk-frequency-distribution.ipynb untitled.txt\n", + "NLTKing.ipynb\t\t\t weasyprint.ipynb\n", + "nltk-pos-tagger.ipynb\t\t weasyprint-test.pdf\n", + "nltk-similar-words.ipynb\t WordNet-synsets.ipynb\n" + ] + } + ], + "source": [ + "!ls" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## An zine introduction to the terminal\n", + "\n", + "https://solarpunk.cool/zines/map-is-the-territory/\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## MAN oh MAN" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "A very important concept from the UNIX / Linux / Libre software world is that documentation ought to be seen as an full part of the distribution of software. When software is installed, it often installs a so-called \"man page\" (for manual). You can then read the manual with the \"man\" command followed by the command you are interested in..." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GS(1) Ghostscript GS(1)\n", + "\n", + "NAME\n", + " gs - Ghostscript (PostScript and PDF language interpreter and pre‐\n", + " viewer)\n", + "\n", + "SYNOPSIS\n", + " gs [ options ] [ files ] ...\n", + "\n", + "DESCRIPTION\n", + " The gs command invokes Ghostscript, an interpreter of Adobe Systems'\n", + " PostScript(tm) and Portable Document Format (PDF) languages. gs reads\n", + " \"files\" in sequence and executes them as Ghostscript programs. After\n", + " doing this, it reads further input from the standard input stream (nor‐\n", + " mally the keyboard), interpreting each line separately and output to an\n", + " output device (may be a file or an X11 window preview, see below). The\n", + " interpreter exits gracefully when it encounters the \"quit\" command (ei‐\n", + " ther in a file or from the keyboard), at end-of-file, or at an inter‐\n", + " rupt signal (such as Control-C at the keyboard).\n", + "\n", + " The interpreter recognizes many option switches, some of which are de‐\n", + " scribed below. Please see the usage documentation for complete informa‐\n", + " tion. Switches may appear anywhere in the command line and apply to all\n", + " files thereafter. Invoking Ghostscript with the -h or -? switch pro‐\n", + " duces a message which shows several useful switches, all the devices\n", + " known to that executable, and the search path for fonts; on Unix it\n", + " also shows the location of detailed documentation.\n", + "\n", + " Ghostscript may be built to use many different output devices. To see\n", + " which devices your executable includes, run \"gs -h\".\n", + "\n", + " Unless you specify a particular device, Ghostscript normally opens the\n", + " first one of those and directs output to it.\n", + "\n", + " If you have installed the ghostscript-x Debian package and are under X,\n", + " the default device is an X11 window (previewer), else ghostscript will\n", + " use the bbox device and print on stdout the dimension of the postscript\n", + " file.\n", + "\n", + " So if the first one in the list is the one you want to use, just issue\n", + " the command\n", + "\n", + " gs myfile.ps\n", + "\n", + " You can also check the set of available devices from within Ghost‐\n", + " script: invoke Ghostscript and type\n", + "\n", + " devicenames ==\n", + "\n", + " but the first device on the resulting list may not be the default de‐\n", + " vice you determine with \"gs -h\". To specify \"AbcXyz\" as the initial\n", + " output device, include the switch\n", + "\n", + " -sDEVICE=AbcXyz\n", + "\n", + " For example, for output to an Epson printer you might use the command\n", + "\n", + " gs -sDEVICE=epson myfile.ps\n", + "\n", + " The \"-sDEVICE=\" switch must precede the first mention of a file to\n", + " print, and only the switch's first use has any effect.\n", + "\n", + " Finally, you can specify a default device in the environment variable\n", + " GS_DEVICE. The order of precedence for these alternatives from highest\n", + " to lowest (Ghostscript uses the device defined highest in the list) is:\n", + "\n", + " Some devices can support different resolutions (densities). To specify\n", + " the resolution on such a printer, use the \"-r\" switch:\n", + "\n", + " gs -sDEVICE= -rx\n", + "\n", + " For example, on a 9-pin Epson-compatible printer, you get the lowest-\n", + " density (fastest) mode with\n", + "\n", + " gs -sDEVICE=epson -r60x72\n", + "\n", + " and the highest-density (best output quality) mode with\n", + "\n", + " gs -sDEVICE=epson -r240x72.\n", + "\n", + " If you select a printer as the output device, Ghostscript also allows\n", + " you to choose where Ghostscript sends the output -- on Unix systems,\n", + " usually to a temporary file. To send the output to a file \"foo.xyz\",\n", + " use the switch\n", + "\n", + " -sOutputFile=foo.xyz\n", + "\n", + " You might want to print each page separately. To do this, send the\n", + " output to a series of files \"foo1.xyz, foo2.xyz, ...\" using the \"-sOut‐\n", + " putFile=\" switch with \"%d\" in a filename template:\n", + "\n", + " -sOutputFile=foo%d.xyz\n", + "\n", + " Each resulting file receives one page of output, and the files are num‐\n", + " bered in sequence. \"%d\" is a printf format specification; you can also\n", + " use a variant like \"%02d\".\n", + "\n", + " You can also send output to a pipe. For example, to pipe output to the\n", + " \"lpr\" command (which, on many Unix systems, directs it to a printer),\n", + " use the option\n", + "\n", + " -sOutputFile=%pipe%lpr\n", + "\n", + " You can also send output to standard output:\n", + "\n", + " -sOutputFile=-\n", + " or\n", + " -sOutputFile=%stdout%\n", + "\n", + " In this case you must also use the -q switch, to prevent Ghostscript\n", + " from writing messages to standard output.\n", + "\n", + " To select a specific paper size, use the command line switch\n", + "\n", + " -sPAPERSIZE=\n", + "\n", + " for instance\n", + "\n", + " -sPAPERSIZE=a4\n", + " or\n", + " -sPAPERSIZE=legal\n", + "\n", + " Most ISO and US paper sizes are recognized. See the usage documentation\n", + " for a full list, or the definitions in the initialization file\n", + " \"gs_statd.ps\".\n", + "\n", + " Ghostscript can do many things other than print or view PostScript and\n", + " PDF files. For example, if you want to know the bounding box of a\n", + " PostScript (or EPS) file, Ghostscript provides a special \"device\" that\n", + " just prints out this information.\n", + "\n", + " For example, using one of the example files distributed with Ghost‐\n", + " script,\n", + "\n", + " gs -sDEVICE=bbox golfer.ps\n", + "\n", + " prints out\n", + "\n", + " %%BoundingBox: 0 25 583 732\n", + " %%HiResBoundingBox: 0.808497 25.009496 582.994503 731.809445\n", + "\n", + "OPTIONS\n", + " -- filename arg1 ...\n", + " Takes the next argument as a file name as usual, but takes all\n", + " remaining arguments (even if they have the syntactic form of\n", + " switches) and defines the name \"ARGUMENTS\" in \"userdict\" (not\n", + " \"systemdict\") as an array of those strings, before running the\n", + " file. When Ghostscript finishes executing the file, it exits\n", + " back to the shell.\n", + "\n", + " -Dname=token\n", + " -dname=token\n", + " Define a name in \"systemdict\" with the given definition. The\n", + " token must be exactly one token (as defined by the \"token\" oper‐\n", + " ator) and may contain no whitespace.\n", + "\n", + " -Dname\n", + " -dname Define a name in \"systemdict\" with value=null.\n", + "\n", + " -Sname=string\n", + " -sname=string\n", + " Define a name in \"systemdict\" with a given string as value.\n", + " This is different from -d. For example, -dname=35 is equivalent\n", + " to the program fragment\n", + " /name 35 def\n", + " whereas -sname=35 is equivalent to\n", + " /name (35) def\n", + "\n", + " -P Makes Ghostscript to look first in the current directory for li‐\n", + " brary files. By default, Ghostscript no longer looks in the\n", + " current directory, unless, of course, the first explicitly sup‐\n", + " plied directory is \".\" in -I. See also the INITIALIZATION FILES\n", + " section below, and bundled Use.htm for detailed discussion on\n", + " search paths and how Ghostcript finds files.\n", + "\n", + " -q Quiet startup: suppress normal startup messages, and also do the\n", + " equivalent of -dQUIET.\n", + "\n", + " -gnumber1xnumber2\n", + " Equivalent to -dDEVICEWIDTH=number1 and -dDEVICEHEIGHT=number2.\n", + " This is for the benefit of devices (such as X11 windows) that\n", + " require (or allow) width and height to be specified.\n", + "\n", + " -rnumber\n", + " -rnumber1xnumber2\n", + " Equivalent to -dDEVICEXRESOLUTION=number1 and -dDEVICEYRESOLU‐\n", + " TION=number2. This is for the benefit of devices such as print‐\n", + " ers that support multiple X and Y resolutions. If only one num‐\n", + " ber is given, it is used for both X and Y resolutions.\n", + "\n", + " -Idirectories\n", + " Adds the designated list of directories at the head of the\n", + " search path for library files.\n", + "\n", + " - This is not really a switch, but indicates to Ghostscript that\n", + " standard input is coming from a file or a pipe and not interac‐\n", + " tively from the command line. Ghostscript reads from standard\n", + " input until it reaches end-of-file, executing it like any other\n", + " file, and then continues with processing the command line. When\n", + " the command line has been entirely processed, Ghostscript exits\n", + " rather than going into its interactive mode.\n", + "\n", + " Note that the normal initialization file \"gs_init.ps\" makes \"system‐\n", + " dict\" read-only, so the values of names defined with -D, -d, -S, or -s\n", + " cannot be changed (although, of course, they can be superseded by defi‐\n", + " nitions in \"userdict\" or other dictionaries.)\n", + "\n", + "SPECIAL NAMES\n", + " -dNOCACHE\n", + " Disables character caching. Useful only for debugging.\n", + "\n", + " -dNOBIND\n", + " Disables the \"bind\" operator. Useful only for debugging.\n", + "\n", + " -dNODISPLAY\n", + " Suppresses the normal initialization of the output device. This\n", + " may be useful when debugging.\n", + "\n", + " -dNOPAUSE\n", + " Disables the prompt and pause at the end of each page. This may\n", + " be desirable for applications where another program is driving\n", + " Ghostscript.\n", + "\n", + " -dNOPLATFONTS\n", + " Disables the use of fonts supplied by the underlying platform\n", + " (for instance X Windows). This may be needed if the platform\n", + " fonts look undesirably different from the scalable fonts.\n", + "\n", + " -dSAFER\n", + " Restricts file operations the job can perform. Strongly recom‐\n", + " mended for spoolers, conversion scripts or other sensitive envi‐\n", + " ronments where a badly written or malicious PostScript program\n", + " code must be prevented from changing important files.\n", + "\n", + " -dWRITESYSTEMDICT\n", + " Leaves \"systemdict\" writable. This is necessary when running\n", + " special utility programs, but is strongly discouraged as it by‐\n", + " passes normal Postscript security measures.\n", + "\n", + " -sDEVICE=device\n", + " Selects an alternate initial output device, as described above.\n", + "\n", + " -sOutputFile=filename\n", + " Selects an alternate output file (or pipe) for the initial out‐\n", + " put device, as described above.\n", + "\n", + "SAFER MODE\n", + " The -dSAFER option disables the \"deletefile\" and \"renamefile\" operators\n", + " and prohibits opening piped commands (\"%pipe%cmd\"). Only \"%stdout\" and\n", + " \"%stderr\" can be opened for writing. It also disables reading from\n", + " files, except for \"%stdin\", files given as a command line argument, and\n", + " files contained in paths given by LIBPATH and FONTPATH or specified by\n", + " the system params /FontResourceDir and /GenericResourceDir.\n", + "\n", + " This mode also sets the .LockSafetyParams parameter of the initial out‐\n", + " put device to protect against programs that attempt to write to files\n", + " using the OutputFile device parameter. Since the device parameters\n", + " specified on the command line, including OutputFile, are set prior to\n", + " SAFER mode, use of \"-sOutputFile=...\" on the command line is unre‐\n", + " stricted.\n", + "\n", + " SAFER mode prevents changing the /GenericResourceDir, /FontResourceDir,\n", + " /SystemParamsPassword, and /StartJobPassword.\n", + "\n", + " While SAFER mode is not the default, it is the default for many wrapper\n", + " scripts such as ps2pdf and may be the default in a subsequent release\n", + " of Ghostscript. Thus when running programs that need to open files or\n", + " set restricted parameters you should pass the -dNOSAFER command line\n", + " option or its synonym -dDELAYSAFER.\n", + "\n", + " When running with -dNOSAFER it is possible to perform a \"save\" followed\n", + " by \".setsafe\", execute a file or procedure in SAFER mode, and then use\n", + " \"restore\" to return to NOSAFER mode. In order to prevent the save ob‐\n", + " ject from being restored by the foreign file or procedure, the\n", + " \".runandhide\" operator should be used to hide the save object from the\n", + " restricted procedure.\n", + "\n", + "FILES\n", + " The locations of many Ghostscript run-time files are compiled into the\n", + " executable when it is built. Run \"gs -h\" to find the location of\n", + " Ghostscript documentation on your system, from which you can get more\n", + " details. On a Debian system they are in /usr.\n", + "\n", + " /usr/share/ghostscript/[0-9]*.[0.9]*/*\n", + " Startup files, utilities, and basic font definitions (where\n", + " [0-9]*.[0.9]* is the ghostscript version)\n", + "\n", + " /usr/share/fonts/type1/gsfonts/*\n", + " More font definitions from the gsfonts package\n", + "\n", + " /usr/share/doc/ghostscript/examples/*\n", + " Ghostscript demonstration files (if ghostscript-doc package is\n", + " installed)\n", + "\n", + " /usr/share/doc/ghostscript/*\n", + " Diverse document files (may need to install ghostscript-doc\n", + " package)\n", + "\n", + "INITIALIZATION FILES\n", + " When looking for the initialization files \"gs_*.ps\", the files related\n", + " to fonts, or the file for the \"run\" operator, Ghostscript first tries\n", + " to open the file with the name as given, using the current working di‐\n", + " rectory if no directory is specified. If this fails, and the file name\n", + " doesn't specify an explicit directory or drive (for instance, doesn't\n", + " contain \"/\" on Unix systems), Ghostscript tries directories in this or‐\n", + " der:\n", + "\n", + " 1. the directories specified by the -I switches in the command line\n", + " (see below), if any;\n", + "\n", + " 2. the directories specified by the GS_LIB environment variable, if\n", + " any;\n", + "\n", + " 3. the directories specified by the GS_LIB_DEFAULT macro in the Ghost‐\n", + " script makefile when the executable was built. GS_LIB_DEFAULT is\n", + " \"/usr/share/ghostscript/[0-9]*.[0-9]*/lib\" on a Debian system where\n", + " \"[0-9]*.[0-9]*\" represents the Ghostscript version number\n", + "\n", + " Each of these (GS_LIB_DEFAULT, GS_LIB, and -I parameter) may be either\n", + " a single directory or a list of directories separated by \":\".\n", + "\n", + "ENVIRONMENT\n", + " GS_OPTIONS\n", + " String of options to be processed before the command line op‐\n", + " tions\n", + "\n", + " GS_DEVICE\n", + " Used to specify an output device\n", + "\n", + " GS_FONTPATH\n", + " Path names used to search for fonts\n", + "\n", + " GS_LIB Path names for initialization files and fonts\n", + "\n", + " TEMP Where temporary files are made\n", + "\n", + "X RESOURCES\n", + " Ghostscript, or more properly the X11 display device, looks for the\n", + " following resources under the program name \"Ghostscript\":\n", + "\n", + " borderWidth\n", + " The border width in pixels (default = 1).\n", + "\n", + " borderColor\n", + " The name of the border color (default = black).\n", + "\n", + " geometry\n", + " The window size and placement, WxH+X+Y (default is NULL).\n", + "\n", + " xResolution\n", + " The number of x pixels per inch (default is computed from\n", + " WidthOfScreen and WidthMMOfScreen).\n", + "\n", + " yResolution\n", + " The number of y pixels per inch (default is computed from\n", + " HeightOfScreen and HeightMMOfScreen).\n", + "\n", + " useBackingPixmap\n", + " Determines whether backing store is to be used for saving dis‐\n", + " play window (default = true).\n", + "\n", + " See the usage document for a more complete list of resources. To set\n", + " these resources on Unix, put them in a file such as \"~/.Xresources\" in\n", + " the following form:\n", + "\n", + " Ghostscript*geometry: 612x792-0+0\n", + " Ghostscript*xResolution: 72\n", + " Ghostscript*yResolution: 72\n", + "\n", + " Then merge these resources into the X server's resource database:\n", + "\n", + " % xrdb -merge ~/.Xresources\n", + "\n", + "SEE ALSO\n", + " The various Ghostscript document files (above), especially Use.htm. On\n", + " Debian you may need to install ghostscript-doc before reading the docu‐\n", + " mentation.\n", + "\n", + "BUGS\n", + " See http://bugs.ghostscript.com/ and the Usenet news group\n", + " comp.lang.postscript.\n", + "\n", + "VERSION\n", + " This document was last revised for Ghostscript version 9.27.\n", + "\n", + "AUTHOR\n", + " Artifex Software, Inc. are the primary maintainers of Ghostscript.\n", + " Russell J. Lang, gsview at ghostgum.com.au, is the author of most of\n", + " the MS Windows code in Ghostscript.\n", + "\n", + "9.27 4 April 2019 GS(1)\n" + ] + } + ], + "source": [ + "!man gs" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "If you read the manual on the man command itself (type man man)... You see it supports different output formats. The -t option outputs in the Postscript language." + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "%!PS-Adobe-3.0\n", + "%%Creator: groff version 1.22.4\n", + "%%CreationDate: Wed Oct 28 20:11:56 2020\n", + "%%DocumentNeededResources: font Times-Roman\n", + "%%+ font Times-Bold\n", + "%%+ font Times-Italic\n", + "%%DocumentSuppliedResources: procset grops 1.22 4\n", + "%%Pages: 6\n", + "%%PageOrder: Ascend\n", + "%%DocumentMedia: Default 595 842 0 () ()\n", + "%%Orientation: Portrait\n", + "%%EndComments\n", + "%%BeginDefaults\n", + "%%PageMedia: Default\n", + "%%EndDefaults\n", + "%%BeginProlog\n", + "%%BeginResource: procset grops 1.22 4\n", + "%!PS-Adobe-3.0 Resource-ProcSet\n", + "/setpacking where{\n", + "pop\n", + "currentpacking\n", + "true setpacking\n", + "}if\n", + "/grops 120 dict dup begin\n", + "/SC 32 def\n", + "/A/show load def\n", + "/B{0 SC 3 -1 roll widthshow}bind def\n", + "/C{0 exch ashow}bind def\n", + "/D{0 exch 0 SC 5 2 roll awidthshow}bind def\n", + "/E{0 rmoveto show}bind def\n", + "/F{0 rmoveto 0 SC 3 -1 roll widthshow}bind def\n", + "/G{0 rmoveto 0 exch ashow}bind def\n", + "/H{0 rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def\n", + "/I{0 exch rmoveto show}bind def\n", + "/J{0 exch rmoveto 0 SC 3 -1 roll widthshow}bind def\n", + "/K{0 exch rmoveto 0 exch ashow}bind def\n", + "/L{0 exch rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def\n", + "/M{rmoveto show}bind def\n", + "/N{rmoveto 0 SC 3 -1 roll widthshow}bind def\n", + "/O{rmoveto 0 exch ashow}bind def\n", + "/P{rmoveto 0 exch 0 SC 5 2 roll awidthshow}bind def\n", + "/Q{moveto show}bind def\n", + "/R{moveto 0 SC 3 -1 roll widthshow}bind def\n", + "/S{moveto 0 exch ashow}bind def\n", + "/T{moveto 0 exch 0 SC 5 2 roll awidthshow}bind def\n", + "/SF{\n", + "findfont exch\n", + "[exch dup 0 exch 0 exch neg 0 0]makefont\n", + "dup setfont\n", + "[exch/setfont cvx]cvx bind def\n", + "}bind def\n", + "/MF{\n", + "findfont\n", + "[5 2 roll\n", + "0 3 1 roll\n", + "neg 0 0]makefont\n", + "dup setfont\n", + "[exch/setfont cvx]cvx bind def\n", + "}bind def\n", + "/level0 0 def\n", + "/RES 0 def\n", + "/PL 0 def\n", + "/LS 0 def\n", + "/MANUAL{\n", + "statusdict begin/manualfeed true store end\n", + "}bind def\n", + "/PLG{\n", + "gsave newpath clippath pathbbox grestore\n", + "exch pop add exch pop\n", + "}bind def\n", + "/BP{\n", + "/level0 save def\n", + "1 setlinecap\n", + "1 setlinejoin\n", + "DEFS/BPhook known{DEFS begin BPhook end}if\n", + "72 RES div dup scale\n", + "LS{\n", + "90 rotate\n", + "}{\n", + "0 PL translate\n", + "}ifelse\n", + "1 -1 scale\n", + "}bind def\n", + "/EP{\n", + "level0 restore\n", + "showpage\n", + "}def\n", + "/DA{\n", + "newpath arcn stroke\n", + "}bind def\n", + "/SN{\n", + "transform\n", + ".25 sub exch .25 sub exch\n", + "round .25 add exch round .25 add exch\n", + "itransform\n", + "}bind def\n", + "/DL{\n", + "SN\n", + "moveto\n", + "SN\n", + "lineto stroke\n", + "}bind def\n", + "/DC{\n", + "newpath 0 360 arc closepath\n", + "}bind def\n", + "/TM matrix def\n", + "/DE{\n", + "TM currentmatrix pop\n", + "translate scale newpath 0 0 .5 0 360 arc closepath\n", + "TM setmatrix\n", + "}bind def\n", + "/RC/rcurveto load def\n", + "/RL/rlineto load def\n", + "/ST/stroke load def\n", + "/MT/moveto load def\n", + "/CL/closepath load def\n", + "/Fr{\n", + "setrgbcolor fill\n", + "}bind def\n", + "/setcmykcolor where{\n", + "pop\n", + "/Fk{\n", + "setcmykcolor fill\n", + "}bind def\n", + "}if\n", + "/Fg{\n", + "setgray fill\n", + "}bind def\n", + "/FL/fill load def\n", + "/LW/setlinewidth load def\n", + "/Cr/setrgbcolor load def\n", + "/setcmykcolor where{\n", + "pop\n", + "/Ck/setcmykcolor load def\n", + "}if\n", + "/Cg/setgray load def\n", + "/RE{\n", + "findfont\n", + "dup maxlength 1 index/FontName known not{1 add}if dict begin\n", + "{\n", + "1 index/FID ne\n", + "2 index/UniqueID ne\n", + "and\n", + "{def}{pop pop}ifelse\n", + "}forall\n", + "/Encoding exch def\n", + "dup/FontName exch def\n", + "currentdict end definefont pop\n", + "}bind def\n", + "/DEFS 0 def\n", + "/EBEGIN{\n", + "moveto\n", + "DEFS begin\n", + "}bind def\n", + "/EEND/end load def\n", + "/CNT 0 def\n", + "/level1 0 def\n", + "/PBEGIN{\n", + "/level1 save def\n", + "translate\n", + "div 3 1 roll div exch scale\n", + "neg exch neg exch translate\n", + "0 setgray\n", + "0 setlinecap\n", + "1 setlinewidth\n", + "0 setlinejoin\n", + "10 setmiterlimit\n", + "[]0 setdash\n", + "/setstrokeadjust where{\n", + "pop\n", + "false setstrokeadjust\n", + "}if\n", + "/setoverprint where{\n", + "pop\n", + "false setoverprint\n", + "}if\n", + "newpath\n", + "/CNT countdictstack def\n", + "userdict begin\n", + "/showpage{}def\n", + "/setpagedevice{}def\n", + "mark\n", + "}bind def\n", + "/PEND{\n", + "cleartomark\n", + "countdictstack CNT sub{end}repeat\n", + "level1 restore\n", + "}bind def\n", + "end def\n", + "/setpacking where{\n", + "pop\n", + "setpacking\n", + "}if\n", + "%%EndResource\n", + "%%EndProlog\n", + "%%BeginSetup\n", + "%%BeginFeature: *PageSize Default\n", + "<< /PageSize [ 595 842 ] /ImagingBBox null >> setpagedevice\n", + "%%EndFeature\n", + "%%IncludeResource: font Times-Roman\n", + "%%IncludeResource: font Times-Bold\n", + "%%IncludeResource: font Times-Italic\n", + "grops begin/DEFS 1 dict def DEFS begin/u{.001 mul}bind def end/RES 72\n", + "def/PL 841.89 def/LS false def/ENC0[/asciicircum/asciitilde/Scaron\n", + "/Zcaron/scaron/zcaron/Ydieresis/trademark/quotesingle/Euro/.notdef\n", + "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n", + "/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef\n", + "/.notdef/.notdef/.notdef/space/exclam/quotedbl/numbersign/dollar/percent\n", + "/ampersand/quoteright/parenleft/parenright/asterisk/plus/comma/hyphen\n", + "/period/slash/zero/one/two/three/four/five/six/seven/eight/nine/colon\n", + "/semicolon/less/equal/greater/question/at/A/B/C/D/E/F/G/H/I/J/K/L/M/N/O\n", + "/P/Q/R/S/T/U/V/W/X/Y/Z/bracketleft/backslash/bracketright/circumflex\n", + "/underscore/quoteleft/a/b/c/d/e/f/g/h/i/j/k/l/m/n/o/p/q/r/s/t/u/v/w/x/y\n", + "/z/braceleft/bar/braceright/tilde/.notdef/quotesinglbase/guillemotleft\n", + "/guillemotright/bullet/florin/fraction/perthousand/dagger/daggerdbl\n", + "/endash/emdash/ff/fi/fl/ffi/ffl/dotlessi/dotlessj/grave/hungarumlaut\n", + "/dotaccent/breve/caron/ring/ogonek/quotedblleft/quotedblright/oe/lslash\n", + "/quotedblbase/OE/Lslash/.notdef/exclamdown/cent/sterling/currency/yen\n", + "/brokenbar/section/dieresis/copyright/ordfeminine/guilsinglleft\n", + "/logicalnot/minus/registered/macron/degree/plusminus/twosuperior\n", + "/threesuperior/acute/mu/paragraph/periodcentered/cedilla/onesuperior\n", + "/ordmasculine/guilsinglright/onequarter/onehalf/threequarters\n", + "/questiondown/Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE\n", + "/Ccedilla/Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex\n", + "/Idieresis/Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis\n", + "/multiply/Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn\n", + "/germandbls/agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla\n", + "/egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis\n", + "/eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide/oslash\n", + "/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis]def\n", + "/Times-Italic@0 ENC0/Times-Italic RE/Times-Bold@0 ENC0/Times-Bold RE\n", + "/Times-Roman@0 ENC0/Times-Roman RE\n", + "%%EndSetup\n", + "%%Page: 1 1\n", + "%%BeginPageSetup\n", + "BP\n", + "%%EndPageSetup\n", + "/F0 10/Times-Roman@0 SF 184.005(GS\\(1\\) Ghostscript GS\\(1\\))72 48 R/F1\n", + "10.95/Times-Bold@0 SF -.219(NA)72 84 S(ME).219 E F0\n", + "(gs \\255 Ghostscript \\(PostScript and PDF language interpreter and pre)\n", + "108 96 Q(vie)-.25 E(wer\\))-.25 E F1(SYNOPSIS)72 112.8 Q/F2 10\n", + "/Times-Bold@0 SF(gs)108 124.8 Q F0([)2.5 E/F3 10/Times-Italic@0 SF\n", + "(options)2.5 E F0 2.5(][)2.5 G F3(\\214les)A F0 2.5(].)2.5 G(..)-2.5 E F1\n", + "(DESCRIPTION)72 141.6 Q F0(The)108 153.6 Q F2(gs)4.175 E F0 1.675\n", + "(command in)4.175 F -.2(vo)-.4 G -.1(ke).2 G(s).1 E F2(Ghostscript)4.175\n", + "E F0 4.175(,a)C 4.175(ni)-4.175 G 1.675(nterpreter of Adobe Systems')\n", + "-4.175 F F2 -.2(Po)4.175 G(stScript).2 E F0 1.675(\\(tm\\) and)B F2 -.2\n", + "(Po)4.175 G(rtable).2 E .875(Document F)108 165.6 R(ormat)-.25 E F0 .875\n", + "(\\(PDF\\) languages.)3.375 F F2(gs)5.875 E F0 .875\n", + "(reads \"\\214les\" in sequence and e)3.375 F -.15(xe)-.15 G .875\n", + "(cutes them as Ghostscript pro-).15 F .071(grams. After doing this, it \\\n", + "reads further input from the standard input stream \\(normally the k)108\n", + "177.6 R -.15(ey)-.1 G .07(board\\), inter).15 F(-)-.2 E .693\n", + "(preting each line separately and output to an output de)108 189.6 R\n", + ".694(vice \\(may be a \\214le or an X11 windo)-.25 F 3.194(wp)-.25 G(re)\n", + "-3.194 E(vie)-.25 E 1.994 -.65(w, s)-.25 H(ee).65 E(belo)108 201.6 Q\n", + ".353(w\\). The interpreter e)-.25 F .352(xits gracefully when it encount\\\n", + "ers the \"quit\" command \\(either in a \\214le or from the)-.15 F -.1(ke)\n", + "108 213.6 S(yboard\\), at end-of-\\214le, or at an interrupt signal \\(suc\\\n", + "h as Control-C at the k)-.05 E -.15(ey)-.1 G(board\\).).15 E .414\n", + "(The interpreter recognizes man)108 230.4 R 2.914(yo)-.15 G .414\n", + "(ption switches, some of which are described belo)-2.914 F 1.714 -.65\n", + "(w. P)-.25 H .414(lease see the usage).65 F .139\n", + "(documentation for complete information. Switches may appear an)108\n", + "242.4 R .138(ywhere in the command line and apply to)-.15 F .188\n", + "(all \\214les thereafter)108 254.4 R 5.188(.I)-.55 G -1.9 -.4(nv o)-5.188\n", + "H .189(king Ghostscript with the).4 F F22.689 E F0(or)2.689 E F2\n", + "2.689 E F0 .189(switch produces a message which sho)2.689 F .189\n", + "(ws se)-.25 F -.15(ve)-.25 G(ral).15 E 1.302\n", + "(useful switches, all the de)108 266.4 R 1.301(vices kno)-.25 F 1.301\n", + "(wn to that e)-.25 F -.15(xe)-.15 G 1.301\n", + "(cutable, and the search path for fonts; on Unix it also).15 F(sho)108\n", + "278.4 Q(ws the location of detailed documentation.)-.25 E .891\n", + "(Ghostscript may be b)108 295.2 R .892(uilt to use man)-.2 F 3.392(yd)\n", + "-.15 G(if)-3.392 E .892(ferent output de)-.25 F 3.392(vices. T)-.25 F\n", + "3.392(os)-.8 G .892(ee which de)-3.392 F .892(vices your e)-.25 F -.15\n", + "(xe)-.15 G .892(cutable in-).15 F(cludes, run \")108 307.2 Q F2(gs -h)A\n", + "F0(\".)A .37(Unless you specify a particular de)108 324 R .37(vice, Ghos\\\n", + "tscript normally opens the \\214rst one of those and directs output)-.25\n", + "F(to it.)108 336 Q .572(If you ha)108 352.8 R .872 -.15(ve i)-.2 H .572\n", + "(nstalled the ghostscript-x Debian package and are under X, the def).15\n", + "F .572(ault de)-.1 F .573(vice is an X11 win-)-.25 F(do)108 364.8 Q\n", + "3.399(w\\()-.25 G(pre)-3.399 E(vie)-.25 E .898\n", + "(wer\\), else ghostscript will use the bbox de)-.25 F .898\n", + "(vice and print on stdout the dimension of the post-)-.25 F\n", + "(script \\214le.)108 376.8 Q\n", + "(So if the \\214rst one in the list is the one you w)108 393.6 Q\n", + "(ant to use, just issue the command)-.1 E(gs my\\214le.ps)144 410.4 Q\n", + "-1.1(Yo)108 427.2 S 2.5(uc)1.1 G(an also check the set of a)-2.5 E -.25\n", + "(va)-.2 G(ilable de).25 E(vices from within Ghostscript: in)-.25 E -.2\n", + "(vo)-.4 G .2 -.1(ke G).2 H(hostscript and type).1 E(de)144 444 Q\n", + "(vicenames ==)-.25 E -.2(bu)108 460.8 S 2.802(tt).2 G .302\n", + "(he \\214rst de)-2.802 F .302\n", + "(vice on the resulting list may not be the def)-.25 F .302(ault de)-.1 F\n", + ".302(vice you determine with \")-.25 F F2 .302(gs -h)B F0 2.802(\". T)B\n", + "2.802(os)-.8 G(pec-)-2.802 E(ify \"AbcXyz\" as the initial output de)108\n", + "472.8 Q(vice, include the switch)-.25 E(\\255sDEVICE=AbcXyz)144 489.6 Q\n", + "-.15(Fo)108 506.4 S 2.5(re).15 G\n", + "(xample, for output to an Epson printer you might use the command)-2.65\n", + "E(gs \\255sDEVICE=epson my\\214le.ps)144 523.2 Q .746(The \"\\255sDEVICE=\" \\\n", + "switch must precede the \\214rst mention of a \\214le to print, and only \\\n", + "the switch')108 540 R 3.245<738c>-.55 G .745(rst use)-3.245 F(has an)108\n", + "552 Q 2.5(ye)-.15 G -.25(ff)-2.5 G(ect.).25 E(Finally)108 568.8 Q 3.452\n", + "(,y)-.65 G .952(ou can specify a def)-3.452 F .953(ault de)-.1 F .953\n", + "(vice in the en)-.25 F .953(vironment v)-.4 F(ariable)-.25 E F2\n", + "(GS_DEVICE)3.453 E F0 5.953(.T)C .953(he order of prece-)-5.953 F .637\n", + "(dence for these alternati)108 580.8 R -.15(ve)-.25 G 3.137(sf).15 G\n", + ".636(rom highest to lo)-3.137 F .636(west \\(Ghostscript uses the de)-.25\n", + "F .636(vice de\\214ned highest in the list\\))-.25 F(is:)108 592.8 Q .473\n", + "(Some de)108 609.6 R .473(vices can support dif)-.25 F .473\n", + "(ferent resolutions \\(densities\\).)-.25 F 2.073 -.8(To s)5.473 H .474\n", + "(pecify the resolution on such a printer).8 F 2.974(,u)-.4 G(se)-2.974 E\n", + "(the \"\\255r\" switch:)108 621.6 Q(gs \\255sDEVICE= \\255rx)-.25 E -.15(Fo)108 655.2 S 2.5(re).15 G\n", + "(xample, on a 9-pin Epson-compatible printer)-2.65 E 2.5(,y)-.4 G\n", + "(ou get the lo)-2.5 E(west-density \\(f)-.25 E(astest\\) mode with)-.1 E\n", + "(gs \\255sDEVICE=epson \\255r60x72)144 672 Q\n", + "(and the highest-density \\(best output quality\\) mode with)108 688.8 Q\n", + "(gs \\255sDEVICE=epson \\255r240x72.)144 705.6 Q .478\n", + "(If you select a printer as the output de)108 722.4 R .478\n", + "(vice, Ghostscript also allo)-.25 F .477\n", + "(ws you to choose where Ghostscript sends)-.25 F 188.445(9.27 4)72 768 R\n", + "(April 2019)2.5 E(1)203.445 E 0 Cg EP\n", + "%%Page: 2 2\n", + "%%BeginPageSetup\n", + "BP\n", + "%%EndPageSetup\n", + "/F0 10/Times-Roman@0 SF 184.005(GS\\(1\\) Ghostscript GS\\(1\\))72 48 R .544\n", + "(the output \\255\\255 on Unix systems, usually to a temporary \\214le.)108\n", + "84 R 2.144 -.8(To s)5.544 H .544\n", + "(end the output to a \\214le \"foo.xyz\", use the).8 F(switch)108 96 Q\n", + "(\\255sOutputFile=foo.xyz)144 112.8 Q -1.1(Yo)108 129.6 S 3.644(um)1.1 G\n", + "1.144(ight w)-3.644 F 1.144(ant to print each page separately)-.1 F\n", + "6.144(.T)-.65 G 3.644(od)-6.944 G 3.644(ot)-3.644 G 1.143\n", + "(his, send the output to a series of \\214les \"foo1.xyz,)-3.644 F(foo2.x\\\n", + "yz, ...\" using the \"\\255sOutputFile=\" switch with \"%d\" in a \\214lename \\\n", + "template:)108 141.6 Q(\\255sOutputFile=foo%d.xyz)144 158.4 Q .004\n", + "(Each resulting \\214le recei)108 175.2 R -.15(ve)-.25 G 2.504(so).15 G\n", + ".005(ne page of output, and the \\214les are numbered in sequence.)-2.504\n", + "F .005(\"%d\" is a printf for)5.005 F(-)-.2 E\n", + "(mat speci\\214cation; you can also use a v)108 187.2 Q(ariant lik)-.25 E\n", + "2.5(e\")-.1 G(%02d\".)-2.5 E -1.1(Yo)108 204 S 3.385(uc)1.1 G .885\n", + "(an also send output to a pipe.)-3.385 F -.15(Fo)5.885 G 3.385(re).15 G\n", + ".885(xample, to pipe output to the \")-3.535 F/F1 10/Times-Bold@0 SF(lpr)\n", + "A F0 3.384(\"c)C .884(ommand \\(which, on man)-3.384 F(y)-.15 E\n", + "(Unix systems, directs it to a printer\\), use the option)108 216 Q\n", + "(\\255sOutputFile=%pipe%lpr)144 232.8 Q -1.1(Yo)108 249.6 S 2.5(uc)1.1 G\n", + "(an also send output to standard output:)-2.5 E(\\255sOutputFile=\\255)144\n", + "266.4 Q(or)108 278.4 Q(\\255sOutputFile=%stdout%)144 290.4 Q .204\n", + "(In this case you must also use the)108 307.2 R F12.704 E F0 .204\n", + "(switch, to pre)2.704 F -.15(ve)-.25 G .205\n", + "(nt Ghostscript from writing messages to standard out-).15 F(put.)108\n", + "319.2 Q 1.6 -.8(To s)108 336 T\n", + "(elect a speci\\214c paper size, use the command line switch).8 E(-sP)144\n", + "352.8 Q(APERSIZE=)-.92 E(for instance)108 369.6 Q(-sP)144\n", + "386.4 Q(APERSIZE=a4)-.92 E(or)108 398.4 Q(-sP)144 410.4 Q(APERSIZE=le)\n", + "-.92 E -.05(ga)-.15 G(l).05 E .362(Most ISO and US paper sizes are reco\\\n", + "gnized. See the usage documentation for a full list, or the de\\214nitio\\\n", + "ns)108 427.2 R(in the initialization \\214le \"gs_statd.ps\".)108 439.2 Q\n", + ".017(Ghostscript can do man)108 456 R 2.517(yt)-.15 G .018\n", + "(hings other than print or vie)-2.517 F 2.518(wP)-.25 G .018\n", + "(ostScript and PDF \\214les.)-2.518 F -.15(Fo)5.018 G 2.518(re).15 G .018\n", + "(xample, if you w)-2.668 F(ant)-.1 E 1.018(to kno)108 468 R 3.517(wt)\n", + "-.25 G 1.017\n", + "(he bounding box of a PostScript \\(or EPS\\) \\214le, Ghostscript pro)\n", + "-3.517 F 1.017(vides a special \"de)-.15 F 1.017(vice\" that just)-.25 F\n", + "(prints out this information.)108 480 Q -.15(Fo)108 496.8 S 2.5(re).15 G\n", + "(xample, using one of the e)-2.65 E(xample \\214les distrib)-.15 E\n", + "(uted with Ghostscript,)-.2 E(gs \\255sDEVICE=bbox golfer)144 513.6 Q\n", + "(.ps)-.55 E(prints out)108 530.4 Q(%%BoundingBox: 0 25 583 732)144 547.2\n", + "Q(%%HiResBoundingBox: 0.808497 25.009496 582.994503 731.809445)144 559.2\n", + "Q/F2 10.95/Times-Bold@0 SF(OPTIONS)72 576 Q F1108 588 Q/F3 10\n", + "/Times-Italic@0 SF(\\214lename ar)2.5 E(g1 ...)-.37 E F0 -.8(Ta)144 600 S\n", + "-.1(ke).8 G 3.349(st).1 G .849(he ne)-3.349 F .849(xt ar)-.15 F .849\n", + "(gument as a \\214le name as usual, b)-.18 F .85(ut tak)-.2 F .85\n", + "(es all remaining ar)-.1 F .85(guments \\(e)-.18 F -.15(ve)-.25 G 3.35\n", + "(ni).15 G 3.35(ft)-3.35 G(he)-3.35 E(y)-.15 E(ha)144 612 Q 1.91 -.15\n", + "(ve t)-.2 H 1.609(he syntactic form of switches\\) and de\\214nes the nam\\\n", + "e \"ARGUMENTS\" in \"userdict\" \\(not).15 F .318\n", + "(\"systemdict\"\\) as an array of those strings,)144 624 R F1(bef)2.819 E\n", + "(or)-.25 E(e)-.18 E F0 .319(running the \\214le.)2.819 F .319\n", + "(When Ghostscript \\214nishes e)5.319 F -.15(xe)-.15 G(-).15 E\n", + "(cuting the \\214le, it e)144 636 Q(xits back to the shell.)-.15 E F1\n", + "108 652.8 Q F3(name).36 E F1(=).18 E F3(tok).13 E(en)-.1 E F1\n", + "108 664.8 Q F3(name).36 E F1(=).18 E F3(tok).13 E(en)-.1 E F0 .366\n", + "(De\\214ne a name in \"systemdict\" with the gi)144 676.8 R -.15(ve)-.25 G\n", + "2.866(nd).15 G 2.866(e\\214nition. The)-2.866 F(tok)2.866 E .365\n", + "(en must be e)-.1 F .365(xactly one tok)-.15 F .365(en \\(as)-.1 F\n", + "(de\\214ned by the \"tok)144 688.8 Q\n", + "(en\" operator\\) and may contain no whitespace.)-.1 E F1108 705.6 Q\n", + "F3(name).36 E F0 188.445(9.27 4)72 768 R(April 2019)2.5 E(2)203.445 E 0\n", + "Cg EP\n", + "%%Page: 3 3\n", + "%%BeginPageSetup\n", + "BP\n", + "%%EndPageSetup\n", + "/F0 10/Times-Roman@0 SF 184.005(GS\\(1\\) Ghostscript GS\\(1\\))72 48 R/F1\n", + "10/Times-Bold@0 SF108 84 Q/F2 10/Times-Italic@0 SF(name).36 E F0\n", + "(De\\214ne a name in \"systemdict\" with v)144 96 Q(alue=null.)-.25 E F1\n", + "108 112.8 Q F2(name).36 E F1(=).18 E F2(string).34 E F1108\n", + "124.8 Q F2(name).36 E F1(=).18 E F2(string).34 E F0 .444\n", + "(De\\214ne a name in \"systemdict\" with a gi)144 136.8 R -.15(ve)-.25 G\n", + "2.944(ns).15 G .444(tring as v)-2.944 F 2.944(alue. This)-.25 F .444\n", + "(is dif)2.944 F .444(ferent from)-.25 F F12.944 E F0 5.445(.F)C\n", + ".445(or e)-5.595 F(xam-)-.15 E(ple,)144 148.8 Q F1(\\255dname=35)2.5 E F0\n", + "(is equi)2.5 E -.25(va)-.25 G(lent to the program fragment).25 E\n", + "(/name 35 def)180 160.8 Q(whereas)144 172.8 Q F1(\\255sname=35)2.5 E F0\n", + "(is equi)2.5 E -.25(va)-.25 G(lent to).25 E(/name \\(35\\) def)180 184.8 Q\n", + "F1108 201.6 Q F0(Mak)144 201.6 Q .157(es Ghostscript to look \\214\\\n", + "rst in the current directory for library \\214les.)-.1 F .156(By def)\n", + "5.156 F .156(ault, Ghostscript no)-.1 F .523\n", + "(longer looks in the current directory)144 213.6 R 3.023(,u)-.65 G .523\n", + "(nless, of course, the \\214rst e)-3.023 F .524\n", + "(xplicitly supplied directory is \".\")-.15 F(in)144 225.6 Q F1(-I)3.314 E\n", + "F0 5.813(.S)C .813(ee also the)-5.813 F F1(INITIALIZA)3.313 E .813\n", + "(TION FILES)-.95 F F0 .813(section belo)3.313 F 2.113 -.65(w, a)-.25 H\n", + ".813(nd b).65 F(undled)-.2 E F1(Use.htm)3.313 E F0 .813(for detailed)\n", + "3.313 F(discussion on search paths and ho)144 237.6 Q 2.5(wG)-.25 G\n", + "(hostcript \\214nds \\214les.)-2.5 E F1108 254.4 Q F0\n", + "(Quiet startup: suppress normal startup messages, and also do the equi)\n", + "144 254.4 Q -.25(va)-.25 G(lent of).25 E F1(\\255dQ)2.5 E(UIET)-.1 E F0\n", + "(.)A F1108 271.2 Q F2(number1).36 E F1(x)A F2(number2).36 E F0\n", + "(Equi)144 283.2 Q -.25(va)-.25 G 1.915(lent to).25 F F1\n", + "(\\255dDEVICEWIDTH=)4.415 E F2(number1)A F0(and)4.416 E F1\n", + "(\\255dDEVICEHEIGHT=)4.416 E F2(number2)A F0 6.916(.T)C 1.916(his is for)\n", + "-6.916 F .353(the bene\\214t of de)144 295.2 R .353\n", + "(vices \\(such as X11 windo)-.25 F .352(ws\\) that require \\(or allo)-.25\n", + "F .352(w\\) width and height to be speci-)-.25 F(\\214ed.)144 307.2 Q F1\n", + "108 324 Q F2(number).36 E F1108 336 Q F2(number1).36 E F1(x)\n", + "A F2(number2).36 E F0(Equi)144 348 Q -.25(va)-.25 G 1.337(lent to).25 F\n", + "F1(\\255dDEVICEXRESOLUTION=)3.837 E F2(number1)A F0(and)3.838 E F1\n", + "(\\255dDEVICEYRESOLUTION=)3.838 E F2(num-)A(ber2)144 360 Q F0 5.338(.T)C\n", + ".337(his is for the bene\\214t of de)-5.338 F .337\n", + "(vices such as printers that support multiple X and Y resolutions.)-.25\n", + "F(If only one number is gi)144 372 Q -.15(ve)-.25 G\n", + "(n, it is used for both X and Y resolutions.).15 E F1108 388.8 Q\n", + "F2(dir).35 E(ectories)-.37 E F0(Adds the designated list of directories\\\n", + " at the head of the search path for library \\214les.)144 400.8 Q F1\n", + "108 417.6 Q F0 .268(This is not really a switch, b)144 417.6 R .268(ut \\\n", + "indicates to Ghostscript that standard input is coming from a \\214le or)\n", + "-.2 F 2.763(ap)144 429.6 S .263(ipe and not interacti)-2.763 F -.15(ve)\n", + "-.25 G .263(ly from the command line.).15 F .262\n", + "(Ghostscript reads from standard input until it)5.263 F .988\n", + "(reaches end-of-\\214le, e)144 441.6 R -.15(xe)-.15 G .988(cuting it lik)\n", + ".15 F 3.488(ea)-.1 G 1.288 -.15(ny o)-3.488 H .989\n", + "(ther \\214le, and then continues with processing the com-).15 F .345\n", + "(mand line.)144 453.6 R .345\n", + "(When the command line has been entirely processed, Ghostscript e)5.345\n", + "F .345(xits rather than go-)-.15 F(ing into its interacti)144 465.6 Q .3\n", + "-.15(ve m)-.25 H(ode.).15 E 1.074\n", + "(Note that the normal initialization \\214le \"gs_init.ps\" mak)108 482.4 R\n", + "1.074(es \"systemdict\" read-only)-.1 F 3.574(,s)-.65 G 3.575(ot)-3.574 G\n", + "1.075(he v)-3.575 F 1.075(alues of names)-.25 F .601(de\\214ned with)108\n", + "494.4 R F13.101 E F0(,)A F13.101 E F0(,)A F13.101 E F0\n", + "3.101(,o)C(r)-3.101 E F13.101 E F0 .601\n", + "(cannot be changed \\(although, of course, the)3.101 F 3.1(yc)-.15 G .6\n", + "(an be superseded by de\\214ni-)-3.1 F\n", + "(tions in \"userdict\" or other dictionaries.\\))108 506.4 Q/F3 10.95\n", + "/Times-Bold@0 SF(SPECIAL N)72 523.2 Q(AMES)-.219 E F1(\\255dNOCA)108\n", + "535.2 Q(CHE)-.55 E F0(Disables character caching.)144 547.2 Q\n", + "(Useful only for deb)5 E(ugging.)-.2 E F1(\\255dNOBIND)108 564 Q F0\n", + "(Disables the \"bind\" operator)144 576 Q 5(.U)-.55 G(seful only for deb)\n", + "-5 E(ugging.)-.2 E F1(\\255dNODISPLA)108 592.8 Q(Y)-1 E F0\n", + "(Suppresses the normal initialization of the output de)144 604.8 Q 2.5\n", + "(vice. This)-.25 F(may be useful when deb)2.5 E(ugging.)-.2 E F1\n", + "(\\255dNOP)108 621.6 Q -.5(AU)-.74 G(SE).5 E F0 1.144\n", + "(Disables the prompt and pause at the end of each page.)144 633.6 R\n", + "1.144(This may be desirable for applications)6.144 F\n", + "(where another program is dri)144 645.6 Q(ving Ghostscript.)-.25 E F1\n", + "(\\255dNOPLA)108 662.4 Q(TFONTS)-.95 E F0 .187(Disables the use of fonts\\\n", + " supplied by the underlying platform \\(for instance X W)144 674.4 R\n", + "(indo)-.4 E .187(ws\\). This may)-.25 F\n", + "(be needed if the platform fonts look undesirably dif)144 686.4 Q\n", + "(ferent from the scalable fonts.)-.25 E F1(\\255dSAFER)108 703.2 Q F0\n", + "1.913(Restricts \\214le operations the job can perform.)144 715.2 R 1.914\n", + "(Strongly recommended for spoolers, con)6.914 F -.15(ve)-.4 G(rsion).15\n", + "E 1.728(scripts or other sensiti)144 727.2 R 2.028 -.15(ve e)-.25 H -.4\n", + "(nv).15 G 1.727\n", + "(ironments where a badly written or malicious PostScript program).4 F\n", + "188.445(9.27 4)72 768 R(April 2019)2.5 E(3)203.445 E 0 Cg EP\n", + "%%Page: 4 4\n", + "%%BeginPageSetup\n", + "BP\n", + "%%EndPageSetup\n", + "/F0 10/Times-Roman@0 SF 184.005(GS\\(1\\) Ghostscript GS\\(1\\))72 48 R\n", + "(code must be pre)144 84 Q -.15(ve)-.25 G\n", + "(nted from changing important \\214les.).15 E/F1 10/Times-Bold@0 SF\n", + "(\\255dWRITESYSTEMDICT)108 100.8 Q F0(Lea)144 112.8 Q -.15(ve)-.2 G 4.336\n", + "(s\").15 G 1.836(systemdict\" writable.)-4.336 F 1.837\n", + "(This is necessary when running special utility programs, b)6.836 F\n", + "1.837(ut is)-.2 F(strongly discouraged as it bypasses normal Postscript\\\n", + " security measures.)144 124.8 Q F1(\\255sDEVICE=)108 141.6 Q/F2 10\n", + "/Times-Italic@0 SF(de).35 E(vice)-.15 E F0\n", + "(Selects an alternate initial output de)144 153.6 Q\n", + "(vice, as described abo)-.25 E -.15(ve)-.15 G(.).15 E F1\n", + "(\\255sOutputFile=)108 170.4 Q F2(\\214lename)1.91 E F0(Selects an altern\\\n", + "ate output \\214le \\(or pipe\\) for the initial output de)144 182.4 Q\n", + "(vice, as described abo)-.25 E -.15(ve)-.15 G(.).15 E/F3 10.95\n", + "/Times-Bold@0 SF(SAFER MODE)72 199.2 Q F0(The)108 211.2 Q F1(\\255dSAFER)\n", + "4.261 E F0 1.761(option disables the \"delete\\214le\" and \"rename\\214le\" \\\n", + "operators and prohibits opening piped)4.261 F .067(commands \\(\"%pipe%)\n", + "108 223.2 R F2(cmd)A F0 .067(\"\\). Only \"%stdout\" and \"%stderr\" can be o\\\n", + "pened for writing. It also disables read-)B 1.023(ing from \\214les, e)\n", + "108 235.2 R 1.023(xcept for \"%stdin\", \\214les gi)-.15 F -.15(ve)-.25 G\n", + "3.523(na).15 G 3.523(sac)-3.523 G 1.023(ommand line ar)-3.523 F 1.023\n", + "(gument, and \\214les contained in paths)-.18 F(gi)108 247.2 Q -.15(ve)\n", + "-.25 G 2.906(nb).15 G 2.906(yL)-2.906 G(IBP)-2.906 E -1.11(AT)-.92 G\n", + "2.906(Ha)1.11 G .406(nd FONTP)-2.906 F -1.11(AT)-.92 G 2.906(Ho)1.11 G\n", + "2.906(rs)-2.906 G .406(peci\\214ed by the system params /F)-2.906 F .407\n", + "(ontResourceDir and /GenericRe-)-.15 F(sourceDir)108 259.2 Q(.)-.55 E\n", + "1.168(This mode also sets the .LockSafetyP)108 276 R 1.167\n", + "(arams parameter of the initial output de)-.15 F 1.167\n", + "(vice to protect ag)-.25 F 1.167(ainst pro-)-.05 F 1.54\n", + "(grams that attempt to write to \\214les using the OutputFile de)108 288\n", + "R 1.541(vice parameter)-.25 F 4.041(.S)-.55 G 1.541(ince the de)-4.041 F\n", + "1.541(vice parameters)-.25 F 1.715(speci\\214ed on the command line, inc\\\n", + "luding OutputFile, are set prior to SAFER mode, use of \"-sOutput-)108\n", + "300 R(File=...\" on the command line is unrestricted.)108 312 Q 2.288\n", + "(SAFER mode pre)108 328.8 R -.15(ve)-.25 G 2.289\n", + "(nts changing the /GenericResourceDir).15 F 4.789(,/)-.4 G -.15(Fo)\n", + "-4.789 G(ntResourceDir).15 E 4.789(,/)-.4 G(SystemP)-4.789 E(aramsP)-.15\n", + "E(assw)-.15 E(ord,)-.1 E(and /StartJobP)108 340.8 Q(assw)-.15 E(ord.)-.1\n", + "E .134(While SAFER mode is not the def)108 357.6 R .134\n", + "(ault, it is the def)-.1 F .134(ault for man)-.1 F 2.634(yw)-.15 G .134\n", + "(rapper scripts such as ps2pdf and may be)-2.634 F .535(the def)108\n", + "369.6 R .536(ault in a subsequent release of Ghostscript.)-.1 F .536\n", + "(Thus when running programs that need to open \\214les or)5.536 F .849\n", + "(set restricted parameters you should pass the)108 381.6 R F1\n", + "(\\255dNOSAFER)3.349 E F0 .848(command line option or its synon)3.349 F\n", + "(ym)-.15 E F1(\\255dDE-)3.348 E(LA)108 393.6 Q(YSAFER)-1 E F0(.)A .071\n", + "(When running with)108 410.4 R F1(\\255dNOSAFER)2.571 E F0 .071\n", + "(it is possible to perform a \"sa)2.571 F -.15(ve)-.2 G 2.571(\"f).15 G\n", + "(ollo)-2.571 E .071(wed by \".setsafe\", e)-.25 F -.15(xe)-.15 G .072\n", + "(cute a \\214le or).15 F .841(procedure in SAFER mode, and then use \"res\\\n", + "tore\" to return to NOSAFER mode.)108 422.4 R .841(In order to pre)5.841\n", + "F -.15(ve)-.25 G .841(nt the).15 F(sa)108 434.4 Q .671 -.15(ve o)-.2 H\n", + ".372(bject from being restored by the foreign \\214le or procedure, the \\\n", + "\".runandhide\" operator should be used).15 F(to hide the sa)108 446.4 Q\n", + ".3 -.15(ve o)-.2 H(bject from the restricted procedure.).15 E F3(FILES)\n", + "72 463.2 Q F0 .229(The locations of man)108 475.2 R 2.729(yG)-.15 G .228\n", + "(hostscript run-time \\214les are compiled into the e)-2.729 F -.15(xe)\n", + "-.15 G .228(cutable when it is b).15 F 2.728(uilt. Run)-.2 F(\")2.728 E\n", + "F1(gs)A(-h)108 487.2 Q F0 2.624(\"t)C 2.624<6f8c>-2.624 G .125(nd the lo\\\n", + "cation of Ghostscript documentation on your system, from which you can \\\n", + "get more details.)-2.624 F(On a Debian system the)108 499.2 Q 2.5(ya)\n", + "-.15 G(re in)-2.5 E F1(/usr)2.5 E F0(.)A F1(/usr/shar)108 516 Q\n", + "(e/ghostscript/[0-9]*.[0.9]*/*)-.18 E F0(Startup \\214les, utilities, an\\\n", + "d basic font de\\214nitions \\(where [0-9]*.[0.9]* is the ghostscript v)\n", + "144 528 Q(ersion\\))-.15 E F1(/usr/shar)108 544.8 Q(e/f)-.18 E\n", + "(onts/type1/gsf)-.25 E(onts/*)-.25 E F0\n", + "(More font de\\214nitions from the gsfonts package)144 556.8 Q F1\n", + "(/usr/shar)108 573.6 Q(e/doc/ghostscript/examples/*)-.18 E F0(Ghostscri\\\n", + "pt demonstration \\214les \\(if ghostscript-doc package is installed\\))144\n", + "585.6 Q F1(/usr/shar)108 602.4 Q(e/doc/ghostscript/*)-.18 E F0(Di)144\n", + "614.4 Q -.15(ve)-.25 G\n", + "(rse document \\214les \\(may need to install ghostscript-doc package\\))\n", + ".15 E F3(INITIALIZA)72 631.2 Q(TION FILES)-1.04 E F0 .001(When looking \\\n", + "for the initialization \\214les \"gs_*.ps\", the \\214les related to fonts,\\\n", + " or the \\214le for the \"run\" operator)108 643.2 R(,)-.4 E .543\n", + "(Ghostscript \\214rst tries to open the \\214le with the name as gi)108\n", + "655.2 R -.15(ve)-.25 G .543(n, using the current w).15 F .544\n", + "(orking directory if no di-)-.1 F 1.196(rectory is speci\\214ed.)108\n", + "667.2 R 1.196(If this f)6.196 F 1.196(ails, and the \\214le name doesn')\n", + "-.1 F 3.695(ts)-.18 G 1.195(pecify an e)-3.695 F 1.195\n", + "(xplicit directory or dri)-.15 F 1.495 -.15(ve \\()-.25 H 1.195(for in-)\n", + ".15 F(stance, doesn')108 679.2 Q 2.5(tc)-.18 G(ontain \"/\" on Unix syste\\\n", + "ms\\), Ghostscript tries directories in this order:)-2.5 E(1.)108 696 Q\n", + "(the directories speci\\214ed by the)128 696 Q F12.5 E F0\n", + "(switches in the command line \\(see belo)2.5 E(w\\), if an)-.25 E(y;)-.15\n", + "E(2.)108 712.8 Q(the directories speci\\214ed by the)128 712.8 Q F1\n", + "(GS_LIB)2.5 E F0(en)2.5 E(vironment v)-.4 E(ariable, if an)-.25 E(y;)\n", + "-.15 E 188.445(9.27 4)72 768 R(April 2019)2.5 E(4)203.445 E 0 Cg EP\n", + "%%Page: 5 5\n", + "%%BeginPageSetup\n", + "BP\n", + "%%EndPageSetup\n", + "/F0 10/Times-Roman@0 SF 184.005(GS\\(1\\) Ghostscript GS\\(1\\))72 48 R(3.)\n", + "108 84 Q .387(the directories speci\\214ed by the)128 84 R/F1 10\n", + "/Times-Bold@0 SF(GS_LIB_DEF)2.888 E -.5(AU)-.9 G -.92(LT).5 G F0 .388\n", + "(macro in the Ghostscript mak)3.808 F .388(e\\214le when the e)-.1 F -.15\n", + "(xe)-.15 G(-).15 E .844(cutable w)128 96 R .844(as b)-.1 F(uilt.)-.2 E\n", + "F1(GS_LIB_DEF)5.844 E -.5(AU)-.9 G -.92(LT).5 G F0 .843\n", + "(is \"/usr/share/ghostscript/[0-9]*.[0-9]*/lib\" on a Debian sys-)4.263 F\n", + "(tem where \"[0-9]*.[0-9]*\" represents the Ghostscript v)128 108 Q\n", + "(ersion number)-.15 E .437(Each of these \\()108 124.8 R F1(GS_LIB_DEF)A\n", + "-.5(AU)-.9 G -.92(LT).5 G F0(,).92 E F1(GS_LIB)2.937 E F0 2.937(,a)C(nd)\n", + "-2.937 E F12.937 E F0 .438\n", + "(parameter\\) may be either a single directory or a list)2.937 F\n", + "(of directories separated by \":\".)108 136.8 Q/F2 10.95/Times-Bold@0 SF\n", + "(ENVIR)72 153.6 Q(ONMENT)-.329 E F1(GS_OPTIONS)108 165.6 Q F0\n", + "(String of options to be processed before the command line options)144\n", + "177.6 Q F1(GS_DEVICE)108 194.4 Q F0(Used to specify an output de)144\n", + "206.4 Q(vice)-.25 E F1(GS_FONTP)108 223.2 Q -.95(AT)-.74 G(H).95 E F0\n", + "-.15(Pa)144 235.2 S(th names used to search for fonts).15 E F1(GS_LIB)\n", + "108 252 Q F0 -.15(Pa)144 264 S\n", + "(th names for initialization \\214les and fonts).15 E F1(TEMP)108 280.8 Q\n", + "F0(Where temporary \\214les are made)144 280.8 Q F2 2.738(XR)72 297.6 S\n", + "(ESOURCES)-2.738 E F0 .376\n", + "(Ghostscript, or more properly the X11 display de)108 309.6 R .375\n", + "(vice, looks for the follo)-.25 F .375(wing resources under the program)\n", + "-.25 F(name \"Ghostscript\":)108 321.6 Q F1(borderW)108 338.4 Q(idth)-.18\n", + "E F0(The border width in pix)144 350.4 Q(els \\(def)-.15 E(ault = 1\\).)\n", + "-.1 E F1(borderColor)108 367.2 Q F0(The name of the border color \\(def)\n", + "144 379.2 Q(ault = black\\).)-.1 E F1(geometry)108 396 Q F0(The windo)144\n", + "408 Q 2.5(ws)-.25 G(ize and placement, WxH+X+Y \\(def)-2.5 E\n", + "(ault is NULL\\).)-.1 E F1(xResolution)108 424.8 Q F0 .932\n", + "(The number of x pix)144 436.8 R .932(els per inch \\(def)-.15 F .932\n", + "(ault is computed from)-.1 F F1 -.18(Wi)3.433 G(dthOfScr).18 E(een)-.18\n", + "E F0(and)3.433 E F1 -.18(Wi)3.433 G(dthMMOf-).18 E(Scr)144 448.8 Q(een)\n", + "-.18 E F0(\\).)A F1(yResolution)108 465.6 Q F0 .65(The number of y pix)\n", + "144 477.6 R .649(els per inch \\(def)-.15 F .649(ault is computed from)\n", + "-.1 F F1(HeightOfScr)3.149 E(een)-.18 E F0(and)3.149 E F1(HeightMMOf-)\n", + "3.149 E(Scr)144 489.6 Q(een)-.18 E F0(\\).)A F1(useBackingPixmap)108\n", + "506.4 Q F0(Determines whether backing store is to be used for sa)144\n", + "518.4 Q(ving display windo)-.2 E 2.5(w\\()-.25 G(def)-2.5 E\n", + "(ault = true\\).)-.1 E .327\n", + "(See the usage document for a more complete list of resources.)108 535.2\n", + "R 1.927 -.8(To s)5.327 H .327(et these resources on Unix, put them in).8\n", + "F 2.5<618c>108 547.2 S(le such as \"~/.Xresources\" in the follo)-2.5 E\n", + "(wing form:)-.25 E 16.34(Ghostscript*geometry: 612x792\\2550+0)144 564 R\n", + "(Ghostscript*xResolution: 72)144 576 Q(Ghostscript*yResolution: 72)144\n", + "588 Q(Then mer)108 604.8 Q(ge these resources into the X serv)-.18 E\n", + "(er')-.15 E 2.5(sr)-.55 G(esource database:)-2.5 E 2.5(%x)144 621.6 S\n", + "(rdb \\255mer)-2.5 E(ge ~/.Xresources)-.18 E F2(SEE ALSO)72 638.4 Q F0\n", + ".901(The v)108 650.4 R .901(arious Ghostscript document \\214les \\(abo)\n", + "-.25 F -.15(ve)-.15 G .901(\\), especially).15 F F1(Use.htm)3.401 E F0\n", + "5.901(.O)C 3.401(nD)-5.901 G .9(ebian you may need to install)-3.401 F\n", + "(ghostscript-doc before reading the documentation.)108 662.4 Q F2 -.11\n", + "(BU)72 679.2 S(GS).11 E F0(See http://b)108 691.2 Q\n", + "(ugs.ghostscript.com/ and the Usenet ne)-.2 E\n", + "(ws group comp.lang.postscript.)-.25 E 188.445(9.27 4)72 768 R\n", + "(April 2019)2.5 E(5)203.445 E 0 Cg EP\n", + "%%Page: 6 6\n", + "%%BeginPageSetup\n", + "BP\n", + "%%EndPageSetup\n", + "/F0 10/Times-Roman@0 SF 184.005(GS\\(1\\) Ghostscript GS\\(1\\))72 48 R/F1\n", + "10.95/Times-Bold@0 SF(VERSION)72 84 Q F0(This document w)108 96 Q\n", + "(as last re)-.1 E(vised for Ghostscript v)-.25 E(ersion 9.27.)-.15 E F1\n", + "-.548(AU)72 112.8 S(THOR).548 E F0(Artife)108 124.8 Q 4.865(xS)-.15 G\n", + "(oftw)-4.865 E 2.366\n", + "(are, Inc. are the primary maintainers of Ghostscript.)-.1 F 2.366\n", + "(Russell J. Lang, gsvie)7.366 F 4.866(wa)-.25 G 4.866(tg)-4.866 G(host-)\n", + "-4.866 E(gum.com.au, is the author of most of the MS W)108 136.8 Q(indo)\n", + "-.4 E(ws code in Ghostscript.)-.25 E 188.445(9.27 4)72 768 R(April 2019)\n", + "2.5 E(6)203.445 E 0 Cg EP\n", + "%%Trailer\n", + "end\n", + "%%EOF\n" + ] + } + ], + "source": [ + "!man -t gs" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Not very pretty, luckily we have **ghostscript** which is the basis of many smaller commands, such as one to convert postscript to pdf. The command is called **ps2pdf**. When can connect the two commands together in so called **pipeline** with the **|** character -- which is called the *pipe* because of this usage." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "First let's make a folder for our manuals" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "!mkdir -p man" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now let's run man gs and pipe the output to ps2pdf, saving in the file [man/gs.pdf](man/gs.pdf)." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "!man -t gs | ps2pdf - man/gs.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## A PDF Toolkit\n", + "\n", + "* python: ReportLab (more for *generation* not pre-existing PDF)\n", + "* [gs](gs.pdf)\n", + "* [ps2pdf](ps2pdf.pdf), [pdf2ps](pdf2ps.pdf)\n", + "* [psnup](psnup.pdf), and [poster](poster.pdf)/[pdfposter](pdfposter.pdf)\n", + "* [pstops](pstops.pdf)\n", + "* [pdfunite](pdfunite.pdf), [pdfseparate](pdfseparate.pdf)\n", + "* pdftk\n", + "* python: [pikepdf](https://github.com/pikepdf/pikepdf) *active project* with [docs](https://pikepdf.readthedocs.io/en/latest/index.html) and a fish logo\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Some links that were used in developing some of this notebook:\n", + "\n", + "* https://www.novell.com/documentation/suse91/suselinux-adminguide/html/ch06s08.html\n", + "* https://wiki.scribus.net/canvas/How_to_make_impositions_with_pstops\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Make some **man**-uals with **ps2pdf**" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "!man -t psnup | ps2pdf - man/psnup.pdf\n", + "!man -t pstops | ps2pdf - man/pstops.pdf\n", + "!man -t ps2pdf | ps2pdf - man/ps2pdf.pdf\n", + "!man -t pdf2ps | ps2pdf - man/pdf2ps.pdf\n", + "!man -t pdftk | ps2pdf - man/pdftk.pdf\n", + "!man -t pdfposter | ps2pdf - man/pdfposter.pdf\n", + "!man -t poster | ps2pdf - man/poster.pdf" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# NB These tools are often part of other packages of tools, for instanced:\n", + "# apt install ghostscript psutils pdfposter" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Read the label with **pdfinfo**\n", + "PDFs have useful info like number of pages and the (default) page size, but also can contain various *metadata* like Title, Keywords, and Author, and the \"Producer\" which often indicates what software was used to make the file." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Title: \n", + "Keywords: \n", + "Author: \n", + "Producer: cairo 1.16.0 (https://cairographics.org)\n", + "CreationDate: Wed Oct 28 19:43:01 2020 CET\n", + "Tagged: no\n", + "UserProperties: no\n", + "Suspects: no\n", + "Form: none\n", + "JavaScript: no\n", + "Pages: 4\n", + "Encrypted: no\n", + "Page size: 595 x 841 pts\n", + "Page rot: 0\n", + "File size: 57323 bytes\n", + "Optimized: no\n", + "PDF version: 1.5\n" + ] + } + ], + "source": [ + "!pdfinfo txt/language.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Back to the Future with **pdf2ps**\n", + "Many of the commands discussed here have their origins in the 1990s and were written to work with Postscript. Luckily there's also a **pdf2ps** command to go from PDF to Postscript. This command outputs (unless otherwise told) in a file with the same name but extension .ps\n" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "!pdf2ps txt/language.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "[language.ps](language.ps)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## **psnup** saves trees" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] [2] Wrote 2 pages, 481771 bytes\n" + ] + } + ], + "source": [ + "!psnup -2 language.ps psnup.ps" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "To look at it, run the ps2pdf..." + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DEBUG: FC_WEIGHT didn't match\n" + ] + } + ], + "source": [ + "!ps2pdf psnup.ps psnup.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "AND LOOK HERE: [psnup.pdf](psnup.pdf)" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] [2] Wrote 2 pages, 481777 bytes\n" + ] + } + ], + "source": [ + "!psnup -2 -p a3 -s a3 language.ps psnup.ps" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Repeat the steps above to see it (make sure you close the PDF to reload it).\n", + "\n", + "The -c option lays out in column order (instead of rows). Check out the [manual](man/psnup.pdf)." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] Wrote 1 pages, 485929 bytes\n" + ] + } + ], + "source": [ + "!psnup -16 -c language.ps psnup.ps" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] Wrote 1 pages, 485997 bytes\n" + ] + } + ], + "source": [ + "!psnup -16 -c -p a0 language.ps psnup.ps" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## **pdftk** is another PDF toolkit\n", + "This command can do many things. Let's use it to extract a page" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pdftk A=txt/language.pdf cat A1 output 1.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Scale (among other things) with the multi-faceted **pstops**" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[1] [2] [3] [4] Wrote 4 pages, 481656 bytes\n", + "[1] [2] [3] [4] Wrote 4 pages, 481656 bytes\n" + ] + } + ], + "source": [ + "!pdf2ps txt/language.pdf 1.ps\n", + "# Scale up A4 to A2, A0\n", + "!pstops \"0@2.0\" -pa2 1.ps 1.output.ps\n", + "!pstops \"0@4.0\" -pa0 1.ps 1.a0.ps" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "NB: When subsequently using **ps2pdf** on a resized postscript file, you should explictly specify the output paper size:" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "DEBUG: FC_WEIGHT didn't match\n" + ] + } + ], + "source": [ + "!ps2pdf -sPAPERSIZE=a0 1.a0.ps 1.a0.pdf" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Creator: GPL Ghostscript 927 (ps2write)\n", + "Producer: GPL Ghostscript 9.27\n", + "CreationDate: Wed Oct 28 21:23:58 2020 CET\n", + "ModDate: Wed Oct 28 21:23:58 2020 CET\n", + "Tagged: no\n", + "UserProperties: no\n", + "Suspects: no\n", + "Form: none\n", + "JavaScript: no\n", + "Pages: 4\n", + "Encrypted: no\n", + "Page size: 2384 x 3370 pts (A0)\n", + "Page rot: 0\n", + "File size: 63970 bytes\n", + "Optimized: no\n", + "PDF version: 1.4\n" + ] + } + ], + "source": [ + "!pdfinfo 1.a0.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## From pdf to ps and back again with a **pipeline sandwich**\n", + "You might say, what a drag that pstops only scales postscript files and not PDF, well just wrap it in a Pipeline sandwich..." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "!pdf2ps 1.pdf - | pstops \"0@4.0\" -pa2 | ps2pdf -sPAPERSIZE=a0 - 1.a0.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Make a blank PDF with **python** and reportlab.pdfgen.canvas" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from reportlab.pdfgen.canvas import Canvas\n", + "from reportlab.lib.pagesizes import A4\n", + "c = Canvas(\"blanka4.pdf\", pagesize=A4, bottomup=0)\n", + "c.showPage()\n", + "c.save()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tile and zoom with **poster**" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "From the [poster](msn/poster.pdf) manual:\n", + "\n", + ">*Poster* can be used to create a large poster by building it from multiple pages and/or printing it on large me-dia. Itexpects as input a generic (encapsulated) postscript file, normally printing on a single page.Theoutput is again a postscript file, maybe containing multiple pages together building the poster.The outputpages bear cutmarks and have slightly overlapping images for easier assembling. The input picture will bescaled to obtain the desired size" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Using default whitemargin of 0\n", + "Deciding for 4 columns and 4 rows of portrait pages.\n", + "Deciding for a scale factor of 4\n", + "print page 1\n", + "DEBUG: FC_WEIGHT didn't match\n", + "print page 2\n", + "print page 3\n", + "print page 4\n", + "print page 5\n", + "print page 6\n", + "print page 7\n", + "print page 8\n", + "print page 9\n", + "print page 10\n", + "print page 11\n", + "print page 12\n", + "print page 13\n", + "print page 14\n", + "print page 15\n", + "print page 16\n", + "print page 17\n", + "print page 18\n", + "print page 19\n", + "print page 20\n", + "print page 21\n", + "print page 22\n", + "print page 23\n", + "print page 24\n", + "print page 25\n", + "print page 26\n", + "print page 27\n", + "print page 28\n", + "print page 29\n", + "print page 30\n", + "print page 31\n", + "print page 32\n", + "print page 33\n", + "print page 34\n", + "print page 35\n", + "print page 36\n", + "print page 37\n", + "print page 38\n", + "print page 39\n", + "print page 40\n", + "print page 41\n", + "print page 42\n", + "print page 43\n", + "print page 44\n", + "print page 45\n", + "print page 46\n", + "print page 47\n", + "print page 48\n", + "print page 49\n", + "print page 50\n", + "print page 51\n", + "print page 52\n", + "print page 53\n", + "print page 54\n", + "print page 55\n", + "print page 56\n", + "print page 57\n", + "print page 58\n", + "print page 59\n", + "print page 60\n", + "print page 61\n", + "print page 62\n", + "print page 63\n", + "print page 64\n" + ] + } + ], + "source": [ + "#!poster -mA3 -pA0 1.ps | ps2pdf - > poster.poster.pdf\n", + "!poster -v -c0 -iA4 -mA4 -pA0 1.ps | ps2pdf - > poster.poster.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The newer [pdfposter](man/pdfposter.pdf) works directly with PDF files, and has slightly different options.\n", + "\n", + "For example to prints an A4 input file on 8 A3 pages, forming an A0 poster:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [], + "source": [ + "!pdfposter -mA3 -pA0 1.a0.pdf pdfposter.pdf" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## **Puzzle**: Combine tools to make a poster with different elements\n", + "![](https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/15-Puzzle.jpg/330px-15-Puzzle.jpg)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/pdf-toolkit/language.ps b/pdf-toolkit/language.ps new file mode 100644 index 0000000..4384c25 --- /dev/null +++ b/pdf-toolkit/language.ps @@ -0,0 +1,30129 @@ +%!PS-Adobe-3.0 +%%BoundingBox: 0 0 595 841 +%%HiResBoundingBox: 0 0 595.00 841.00 +%%Creator: GPL Ghostscript 927 (ps2write) +%%LanguageLevel: 2 +%%CreationDate: D:20201028211641+01'00' +%%Pages: 4 +%%EndComments +%%BeginProlog +/DSC_OPDFREAD true def +/SetPageSize true def +/EPS2Write false def +currentdict/DSC_OPDFREAD known{ +currentdict/DSC_OPDFREAD get +}{ +false +}ifelse +10 dict begin +/DSC_OPDFREAD exch def +/this currentdict def +/y 720 def +/ebuf 200 string def +/prnt{ +36//this/y get moveto//ebuf cvs show +//this/y 2 copy get 12 sub put +}bind def +/newline{ +36//this/y get moveto +//this/y 2 copy get 12 sub put +}bind def +errordict/handleerror +{systemdict begin +$error begin +newerror +{(%%[ Error handled by opdfread.ps : )print errorname//ebuf cvs print(; OffendingCommand: ) +print/command load//ebuf cvs print( ]%%)= flush +/newerror false store vmstatus pop pop 0 ne +{grestoreall +}if +errorname(VMerror)ne +{showpage +}if +initgraphics +0 720 moveto +errorname(VMerror)eq +{//this/ehsave known +{clear//this/ehsave get restore 2 vmreclaim +}if +vmstatus exch pop exch pop +} +/Courier 12 selectfont +{ +(ERROR: )//prnt exec errorname//prnt exec +(OFFENDING COMMAND: )//prnt exec +/command load//prnt exec +$error/ostack known{ +(%%[STACK:)= +(STACK:)//prnt exec +$error/ostack get aload length{ +//newline exec +dup mark eq{ +(-mark-)dup = show +}{ +dup type/nametype eq{ +dup xcheck not{ +(/)show +(/)print +}if +}if +dup =//ebuf cvs show +}ifelse +}repeat +}if +}ifelse +(%%]%)= +//systemdict/showpage get exec +quit +}if +end +end +}bind readonly put +end +50 dict begin +/DefaultSwitch +{ +dup where{ +pop pop +}{ +false def +}ifelse +}bind def +/=string 256 string def +/=only{ +//=string cvs print +}bind def +/HexDigits(0123456789ABCDEF)readonly def +/PrintHex +{8{ +dup -28 bitshift 15 and//HexDigits exch 1 getinterval//=only exec +4 bitshift +}repeat +pop +}bind def +/PDFR_DEBUG DefaultSwitch +/PDFR_DUMP DefaultSwitch +/PDFR_STREAM DefaultSwitch +/TTFDEBUG DefaultSwitch +/RotatePages DefaultSwitch +/FitPages DefaultSwitch +/CenterPages DefaultSwitch +/SetPageSize DefaultSwitch +/error +{ +counttomark 1 sub -1 0{ +index dup type/arraytype eq{==}{=only}ifelse +}for +()= +cleartomark +....Undefined +}bind def +//SetPageSize{ +//RotatePages//FitPages or//CenterPages or{ +mark(/RotatePages, /FitPages and CenterPages are not allowed with /SetPageSize)//error exec +}if +} +{ +//FitPages//CenterPages and{ +mark(CenterPages is not allowed with /FitPages)//error exec +}if +} +ifelse +/knownget +{ +2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/IsUpper +{dup(A)0 get ge exch(Z)0 get le and +}bind def +/cpa2g{ +dup length array +0 1 2 index length 1 sub{ +dup 3 index exch get cp2g +3 copy put pop pop +}for +exch pop +}bind def +/cpd2g{ +dup length dict exch{ +cp2g 2 index 3 1 roll put +}forall +}bind def +/cps2g{ +dup length string copy +}bind def +/cp2gprocs +<> +def +/cp2g{ +dup gcheck not{ +dup//cp2gprocs 1 index type +2 copy known{ +get currentglobal 3 1 roll true setglobal exec exch setglobal +1 index wcheck not{readonly}if +1 index xcheck{cvx}if +exch pop +}{ +pop pop +}ifelse +}if +}bind def +/BlockBuffer 65535 string def +/PDFReader currentdict def +/ObjectRegistryMaxLength 50000 def +/ObjectRegistry 10 dict def +ObjectRegistry +begin +0 ObjectRegistryMaxLength dict def +end +/CurrentObject null def +/DoneDocumentStructure false def +/GraphicState 20 dict begin +/InitialTextMatrix matrix def +/InitialMatrix matrix currentmatrix def +currentdict end def +/TempMatrix matrix def +/GraphicStateStack 20 array def +/GraphicStateStackPointer 0 def +/InitialTextMatrixStack 20 array def +/InitialTextMatrixStackPointer 0 def +/PDFColorSpaces 50 dict def +/InstalledFonts 50 dict def +/MacRomanEncodingInverse null def +currentglobal false setglobal +userdict/PDFR_InitialGS gstate put +userdict/PDFR_Patterns 50 dict put +userdict/FuncDataReader 10 dict put +setglobal +/InitialExtGState 20 dict begin +/BG2 currentblackgeneration cp2g def +/UCR2 currentundercolorremoval cp2g def +/TR2 currentglobal false setglobal[currentcolortransfer]exch setglobal cp2g def +/HT currenthalftone cp2g def +currentdict end readonly def +/InitialGraphicState 20 dict begin +/FontSize 0 def +/CharacterSpacing 0 def +/TextLeading 0 def +/TextRenderingMode 0 def +/WordSpacing 0 def +currentdict end readonly def +/SimpleColorSpaceNames 15 dict begin +/DeviceGray true def +/DeviceRGB true def +/DeviceCMYK true def +currentdict end readonly def +/1_24_bitshift_1_sub 1 24 bitshift 1 sub def +/ReadFontProcs 10 dict def +/GetObject +{ +dup ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get exch knownget{ +exch knownget +}{ +pop false +}ifelse +}bind def +/PutObject +{ +1 index ObjectRegistryMaxLength idiv +//PDFReader/ObjectRegistry get 1 index knownget{ +exch pop +3 1 roll put +}{ +//PDFReader/ObjectRegistry get dup +begin +1 index ObjectRegistryMaxLength dict def +end +exch get +3 1 roll put +}ifelse +}bind def +/Register +{ +1 index GetObject{ +dup xcheck{ +4 3 roll pop +//PDFR_DEBUG{ +(Have a daemon for )print 2 index == +}if +exec +}{ +dup null ne{ +mark(The object )4 index(is already defined : )4 index//error exec +}{ +pop +}ifelse +3 2 roll +exec +}ifelse +}{ +3 2 roll +exec +}ifelse +PutObject +}bind def +/IsRegistered +{ +GetObject{ +null ne +}{ +false +}ifelse +}bind def +/GetRegistered +{ +dup GetObject not{ +exch mark exch(Object )exch( isn't defined before needed (1).)//error exec +}if +dup xcheck{ +exch mark exch(Object )exch( isn't defined before needed (2).)//error exec +}{ +dup null eq{ +exch mark exch(Object )exch( isn't defined before needed (3).)//error exec +}if +exch pop +}ifelse +}bind def +/StandardFontNames<< +/Times-Roman true +/Helvetica true +/Courier true +/Symbol true +/Times-Bold true +/Helvetica-Bold true +/Courier-Bold true +/ZapfDingbats true +/Times-Italic true +/Helvetica-Oblique true +/Courier-Oblique true +/Times-BoldItalic true +/Helvetica-BoldOblique true +/Courier-BoldOblique true +>>def +/CleanAllResources +{//PDFR_DEBUG{ +(CleanAllResources beg)= +}if +//PDFReader/ObjectRegistry get{ +dup length 0 exch 1 exch 1 sub{ +2 copy get dup xcheck{ +pop pop +}{ +dup null eq{ +pop pop +}{ +dup type/dicttype eq{/.Global known}{pop false}ifelse{ +pop +}{ +//PDFR_DEBUG{ +(Dropping )print dup = +}if +1 index exch/DroppedObject put +}ifelse +}ifelse +}ifelse +}for +pop +}forall +FontDirectory length dict begin +FontDirectory{ +pop +dup//StandardFontNames exch known not{ +dup null def +}if +pop +}forall +currentdict +end{ +pop +//PDFR_DEBUG{ +(Undefining font )print dup = +}if +undefinefont +}forall +//PDFR_DEBUG{ +(CleanAllResources end)= +}if +}bind def +/PrintReference +{ +//PDFR_DEBUG{ +({ )print +dup{ +=only( )print +}forall +( })= +}if +}bind def +/R +{ +0 ne{ +exch mark exch(A referred object generation )exch( isn't 0.)//error exec +}if +[ +exch//GetRegistered/exec load +]cvx +//PrintReference exec +}bind def +/IsObjRef +{ +dup type/arraytype eq{ +dup length 3 eq{ +dup xcheck exch +dup 0 get type/integertype eq 3 2 roll and exch +dup 1 get//GetRegistered eq 3 2 roll and exch +2 get/exec load eq and +}{ +pop false +}ifelse +}{ +pop false +}ifelse +}bind def +/DoNothing +{ +}def +/RunTypeDaemon +{ +dup type/dicttype eq{ +dup/Type//knownget exec{ +//PDFReader/TypeDaemons get exch +//knownget exec{ +exec +}if +}if +}if +}bind def +/obj +{ +//PDFR_DEBUG{ +(Defining )print 1 index =only( )print dup =only( obj)= +}if +0 ne{ +exch mark exch(An object generation )exch( isn't 0.)//error exec +}if +}bind def +/endobj +{ +//PDFR_DEBUG{ +(endobj )= +}if +count 1 eq{ +pop +}{ +dup type/dicttype eq{ +dup/.endobj_daemon//knownget exec{ +//PDFR_DEBUG{(.endobj_daemon for )print 2 index =}if +exec +}if +}if +dup type/dicttype eq{dup/ImmediateExec known}{false}ifelse{ +pop pop +}{ +//PDFR_DEBUG{ +(Storing )print 1 index = +}if +//RunTypeDaemon exec +//DoNothing 3 1 roll//Register exec +}ifelse +}ifelse +}bind def +/StoreBlock +{ +//PDFR_DEBUG{ +(StoreBlock )print//PDFReader/BlockCount get =only(, Length = )print dup length = +}if +dup length string copy +//PDFReader/BlockCount get exch +//PDFReader/CurrentObject get 3 1 roll +put +//PDFReader/BlockCount get 1 add +//PDFReader exch/BlockCount exch put +}bind def +/CheckLength +{dup type/integertype ne{ +mark(Object length isn't an integer.)//error exec +}if +}bind def +/ResolveD +{ +3 copy pop get +dup//IsObjRef exec{ +//PDFR_DEBUG{ +(Resolving )print//PrintReference exec +}if +exec +exch exec +}{ +exch pop +}ifelse +dup 4 1 roll +put +}bind def +/ResolveA +{2 index 2 index get +dup//IsObjRef exec{ +exec +exch exec +3 copy put +}{ +exch pop +}ifelse +exch pop exch pop +}bind def +/StoreStream +{ +dup//PDFReader exch/CurrentObject exch put +//PDFReader/BlockCount 0 put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(StoreStream Length = )print dup = +}if +currentfile exch()/SubFileDecode filter +{dup//BlockBuffer readstring{ +//StoreBlock exec +}{ +//StoreBlock exec +exit +}ifelse +}loop +pop +//PDFReader/CurrentObject null put +//PDFR_DEBUG{ +(StoreStream end.)= +}if +}bind def +/MakeStreamDumper +{ +//PDFR_DEBUG{ +(MakeStreamDumper beg.)= +}if +currentglobal exch dup gcheck setglobal +[exch +1 dict dup/c 0 put exch +1024 string +{readstring pop +(StreamDumper )print 1 index/c get =string cvs print( )print +dup length =string cvs print( <)print dup print(>\n)print +dup length +3 2 roll +dup/c get +3 2 roll +add/c exch put +}/exec load +] +cvx 0()/SubFileDecode filter +exch setglobal +//PDFR_DEBUG{ +(MakeStreamDumper end.)= +}if +}bind def +/ShortFilterNames 15 dict begin +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/AppendFilters +{ +//PDFR_DEBUG{ +(AppendFilters beg.)= +}if +dup 3 1 roll +/Filter//knownget exec{ +dup type/nametype eq{ +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +2 index/DecodeParms//knownget exec{ +exch +}if +filter +}{ +dup 0 exch 1 exch length 1 sub{ +2 copy get +dup//ShortFilterNames exch//knownget exec{ +exch pop +}if +3 1 roll +4 index/DecodeParms//knownget exec{ +exch get +}{ +pop null +}ifelse +dup null eq{ +pop 3 1 roll filter exch +}{ +3 1 roll +4 1 roll filter exch +}ifelse +}for +pop +}ifelse +//PDFR_DEBUG//PDFR_DUMP and{ +//MakeStreamDumper exec +}if +}if +exch pop +//PDFR_DEBUG{ +(AppendFilters end.)= +}if +}bind def +/ExecuteStream +{ +dup//PDFReader exch/CurrentObject exch put +dup/Length//CheckLength//ResolveD exec +//PDFR_DEBUG{ +(ExecuteStream id = )print 2 index =only( Length = )print dup = +}if +//PDFReader/InitialGraphicState get +//PDFReader/GraphicState get copy pop +//PDFReader/Operators get begin +currentfile exch()/SubFileDecode filter +1 index//AppendFilters exec +cvx mark exch +exec +counttomark 0 ne{ +mark(Data left on ostack after an immediate stream execution.)//error exec +}if +cleartomark +end +//PDFR_DEBUG{ +(ExecuteStream end.)= +}if +//PDFReader/CurrentObject null put +dup/IsPage known{ +dup/Context get/NumCopies//knownget exec{ +1 sub{ +copypage +}repeat +}if +EPS2Write not{showpage}if +pagesave restore +}if +}bind def +/stream +{ +//PDFR_DEBUG{ +1 index =only( stream)= +}if +1 index GetObject{ +dup xcheck{ +exec +1 index null PutObject +}{ +pop +}ifelse +}if +dup/ImmediateExec known{ +dup/GlobalExec//knownget exec{ +currentglobal 4 1 roll +setglobal +//ExecuteStream exec +3 2 roll setglobal +}{ +//ExecuteStream exec +}ifelse +}{ +//StoreStream exec +}ifelse +dup/.CleanResources//knownget exec{ +/All eq{ +//CleanAllResources exec +}if +}if +}bind def +/HookFont +{ +//PDFR_DEBUG{ +(Loaded the font )print dup/FontName get = +}if +{ +dup/FontFileType get dup/Type1 eq exch/MMType1 eq or{ +dup/FontName get +//PDFReader/RemoveFontNamePrefix get exec +findfont +exit +}if +dup/FontFileType get/TrueType eq{ +//PDFReader/MakeType42 get exec +//PDFR_DEBUG{ +(Font dict <<)= +dup{ +1 index/sfnts eq{ +exch pop +(/sfnts [)print +{ +(-string\()print length//=only exec(\)- )= +}forall +(])= +}{ +exch//=only exec( )print == +}ifelse +}forall +(>>)= +}if +dup/FontName get exch definefont +exit +}if +mark(FontHook has no proc for )2 index/FontFileType get//error exec +}loop +/Font exch put +}bind def +/endstream +{ +}bind def +/xref +{ +//PDFR_DEBUG{ +(xref)= +//PDFR_DUMP{ +//PDFReader/ObjectRegistry get == +}if +}if +end +count 0 ne{ +mark(Excessive data on estack at the end of the interpretation.)//error exec +}if +currentfile 1(%%EOF)/SubFileDecode filter +flushfile +cleardictstack +}bind def +/ResolveDict +{dup{ +pop 1 index exch +//DoNothing//ResolveD exec +pop +}forall +pop +}bind def +/SetupPageView +{ +//PDFR_DEBUG{ +(SetupPageView beg)= +}if +//DSC_OPDFREAD not{ +//GraphicState/InitialMatrix get setmatrix +}if +/MediaBox get aload pop +3 index neg 3 index neg translate +3 -1 roll sub 3 1 roll exch sub exch +userdict/.HWMargins//knownget exec{ +aload pop +}{ +currentpagedevice/.HWMargins//knownget exec{ +aload pop +}{ +0 0 0 0 +}ifelse +}ifelse +currentpagedevice/PageSize get aload pop +3 -1 roll sub 3 1 roll exch sub exch +exch 3 index sub exch 3 index sub +//SetPageSize{ +//PDFR_DEBUG{ +(Setting page size to )print 1 index//=only exec( )print dup = +}if +pop pop 3 index 3 index 2 copy +currentglobal false setglobal 3 1 roll +currentpagedevice dup/PageSize known{ +/PageSize get aload pop +}{ +0 0 +}ifelse +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(PageSize matches request)== flush}if +pop pop +}{ +/MediaRequested where{ +//PDFR_DEBUG{(MediaRequested is true, check against new request)== flush}if +/MediaRequested get aload pop +round cvi 2 index round cvi eq +exch round cvi 3 index round cvi eq and +{ +//PDFR_DEBUG{(MediaRequested same as current request, ignore)== flush}if +pop pop false +}{ +//PDFR_DEBUG{(MediaRequested different to current request)== flush}if +true +}ifelse +}{ +//PDFR_DEBUG{(No MediaRequested yet)== flush}if +true +}ifelse +{ +//PDFR_DEBUG{(Setting pagesize)== flush}if +2 array astore +dup/MediaRequested exch def +<< exch/PageSize exch >>setpagedevice +}if +}ifelse +userdict/PDFR_InitialGS gstate put +setglobal +}if +//RotatePages{ +2 copy gt 6 index 6 index gt ne{ +1 index 5 index le 1 index 5 index le and not +}{ +false +}ifelse +}{ +false +}ifelse +{//CenterPages{ +//PDFR_DEBUG{ +(Rotating page, and then centering it)== +}if +90 rotate +0 5 index neg translate +5 index 1 index exch sub 2 div +2 index 6 index sub 2 div neg +translate +}{ +//FitPages{ +1 index 5 index div 1 index 7 index div +2 copy gt{ +exch +}if +pop dup scale +}if +90 rotate +0 5 index neg translate +}ifelse +}{ +//CenterPages{ +//PDFR_DEBUG{ +(Ccentering page)== +}if +1 index 6 index sub 2 div +1 index 6 index sub 2 div +translate +}{ +//FitPages{ +1 index 6 index div 1 index 6 index div +2 copy gt{ +exch +}if +pop dup scale +}if +}ifelse +}ifelse +pop pop +translate +pop pop +//PDFR_DEBUG{ +(SetupPageView end)= +}if +}bind def +/PageContentsDaemon +{ +//PDFR_DEBUG{ +(Executing PageContentsDaemon for )print 2 index = +}if +1 index exch/Context exch put +dup/ImmediateExec true put +dup/IsPage true put +SetPageSize{dup/Context get//SetupPageView exec}if +/pagesave save def +}bind def +/FontFileDaemon +{ +//PDFR_DEBUG{ +(Executing FontFileDaemon for )print 2 index = +}if +dup/FontFileType get +2 index exch +dup//ReadFontProcs exch//knownget exec{ +exch pop exec +}{ +mark(FontFile reader for )2 index( isn't implemented yet.)//error exec +}ifelse +//PDFR_DEBUG{ +(FontFileDaemon end)= +}if +pop +}bind def +/FontDescriptorDaemon +{ +//PDFR_DEBUG{ +(Executing FontDescriptorDaemon for )print 2 index = +}if +2 copy/FontResource exch put +/Subtype get 1 index exch/FontFileType exch put +}bind def +/UnPDFEscape{ +dup dup length string cvs +dup(#)search{ +{ +pop +(16#--)2 index 0 2 getinterval +1 index 3 2 getinterval copy pop +cvi +0 exch put +0 +1 index 2 1 index length 2 sub getinterval +3 copy putinterval +length +3 copy exch put +getinterval +(#)search not{ +pop exit +}if +}loop +(\0)search pop exch pop exch pop +cvn +exch pop +}{ +pop pop +}ifelse +}bind def +/TypeDaemons<< +/Page +{//PDFR_DEBUG{ +(Recognized a page.)= +}if +dup/Contents//knownget exec{ +0 get//DoNothing exch +[ +3 index//PageContentsDaemon/exec load +]cvx +//Register exec +}{ +(fixme: page with no Contents won't be printed.)= +}ifelse +}bind +/FontDescriptor +{//PDFR_DEBUG{ +(Recognized a font descriptor.)= +}if +dup/FontName//knownget exec{ +1 index/FontName 3 -1 roll//UnPDFEscape exec put +}if +dup dup/FontFile known{/FontFile}{/FontFile2}ifelse +//knownget exec{ +0 get//DoNothing exch +[ +3 index//FontFileDaemon/exec load +]cvx +//Register exec +}{ +(Font descriptor )print 1 index =only( has no FontFile.)= +}ifelse +}bind +/Font +{//PDFR_DEBUG{ +(Recognized a font resource.)= +}if +dup/BaseFont//knownget exec{ +//UnPDFEscape exec 2 copy/BaseFont exch put +//PDFReader/RemoveFontNamePrefix get exec +currentglobal exch +dup/Font resourcestatus{ +pop pop +//PDFReader/GetInstalledFont get exec pop +}{ +pop +}ifelse +setglobal +}if +dup/FontDescriptor//knownget exec{ +0 get +dup//IsRegistered exec{ +//PDFR_DEBUG{ +(already registered )print dup = +}if +pop +}{ +//DoNothing exch +[ +3 index//FontDescriptorDaemon/exec load +]cvx +//Register exec +}ifelse +}if +}bind +>>def +/MakeStreamReader +{dup +[ +exch +//PDFR_DEBUG{ +(Stream proc ) +/print load +//PDFR_STREAM{ +(<) +/print load +}if +}if +1 dict dup/i -1 put +/dup load +/i +/get load +1 +/add load +/dup load +3 +1 +/roll load +/i +/exch load +/put load +//knownget +/exec load +/not load +{()} +/if load +//PDFR_DEBUG{ +//PDFR_STREAM{ +/dup load +/print load +(>) +/print load +}if +( end of stream proc.\n) +/print load +}if +]cvx +//PDFR_DEBUG{ +(Stream reader )print dup == +}if +0()/SubFileDecode filter +exch//AppendFilters exec +}bind def +/RunDelayedStream +{ +//GraphicState/InitialTextMatrix get +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get +2 copy get null eq{ +2 copy currentglobal true setglobal matrix exch setglobal put +}if +get copy pop +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 add put +//MakeStreamReader exec +mark exch +cvx exec +counttomark 0 ne{ +mark(Data left on ostack after a delayed stream execution.)//error exec +}if +cleartomark +//PDFReader/InitialTextMatrixStackPointer 2 copy get 1 sub put +//InitialTextMatrixStack//PDFReader/InitialTextMatrixStackPointer get get +//GraphicState/InitialTextMatrix get +copy pop +}bind def +//ReadFontProcs begin +/Type1 +{//PDFR_DEBUG{ +(ReadFontProcs.Type1)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +dup/ImmediateExec true put +/GlobalExec true put +}bind def +/MMType1//Type1 def +/TrueType +{//PDFR_DEBUG{ +(ReadFontProcs.TrueType)= +}if +dup/.endobj_daemon[4 index//HookFont/exec load]cvx put +pop +}bind def +end +/.opdloadttfontdict 50 dict def +.opdloadttfontdict begin +/maxstring 65400 def +end +/.InsertionSort +{ +/CompareProc exch def +/Array exch def +1 1 Array length 1 sub +{ +/Ix exch def +/Value1 Array Ix get def +/Jx Ix 1 sub def +{ +Jx 0 lt{ +exit +}if +/Value2 Array Jx get def +Value1 Value2 CompareProc{ +exit +}if +Array Jx 1 add Value2 put +/Jx Jx 1 sub def +}loop +Array Jx 1 add Value1 put +}for +Array +}bind def +/putu16{ +3 copy -8 bitshift put +exch 1 add exch 16#ff and put +}bind def +/putu32{ +3 copy -16 bitshift putu16 +exch 2 add exch 16#ffff and putu16 +}bind def +/.readtable{ +dup dup 1 and add string +dup 0 4 -1 roll getinterval +3 -1 roll exch +dup()ne{readstring}if pop pop +}bind def +/.readbigtable{ +dup maxstring lt{ +.readtable +}{ +currentuserparams/VMReclaim get -2 vmreclaim +[4 2 roll{ +dup maxstring le{exit}if +1 index maxstring string readstring pop 3 1 roll maxstring sub +}loop .readtable] +exch vmreclaim +}ifelse +}bind def +/ReadTTF +{ +.opdloadttfontdict begin +/TTFontFile exch def +/TableDir TTFontFile 12 string readstring pop def +/tables TTFontFile TableDir 4 getu16 16 mul string readstring pop def +/tabarray tables length 16 idiv array def +TableDir 0 4 getinterval(ttcf)eq{ +QUIET not{(Can't handle TrueType font Collections.)=}if +/.loadttfonttables cvx/invalidfont signalerror +}{ +0 16 tables length 1 sub{ +dup +tables exch 16 getinterval +exch 16 div cvi exch +tabarray 3 1 roll put +}for +}ifelse +tabarray{exch 8 getu32 exch 8 getu32 gt}.InsertionSort pop +/Read TableDir length tables length add def +/tabs[ +tabarray{ +dup 8 getu32 +Read sub +dup 0 gt{ +dup string TTFontFile exch readstring pop pop +Read add/Read exch def +}{ +pop +}ifelse +12 getu32 +dup Read add +/Read exch def +TTFontFile exch .readbigtable +}forall +]def +end +}bind def +/GetLocaType +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(head)eq{ +tabs exch get +50 gets16 +/LocaType exch def +exit +}{ +pop +}ifelse +}for +}bind def +/GetNumGlyphs +{ +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(maxp)eq{ +tabs exch get +4 getu16 +/NumGlyphs exch def +exit +}{ +pop +}ifelse +}for +}bind def +/StringToLoca +{ +/LocaIndex exch def +/StringOffset 0 def +{ +dup length StringOffset gt{ +dup +LocaType 1 eq{ +StringOffset getu32 +LocaArray LocaIndex 3 -1 roll put +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 4 add +def +}{ +StringOffset getu16 2 mul +LocaArray length LocaIndex gt{ +LocaArray LocaIndex 3 -1 roll put +}{ +pop +}ifelse +/LocaIndex LocaIndex 1 add def +/StringOffset StringOffset 2 add +def +}ifelse +}{ +pop +LocaIndex +exit +}ifelse +}loop +}bind def +/GetSortedLoca +{ +NumGlyphs 1 add array/LocaArray exch def +0 1 tabarray length 1 sub{ +dup tabarray exch get +0 4 getinterval(loca)eq{ +tabs exch get +exit +}{ +pop +}ifelse +}for +dup type/stringtype eq{ +0 StringToLoca pop +}{ +0 exch +{ +exch StringToLoca +}forall +pop +}ifelse +LocaArray{gt}.InsertionSort pop +}bind def +/GetWorkingString +{ +WorkString 0 +GlyfArray GlyfStringIndex get +putinterval +/WorkBytes GlyfArray GlyfStringIndex get length def +/GlyfStringIndex GlyfStringIndex 1 add def +}bind def +/GetWorkingBytes +{ +/BytesToRead exch def +WorkString 0 BytesToRead getinterval +dup length string copy +WorkString BytesToRead WorkBytes BytesToRead sub getinterval +dup length string copy +WorkString 0 3 -1 roll putinterval +/WorkBytes WorkBytes BytesToRead sub def +}bind def +/GetGlyfBytes +{ +/ToRead exch def +WorkBytes 0 eq{ +GetWorkingString +}if +WorkBytes ToRead ge{ +ToRead string dup 0 +ToRead GetWorkingBytes putinterval +}{ +ToRead string +dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +ToRead WorkBytes sub +GetWorkingString +GetWorkingBytes +putinterval +}ifelse +}bind def +/SplitGlyf +{ +/GlyfArray exch def +/DestArray GlyfArray length 2 mul array def +/DestArrayIndex 0 def +/LastLoca 0 def +/NextLocaIndex 0 def +/LastLocaIndex 0 def +/GlyfStringIndex 0 def +/WorkString maxstring string def +/WorkBytes 0 def +{ +LocaArray NextLocaIndex get +LastLoca sub maxstring gt +{ +LocaArray LastLocaIndex get LastLoca sub +GetGlyfBytes +DestArray DestArrayIndex 3 -1 roll put +/DestArrayIndex DestArrayIndex 1 add def +LocaArray LastLocaIndex get/LastLoca exch def +}{ +/LastLocaIndex NextLocaIndex def +/NextLocaIndex NextLocaIndex 1 add def +NextLocaIndex NumGlyphs gt +{ +WorkBytes +GlyfStringIndex GlyfArray length lt{ +GlyfArray GlyfStringIndex get length +add string dup +0 +WorkString 0 WorkBytes getinterval +putinterval +dup +WorkBytes +GetWorkingString +WorkString 0 WorkBytes getinterval +putinterval +}{ +pop +WorkString 0 WorkBytes getinterval +}ifelse +dup length string copy +DestArray DestArrayIndex 3 -1 roll put +exit +}if +}ifelse +}loop +DestArray +}bind def +/ProcessTTData +{ +.opdloadttfontdict begin +0 1 tabarray length 1 sub{ +/ix exch def +tabarray ix get +12 getu32 dup maxstring le{ +dup 4 mod 0 ne{ +4 div cvi 1 add 4 mul string/newstring exch def +/oldstring tabs ix get def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix newstring put +}{ +pop +}ifelse +}{ +dup 4 mod 0 ne{ +dup maxstring idiv maxstring mul sub +4 idiv 1 add 4 mul string/newstring exch def +tabs ix get +dup length 1 sub dup/iy exch def get/oldstring exch def +newstring 0 oldstring putinterval +0 1 newstring length oldstring length sub 1 sub{ +newstring exch oldstring length add 0 put +}for +tabs ix get iy newstring put +}{ +pop +}ifelse +}ifelse +}for +0 1 tabarray length 1 sub{ +dup tabarray exch get +dup 12 getu32 maxstring gt{ +0 4 getinterval dup(glyf)eq{ +pop +GetLocaType +GetNumGlyphs +GetSortedLoca +dup tabs exch get +SplitGlyf +tabs 3 1 roll put +}{ +(Warning, table )print print( > 64Kb\n)print +pop +}ifelse +}{ +pop +pop +}ifelse +}for +end +}bind def +/Makesfnts +{ +.opdloadttfontdict begin +0 +tabs{ +dup type/stringtype eq{ +pop +1 add +}{ +{ +type/stringtype eq{ +1 add +}if +}forall +}ifelse +}forall +1 add +/TTOffset +TableDir length +tabarray length 16 mul add +def +0 +tabarray{ +exch dup 1 add +3 1 roll +dup +tabs exch get +dup type/stringtype eq{ +length +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}{ +0 exch +{ +dup type/stringtype eq{ +length add +}{ +pop +}ifelse +}forall +2 index exch +TTOffset +dup 3 1 roll add +/TTOffset exch def +8 exch putu32 +exch tabarray 3 1 roll +put +}ifelse +}forall +pop +array +dup 0 +TableDir length +tables length add +string +dup 0 TableDir putinterval +dup 12 tables putinterval +put +dup +/ix 1 def +tabs{ +dup type/stringtype eq{ +ix exch +put dup +/ix ix 1 add def +}{ +{ +dup type/stringtype eq{ +ix exch put dup +/ix ix 1 add def +}{ +pop +}ifelse +}forall +}ifelse +}forall +pop +end +}bind def +/MakeType42 +{ +//PDFR_DEBUG{ +(MakeType42 beg)= +}if +10 dict begin +/FontName 1 index/FontName get def +/FontType 42 def +/FontMatrix[1 0 0 1 0 0]def +/FontBBox 1 index/FontBBox get def +dup/FontResource get +dup/Encoding known{ +//PDFReader/ObtainEncoding get exec +/Encoding get +}{ +pop null +}ifelse +/PDFEncoding exch def +/CharStrings 2 index//PDFReader/MakeTTCharStrings get exec def +/sfnts 2 index//MakeStreamReader exec +ReadTTF +ProcessTTData +Makesfnts +def +/Encoding StandardEncoding def +/PaintType 0 def +currentdict end +//PDFR_DEBUG{ +(MakeType42 end)= +}if +}bind def +/GetInstalledFont +{ +dup//InstalledFonts exch knownget{ +exch pop +}{ +dup findfont dup 3 1 roll +//InstalledFonts 3 1 roll put +}ifelse +}bind def +/RemoveFontNamePrefix +{//=string cvs true +0 1 5{ +2 index exch get//IsUpper exec not{ +pop false exit +}if +}for +{(+)search{ +pop pop +}if +}if +cvn +}bind def +/CheckFont +{dup/Type get/Font ne{ +mark(Resource )3 index( must have /Type/Font .)//error exec +}if +}bind def +/CheckEncoding +{dup type/nametype ne{ +dup/Type get/Encoding ne{ +mark(Resource )3 index( must have /Type/Encoding .)//error exec +}if +}if +}bind def +/ObtainEncoding +{dup/Encoding known{ +dup dup/Encoding//CheckEncoding//ResolveD exec +dup type dup/arraytype eq exch/packedarraytype eq or{ +pop pop +}{ +dup type/nametype eq{ +/Encoding findresource +}{ +dup/BaseEncoding//knownget exec not{ +/StandardEncoding +}if +/Encoding findresource +exch +/Differences//knownget exec{ +exch dup length array copy exch +0 exch +{ +dup type/integertype eq{ +exch pop +}{ +3 copy put pop +1 add +}ifelse +}forall +pop +}if +}ifelse +/Encoding exch put +}ifelse +}{ +dup/Encoding/StandardEncoding/Encoding findresource put +}ifelse +}bind def +/ObtainMetrics +{dup/Widths//knownget exec{ +1 index/Encoding get +256 dict +3 index/Subtype get/TrueType eq{ +1000 +}{ +1 +}ifelse +4 index/MissingWidth//knownget exec not{ +0 +}if +5 index/FirstChar//knownget exec not{ +0 +}if +6 5 roll +dup 0 exch 1 exch length 1 sub{ +2 copy get +exch 3 index add +7 index exch get +dup dup null ne exch/.notdef ne and{ +6 index 3 1 roll exch +6 index div +3 copy pop//knownget exec{ +0 eq +}{ +true +}ifelse +{put +}{ +pop pop pop +}ifelse +}{ +pop pop +}ifelse +}for +pop pop pop pop exch pop +1 index exch/Metrics exch put +}{ +dup/MissingWidth//knownget exec{ +256 dict +2 index/Encoding get{ +dup null ne{ +3 copy 3 2 roll put +}if +pop +}forall +exch pop +1 index exch/Metrics exch put +}if +}ifelse +}bind def +/NotDef +{ +FontMatrix aload pop pop pop exch pop exch pop +1 exch div exch +1 exch div exch +1 index 0 setcharwidth +0 setlinewidth +0 0 moveto +2 copy rlineto +1 index 0 rlineto +neg exch neg exch rlineto +closepath stroke +}bind def +/SaveResourcesToStack +{ +[ +//PDFReader/OldResources known{ +//PDFReader/OldResources get +}{ +null +}ifelse +//PDFReader/CurrentObject get/Context get/Resources get +] +//PDFReader/OldResources 3 -1 roll put +}bind def +/RestoreResourcesFromStack +{ +//PDFReader/OldResources get dup +0 get//PDFReader/OldResources 3 -1 roll put +1 get//PDFReader/CurrentObject get/Context get/Resources 3 -1 roll put +}bind def +/BuildChar +{//PDFR_DEBUG{ +(BuildChar )print dup//=only exec( )print +}if +exch begin +Encoding exch get +//PDFR_DEBUG{ +dup = +}if +dup null eq{ +pop//NotDef exec +} +{ +CharProcs exch//knownget exec +{ +currentfont/Font get/Resources//knownget exec{ +exec +SaveResourcesToStack +//PDFReader/CurrentObject get/Context get +/Resources 3 -1 roll put +//RunDelayedStream exec +RestoreResourcesFromStack +}{ +//RunDelayedStream exec +}ifelse +} +{ +//NotDef exec +}ifelse +}ifelse +end +}bind def +/printdict +{(<<)= +{exch = ==}forall +(>>)= +}bind def +/printfont +{ +dup{ +exch dup = +dup/Encoding eq{ +pop = +}{ +dup/FontInfo eq exch/Private eq or{ +//printdict exec +}{ +== +}ifelse +}ifelse +}forall +}bind def +/ScaleMetrics +{1 index{ +2 index div +3 index +3 1 roll put +}forall +pop +}bind def +/ResolveAndSetFontAux +{exch dup +//PDFReader/CurrentObject get/Context get/Resources get +/Font//DoNothing//ResolveD exec +exch//CheckFont//ResolveD exec +dup/Font//knownget exec{ +exch pop exch pop +}{ +{ +dup/Subtype get dup dup/Type1 eq exch/TrueType eq or exch/MMType1 eq or{ +exch pop +dup/BaseFont get +//RemoveFontNamePrefix exec +//PDFR_DEBUG{ +(Font )print dup = +}if +1 index/FontDescriptor known{ +//PDFR_DEBUG{ +(Font from a font descriptor.)= +}if +1 index +/FontDescriptor//DoNothing//ResolveD exec +/Font//knownget exec{ +exch pop +}{ +//PDFR_DEBUG{ +(Font descriptor has no Font resolved.)= +}if +//GetInstalledFont exec +}ifelse +}{ +//GetInstalledFont exec +}ifelse +exch +dup/Encoding known not{ +1 index/Encoding get 1 index exch/Encoding exch put +}if +//ObtainEncoding exec +//ObtainMetrics exec +exch +dup length dict copy +dup 2 index/Encoding get +/Encoding exch put +1 index/Metrics//knownget exec{ +2 index/Subtype get/TrueType ne{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +0.001 div +//ScaleMetrics exec +}{ +1 index/sfnts known not{ +1 index/FontMatrix get 0 get +dup 0 eq{ +pop +1 index/FontMatrix get 1 get +dup 0 eq{pop 1}if +}if +//ScaleMetrics exec +}if +}ifelse +1 index exch/Metrics exch put +}if +1 index/BaseFont get +exch +dup/FID undef +dup/UniqueID undef +definefont +dup 3 1 roll +/Font exch put +exit +}if +dup/Subtype get/Type3 eq{ +//ObtainEncoding exec +2 copy exch/FontName exch put +dup/CharProcs get//ResolveDict exec +dup/FontType 3 put +dup/BuildChar//BuildChar put +dup dup/Font exch put +dup 3 1 roll +definefont +2 copy ne{ +2 copy/Font exch put +}if +exch pop +exit +}if +dup/Subtype get/Type0 eq{ +}if +dup/Subtype get/CIDFontType0 eq{ +}if +dup/Subtype get/CIDFontType2 eq{ +}if +mark(Unknown font type )2 index/Subtype get//error exec +}loop +}ifelse +exch scalefont setfont +}bind def +/ResolveAndSetFont +{ +//ResolveAndSetFontAux exec +}bind def +/.knownget +{2 copy known{ +get true +}{ +pop pop false +}ifelse +}bind def +/.min +{2 copy lt{ +exch +}if +pop +}bind def +/.max +{2 copy gt{ +exch +}if +pop +}bind def +/.dicttomark +{>> +}bind def +/getu16{ +2 copy get 8 bitshift 3 1 roll 1 add get add +}bind def +/gets16{ +getu16 16#8000 xor 16#8000 sub +}bind def +/getu32{ +2 copy getu16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/gets32{ +2 copy gets16 16 bitshift 3 1 roll 2 add getu16 add +}bind def +/cmapformats mark +0{ +6 256 getinterval{}forall 256 packedarray +}bind +2{ +/sHK_sz 2 def +/sH_sz 8 def +dup 2 getu16/cmapf2_tblen exch def +dup 4 getu16/cmapf2_lang exch def +dup 6 256 sHK_sz mul getinterval/sHKs exch def +0 +0 1 255{ +sHKs exch +2 mul getu16 +1 index +1 index +lt{exch}if pop +}for +/sH_len exch def +dup 6 256 sHK_sz mul add +cmapf2_tblen 1 index sub getinterval +/sH_gIA exch def +/cmapf2_glyph_array 65535 array def +/.cmapf2_putGID{ +/cmapf2_ch cmapf2_ch_hi 8 bitshift cmapf2_ch_lo add def +firstCode cmapf2_ch_lo le +cmapf2_ch_lo firstCode entryCount add lt +and{ +sH_offset idRangeOffset add +cmapf2_ch_lo firstCode sub 2 mul +add 6 add +sH_gIA exch getu16 +dup 0 gt{ +idDelta add +cmapf2_glyph_array exch cmapf2_ch exch put +}{ +pop +}ifelse +}{ +}ifelse +}def +16#00 1 16#ff{ +/cmapf2_ch_hi exch def +sHKs cmapf2_ch_hi sHK_sz mul getu16 +/sH_offset exch def +sH_gIA sH_offset sH_sz getinterval +dup 0 getu16/firstCode exch def +dup 2 getu16/entryCount exch def +dup 4 gets16/idDelta exch def +dup 6 getu16/idRangeOffset exch def +pop +sH_offset 0 eq{ +/cmapf2_ch_lo cmapf2_ch_hi def +/cmapf2_ch_hi 0 def +.cmapf2_putGID +}{ +16#00 1 16#ff{ +/cmapf2_ch_lo exch def +.cmapf2_putGID +}for +}ifelse +}for +pop +0 1 cmapf2_glyph_array length 1 sub{ +dup cmapf2_glyph_array exch get +null eq{cmapf2_glyph_array exch 0 put}{pop}ifelse +}for +cmapf2_glyph_array +}bind +4{ +/etab exch def +/nseg2 etab 6 getu16 def +14/endc etab 2 index nseg2 getinterval def +2 add +nseg2 add/startc etab 2 index nseg2 getinterval def +nseg2 add/iddelta etab 2 index nseg2 getinterval def +nseg2 add/idroff etab 2 index nseg2 getinterval def +pop +/firstcode startc 0 getu16 16#ff00 and dup 16#f000 ne{pop 0}if def +/lastcode firstcode def +/striptopbyte false def +/putglyph{ +glyphs code 3 -1 roll put/code code 1 add def +}bind def +/numcodes 0 def/glyphs 0 0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +ecode lastcode gt{ +/lastcode ecode def +}if +}for pop +firstcode 16#f000 ge lastcode firstcode sub 255 le and{ +lastcode 255 and +/striptopbyte true def +}{ +lastcode +}ifelse +1 add +array def +glyphs length 1024 ge{ +.array1024z 0 1024 glyphs length 1023 sub{glyphs exch 2 index putinterval}for +glyphs dup length 1024 sub 3 -1 roll +putinterval +}{ +0 1 glyphs length 1 sub{glyphs exch 0 put}for +}ifelse +/numcodes 0 def/code 0 def +0 2 nseg2 3 sub{ +/i2 exch def +/scode startc i2 getu16 def +/ecode endc i2 getu16 def +numcodes scode firstcode sub +exch sub 0 .max dup/code exch code exch add def +ecode scode sub 1 add add numcodes add/numcodes exch def +/delta iddelta i2 gets16 def +TTFDEBUG{ +(scode=)print scode =only +( ecode=)print ecode =only +( delta=)print delta =only +( droff=)print idroff i2 getu16 = +}if +idroff i2 getu16 dup 0 eq{ +pop scode delta add 65535 and 1 ecode delta add 65535 and +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +{putglyph}for +}{ +/gloff exch 14 nseg2 3 mul add 2 add i2 add add def +striptopbyte{ +/code scode 255 and def +}{ +/code scode def +}ifelse +0 1 ecode scode sub{ +2 mul gloff add etab exch getu16 +dup 0 ne{delta add 65535 and}if putglyph +}for +}ifelse +}for glyphs/glyphs null def +}bind +6{ +dup 6 getu16/firstcode exch def dup 8 getu16/ng exch def +firstcode ng add array +0 1 firstcode 1 sub{2 copy 0 put pop}for +dup firstcode ng getinterval +0 1 ng 1 sub{ +dup 2 mul 10 add 4 index exch getu16 3 copy put pop pop +}for pop exch pop +}bind +.dicttomark readonly def +/cmaparray{ +dup 0 getu16 cmapformats exch .knownget{ +TTFDEBUG{ +(cmap: format )print 1 index 0 getu16 = flush +}if exec +}{ +(Can't handle format )print 0 getu16 = flush +0 1 255{}for 256 packedarray +}ifelse +TTFDEBUG{ +(cmap: length=)print dup length = dup == +}if +}bind def +/postremap mark +/Cdot/Cdotaccent +/Edot/Edotaccent +/Eoverdot/Edotaccent +/Gdot/Gdotaccent +/Ldot/Ldotaccent +/Zdot/Zdotaccent +/cdot/cdotaccent +/edot/edotaccent +/eoverdot/edotaccent +/gdot/gdotaccent +/ldot/ldotaccent +/zdot/zdotaccent +.dicttomark readonly def +/get_from_stringarray +{1 index type/stringtype eq{ +get +}{ +exch{ +2 copy length ge{ +length sub +}{ +exch get exit +}ifelse +}forall +}ifelse +}bind def +/getinterval_from_stringarray +{ +2 index type/stringtype eq{ +getinterval +}{ +string exch 0 +4 3 roll{ +dup length +dup 4 index lt{ +3 index exch sub +exch pop 3 1 roll exch pop +}{ +dup 3 1 roll +4 index sub +5 index length 4 index sub +2 copy gt{exch}if pop +dup 3 1 roll +5 index exch getinterval +5 index 4 index 3 index +getinterval +copy pop +exch pop add exch pop 0 exch +dup 3 index length ge{exit}if +}ifelse +}forall +pop pop +}ifelse +}bind def +/string_array_size +{dup type/stringtype eq{ +length +}{ +0 exch{length add}forall +}ifelse +}bind def +/postformats mark +16#00010000{ +pop MacGlyphEncoding +} +16#00020000{ +dup dup type/arraytype eq{0 get}if length 36 lt{ +TTFDEBUG{(post format 2.0 invalid.)= flush}if +pop[] +}{ +/postglyphs exch def +/post_first postglyphs dup type/arraytype eq{0 get}if def +post_first 32 getu16/numglyphs exch def +/glyphnames numglyphs 2 mul 34 add def +/postpos glyphnames def +/total_length postglyphs//string_array_size exec def +numglyphs array 0 1 numglyphs 1 sub{ +postpos total_length ge{ +1 numglyphs 1 sub{1 index exch/.notdef put}for +exit +}if +postglyphs postpos//get_from_stringarray exec +postglyphs postpos 1 add 2 index//getinterval_from_stringarray exec cvn +exch postpos add 1 add/postpos exch def +2 index 3 1 roll +put +}for +/postnames exch def +numglyphs array 0 1 numglyphs 1 sub{ +dup 2 mul 34 add postglyphs exch 2//getinterval_from_stringarray exec +dup 0 get 8 bitshift exch 1 get add dup 258 lt{ +MacGlyphEncoding exch get +}{ +dup 32768 ge{ +pop/.notdef +}{ +258 sub dup postnames length ge{ +TTFDEBUG{( *** warning: glyph index past end of 'post' table)= flush}if +pop +exit +}if +postnames exch get +postremap 1 index .knownget{exch pop}if +}ifelse +}ifelse +2 index 3 1 roll put +}for +} +ifelse +}bind +16#00030000{ +pop[] +}bind +.dicttomark readonly def +/first_post_string +{ +post dup type/arraytype eq{0 get}if +}bind def +/.getpost{ +/glyphencoding post null eq{ +TTFDEBUG{(post missing)= flush}if[] +}{ +postformats first_post_string 0 getu32 .knownget{ +TTFDEBUG{ +(post: format )print +first_post_string +dup 0 getu16 =only(,)print 2 getu16 = flush +}if +post exch exec +}{ +TTFDEBUG{(post: unknown format )print post 0 getu32 = flush}if[] +}ifelse +}ifelse def +}bind def +/MacRomanEncoding[ +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +]/Encoding defineresource pop +/TTParser<< +/Pos 0 +/post null +>>def +/readu8 +{read not{ +mark(Insufficient data in the stream.)//error exec +}if +}bind def +/readu16 +{dup//readu8 exec 8 bitshift exch//readu8 exec or +}bind def +/reads16 +{//readu16 exec 16#8000 xor 16#8000 sub +}bind def +/readu32 +{dup//readu16 exec 16 bitshift exch//readu16 exec or +}bind def +/reads32 +{dup//reads16 exec 16 bitshift exch//readu16 exec or +}bind def +/SkipToPosition +{dup//TTParser/Pos get +exch//TTParser exch/Pos exch put +sub +//PDFR_DEBUG{ +(Skipping )print dup//=only exec( bytes.)= +}if +dup 0 eq{ +pop pop +}{ +dup 3 1 roll +()/SubFileDecode filter +exch +{1 index//BlockBuffer readstring pop length +dup 0 eq{pop exch pop exit}if +sub +}loop +0 ne{ +mark(Insufficient data in the stream for SkipToPosition.)//error exec +}if +}ifelse +}bind def +/TagBuffer 4 string def +/ParseTTTableDirectory +{//PDFR_DEBUG{ +(ParseTTTableDirectory beg)= +}if +15 dict begin +dup//readu32 exec 16#00010000 ne{ +mark(Unknown True Type version.)//error exec +}if +dup//readu16 exec/NumTables exch def +dup//readu16 exec/SearchRange exch def +dup//readu16 exec/EntrySelector exch def +dup//readu16 exec/RangeShift exch def +//PDFR_DEBUG{ +(NumTables = )print NumTables = +}if +NumTables{ +dup//TagBuffer readstring not{ +mark(Could not read TT tag.)//error exec +}if +cvn +[2 index//readu32 exec pop +2 index//readu32 exec +3 index//readu32 exec +] +//PDFR_DEBUG{ +2 copy exch//=only exec( )print == +}if +def +}repeat +pop +//TTParser/Pos 12 NumTables 16 mul add put +currentdict end +//PDFR_DEBUG{ +(ParseTTTableDirectory end)= +}if +}bind def +/ParseTTcmap +{//PDFR_DEBUG{ +(ParseTTcmap beg)= +}if +/cmap get aload pop +3 1 roll +7 dict begin +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(cmap position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos get/TablePos exch def +dup//readu16 exec pop +dup//readu16 exec/NumEncodings exch def +//PDFR_DEBUG{ +(NumEncodings = )print NumEncodings = +}if +null +NumEncodings{ +1 index//readu32 exec +2 index//readu32 exec +3 array dup 3 2 roll 0 exch put +2 index null ne{ +dup 0 get 3 index 0 get sub +3 index exch 1 exch put +}if +dup 4 3 roll pop 3 1 roll +def +}repeat +dup 0 get +4 3 roll exch sub +1 exch put +//PDFR_DEBUG{ +currentdict{ +exch dup type/integertype eq{ +//PrintHex exec( )print == +}{ +pop pop +}ifelse +}forall +}if +4 NumEncodings 8 mul add/HeaderLength exch def +//TTParser/Pos//TTParser/Pos get HeaderLength add put +0 +NumEncodings{ +16#7FFFFFF null +currentdict{ +1 index type/integertype eq{ +exch pop dup 0 get +dup 5 index gt{ +dup 4 index lt{ +4 1 roll +exch pop exch pop +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}forall +//PDFR_DEBUG{ +(Obtaining subtable for )print dup == +}if +3 2 roll pop +3 copy pop +TablePos add//SkipToPosition exec +3 copy exch pop 1 get +//TTParser/Pos//TTParser/Pos get 3 index add put +string +readstring not{ +mark(Can't read a cmap subtable.)//error exec +}if +2 exch put +}repeat +pop pop +currentdict end +//PDFR_DEBUG{ +(ParseTTcmap end)= +}if +}bind def +/GetTTEncoding +{//PDFR_DEBUG{ +(GetTTEncoding beg)= +}if +get +exch pop +2 get +10 dict begin +/TTFDEBUG//PDFR_DEBUG def +//cmaparray exec +end +//PDFR_DEBUG{ +(GetTTEncoding end)= +dup == +}if +}bind def +/InverseEncoding +{ +256 dict begin +dup length 1 sub -1 0{ +2 copy get +exch +1 index currentdict exch//knownget exec{ +dup type/arraytype eq{ +aload length 1 add array astore +}{ +2 array astore +}ifelse +}if +def +}for +pop +currentdict end +}bind def +/GetMacRomanEncodingInverse +{//PDFReader/MacRomanEncodingInverse get +dup null eq{ +pop +MacRomanEncoding//InverseEncoding exec +dup//PDFReader exch/MacRomanEncodingInverse exch put +}if +}bind def +/PutCharStringSingle +{ +dup 3 index length lt{ +2 index exch get +dup 0 ne{ +def +}{ +pop pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/PutCharString +{1 index type/nametype ne{ +mark(Bad charstring name)//error exec +}if +dup type/arraytype eq{ +{ +3 copy//PutCharStringSingle exec +pop pop +}forall +pop +}{ +//PutCharStringSingle exec +}ifelse +}bind def +/ComposeCharStrings +{ +//PDFR_DEBUG{ +(ComposeCharStrings beg)= +}if +1 index length 1 add dict begin +/.notdef 0 def +exch +//TTParser/post get +dup null ne{ +exch +1 index length 1 sub -1 0{ +dup 3 index exch get exch +dup 0 eq 2 index/.notdef eq or{ +pop pop +}{ +def +}ifelse +}for +}if +exch pop exch +{ +//PutCharString exec +}forall +pop +currentdict end +//PDFR_DEBUG{ +(ComposeCharStrings end)= +}if +}bind def +/ParseTTpost +{ +//PDFR_DEBUG{ +(ParseTTpost beg)= +}if +/post get aload pop +3 1 roll +//PDFR_DEBUG{ +(Current position = )print//TTParser/Pos get = +(post position = )print dup = +}if +1 index exch//SkipToPosition exec +//TTParser/Pos//TTParser/Pos get 4 index add put +exch dup 65535 le{ +string +readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}{ +[3 1 roll +dup 16384 div floor cvi +exch 1 index 16384 mul +sub exch +1 sub 0 1 3 -1 roll +{ +1 add index +16384 string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +}for +counttomark -2 roll +string readstring not{ +mark(Insufficient data in the stream for ParseTTpost.)//error exec +}if +] +}ifelse +1 dict begin +/post exch def +//.getpost exec +//TTParser/post glyphencoding put +//PDFR_DEBUG{ +(ParseTTpost end)= +glyphencoding == +}if +end +}bind def +/MakeTTCharStrings +{//MakeStreamReader exec +dup dup//ParseTTTableDirectory exec +//TTParser/post null put +dup/post//knownget exec{ +0 get +1 index/cmap get 0 get +lt{ +2 copy//ParseTTpost exec +//ParseTTcmap exec +}{ +2 copy//ParseTTcmap exec +3 1 roll +//ParseTTpost exec +}ifelse +}{ +//ParseTTcmap exec +}ifelse +{ +dup 16#00030001 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Windows Unicode.)= +}if +16#00030001//GetTTEncoding exec +AdobeGlyphList//ComposeCharStrings exec +exit +}if +dup 16#00010000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding for Macintosh Roman.)= +}if +16#00010000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +dup 16#00030000 known{ +//PDFR_DEBUG{ +(Using the TT cmap encoding 3.0 - not sure why Ghostscript writes it since old versions.)= +}if +16#00030000//GetTTEncoding exec +PDFEncoding dup null eq{ +pop//GetMacRomanEncodingInverse exec +}{ +//InverseEncoding exec +}ifelse +//ComposeCharStrings exec +exit +}if +mark(True Type cmap has no useful encodings.)//error exec +}loop +//PDFR_DEBUG{ +(CharStrings <<)= +dup{ +exch +dup type/nametype eq{ +//=only exec +}{ +== +}ifelse +( )print == +}forall +(>>)= +}if +}bind def +/ScaleVal +{ +aload pop +1 index sub +3 2 roll mul add +}bind def +/ScaleArg +{ +aload pop +1 index sub +3 1 roll +sub exch div +}bind def +/ScaleArgN +{ +dup length 2 sub -2 0{ +2 +2 index 3 1 roll getinterval +3 2 roll +exch//ScaleArg exec +1 index length 2 idiv 1 add 1 roll +}for +pop +}bind def +/ComputeFunction_10 +{ +//PDFR_DEBUG{ +(ComputeFunction_10 beg )print 1 index//=only exec( stack=)print count = +}if +exch +dup 1 eq{ +pop dup length 1 sub get +}{ +1 index length 1 sub mul +dup dup floor sub +dup 0 eq{ +pop cvi get +}{ +3 1 roll floor cvi +2 getinterval +aload pop +2 index mul 3 2 roll 1 exch sub 3 2 roll mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_10 end )print dup//=only exec( stack=)print count = +}if +}bind def +/ComputeFunction_n0 +{ +//PDFR_DEBUG{ +(ComputeFunction_n0 beg N=)print dup//=only exec( stack=)print count = +}if +dup 0 eq{ +pop +}{ +dup 2 add -1 roll +dup 3 index length 1 sub ge{ +pop 1 sub +exch dup length 1 sub get exch +//PDFReader/ComputeFunction_n0 get exec +}{ +dup floor cvi dup +4 index exch get +3 index dup +5 add copy +6 2 roll +pop pop pop pop +1 sub +//PDFReader/ComputeFunction_n0 get exec +3 2 roll pop +exch +4 3 roll exch +4 add 2 roll 1 add +3 2 roll exch get +exch 1 sub +//PDFReader/ComputeFunction_n0 get exec +1 index mul +3 1 roll +1 exch sub mul add +}ifelse +}ifelse +//PDFR_DEBUG{ +(ComputeFunction_n0 end )print dup//=only exec( stack=)print count = +}if +}bind def +/FunctionToProc_x01 +{ +dup/Domain get exch +dup/Data get 0 get exch +/Size get length +[4 1 roll +//PDFR_DEBUG{ +{(function beg, stack =)print count//=only exec(\n)print}/exec load +5 2 roll +}if +dup 1 gt{ +{mark exch +3 add 2 roll +//ScaleArgN exec +counttomark dup +3 add -2 roll +pop exch +//ComputeFunction_n0 exec +}/exec load +}{ +pop +3 1/roll load//ScaleArg/exec load +/exch load +//ComputeFunction_10/exec load +}ifelse +//PDFR_DEBUG{ +(function end, stack =)/print load/count load//=only/exec load(\n)/print load +}if +]cvx +//PDFR_DEBUG{ +(Made a procedure for the 1-result function :)= +dup == +}if +}bind def +/FunctionProcDebugBeg +{(FunctionProcDebugBeg )print count = +}bind def +/FunctionProcDebugEnd +{(FunctionProcDebugEnd )print count = +}bind def +/FunctionToProc_x0n +{ +PDFR_DEBUG{ +(FunctionToProc_x0n beg m=)print dup = +}if +1 index/Size get length exch +dup 7 mul 2 add array +PDFR_DEBUG{ +dup 0//FunctionProcDebugBeg put +}{ +dup 0//DoNothing put +}ifelse +dup 1/exec load put +dup 2 5 index/Domain get put +2 index 1 eq{ +dup 3//ScaleArg put +}{ +dup 3//ScaleArgN put +}ifelse +dup 4/exec load put +1 index 1 sub 0 exch 1 exch{ +dup 7 mul 5 add +1 index 4 index 1 sub ne{ +dup 3 index exch 6 index put 1 add +dup 3 index exch/copy load put 1 add +}if +[ +6 index/Data get 3 index get +6 index 1 eq{ +//ComputeFunction_10/exec load +}{ +6 index +//ComputeFunction_n0/exec load +}ifelse +]cvx +3 index exch 2 index exch put 1 add +2 index 1 index/exec load put 1 add +1 index 4 index 1 sub ne{ +2 index 1 index 6 index 1 add put 1 add +2 index 1 index 1 put 1 add +2 index 1 index/roll load put +}if +pop pop +}for +PDFR_DEBUG{ +dup dup length 2 sub//FunctionProcDebugEnd put +}{ +dup dup length 2 sub//DoNothing put +}ifelse +dup dup length 1 sub/exec load put +cvx exch pop exch pop exch pop +//PDFR_DEBUG{ +(Made a procedure for the n-argument function :)= +dup == +}if +PDFR_DEBUG{ +(FunctionToProc_x0n end)= +}if +}bind def +/MakeTableRec +{ +0 +exec +}bind def +/MakeTable +{//PDFR_DEBUG{ +(MakeTable beg )print count = +}if +1 index/Size get exch +1 sub dup +3 1 roll +get +array +1 index 0 eq{ +exch pop exch pop +}{ +dup length 1 sub -1 0{ +3 index 3 index//MakeTableRec exec +2 index 3 1 roll put +}for +exch pop exch pop +}ifelse +//PDFR_DEBUG{ +(MakeTable end )print count = +}if +}bind def +//MakeTableRec 0//MakeTable put +/StoreSample +{ +1 sub +dup 0 eq{ +pop +}{ +-1 1{ +I exch get get +}for +}ifelse +I 0 get 3 2 roll put +}bind def +/ReadSample32 +{ +4{ +File read not{ +mark(Insufficient data for function.)//error exec +}if +}repeat +pop +3 1 roll exch +256 mul add 256 mul add +//1_24_bitshift_1_sub div +}bind def +/ReadSample +{ +Buffer BitsLeft BitsPerSample +{2 copy ge{ +exit +}if +3 1 roll +8 add 3 1 roll +256 mul File read not{ +mark(Insufficient data for function.)//error exec +}if +add +3 1 roll +}loop +sub dup +2 index exch +neg bitshift +2 copy exch bitshift +4 3 roll exch sub +/Buffer exch def +exch/BitsLeft exch def +Div div +}bind def +/ReadSamplesRec +{0 +exec +}bind def +/ReadSamples +{ +//PDFR_DEBUG{ +(ReadSamples beg )print count = +}if +dup 1 eq{ +pop +0 1 Size 0 get 1 sub{ +I exch 0 exch put +0 1 M 1 sub{ +dup Range exch 2 mul 2 getinterval +//PDFR_DEBUG{ +(Will read a sample ... )print +}if +BitsPerSample 32 eq{//ReadSample32}{//ReadSample}ifelse +exec exch//ScaleVal exec +//PDFR_DEBUG{ +(value=)print dup = +}if +exch Table exch get +Size length//StoreSample exec +}for +}for +}{ +1 sub +dup Size exch get 0 exch 1 exch 1 sub{ +I exch 2 index exch put +dup//ReadSamplesRec exec +}for +pop +}ifelse +//PDFR_DEBUG{ +(ReadSamples end )print count = +}if +}bind def +//ReadSamplesRec 0//ReadSamples put +/StreamToArray +{//PDFR_DEBUG{ +(StreamToArray beg )print count = +}if +userdict/FuncDataReader get begin +dup/BitsPerSample get/BitsPerSample exch def +dup/Size get length/N exch def +dup/Range get length 2 idiv/M exch def +1 BitsPerSample bitshift 1 sub/Div exch def +/BitsLeft 0 def +/Buffer 0 def +dup/Size get/Size exch def +dup/Range get/Range exch def +/File 1 index//MakeStreamReader exec def +/I[N{0}repeat]def +M array +dup length 1 sub -1 0{ +2 index N//MakeTable exec +2 index 3 1 roll put +}for +/Table exch def +N//ReadSamples exec +PDFR_DEBUG{ +(Table = )print Table == +}if +/Data Table put +end +//PDFR_DEBUG{ +(StreamToArray end )print count = +}if +}bind def +/FunctionToProc10 +{ +PDFR_DEBUG{ +(FunctionToProc10 beg, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +PDFR_DEBUG{ +(FunctionToProc10 end)= +}if +}bind def +/FunctionToProc12 +{begin +currentdict/C0//knownget exec{length 1 eq}{true}ifelse{ +N +currentdict/C0//knownget exec{ +0 get +}{ +0 +}ifelse +currentdict/C1//knownget exec{ +0 get +}{ +1 +}ifelse +1 index sub +[4 1 roll +{ +4 2 roll +exp mul add +}aload pop +]cvx +}{ +[ +0 1 C0 length 1 sub{ +N +C0 2 index get +C1 3 index get +4 3 roll pop +1 index sub +[/dup load +5 2 roll +{ +4 2 roll +exp mul add +exch +}aload pop +]cvx +/exec load +}for +/pop load +]cvx +}ifelse +end +//PDFR_DEBUG{ +(FunctionType2Proc : )print dup == +}if +}bind def +/FunctionToProc14 +{//MakeStreamReader exec cvx exec +//PDFR_DEBUG{ +(FunctionType4Proc : )print dup == +}if +}bind def +/FunctionToProc1 +{ +dup/FunctionType get +{dup 0 eq{ +pop//FunctionToProc10 exec exit +}if +dup 2 eq{ +pop//FunctionToProc12 exec exit +}if +dup 4 eq{ +pop//FunctionToProc14 exec exit +}if +mark exch(Function type )exch( isn't implemented yet.)//error exec +}loop +}bind def +/FunctionToProc20 +{ +PDFR_DEBUG{ +(FunctionToProc20, Range = )print dup/Range get == +}if +dup/Order//knownget exec{ +1 ne{ +(Underimplemented function Type 0 Order 3.)= +}if +}if +dup//StreamToArray exec +dup/Range get length dup 2 eq{ +pop//FunctionToProc_x01 exec +}{ +2 idiv//FunctionToProc_x0n exec +}ifelse +}bind def +/FunctionToProc +{//PDFR_DEBUG{ +(FunctionToProc beg )print count = +}if +dup type/dicttype eq{ +dup/Domain get length 2 idiv +{ +dup 1 eq{ +pop//FunctionToProc1 exec exit +}if +dup 2 eq{ +pop//FunctionToProc20 exec exit +}if +mark(Functions with many arguments aren't implemented yet.)//error exec +}loop +}{ +//PDFR_DEBUG{(Not a function dict, assume already a procedure.)print}if +}ifelse +//PDFR_DEBUG{ +(FunctionToProc end )print count = +}if +}bind def +/spotfunctions mark +/Round{ +abs exch abs 2 copy add 1 le{ +dup mul exch dup mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +} +/Diamond{ +abs exch abs 2 copy add .75 le{ +dup mul exch dup mul add 1 exch sub +}{ +2 copy add 1.23 le{ +.85 mul add 1 exch sub +}{ +1 sub dup mul exch 1 sub dup mul add 1 sub +}ifelse +}ifelse +} +/Ellipse{ +abs exch abs 2 copy 3 mul exch 4 mul add 3 sub dup 0 lt{ +pop dup mul exch .75 div dup mul add 4 div 1 exch sub +}{ +dup 1 gt{ +pop 1 exch sub dup mul exch 1 exch sub +.75 div dup mul add 4 div 1 sub +}{ +.5 exch sub exch pop exch pop +}ifelse +}ifelse +} +/EllipseA{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseA{dup mul .9 mul exch dup mul add 1 sub} +/EllipseB{dup 5 mul 8 div mul exch dup mul exch add sqrt 1 exch sub} +/EllipseC{dup mul .9 mul exch dup mul add 1 exch sub} +/InvertedEllipseC{dup mul .9 mul exch dup mul add 1 sub} +/Line{exch pop abs neg} +/LineX{pop} +/LineY{exch pop} +/Square{abs exch abs 2 copy lt{exch}if pop neg} +/Cross{abs exch abs 2 copy gt{exch}if pop neg} +/Rhomboid{abs exch abs 0.9 mul add 2 div} +/DoubleDot{2{360 mul sin 2 div exch}repeat add} +/InvertedDoubleDot{2{360 mul sin 2 div exch}repeat add neg} +/SimpleDot{dup mul exch dup mul add 1 exch sub} +/InvertedSimpleDot{dup mul exch dup mul add 1 sub} +/CosineDot{180 mul cos exch 180 mul cos add 2 div} +/Double{exch 2 div exch 2{360 mul sin 2 div exch}repeat add} +/InvertedDouble{ +exch 2 div exch 2{360 mul sin 2 div exch}repeat add neg +} +.dicttomark readonly def +/CheckColorSpace +{ +dup type/arraytype ne{ +mark(Resource )3 index( must be an array.)//error exec +}if +}bind def +/SubstitutePDFColorSpaceRec +{0 +exec +}bind def +/SubstitutePDFColorSpace +{ +{ +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup dup 1//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +1 exch put +}if +exit +}if +dup 0 get/Indexed eq{ +exit +}if +dup 0 get/Separation eq{ +dup dup 2//CheckColorSpace//ResolveA exec +dup type/nametype ne{ +//SubstitutePDFColorSpaceRec exec +}if +2 exch put +exit +}if +dup 0 get/CalGray eq{ +1 get +dup/Gamma//knownget exec{ +[exch[exch/exp load]cvx dup dup] +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedA exch] +exit +}if +dup 0 get/CalRGB eq{ +1 get +dup/Matrix//knownget exec{ +1 index exch/MatrixLMN exch put +}if +dup/Gamma//knownget exec{ +aload pop +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +[exch/exp load]cvx +3 1 roll +3 array astore +1 index exch/DecodeLMN exch put +}if +[exch/CIEBasedABC exch] +exit +}if +dup 0 get/Lab eq{ +1 get +begin +currentdict/Range//knownget exec{aload pop}{-100 100 -100 100}ifelse +0 100 6 2 roll 6 array astore +/RangeABC exch def +/DecodeABC[{16 add 116 div}bind{500 div}bind{200 div}bind]def +/MatrixABC[1 1 1 1 0 0 0 0 -1]def +{dup 6 29 div ge{dup dup mul mul}{4 29 div sub 108 841 div mul}ifelse} +/DecodeLMN[ +[3 index aload pop WhitePoint 0 get/mul load]cvx +[4 index aload pop WhitePoint 1 get/mul load]cvx +[5 index aload pop WhitePoint 2 get/mul load]cvx +]def pop +//PDFR_DEBUG{ +(Constructed from Lab <<)= +currentdict{exch = ==}forall +(>>)= +}if +[/CIEBasedABC currentdict] +end +exit +pop +}if +dup 0 get/CIEBasedA eq{exit}if +dup 0 get/CIEBasedABC eq{exit}if +mark exch(Unimplemented color space )exch//error exec +}loop +}bind def +//SubstitutePDFColorSpaceRec 0//SubstitutePDFColorSpace put +/ResolveArrayElement +{2 copy get +dup type dup/arraytype eq exch +/packedarraytype eq or{ +dup length 1 ge exch xcheck and{ +2 copy get +dup 0 get type/integertype eq +1 index 1 get type dup/arraytype +eq exch +/packedarraytype eq or +and{ +exec +2 index 4 1 roll put +}{ +pop pop +}ifelse +}{ +pop +}ifelse +}{ +pop pop +}ifelse +}bind def +/ResolveColorSpaceArrayRec +{0 +exec +}bind def +/SetColorSpaceSafe +{ +PDFR_DEBUG{ +(SetColorSpaceSafe beg)= +}if +currentcolorspace dup type/arraytype eq{ +1 index type/arraytype eq{ +dup length 2 index length eq{ +false exch +dup length 0 exch 1 exch 1 sub{ +dup +4 index exch get exch +2 index exch get +ne{ +exch pop true exch exit +}if +}for +pop +{ +setcolorspace +}{ +pop +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +}{ +pop setcolorspace +}ifelse +PDFR_DEBUG{ +(SetColorSpaceSafe end)= +}if +}bind def +/ResolveColorSpaceArray +{ +//PDFR_DEBUG{ +(ResolveColorSpaceArray beg )print dup == +}if +dup 0 get/Indexed eq{ +1//ResolveArrayElement exec +dup dup 1 get +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArrayRec exec +1 exch put +}{ +pop pop +}ifelse +}if +dup 0 get/Separation eq{ +dup dup 1 get UnPDFEscape 1 exch put +3//ResolveArrayElement exec +dup 3 get//FunctionToProc exec +2 copy 3 exch put +pop +}if +dup 0 get/Pattern eq{ +dup length 1 gt{ +dup 1 get dup type/arraytype eq{ +ResolveColorSpaceArray +1 index 1 3 -1 roll put +}{ +pop +}ifelse +}if +}if +PDFR_DEBUG{ +(Construcrted color space :)= +dup == +}if +//PDFR_DEBUG{ +(ResolveColorSpaceArray end )print dup == +}if +}bind def +//ResolveColorSpaceArrayRec 0//ResolveColorSpaceArray put +/ResolveColorSpace +{ +//PDFR_DEBUG{ +(ResolveColorSpace beg )print dup = +}if +dup//SimpleColorSpaceNames exch known not{ +dup//PDFColorSpaces exch//knownget exec{ +exch pop +//PDFR_DEBUG{ +(ResolveColorSpace known )= +}if +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/ColorSpace//DoNothing//ResolveD exec +exch//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//SubstitutePDFColorSpace exec +//ResolveColorSpaceArray exec +dup//PDFColorSpaces 4 2 roll put +}if +}ifelse +}if +//PDFR_DEBUG{ +(ResolveColorSpace end )print dup == +}if +}bind def +/CheckPattern +{ +dup/PatternType//knownget exec{ +dup 1 ne{ +mark(Resource )4 index( is a shading, which can't be handled at level 2. )//error exec +}if +pop +}if +dup/Type knownget{ +/Pattern ne{ +mark(Resource )4 index( must have /Type/Pattern .)//error exec +}if +}if +}bind def +/PaintProc +{/Context get +//RunDelayedStream exec +}bind def +/ResolvePattern +{ +dup +userdict/PDFR_Patterns get +exch//knownget exec{ +exch pop +}{ +dup +//PDFReader/CurrentObject get/Context get/Resources get +/Pattern//DoNothing//ResolveD exec +exch//CheckPattern//ResolveD exec +dup dup/Context exch put +dup/Resources//DoNothing//ResolveD exec pop +dup/PaintProc//PaintProc put +gsave userdict/PDFR_InitialGS get setgstate +currentglobal exch false setglobal +dup/Matrix get +makepattern +exch setglobal +grestore +dup userdict/PDFR_Patterns get +4 2 roll +put +}ifelse +}bind def +/SetColor +{//PDFR_DEBUG{ +(SetColor beg)= +}if +currentcolorspace dup type/nametype eq{ +pop setcolor +}{ +0 get/Pattern eq{ +//ResolvePattern exec setpattern +}{ +setcolor +}ifelse +}ifelse +//PDFR_DEBUG{ +(SetColor end)= +}if +}bind def +/ImageKeys 15 dict begin +/BPC/BitsPerComponent def +/CS/ColorSpace def +/D/Decode def +/DP/DecodeParms def +/F/Filter def +/H/Height def +/IM/ImageMask def +/I/Interpolate def +/W/Width def +currentdict end readonly def +/ImageValues 15 dict begin +/G/DeviceGray def +/RGB/DeviceRGB def +/CMYK/DeviceCMYK def +/I/Indexed def +/AHx/ASCIIHexDecode def +/A85/ASCII85Decode def +/LZW/LZWDecode def +/Fl/FlateDecode def +/RL/RunLengthDecode def +/CCF/CCITTFaxDecode def +/DCT/DCTDecode def +currentdict end readonly def +/GetColorSpaceRange +{2 index/ColorSpace get +dup type/arraytype eq{ +1 get +}if +exch//knownget exec{ +exch pop +}if +}bind def +/DecodeArrays 15 dict begin +/DeviceGray{[0 1]}def +/DeviceRGB{[0 1 0 1 0 1]}def +/DeviceCMYK{[0 1 0 1 0 1 0 1]}def +/Indexed{ +dup/BitsPerComponent get 1 exch bitshift 1 sub[exch 0 exch] +}def +/Separation{[0 1]}def +/CIEBasedA{[0 1]/RangeA//GetColorSpaceRange exec}def +/CIEBasedABC{[0 1 0 1 0 1]/RangeABC//GetColorSpaceRange exec}def +currentdict end readonly def +/Substitute +{1 index//knownget exec{ +exch pop +}if +}bind def +/DebugImagePrinting +{ +//PDFR_DEBUG{ +(Image :)= +dup{exch//=only exec( )print == +}forall +}if +}bind def +/CompleteImage +{ +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec pop +}if +dup/Decode known not{ +dup/ColorSpace//knownget exec{ +dup type/arraytype eq{ +0 get +}if +//DecodeArrays exch get exec +}{ +[0 1] +}ifelse +1 index exch/Decode exch put +}if +dup/ImageMatrix[2 index/Width get 0 0 5 index/Height get neg +0 7 index/Height get]put +//DebugImagePrinting exec +}bind def +/CompleteInlineImage +{ +//PDFR_DEBUG{ +(CompleteInlineImage beg)= +}if +dup/ImageType known not{ +dup/ImageType 1 put +}if +dup length dict exch{ +exch//ImageKeys//Substitute exec +dup/Filter eq{ +exch//ImageValues//Substitute exec exch +}if +dup/ColorSpace eq{ +exch +dup//ImageValues exch//knownget exec{ +exch pop +}{ +//ResolveColorSpace exec +}ifelse +exch +}if +exch +2 index 3 1 roll put +}forall +//CompleteImage exec +dup/DataSource 2 copy get +2 index//AppendFilters exec put +//PDFR_DEBUG{ +(CompleteInlineImage end)= +}if +}bind def +/CompleteOutlineImage +{ +currentglobal exch dup gcheck setglobal +//PDFR_DEBUG{ +(CompleteOutlineImage beg)= +}if +dup dup//MakeStreamReader exec/DataSource exch put +dup/ImageType known not{ +//CompleteImage exec +dup/ImageType 1 put +dup/ColorSpace known{ +dup/ColorSpace//CheckColorSpace//ResolveD exec +dup type/arraytype eq{ +//ResolveColorSpaceArray exec +//SubstitutePDFColorSpace exec +1 index exch/ColorSpace exch put +}{ +pop +}ifelse +}if +}if +//PDFR_DEBUG{ +(CompleteOutlineImage end)= +}if +exch setglobal +}bind def +/DoImage +{ +//PDFR_DEBUG{ +(DoImage beg)= +}if +gsave +dup/ColorSpace//knownget exec{setcolorspace}if +dup/ImageMask//knownget exec not{false}if +{imagemask}{image}ifelse +grestore +//PDFR_DEBUG{ +(DoImage end)= +}if +}bind def +/GSave +{ +gsave +//PDFReader/GraphicStateStackPointer get +dup//GraphicStateStack exch get null eq{ +dup//GraphicStateStack exch//InitialGraphicState length dict put +}if +dup//GraphicStateStack exch get +//GraphicState exch copy pop +1 add//PDFReader exch/GraphicStateStackPointer exch put +}bind def +/GRestore +{ +grestore +//PDFReader/GraphicStateStackPointer get +1 sub dup +//PDFReader exch/GraphicStateStackPointer exch put +//GraphicStateStack exch get +//GraphicState copy pop +}bind def +/SetFont +{dup//GraphicState exch/FontSize exch put +//ResolveAndSetFont exec +//GraphicState/FontMatrixNonHV currentfont/FontMatrix get 1 get 0 ne put +}bind def +/ShowText +{//GraphicState/TextRenderingMode get 0 eq{ +//GraphicState/WordSpacing get 0 +32 +//GraphicState/CharacterSpacing get 0 +6 5 roll +//GraphicState/FontMatrixNonHV get{ +[ +7 -2 roll pop +5 -2 roll pop +5 -1 roll +{ +exch +pop +3 index add +exch 2 index eq{3 index add}if +4 1 roll +} +currentfont/FontMatrix get 0 get 0 ne{ +1 1 index length 1 sub getinterval cvx +}if +5 index +cshow +pop pop pop] +xshow +}{ +awidthshow +}ifelse +}{ +//GraphicState/CharacterSpacing get 0 eq +//GraphicState/FontMatrixNonHV get not and +//GraphicState/WordSpacing get 0 eq and{ +true charpath +}{ +{ +exch +pop 0 +currentpoint 5 4 roll +( )dup 0 3 index put true charpath +5 1 roll +moveto rmoveto +//GraphicState/CharacterSpacing get 0 rmoveto +32 eq{ +//GraphicState/WordSpacing get 0 rmoveto +}if +} +//GraphicState/FontMatrixNonHV get dup not exch{ +pop currentfont/FontMatrix get 0 get 0 ne +}if{ +1 1 index length 1 sub getinterval cvx +}if +exch cshow +}ifelse +}ifelse +}bind def +/ShowTextBeg +{//GraphicState/TextRenderingMode get 0 ne{ +currentpoint newpath moveto +}if +}bind def +/ShowTextEnd +{//GraphicState/TextRenderingMode get +{dup 1 eq{ +stroke exit +}if +dup 2 eq{ +gsave fill grestore stroke exit +}if +dup 3 eq{ +currentpoint newpath moveto +}if +dup 4 eq{ +gsave fill grestore clip exit +}if +dup 5 eq{ +gsave stroke grestore clip exit +}if +dup 6 eq{ +gsave fill grestore gsave stroke grestore fill exit +}if +dup 7 eq{ +clip exit +}if +exit +}loop +pop +}bind def +/ShowTextWithGlyphPositioning +{//ShowTextBeg exec +{dup type/stringtype eq{ +//ShowText exec +}{ +neg 1000 div//GraphicState/FontSize get mul 0 rmoveto +}ifelse +}forall +//ShowTextEnd exec +}bind def +/CheckFont +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/SetTransfer +{ +//PDFR_DEBUG{(SetTransfer beg )print count =}if +dup type/arraytype eq 1 index xcheck not and{ +0 4 getinterval aload pop +setcolortransfer +}{ +settransfer +}ifelse +//PDFR_DEBUG{(SetTransfer end )print count =}if +}bind def +/CheckExtGState +{dup/Type get/ExtGState ne{ +mark(Resource )3 index( must have /Type/ExtGState.)//error exec +}if +}bind def +/CheckHalftone +{dup/HalftoneType known not{ +mark(Resource )3 index( must have /HalftoneType.)//error exec +}if +}bind def +/ResolveFunction +{ +//PDFR_DEBUG{(ResolveFunction beg )print dup = count =}if +2 copy get//IsObjRef exec{ +2 copy//DoNothing//ResolveD exec +3 copy put pop +}if +2 copy get dup type/arraytype eq exch xcheck and not{ +2 copy get +dup type/arraytype eq 1 index xcheck not and{ +dup length 1 sub -1 0{ +2 copy//DoNothing ResolveA +dup/Identity eq{ +pop 2 copy{}put +}{ +//FunctionToProc exec +3 copy put pop +}ifelse +pop +}for +}{ +dup/Default eq{ +}{ +dup/Identity eq{ +pop{} +}{dup type/nametype eq{ +//spotfunctions exch get +}{ +//FunctionToProc exec +}ifelse +}ifelse +}ifelse +}ifelse +3 copy put +exch pop +}{ +1 index exch get +}ifelse +//PDFR_DEBUG{(ResolveFunction end )print dup == count =}if +}bind def +/ResolveFunctionSafe +{2 copy known{ +//ResolveFunction exec +}if +pop +}bind def +/CreateHalftoneThresholds +{ +dup/Thresholds known not{ +dup/HalftoneType get 10 eq{ +dup dup//MakeStreamReader exec +/Thresholds exch put +}if +dup/HalftoneType get dup 3 eq exch 6 eq or{ +dup dup//MakeStreamReader exec +//BlockBuffer readstring pop +dup length +dup 0 eq{ +mark(Could not read Thresholds)//error exec +}if +string copy/Thresholds exch put +dup/HalftoneType 3 put +}if +}if +}bind def +/SetExtGState +{ +//PDFReader/CurrentObject get/Context get/Resources get +/ExtGState//DoNothing//ResolveD exec +exch//CheckExtGState//ResolveD exec +dup/LW//knownget exec{ +setlinewidth +}if +dup/LC//knownget exec{ +setlinecap +}if +dup/LJ//knownget exec{ +setlinejoin +}if +dup/ML//knownget exec{ +setmeterlimit +}if +dup/D//knownget exec{ +setdash +}if +dup/RI//knownget exec{ +mark(Unimplemented ExtGState.RI)//error exec +}if +dup/OP//knownget exec{ +setoverprint +}if +dup/op//knownget exec{ +setoverprint +}if +dup/OPM//knownget exec{ +mark(Unimplemented ExtGState.OPM)//error exec +}if +dup/Font//knownget exec{ +mark(Unimplemented ExtGState.Font)//error exec +}if +dup/BG known{ +/BG//ResolveFunction exec +setblackgeneration +}if +dup/BG2 known{ +/BG2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/BG2 get +}if +setblackgeneration +}if +dup/UCR known{ +/UCR//ResolveFunction exec +setundercolorremoval +}if +dup/UCR2 known{ +/UCR2//ResolveFunction exec +dup/Default eq{ +//InitialExtGState/UCR2 get +}if +setundercolorremoval +}if +dup/TR known{ +/TR//ResolveFunction exec +//SetTransfer exec +}if +dup/TR2 known{ +/TR2//ResolveFunction exec +dup/Default eq{ +pop//InitialExtGState/TR2 get +aload pop setcolortransfer +}{ +//SetTransfer exec +}ifelse +}if +dup/HT//knownget exec{ +dup/Default eq{ +pop//InitialExtGState/HT get +sethalftone +}{ +//PDFR_DEBUG{(Ht beg)=}if +pop dup/HT//CheckHalftone//ResolveD exec +/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +null exch +dup/HalftoneType get dup 5 eq exch dup 4 eq exch 2 eq or or{ +dup{ +dup//IsObjRef exec{ +pop +1 index exch//CheckHalftone ResolveD +}if +dup type/dicttype eq{ +dup/SpotFunction//ResolveFunctionSafe exec +/TransferFunction//ResolveFunctionSafe exec +//CreateHalftoneThresholds exec +dup/HalftoneType get 5 gt{ +4 3 roll pop +dup 4 1 roll +}if +}if +pop pop +}forall +}if +//CreateHalftoneThresholds exec +//PDFR_DEBUG{ +(HT:)= +dup{ +1 index/Default eq{ +(Default <<)= +exch pop +{exch = ==}forall +(>>)= +}{ +exch = == +}ifelse +}forall +(HT end)= flush +}if +exch dup null ne{ +(Warning: Ignoring a halftone with a Level 3 component halftone Type )print dup/HalftoneType get = +pop pop +}{ +pop +dup/HalftoneType get 5 gt{ +(Warning: Ignoring a Level 3 halftone Type )print dup/HalftoneType get = +pop +}{ +sethalftone +}ifelse +}ifelse +//PDFR_DEBUG{(HT set)= flush}if +}ifelse +}if +dup/FL//knownget exec{ +setflattness +}if +dup/SM//knownget exec{ +setsmoothness +}if +dup/SA//knownget exec{ +setstrokeadjust +}if +dup/BM//knownget exec{ +mark(Unimplemented ExtGState.BM)//error exec +}if +dup/SMask//knownget exec{ +mark(Unimplemented ExtGState.SMask)//error exec +}if +dup/CA//knownget exec{ +mark(Unimplemented ExtGState.CA)//error exec +}if +dup/ca//knownget exec{ +mark(Unimplemented ExtGState.ca)//error exec +}if +dup/AIS//knownget exec{ +mark(Unimplemented ExtGState.AIS)//error exec +}if +dup/TK//knownget exec{ +mark(Unimplemented ExtGState.TK)//error exec +}if +pop +}bind def +/CheckXObject +{dup/Subtype get dup/Image ne exch dup/Form ne exch/PS ne and and{ +mark(Resource )3 index( must have /Subtype /Image or /Form or /PS.)//error exec +}if +}bind def +/DoXObject +{ +//PDFReader/CurrentObject get/Context get/Resources get +/XObject//DoNothing//ResolveD exec +exch//CheckXObject//ResolveD exec +dup/Subtype get +dup/Image eq{ +pop +//CompleteOutlineImage exec +//DoImage exec +}{ +dup/PS eq{ +PDFR_DEBUG{ +(Executing a PS Xobject)= +}if +pop +//RunDelayedStream exec +}{ +dup/Form eq{ +pop +PDFR_DEBUG{ +(Executing a Form XObject)= +}if +//PDFReader/CurrentObject get exch +dup//PDFReader exch<< exch/Context exch >>/CurrentObject exch put +dup/Matrix get concat +dup/BBox get aload pop exch 3 index sub exch 2 index sub rectclip +//RunDelayedStream exec +//PDFReader exch/CurrentObject exch put +}{ +mark exch(unimplemented XObject type )exch//error exec +}ifelse +}ifelse +}ifelse +}bind def +/Operators 50 dict begin +/q{//GSave exec}bind def +/Q{//GRestore exec}bind def +/cm{//TempMatrix astore concat}bind def +/i{1 .min setflat}bind def +/J/setlinecap load def +/d/setdash load def +/j/setlinejoin load def +/w/setlinewidth load def +/M/setmiterlimit load def +/gs{SetExtGState}bind def +/g/setgray load def +/rg/setrgbcolor load def +/k/setcmykcolor load def +/cs{//ResolveColorSpace exec//SetColorSpaceSafe exec +}bind def +/sc/setcolor load def +/scn{//SetColor exec}bind def +/G/setgray load def +/RG/setrgbcolor load def +/K/setcmykcolor load def +/CS//cs def +/ri{SetColorRenderingIntent}bind def +/SC/setcolor load def +/SCN{//SetColor exec}bind def +/m/moveto load def +/l/lineto load def +/c/curveto load def +/v{currentpoint 6 2 roll curveto}bind def +/y{2 copy curveto}bind def +/re{ +4 2 roll moveto exch dup 0 rlineto 0 3 -1 roll rlineto neg 0 rlineto +closepath +}def +/h/closepath load def +/n/newpath load def +/S/stroke load def +/s{closepath stroke}bind def +/f/fill load def +/f*/eofill load def +/B{gsave fill grestore stroke}bind def +/b{closepath gsave fill grestore stroke}bind def +/B*{gsave eofill grestore stroke}bind def +/b*{closepath gsave eofill grestore stroke}bind def +/W/clip load def +/W*/eoclip load def +/sh{ +ResolveShading +dup/Background known{ +gsave +dup/ColorSpace get setcolorspace +dup/Background get aload pop setcolor +pathbbox +2 index sub exch 3 index sub exch +rectfill +grestore +}if +shfill +}bind def +/Do{//DoXObject exec}bind def +/BI{currentglobal false setglobal<<}bind def +/ID{>> +dup/DataSource currentfile +2 index/F//knownget exec{ +/A85 eq{ +0(~>)/SubFileDecode filter +}if +}if +put +//CompleteInlineImage exec +exch setglobal +//DoImage exec +}bind def +/EI{}bind def +/BT{gsave//GraphicState/InitialTextMatrix get currentmatrix pop}bind def +/ET{grestore}bind def +/Tc{//GraphicState exch/CharacterSpacing exch put}bind def +/TL{//GraphicState exch/TextLeading exch put}bind def +/Tr{//GraphicState exch/TextRenderingMode exch put}bind def +/Ts{ +mark(Unimplemented SetTextRise)//error exec +}bind def +/Tw{//GraphicState exch/WordSpacing exch put}bind def +/Tz{ +mark(Unimplemented SetHorizontalTextScaling)//error exec +}bind def +/Td{translate 0 0 moveto}bind def +/TD{dup neg//TL exec//Td exec}bind def +/Tm{//GraphicState/InitialTextMatrix get setmatrix +//TempMatrix astore concat +0 0 moveto}bind def +/T*{0//GraphicState/TextLeading get neg//Td exec}bind def +/Tj{//ShowTextBeg exec//ShowText exec//ShowTextEnd exec}bind def +/'{//T* exec//ShowText exec//ShowTextEnd exec}bind def +/"{3 2 roll//Tw exec exch//Tc exec//' exec}bind def +/TJ//ShowTextWithGlyphPositioning def +/Tf//SetFont def +/d0/setcharwidth load def +/d1/setcachedevice load def +/BDC{pop pop}bind def +/BMC{pop}bind def +/EMC{}bind def +/BX{BeginCompatibilitySection}bind def +/EX{EndCompatibilitySection}bind def +/DP{DefineMarkedContentPointWithPropertyList}bind def +/MP{DefineMarkedContentPoint}bind def +/PS{cvx exec}bind def +currentdict end def +//PDFR_STREAM{ +//Operators length dict begin +//Operators{ +exch dup +[exch//=only/exec load +( )/print load +8 7 roll +dup type/arraytype eq{ +/exec load +}if +( )/print load +]cvx +def +}forall +currentdict end/Operators exch def +}if +/.registerencoding +{pop pop +}bind def +/.defineencoding +{def +}bind def +/.findencoding +{load +}bind def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding +StandardEncoding 0 39 getinterval aload pop +/quotesingle +StandardEncoding 40 56 getinterval aload pop +/grave +StandardEncoding 97 31 getinterval aload pop +/Adieresis/Aring/Ccedilla/Eacute/Ntilde/Odieresis/Udieresis/aacute +/agrave/acircumflex/adieresis/atilde/aring/ccedilla/eacute/egrave +/ecircumflex/edieresis/iacute/igrave +/icircumflex/idieresis/ntilde/oacute +/ograve/ocircumflex/odieresis/otilde +/uacute/ugrave/ucircumflex/udieresis +/dagger/degree/cent/sterling/section/bullet/paragraph/germandbls +/registered/copyright/trademark/acute/dieresis/.notdef/AE/Oslash +/.notdef/plusminus/.notdef/.notdef/yen/mu/.notdef/.notdef +/.notdef/.notdef/.notdef/ordfeminine/ordmasculine/.notdef/ae/oslash +/questiondown/exclamdown/logicalnot/.notdef +/florin/.notdef/.notdef/guillemotleft +/guillemotright/ellipsis/space/Agrave/Atilde/Otilde/OE/oe +/endash/emdash/quotedblleft/quotedblright +/quoteleft/quoteright/divide/.notdef +/ydieresis/Ydieresis/fraction/currency +/guilsinglleft/guilsinglright/fi/fl +/daggerdbl/periodcentered/quotesinglbase/quotedblbase +/perthousand/Acircumflex/Ecircumflex/Aacute +/Edieresis/Egrave/Iacute/Icircumflex +/Idieresis/Igrave/Oacute/Ocircumflex +/.notdef/Ograve/Uacute/Ucircumflex +/Ugrave/dotlessi/circumflex/tilde +/macron/breve/dotaccent/ring/cedilla/hungarumlaut/ogonek/caron +256 packedarray +5 1 index .registerencoding +.defineencoding +exec +/AdobeGlyphList mark +/A 16#0041 +/AE 16#00c6 +/AEacute 16#01fc +/AEmacron 16#01e2 +/AEsmall 16#f7e6 +/Aacute 16#00c1 +/Aacutesmall 16#f7e1 +/Abreve 16#0102 +/Abreveacute 16#1eae +/Abrevecyrillic 16#04d0 +/Abrevedotbelow 16#1eb6 +/Abrevegrave 16#1eb0 +/Abrevehookabove 16#1eb2 +/Abrevetilde 16#1eb4 +/Acaron 16#01cd +/Acircle 16#24b6 +/Acircumflex 16#00c2 +/Acircumflexacute 16#1ea4 +/Acircumflexdotbelow 16#1eac +/Acircumflexgrave 16#1ea6 +/Acircumflexhookabove 16#1ea8 +/Acircumflexsmall 16#f7e2 +/Acircumflextilde 16#1eaa +/Acute 16#f6c9 +/Acutesmall 16#f7b4 +/Acyrillic 16#0410 +/Adblgrave 16#0200 +/Adieresis 16#00c4 +/Adieresiscyrillic 16#04d2 +/Adieresismacron 16#01de +/Adieresissmall 16#f7e4 +/Adotbelow 16#1ea0 +/Adotmacron 16#01e0 +/Agrave 16#00c0 +/Agravesmall 16#f7e0 +/Ahookabove 16#1ea2 +/Aiecyrillic 16#04d4 +/Ainvertedbreve 16#0202 +/Alpha 16#0391 +/Alphatonos 16#0386 +/Amacron 16#0100 +/Amonospace 16#ff21 +/Aogonek 16#0104 +/Aring 16#00c5 +/Aringacute 16#01fa +/Aringbelow 16#1e00 +/Aringsmall 16#f7e5 +/Asmall 16#f761 +/Atilde 16#00c3 +/Atildesmall 16#f7e3 +/Aybarmenian 16#0531 +/B 16#0042 +/Bcircle 16#24b7 +/Bdotaccent 16#1e02 +/Bdotbelow 16#1e04 +/Becyrillic 16#0411 +/Benarmenian 16#0532 +/Beta 16#0392 +/Bhook 16#0181 +/Blinebelow 16#1e06 +/Bmonospace 16#ff22 +/Brevesmall 16#f6f4 +/Bsmall 16#f762 +/Btopbar 16#0182 +/C 16#0043 +/Caarmenian 16#053e +/Cacute 16#0106 +/Caron 16#f6ca +/Caronsmall 16#f6f5 +/Ccaron 16#010c +/Ccedilla 16#00c7 +/Ccedillaacute 16#1e08 +/Ccedillasmall 16#f7e7 +/Ccircle 16#24b8 +/Ccircumflex 16#0108 +/Cdot 16#010a +/Cdotaccent 16#010a +/Cedillasmall 16#f7b8 +/Chaarmenian 16#0549 +/Cheabkhasiancyrillic 16#04bc +/Checyrillic 16#0427 +/Chedescenderabkhasiancyrillic 16#04be +/Chedescendercyrillic 16#04b6 +/Chedieresiscyrillic 16#04f4 +/Cheharmenian 16#0543 +/Chekhakassiancyrillic 16#04cb +/Cheverticalstrokecyrillic 16#04b8 +/Chi 16#03a7 +/Chook 16#0187 +/Circumflexsmall 16#f6f6 +/Cmonospace 16#ff23 +/Coarmenian 16#0551 +/Csmall 16#f763 +/D 16#0044 +/DZ 16#01f1 +/DZcaron 16#01c4 +/Daarmenian 16#0534 +/Dafrican 16#0189 +/Dcaron 16#010e +/Dcedilla 16#1e10 +/Dcircle 16#24b9 +/Dcircumflexbelow 16#1e12 +/Dcroat 16#0110 +/Ddotaccent 16#1e0a +/Ddotbelow 16#1e0c +/Decyrillic 16#0414 +/Deicoptic 16#03ee +/Delta 16#2206 +/Deltagreek 16#0394 +/Dhook 16#018a +/Dieresis 16#f6cb +/DieresisAcute 16#f6cc +/DieresisGrave 16#f6cd +/Dieresissmall 16#f7a8 +/Digammagreek 16#03dc +/Djecyrillic 16#0402 +/Dlinebelow 16#1e0e +/Dmonospace 16#ff24 +/Dotaccentsmall 16#f6f7 +/Dslash 16#0110 +/Dsmall 16#f764 +/Dtopbar 16#018b +/Dz 16#01f2 +/Dzcaron 16#01c5 +/Dzeabkhasiancyrillic 16#04e0 +/Dzecyrillic 16#0405 +/Dzhecyrillic 16#040f +/E 16#0045 +/Eacute 16#00c9 +/Eacutesmall 16#f7e9 +/Ebreve 16#0114 +/Ecaron 16#011a +/Ecedillabreve 16#1e1c +/Echarmenian 16#0535 +/Ecircle 16#24ba +/Ecircumflex 16#00ca +/Ecircumflexacute 16#1ebe +/Ecircumflexbelow 16#1e18 +/Ecircumflexdotbelow 16#1ec6 +/Ecircumflexgrave 16#1ec0 +/Ecircumflexhookabove 16#1ec2 +/Ecircumflexsmall 16#f7ea +/Ecircumflextilde 16#1ec4 +/Ecyrillic 16#0404 +/Edblgrave 16#0204 +/Edieresis 16#00cb +/Edieresissmall 16#f7eb +/Edot 16#0116 +/Edotaccent 16#0116 +/Edotbelow 16#1eb8 +/Efcyrillic 16#0424 +/Egrave 16#00c8 +/Egravesmall 16#f7e8 +/Eharmenian 16#0537 +/Ehookabove 16#1eba +/Eightroman 16#2167 +/Einvertedbreve 16#0206 +/Eiotifiedcyrillic 16#0464 +/Elcyrillic 16#041b +/Elevenroman 16#216a +/Emacron 16#0112 +/Emacronacute 16#1e16 +/Emacrongrave 16#1e14 +/Emcyrillic 16#041c +/Emonospace 16#ff25 +/Encyrillic 16#041d +/Endescendercyrillic 16#04a2 +/Eng 16#014a +/Enghecyrillic 16#04a4 +/Enhookcyrillic 16#04c7 +/Eogonek 16#0118 +/Eopen 16#0190 +/Epsilon 16#0395 +/Epsilontonos 16#0388 +/Ercyrillic 16#0420 +/Ereversed 16#018e +/Ereversedcyrillic 16#042d +/Escyrillic 16#0421 +/Esdescendercyrillic 16#04aa +/Esh 16#01a9 +/Esmall 16#f765 +/Eta 16#0397 +/Etarmenian 16#0538 +/Etatonos 16#0389 +/Eth 16#00d0 +/Ethsmall 16#f7f0 +/Etilde 16#1ebc +/Etildebelow 16#1e1a +/Euro 16#20ac +/Ezh 16#01b7 +/Ezhcaron 16#01ee +/Ezhreversed 16#01b8 +/F 16#0046 +/Fcircle 16#24bb +/Fdotaccent 16#1e1e +/Feharmenian 16#0556 +/Feicoptic 16#03e4 +/Fhook 16#0191 +/Fitacyrillic 16#0472 +/Fiveroman 16#2164 +/Fmonospace 16#ff26 +/Fourroman 16#2163 +/Fsmall 16#f766 +/G 16#0047 +/GBsquare 16#3387 +/Gacute 16#01f4 +/Gamma 16#0393 +/Gammaafrican 16#0194 +/Gangiacoptic 16#03ea +/Gbreve 16#011e +/Gcaron 16#01e6 +/Gcedilla 16#0122 +/Gcircle 16#24bc +/Gcircumflex 16#011c +/Gcommaaccent 16#0122 +/Gdot 16#0120 +/Gdotaccent 16#0120 +/Gecyrillic 16#0413 +/Ghadarmenian 16#0542 +/Ghemiddlehookcyrillic 16#0494 +/Ghestrokecyrillic 16#0492 +/Gheupturncyrillic 16#0490 +/Ghook 16#0193 +/Gimarmenian 16#0533 +/Gjecyrillic 16#0403 +/Gmacron 16#1e20 +/Gmonospace 16#ff27 +/Grave 16#f6ce +/Gravesmall 16#f760 +/Gsmall 16#f767 +/Gsmallhook 16#029b +/Gstroke 16#01e4 +/H 16#0048 +/H18533 16#25cf +/H18543 16#25aa +/H18551 16#25ab +/H22073 16#25a1 +/HPsquare 16#33cb +/Haabkhasiancyrillic 16#04a8 +/Hadescendercyrillic 16#04b2 +/Hardsigncyrillic 16#042a +/Hbar 16#0126 +/Hbrevebelow 16#1e2a +/Hcedilla 16#1e28 +/Hcircle 16#24bd +/Hcircumflex 16#0124 +/Hdieresis 16#1e26 +/Hdotaccent 16#1e22 +/Hdotbelow 16#1e24 +/Hmonospace 16#ff28 +/Hoarmenian 16#0540 +/Horicoptic 16#03e8 +/Hsmall 16#f768 +/Hungarumlaut 16#f6cf +/Hungarumlautsmall 16#f6f8 +/Hzsquare 16#3390 +/I 16#0049 +/IAcyrillic 16#042f +/IJ 16#0132 +/IUcyrillic 16#042e +/Iacute 16#00cd +/Iacutesmall 16#f7ed +/Ibreve 16#012c +/Icaron 16#01cf +/Icircle 16#24be +/Icircumflex 16#00ce +/Icircumflexsmall 16#f7ee +/Icyrillic 16#0406 +/Idblgrave 16#0208 +/Idieresis 16#00cf +/Idieresisacute 16#1e2e +/Idieresiscyrillic 16#04e4 +/Idieresissmall 16#f7ef +/Idot 16#0130 +/Idotaccent 16#0130 +/Idotbelow 16#1eca +/Iebrevecyrillic 16#04d6 +/Iecyrillic 16#0415 +/Ifraktur 16#2111 +/Igrave 16#00cc +/Igravesmall 16#f7ec +/Ihookabove 16#1ec8 +/Iicyrillic 16#0418 +/Iinvertedbreve 16#020a +/Iishortcyrillic 16#0419 +/Imacron 16#012a +/Imacroncyrillic 16#04e2 +/Imonospace 16#ff29 +/Iniarmenian 16#053b +/Iocyrillic 16#0401 +/Iogonek 16#012e +/Iota 16#0399 +/Iotaafrican 16#0196 +/Iotadieresis 16#03aa +/Iotatonos 16#038a +/Ismall 16#f769 +/Istroke 16#0197 +/Itilde 16#0128 +/Itildebelow 16#1e2c +/Izhitsacyrillic 16#0474 +/Izhitsadblgravecyrillic 16#0476 +/J 16#004a +/Jaarmenian 16#0541 +/Jcircle 16#24bf +/Jcircumflex 16#0134 +/Jecyrillic 16#0408 +/Jheharmenian 16#054b +/Jmonospace 16#ff2a +/Jsmall 16#f76a +/K 16#004b +/KBsquare 16#3385 +/KKsquare 16#33cd +/Kabashkircyrillic 16#04a0 +/Kacute 16#1e30 +/Kacyrillic 16#041a +/Kadescendercyrillic 16#049a +/Kahookcyrillic 16#04c3 +/Kappa 16#039a +/Kastrokecyrillic 16#049e +/Kaverticalstrokecyrillic 16#049c +/Kcaron 16#01e8 +/Kcedilla 16#0136 +/Kcircle 16#24c0 +/Kcommaaccent 16#0136 +/Kdotbelow 16#1e32 +/Keharmenian 16#0554 +/Kenarmenian 16#053f +/Khacyrillic 16#0425 +/Kheicoptic 16#03e6 +/Khook 16#0198 +/Kjecyrillic 16#040c +/Klinebelow 16#1e34 +/Kmonospace 16#ff2b +/Koppacyrillic 16#0480 +/Koppagreek 16#03de +/Ksicyrillic 16#046e +/Ksmall 16#f76b +/L 16#004c +/LJ 16#01c7 +/LL 16#f6bf +/Lacute 16#0139 +/Lambda 16#039b +/Lcaron 16#013d +/Lcedilla 16#013b +/Lcircle 16#24c1 +/Lcircumflexbelow 16#1e3c +/Lcommaaccent 16#013b +/Ldot 16#013f +/Ldotaccent 16#013f +/Ldotbelow 16#1e36 +/Ldotbelowmacron 16#1e38 +/Liwnarmenian 16#053c +/Lj 16#01c8 +/Ljecyrillic 16#0409 +/Llinebelow 16#1e3a +/Lmonospace 16#ff2c +/Lslash 16#0141 +/Lslashsmall 16#f6f9 +/Lsmall 16#f76c +/M 16#004d +/MBsquare 16#3386 +/Macron 16#f6d0 +/Macronsmall 16#f7af +/Macute 16#1e3e +/Mcircle 16#24c2 +/Mdotaccent 16#1e40 +/Mdotbelow 16#1e42 +/Menarmenian 16#0544 +/Mmonospace 16#ff2d +/Msmall 16#f76d +/Mturned 16#019c +/Mu 16#039c +/N 16#004e +/NJ 16#01ca +/Nacute 16#0143 +/Ncaron 16#0147 +/Ncedilla 16#0145 +/Ncircle 16#24c3 +/Ncircumflexbelow 16#1e4a +/Ncommaaccent 16#0145 +/Ndotaccent 16#1e44 +/Ndotbelow 16#1e46 +/Nhookleft 16#019d +/Nineroman 16#2168 +/Nj 16#01cb +/Njecyrillic 16#040a +/Nlinebelow 16#1e48 +/Nmonospace 16#ff2e +/Nowarmenian 16#0546 +/Nsmall 16#f76e +/Ntilde 16#00d1 +/Ntildesmall 16#f7f1 +/Nu 16#039d +/O 16#004f +/OE 16#0152 +/OEsmall 16#f6fa +/Oacute 16#00d3 +/Oacutesmall 16#f7f3 +/Obarredcyrillic 16#04e8 +/Obarreddieresiscyrillic 16#04ea +/Obreve 16#014e +/Ocaron 16#01d1 +/Ocenteredtilde 16#019f +/Ocircle 16#24c4 +/Ocircumflex 16#00d4 +/Ocircumflexacute 16#1ed0 +/Ocircumflexdotbelow 16#1ed8 +/Ocircumflexgrave 16#1ed2 +/Ocircumflexhookabove 16#1ed4 +/Ocircumflexsmall 16#f7f4 +/Ocircumflextilde 16#1ed6 +/Ocyrillic 16#041e +/Odblacute 16#0150 +/Odblgrave 16#020c +/Odieresis 16#00d6 +/Odieresiscyrillic 16#04e6 +/Odieresissmall 16#f7f6 +/Odotbelow 16#1ecc +/Ogoneksmall 16#f6fb +/Ograve 16#00d2 +/Ogravesmall 16#f7f2 +/Oharmenian 16#0555 +/Ohm 16#2126 +/Ohookabove 16#1ece +/Ohorn 16#01a0 +/Ohornacute 16#1eda +/Ohorndotbelow 16#1ee2 +/Ohorngrave 16#1edc +/Ohornhookabove 16#1ede +/Ohorntilde 16#1ee0 +/Ohungarumlaut 16#0150 +/Oi 16#01a2 +/Oinvertedbreve 16#020e +/Omacron 16#014c +/Omacronacute 16#1e52 +/Omacrongrave 16#1e50 +/Omega 16#2126 +/Omegacyrillic 16#0460 +/Omegagreek 16#03a9 +/Omegaroundcyrillic 16#047a +/Omegatitlocyrillic 16#047c +/Omegatonos 16#038f +/Omicron 16#039f +/Omicrontonos 16#038c +/Omonospace 16#ff2f +/Oneroman 16#2160 +/Oogonek 16#01ea +/Oogonekmacron 16#01ec +/Oopen 16#0186 +/Oslash 16#00d8 +/Oslashacute 16#01fe +/Oslashsmall 16#f7f8 +/Osmall 16#f76f +/Ostrokeacute 16#01fe +/Otcyrillic 16#047e +/Otilde 16#00d5 +/Otildeacute 16#1e4c +/Otildedieresis 16#1e4e +/Otildesmall 16#f7f5 +/P 16#0050 +/Pacute 16#1e54 +/Pcircle 16#24c5 +/Pdotaccent 16#1e56 +/Pecyrillic 16#041f +/Peharmenian 16#054a +/Pemiddlehookcyrillic 16#04a6 +/Phi 16#03a6 +/Phook 16#01a4 +/Pi 16#03a0 +/Piwrarmenian 16#0553 +/Pmonospace 16#ff30 +/Psi 16#03a8 +/Psicyrillic 16#0470 +/Psmall 16#f770 +/Q 16#0051 +/Qcircle 16#24c6 +/Qmonospace 16#ff31 +/Qsmall 16#f771 +/R 16#0052 +/Raarmenian 16#054c +/Racute 16#0154 +/Rcaron 16#0158 +/Rcedilla 16#0156 +/Rcircle 16#24c7 +/Rcommaaccent 16#0156 +/Rdblgrave 16#0210 +/Rdotaccent 16#1e58 +/Rdotbelow 16#1e5a +/Rdotbelowmacron 16#1e5c +/Reharmenian 16#0550 +/Rfraktur 16#211c +/Rho 16#03a1 +/Ringsmall 16#f6fc +/Rinvertedbreve 16#0212 +/Rlinebelow 16#1e5e +/Rmonospace 16#ff32 +/Rsmall 16#f772 +/Rsmallinverted 16#0281 +/Rsmallinvertedsuperior 16#02b6 +/S 16#0053 +/SF010000 16#250c +/SF020000 16#2514 +/SF030000 16#2510 +/SF040000 16#2518 +/SF050000 16#253c +/SF060000 16#252c +/SF070000 16#2534 +/SF080000 16#251c +/SF090000 16#2524 +/SF100000 16#2500 +/SF110000 16#2502 +/SF190000 16#2561 +/SF200000 16#2562 +/SF210000 16#2556 +/SF220000 16#2555 +/SF230000 16#2563 +/SF240000 16#2551 +/SF250000 16#2557 +/SF260000 16#255d +/SF270000 16#255c +/SF280000 16#255b +/SF360000 16#255e +/SF370000 16#255f +/SF380000 16#255a +/SF390000 16#2554 +/SF400000 16#2569 +/SF410000 16#2566 +/SF420000 16#2560 +/SF430000 16#2550 +/SF440000 16#256c +/SF450000 16#2567 +/SF460000 16#2568 +/SF470000 16#2564 +/SF480000 16#2565 +/SF490000 16#2559 +/SF500000 16#2558 +/SF510000 16#2552 +/SF520000 16#2553 +/SF530000 16#256b +/SF540000 16#256a +/Sacute 16#015a +/Sacutedotaccent 16#1e64 +/Sampigreek 16#03e0 +/Scaron 16#0160 +/Scarondotaccent 16#1e66 +/Scaronsmall 16#f6fd +/Scedilla 16#015e +/Schwa 16#018f +/Schwacyrillic 16#04d8 +/Schwadieresiscyrillic 16#04da +/Scircle 16#24c8 +/Scircumflex 16#015c +/Scommaaccent 16#0218 +/Sdotaccent 16#1e60 +/Sdotbelow 16#1e62 +/Sdotbelowdotaccent 16#1e68 +/Seharmenian 16#054d +/Sevenroman 16#2166 +/Shaarmenian 16#0547 +/Shacyrillic 16#0428 +/Shchacyrillic 16#0429 +/Sheicoptic 16#03e2 +/Shhacyrillic 16#04ba +/Shimacoptic 16#03ec +/Sigma 16#03a3 +/Sixroman 16#2165 +/Smonospace 16#ff33 +/Softsigncyrillic 16#042c +/Ssmall 16#f773 +/Stigmagreek 16#03da +/T 16#0054 +/Tau 16#03a4 +/Tbar 16#0166 +/Tcaron 16#0164 +/Tcedilla 16#0162 +/Tcircle 16#24c9 +/Tcircumflexbelow 16#1e70 +/Tcommaaccent 16#0162 +/Tdotaccent 16#1e6a +/Tdotbelow 16#1e6c +/Tecyrillic 16#0422 +/Tedescendercyrillic 16#04ac +/Tenroman 16#2169 +/Tetsecyrillic 16#04b4 +/Theta 16#0398 +/Thook 16#01ac +/Thorn 16#00de +/Thornsmall 16#f7fe +/Threeroman 16#2162 +/Tildesmall 16#f6fe +/Tiwnarmenian 16#054f +/Tlinebelow 16#1e6e +/Tmonospace 16#ff34 +/Toarmenian 16#0539 +/Tonefive 16#01bc +/Tonesix 16#0184 +/Tonetwo 16#01a7 +/Tretroflexhook 16#01ae +/Tsecyrillic 16#0426 +/Tshecyrillic 16#040b +/Tsmall 16#f774 +/Twelveroman 16#216b +/Tworoman 16#2161 +/U 16#0055 +/Uacute 16#00da +/Uacutesmall 16#f7fa +/Ubreve 16#016c +/Ucaron 16#01d3 +/Ucircle 16#24ca +/Ucircumflex 16#00db +/Ucircumflexbelow 16#1e76 +/Ucircumflexsmall 16#f7fb +/Ucyrillic 16#0423 +/Udblacute 16#0170 +/Udblgrave 16#0214 +/Udieresis 16#00dc +/Udieresisacute 16#01d7 +/Udieresisbelow 16#1e72 +/Udieresiscaron 16#01d9 +/Udieresiscyrillic 16#04f0 +/Udieresisgrave 16#01db +/Udieresismacron 16#01d5 +/Udieresissmall 16#f7fc +/Udotbelow 16#1ee4 +/Ugrave 16#00d9 +/Ugravesmall 16#f7f9 +/Uhookabove 16#1ee6 +/Uhorn 16#01af +/Uhornacute 16#1ee8 +/Uhorndotbelow 16#1ef0 +/Uhorngrave 16#1eea +/Uhornhookabove 16#1eec +/Uhorntilde 16#1eee +/Uhungarumlaut 16#0170 +/Uhungarumlautcyrillic 16#04f2 +/Uinvertedbreve 16#0216 +/Ukcyrillic 16#0478 +/Umacron 16#016a +/Umacroncyrillic 16#04ee +/Umacrondieresis 16#1e7a +/Umonospace 16#ff35 +/Uogonek 16#0172 +/Upsilon 16#03a5 +/Upsilon1 16#03d2 +/Upsilonacutehooksymbolgreek 16#03d3 +/Upsilonafrican 16#01b1 +/Upsilondieresis 16#03ab +/Upsilondieresishooksymbolgreek 16#03d4 +/Upsilonhooksymbol 16#03d2 +/Upsilontonos 16#038e +/Uring 16#016e +/Ushortcyrillic 16#040e +/Usmall 16#f775 +/Ustraightcyrillic 16#04ae +/Ustraightstrokecyrillic 16#04b0 +/Utilde 16#0168 +/Utildeacute 16#1e78 +/Utildebelow 16#1e74 +/V 16#0056 +/Vcircle 16#24cb +/Vdotbelow 16#1e7e +/Vecyrillic 16#0412 +/Vewarmenian 16#054e +/Vhook 16#01b2 +/Vmonospace 16#ff36 +/Voarmenian 16#0548 +/Vsmall 16#f776 +/Vtilde 16#1e7c +/W 16#0057 +/Wacute 16#1e82 +/Wcircle 16#24cc +/Wcircumflex 16#0174 +/Wdieresis 16#1e84 +/Wdotaccent 16#1e86 +/Wdotbelow 16#1e88 +/Wgrave 16#1e80 +/Wmonospace 16#ff37 +/Wsmall 16#f777 +/X 16#0058 +/Xcircle 16#24cd +/Xdieresis 16#1e8c +/Xdotaccent 16#1e8a +/Xeharmenian 16#053d +/Xi 16#039e +/Xmonospace 16#ff38 +/Xsmall 16#f778 +/Y 16#0059 +/Yacute 16#00dd +/Yacutesmall 16#f7fd +/Yatcyrillic 16#0462 +/Ycircle 16#24ce +/Ycircumflex 16#0176 +/Ydieresis 16#0178 +/Ydieresissmall 16#f7ff +/Ydotaccent 16#1e8e +/Ydotbelow 16#1ef4 +/Yericyrillic 16#042b +/Yerudieresiscyrillic 16#04f8 +/Ygrave 16#1ef2 +/Yhook 16#01b3 +/Yhookabove 16#1ef6 +/Yiarmenian 16#0545 +/Yicyrillic 16#0407 +/Yiwnarmenian 16#0552 +/Ymonospace 16#ff39 +/Ysmall 16#f779 +/Ytilde 16#1ef8 +/Yusbigcyrillic 16#046a +/Yusbigiotifiedcyrillic 16#046c +/Yuslittlecyrillic 16#0466 +/Yuslittleiotifiedcyrillic 16#0468 +/Z 16#005a +/Zaarmenian 16#0536 +/Zacute 16#0179 +/Zcaron 16#017d +/Zcaronsmall 16#f6ff +/Zcircle 16#24cf +/Zcircumflex 16#1e90 +/Zdot 16#017b +/Zdotaccent 16#017b +/Zdotbelow 16#1e92 +/Zecyrillic 16#0417 +/Zedescendercyrillic 16#0498 +/Zedieresiscyrillic 16#04de +/Zeta 16#0396 +/Zhearmenian 16#053a +/Zhebrevecyrillic 16#04c1 +/Zhecyrillic 16#0416 +/Zhedescendercyrillic 16#0496 +/Zhedieresiscyrillic 16#04dc +/Zlinebelow 16#1e94 +/Zmonospace 16#ff3a +/Zsmall 16#f77a +/Zstroke 16#01b5 +/a 16#0061 +/aabengali 16#0986 +/aacute 16#00e1 +/aadeva 16#0906 +/aagujarati 16#0a86 +/aagurmukhi 16#0a06 +/aamatragurmukhi 16#0a3e +/aarusquare 16#3303 +/aavowelsignbengali 16#09be +/aavowelsigndeva 16#093e +/aavowelsigngujarati 16#0abe +/abbreviationmarkarmenian 16#055f +/abbreviationsigndeva 16#0970 +/abengali 16#0985 +/abopomofo 16#311a +/abreve 16#0103 +/abreveacute 16#1eaf +/abrevecyrillic 16#04d1 +/abrevedotbelow 16#1eb7 +/abrevegrave 16#1eb1 +/abrevehookabove 16#1eb3 +/abrevetilde 16#1eb5 +/acaron 16#01ce +/acircle 16#24d0 +/acircumflex 16#00e2 +/acircumflexacute 16#1ea5 +/acircumflexdotbelow 16#1ead +/acircumflexgrave 16#1ea7 +/acircumflexhookabove 16#1ea9 +/acircumflextilde 16#1eab +/acute 16#00b4 +/acutebelowcmb 16#0317 +/acutecmb 16#0301 +/acutecomb 16#0301 +/acutedeva 16#0954 +/acutelowmod 16#02cf +/acutetonecmb 16#0341 +/acyrillic 16#0430 +/adblgrave 16#0201 +/addakgurmukhi 16#0a71 +/adeva 16#0905 +/adieresis 16#00e4 +/adieresiscyrillic 16#04d3 +/adieresismacron 16#01df +/adotbelow 16#1ea1 +/adotmacron 16#01e1 +/ae 16#00e6 +/aeacute 16#01fd +/aekorean 16#3150 +/aemacron 16#01e3 +/afii00208 16#2015 +/afii08941 16#20a4 +/afii10017 16#0410 +/afii10018 16#0411 +/afii10019 16#0412 +/afii10020 16#0413 +/afii10021 16#0414 +/afii10022 16#0415 +/afii10023 16#0401 +/afii10024 16#0416 +/afii10025 16#0417 +/afii10026 16#0418 +/afii10027 16#0419 +/afii10028 16#041a +/afii10029 16#041b +/afii10030 16#041c +/afii10031 16#041d +/afii10032 16#041e +/afii10033 16#041f +/afii10034 16#0420 +/afii10035 16#0421 +/afii10036 16#0422 +/afii10037 16#0423 +/afii10038 16#0424 +/afii10039 16#0425 +/afii10040 16#0426 +/afii10041 16#0427 +/afii10042 16#0428 +/afii10043 16#0429 +/afii10044 16#042a +/afii10045 16#042b +/afii10046 16#042c +/afii10047 16#042d +/afii10048 16#042e +/afii10049 16#042f +/afii10050 16#0490 +/afii10051 16#0402 +/afii10052 16#0403 +/afii10053 16#0404 +/afii10054 16#0405 +/afii10055 16#0406 +/afii10056 16#0407 +/afii10057 16#0408 +/afii10058 16#0409 +/afii10059 16#040a +/afii10060 16#040b +/afii10061 16#040c +/afii10062 16#040e +/afii10063 16#f6c4 +/afii10064 16#f6c5 +/afii10065 16#0430 +/afii10066 16#0431 +/afii10067 16#0432 +/afii10068 16#0433 +/afii10069 16#0434 +/afii10070 16#0435 +/afii10071 16#0451 +/afii10072 16#0436 +/afii10073 16#0437 +/afii10074 16#0438 +/afii10075 16#0439 +/afii10076 16#043a +/afii10077 16#043b +/afii10078 16#043c +/afii10079 16#043d +/afii10080 16#043e +/afii10081 16#043f +/afii10082 16#0440 +/afii10083 16#0441 +/afii10084 16#0442 +/afii10085 16#0443 +/afii10086 16#0444 +/afii10087 16#0445 +/afii10088 16#0446 +/afii10089 16#0447 +/afii10090 16#0448 +/afii10091 16#0449 +/afii10092 16#044a +/afii10093 16#044b +/afii10094 16#044c +/afii10095 16#044d +/afii10096 16#044e +/afii10097 16#044f +/afii10098 16#0491 +/afii10099 16#0452 +/afii10100 16#0453 +/afii10101 16#0454 +/afii10102 16#0455 +/afii10103 16#0456 +/afii10104 16#0457 +/afii10105 16#0458 +/afii10106 16#0459 +/afii10107 16#045a +/afii10108 16#045b +/afii10109 16#045c +/afii10110 16#045e +/afii10145 16#040f +/afii10146 16#0462 +/afii10147 16#0472 +/afii10148 16#0474 +/afii10192 16#f6c6 +/afii10193 16#045f +/afii10194 16#0463 +/afii10195 16#0473 +/afii10196 16#0475 +/afii10831 16#f6c7 +/afii10832 16#f6c8 +/afii10846 16#04d9 +/afii299 16#200e +/afii300 16#200f +/afii301 16#200d +/afii57381 16#066a +/afii57388 16#060c +/afii57392 16#0660 +/afii57393 16#0661 +/afii57394 16#0662 +/afii57395 16#0663 +/afii57396 16#0664 +/afii57397 16#0665 +/afii57398 16#0666 +/afii57399 16#0667 +/afii57400 16#0668 +/afii57401 16#0669 +/afii57403 16#061b +/afii57407 16#061f +/afii57409 16#0621 +/afii57410 16#0622 +/afii57411 16#0623 +/afii57412 16#0624 +/afii57413 16#0625 +/afii57414 16#0626 +/afii57415 16#0627 +/afii57416 16#0628 +/afii57417 16#0629 +/afii57418 16#062a +/afii57419 16#062b +/afii57420 16#062c +/afii57421 16#062d +/afii57422 16#062e +/afii57423 16#062f +/afii57424 16#0630 +/afii57425 16#0631 +/afii57426 16#0632 +/afii57427 16#0633 +/afii57428 16#0634 +/afii57429 16#0635 +/afii57430 16#0636 +/afii57431 16#0637 +/afii57432 16#0638 +/afii57433 16#0639 +/afii57434 16#063a +/afii57440 16#0640 +/afii57441 16#0641 +/afii57442 16#0642 +/afii57443 16#0643 +/afii57444 16#0644 +/afii57445 16#0645 +/afii57446 16#0646 +/afii57448 16#0648 +/afii57449 16#0649 +/afii57450 16#064a +/afii57451 16#064b +/afii57452 16#064c +/afii57453 16#064d +/afii57454 16#064e +/afii57455 16#064f +/afii57456 16#0650 +/afii57457 16#0651 +/afii57458 16#0652 +/afii57470 16#0647 +/afii57505 16#06a4 +/afii57506 16#067e +/afii57507 16#0686 +/afii57508 16#0698 +/afii57509 16#06af +/afii57511 16#0679 +/afii57512 16#0688 +/afii57513 16#0691 +/afii57514 16#06ba +/afii57519 16#06d2 +/afii57534 16#06d5 +/afii57636 16#20aa +/afii57645 16#05be +/afii57658 16#05c3 +/afii57664 16#05d0 +/afii57665 16#05d1 +/afii57666 16#05d2 +/afii57667 16#05d3 +/afii57668 16#05d4 +/afii57669 16#05d5 +/afii57670 16#05d6 +/afii57671 16#05d7 +/afii57672 16#05d8 +/afii57673 16#05d9 +/afii57674 16#05da +/afii57675 16#05db +/afii57676 16#05dc +/afii57677 16#05dd +/afii57678 16#05de +/afii57679 16#05df +/afii57680 16#05e0 +/afii57681 16#05e1 +/afii57682 16#05e2 +/afii57683 16#05e3 +/afii57684 16#05e4 +/afii57685 16#05e5 +/afii57686 16#05e6 +/afii57687 16#05e7 +/afii57688 16#05e8 +/afii57689 16#05e9 +/afii57690 16#05ea +/afii57694 16#fb2a +/afii57695 16#fb2b +/afii57700 16#fb4b +/afii57705 16#fb1f +/afii57716 16#05f0 +/afii57717 16#05f1 +/afii57718 16#05f2 +/afii57723 16#fb35 +/afii57793 16#05b4 +/afii57794 16#05b5 +/afii57795 16#05b6 +/afii57796 16#05bb +/afii57797 16#05b8 +/afii57798 16#05b7 +/afii57799 16#05b0 +/afii57800 16#05b2 +/afii57801 16#05b1 +/afii57802 16#05b3 +/afii57803 16#05c2 +/afii57804 16#05c1 +/afii57806 16#05b9 +/afii57807 16#05bc +/afii57839 16#05bd +/afii57841 16#05bf +/afii57842 16#05c0 +/afii57929 16#02bc +/afii61248 16#2105 +/afii61289 16#2113 +/afii61352 16#2116 +/afii61573 16#202c +/afii61574 16#202d +/afii61575 16#202e +/afii61664 16#200c +/afii63167 16#066d +/afii64937 16#02bd +/agrave 16#00e0 +/agujarati 16#0a85 +/agurmukhi 16#0a05 +/ahiragana 16#3042 +/ahookabove 16#1ea3 +/aibengali 16#0990 +/aibopomofo 16#311e +/aideva 16#0910 +/aiecyrillic 16#04d5 +/aigujarati 16#0a90 +/aigurmukhi 16#0a10 +/aimatragurmukhi 16#0a48 +/ainarabic 16#0639 +/ainfinalarabic 16#feca +/aininitialarabic 16#fecb +/ainmedialarabic 16#fecc +/ainvertedbreve 16#0203 +/aivowelsignbengali 16#09c8 +/aivowelsigndeva 16#0948 +/aivowelsigngujarati 16#0ac8 +/akatakana 16#30a2 +/akatakanahalfwidth 16#ff71 +/akorean 16#314f +/alef 16#05d0 +/alefarabic 16#0627 +/alefdageshhebrew 16#fb30 +/aleffinalarabic 16#fe8e +/alefhamzaabovearabic 16#0623 +/alefhamzaabovefinalarabic 16#fe84 +/alefhamzabelowarabic 16#0625 +/alefhamzabelowfinalarabic 16#fe88 +/alefhebrew 16#05d0 +/aleflamedhebrew 16#fb4f +/alefmaddaabovearabic 16#0622 +/alefmaddaabovefinalarabic 16#fe82 +/alefmaksuraarabic 16#0649 +/alefmaksurafinalarabic 16#fef0 +/alefmaksurainitialarabic 16#fef3 +/alefmaksuramedialarabic 16#fef4 +/alefpatahhebrew 16#fb2e +/alefqamatshebrew 16#fb2f +/aleph 16#2135 +/allequal 16#224c +/alpha 16#03b1 +/alphatonos 16#03ac +/amacron 16#0101 +/amonospace 16#ff41 +/ampersand 16#0026 +/ampersandmonospace 16#ff06 +/ampersandsmall 16#f726 +/amsquare 16#33c2 +/anbopomofo 16#3122 +/angbopomofo 16#3124 +/angkhankhuthai 16#0e5a +/angle 16#2220 +/anglebracketleft 16#3008 +/anglebracketleftvertical 16#fe3f +/anglebracketright 16#3009 +/anglebracketrightvertical 16#fe40 +/angleleft 16#2329 +/angleright 16#232a +/angstrom 16#212b +/anoteleia 16#0387 +/anudattadeva 16#0952 +/anusvarabengali 16#0982 +/anusvaradeva 16#0902 +/anusvaragujarati 16#0a82 +/aogonek 16#0105 +/apaatosquare 16#3300 +/aparen 16#249c +/apostrophearmenian 16#055a +/apostrophemod 16#02bc +/apple 16#f8ff +/approaches 16#2250 +/approxequal 16#2248 +/approxequalorimage 16#2252 +/approximatelyequal 16#2245 +/araeaekorean 16#318e +/araeakorean 16#318d +/arc 16#2312 +/arighthalfring 16#1e9a +/aring 16#00e5 +/aringacute 16#01fb +/aringbelow 16#1e01 +/arrowboth 16#2194 +/arrowdashdown 16#21e3 +/arrowdashleft 16#21e0 +/arrowdashright 16#21e2 +/arrowdashup 16#21e1 +/arrowdblboth 16#21d4 +/arrowdbldown 16#21d3 +/arrowdblleft 16#21d0 +/arrowdblright 16#21d2 +/arrowdblup 16#21d1 +/arrowdown 16#2193 +/arrowdownleft 16#2199 +/arrowdownright 16#2198 +/arrowdownwhite 16#21e9 +/arrowheaddownmod 16#02c5 +/arrowheadleftmod 16#02c2 +/arrowheadrightmod 16#02c3 +/arrowheadupmod 16#02c4 +/arrowhorizex 16#f8e7 +/arrowleft 16#2190 +/arrowleftdbl 16#21d0 +/arrowleftdblstroke 16#21cd +/arrowleftoverright 16#21c6 +/arrowleftwhite 16#21e6 +/arrowright 16#2192 +/arrowrightdblstroke 16#21cf +/arrowrightheavy 16#279e +/arrowrightoverleft 16#21c4 +/arrowrightwhite 16#21e8 +/arrowtableft 16#21e4 +/arrowtabright 16#21e5 +/arrowup 16#2191 +/arrowupdn 16#2195 +/arrowupdnbse 16#21a8 +/arrowupdownbase 16#21a8 +/arrowupleft 16#2196 +/arrowupleftofdown 16#21c5 +/arrowupright 16#2197 +/arrowupwhite 16#21e7 +/arrowvertex 16#f8e6 +/asciicircum 16#005e +/asciicircummonospace 16#ff3e +/asciitilde 16#007e +/asciitildemonospace 16#ff5e +/ascript 16#0251 +/ascriptturned 16#0252 +/asmallhiragana 16#3041 +/asmallkatakana 16#30a1 +/asmallkatakanahalfwidth 16#ff67 +/asterisk 16#002a +/asteriskaltonearabic 16#066d +/asteriskarabic 16#066d +/asteriskmath 16#2217 +/asteriskmonospace 16#ff0a +/asterisksmall 16#fe61 +/asterism 16#2042 +/asuperior 16#f6e9 +/asymptoticallyequal 16#2243 +/at 16#0040 +/atilde 16#00e3 +/atmonospace 16#ff20 +/atsmall 16#fe6b +/aturned 16#0250 +/aubengali 16#0994 +/aubopomofo 16#3120 +/audeva 16#0914 +/augujarati 16#0a94 +/augurmukhi 16#0a14 +/aulengthmarkbengali 16#09d7 +/aumatragurmukhi 16#0a4c +/auvowelsignbengali 16#09cc +/auvowelsigndeva 16#094c +/auvowelsigngujarati 16#0acc +/avagrahadeva 16#093d +/aybarmenian 16#0561 +/ayin 16#05e2 +/ayinaltonehebrew 16#fb20 +/ayinhebrew 16#05e2 +/b 16#0062 +/babengali 16#09ac +/backslash 16#005c +/backslashmonospace 16#ff3c +/badeva 16#092c +/bagujarati 16#0aac +/bagurmukhi 16#0a2c +/bahiragana 16#3070 +/bahtthai 16#0e3f +/bakatakana 16#30d0 +/bar 16#007c +/barmonospace 16#ff5c +/bbopomofo 16#3105 +/bcircle 16#24d1 +/bdotaccent 16#1e03 +/bdotbelow 16#1e05 +/beamedsixteenthnotes 16#266c +/because 16#2235 +/becyrillic 16#0431 +/beharabic 16#0628 +/behfinalarabic 16#fe90 +/behinitialarabic 16#fe91 +/behiragana 16#3079 +/behmedialarabic 16#fe92 +/behmeeminitialarabic 16#fc9f +/behmeemisolatedarabic 16#fc08 +/behnoonfinalarabic 16#fc6d +/bekatakana 16#30d9 +/benarmenian 16#0562 +/bet 16#05d1 +/beta 16#03b2 +/betasymbolgreek 16#03d0 +/betdagesh 16#fb31 +/betdageshhebrew 16#fb31 +/bethebrew 16#05d1 +/betrafehebrew 16#fb4c +/bhabengali 16#09ad +/bhadeva 16#092d +/bhagujarati 16#0aad +/bhagurmukhi 16#0a2d +/bhook 16#0253 +/bihiragana 16#3073 +/bikatakana 16#30d3 +/bilabialclick 16#0298 +/bindigurmukhi 16#0a02 +/birusquare 16#3331 +/blackcircle 16#25cf +/blackdiamond 16#25c6 +/blackdownpointingtriangle 16#25bc +/blackleftpointingpointer 16#25c4 +/blackleftpointingtriangle 16#25c0 +/blacklenticularbracketleft 16#3010 +/blacklenticularbracketleftvertical 16#fe3b +/blacklenticularbracketright 16#3011 +/blacklenticularbracketrightvertical 16#fe3c +/blacklowerlefttriangle 16#25e3 +/blacklowerrighttriangle 16#25e2 +/blackrectangle 16#25ac +/blackrightpointingpointer 16#25ba +/blackrightpointingtriangle 16#25b6 +/blacksmallsquare 16#25aa +/blacksmilingface 16#263b +/blacksquare 16#25a0 +/blackstar 16#2605 +/blackupperlefttriangle 16#25e4 +/blackupperrighttriangle 16#25e5 +/blackuppointingsmalltriangle 16#25b4 +/blackuppointingtriangle 16#25b2 +/blank 16#2423 +/blinebelow 16#1e07 +/block 16#2588 +/bmonospace 16#ff42 +/bobaimaithai 16#0e1a +/bohiragana 16#307c +/bokatakana 16#30dc +/bparen 16#249d +/bqsquare 16#33c3 +/braceex 16#f8f4 +/braceleft 16#007b +/braceleftbt 16#f8f3 +/braceleftmid 16#f8f2 +/braceleftmonospace 16#ff5b +/braceleftsmall 16#fe5b +/bracelefttp 16#f8f1 +/braceleftvertical 16#fe37 +/braceright 16#007d +/bracerightbt 16#f8fe +/bracerightmid 16#f8fd +/bracerightmonospace 16#ff5d +/bracerightsmall 16#fe5c +/bracerighttp 16#f8fc +/bracerightvertical 16#fe38 +/bracketleft 16#005b +/bracketleftbt 16#f8f0 +/bracketleftex 16#f8ef +/bracketleftmonospace 16#ff3b +/bracketlefttp 16#f8ee +/bracketright 16#005d +/bracketrightbt 16#f8fb +/bracketrightex 16#f8fa +/bracketrightmonospace 16#ff3d +/bracketrighttp 16#f8f9 +/breve 16#02d8 +/brevebelowcmb 16#032e +/brevecmb 16#0306 +/breveinvertedbelowcmb 16#032f +/breveinvertedcmb 16#0311 +/breveinverteddoublecmb 16#0361 +/bridgebelowcmb 16#032a +/bridgeinvertedbelowcmb 16#033a +/brokenbar 16#00a6 +/bstroke 16#0180 +/bsuperior 16#f6ea +/btopbar 16#0183 +/buhiragana 16#3076 +/bukatakana 16#30d6 +/bullet 16#2022 +/bulletinverse 16#25d8 +/bulletoperator 16#2219 +/bullseye 16#25ce +/c 16#0063 +/caarmenian 16#056e +/cabengali 16#099a +/cacute 16#0107 +/cadeva 16#091a +/cagujarati 16#0a9a +/cagurmukhi 16#0a1a +/calsquare 16#3388 +/candrabindubengali 16#0981 +/candrabinducmb 16#0310 +/candrabindudeva 16#0901 +/candrabindugujarati 16#0a81 +/capslock 16#21ea +/careof 16#2105 +/caron 16#02c7 +/caronbelowcmb 16#032c +/caroncmb 16#030c +/carriagereturn 16#21b5 +/cbopomofo 16#3118 +/ccaron 16#010d +/ccedilla 16#00e7 +/ccedillaacute 16#1e09 +/ccircle 16#24d2 +/ccircumflex 16#0109 +/ccurl 16#0255 +/cdot 16#010b +/cdotaccent 16#010b +/cdsquare 16#33c5 +/cedilla 16#00b8 +/cedillacmb 16#0327 +/cent 16#00a2 +/centigrade 16#2103 +/centinferior 16#f6df +/centmonospace 16#ffe0 +/centoldstyle 16#f7a2 +/centsuperior 16#f6e0 +/chaarmenian 16#0579 +/chabengali 16#099b +/chadeva 16#091b +/chagujarati 16#0a9b +/chagurmukhi 16#0a1b +/chbopomofo 16#3114 +/cheabkhasiancyrillic 16#04bd +/checkmark 16#2713 +/checyrillic 16#0447 +/chedescenderabkhasiancyrillic 16#04bf +/chedescendercyrillic 16#04b7 +/chedieresiscyrillic 16#04f5 +/cheharmenian 16#0573 +/chekhakassiancyrillic 16#04cc +/cheverticalstrokecyrillic 16#04b9 +/chi 16#03c7 +/chieuchacirclekorean 16#3277 +/chieuchaparenkorean 16#3217 +/chieuchcirclekorean 16#3269 +/chieuchkorean 16#314a +/chieuchparenkorean 16#3209 +/chochangthai 16#0e0a +/chochanthai 16#0e08 +/chochingthai 16#0e09 +/chochoethai 16#0e0c +/chook 16#0188 +/cieucacirclekorean 16#3276 +/cieucaparenkorean 16#3216 +/cieuccirclekorean 16#3268 +/cieuckorean 16#3148 +/cieucparenkorean 16#3208 +/cieucuparenkorean 16#321c +/circle 16#25cb +/circlemultiply 16#2297 +/circleot 16#2299 +/circleplus 16#2295 +/circlepostalmark 16#3036 +/circlewithlefthalfblack 16#25d0 +/circlewithrighthalfblack 16#25d1 +/circumflex 16#02c6 +/circumflexbelowcmb 16#032d +/circumflexcmb 16#0302 +/clear 16#2327 +/clickalveolar 16#01c2 +/clickdental 16#01c0 +/clicklateral 16#01c1 +/clickretroflex 16#01c3 +/club 16#2663 +/clubsuitblack 16#2663 +/clubsuitwhite 16#2667 +/cmcubedsquare 16#33a4 +/cmonospace 16#ff43 +/cmsquaredsquare 16#33a0 +/coarmenian 16#0581 +/colon 16#003a +/colonmonetary 16#20a1 +/colonmonospace 16#ff1a +/colonsign 16#20a1 +/colonsmall 16#fe55 +/colontriangularhalfmod 16#02d1 +/colontriangularmod 16#02d0 +/comma 16#002c +/commaabovecmb 16#0313 +/commaaboverightcmb 16#0315 +/commaaccent 16#f6c3 +/commaarabic 16#060c +/commaarmenian 16#055d +/commainferior 16#f6e1 +/commamonospace 16#ff0c +/commareversedabovecmb 16#0314 +/commareversedmod 16#02bd +/commasmall 16#fe50 +/commasuperior 16#f6e2 +/commaturnedabovecmb 16#0312 +/commaturnedmod 16#02bb +/compass 16#263c +/congruent 16#2245 +/contourintegral 16#222e +/control 16#2303 +/controlACK 16#0006 +/controlBEL 16#0007 +/controlBS 16#0008 +/controlCAN 16#0018 +/controlCR 16#000d +/controlDC1 16#0011 +/controlDC2 16#0012 +/controlDC3 16#0013 +/controlDC4 16#0014 +/controlDEL 16#007f +/controlDLE 16#0010 +/controlEM 16#0019 +/controlENQ 16#0005 +/controlEOT 16#0004 +/controlESC 16#001b +/controlETB 16#0017 +/controlETX 16#0003 +/controlFF 16#000c +/controlFS 16#001c +/controlGS 16#001d +/controlHT 16#0009 +/controlLF 16#000a +/controlNAK 16#0015 +/controlRS 16#001e +/controlSI 16#000f +/controlSO 16#000e +/controlSOT 16#0002 +/controlSTX 16#0001 +/controlSUB 16#001a +/controlSYN 16#0016 +/controlUS 16#001f +/controlVT 16#000b +/copyright 16#00a9 +/copyrightsans 16#f8e9 +/copyrightserif 16#f6d9 +/cornerbracketleft 16#300c +/cornerbracketlefthalfwidth 16#ff62 +/cornerbracketleftvertical 16#fe41 +/cornerbracketright 16#300d +/cornerbracketrighthalfwidth 16#ff63 +/cornerbracketrightvertical 16#fe42 +/corporationsquare 16#337f +/cosquare 16#33c7 +/coverkgsquare 16#33c6 +/cparen 16#249e +/cruzeiro 16#20a2 +/cstretched 16#0297 +/curlyand 16#22cf +/curlyor 16#22ce +/currency 16#00a4 +/cyrBreve 16#f6d1 +/cyrFlex 16#f6d2 +/cyrbreve 16#f6d4 +/cyrflex 16#f6d5 +/d 16#0064 +/daarmenian 16#0564 +/dabengali 16#09a6 +/dadarabic 16#0636 +/dadeva 16#0926 +/dadfinalarabic 16#febe +/dadinitialarabic 16#febf +/dadmedialarabic 16#fec0 +/dagesh 16#05bc +/dageshhebrew 16#05bc +/dagger 16#2020 +/daggerdbl 16#2021 +/dagujarati 16#0aa6 +/dagurmukhi 16#0a26 +/dahiragana 16#3060 +/dakatakana 16#30c0 +/dalarabic 16#062f +/dalet 16#05d3 +/daletdagesh 16#fb33 +/daletdageshhebrew 16#fb33 +/dalethebrew 16#05d3 +/dalfinalarabic 16#feaa +/dammaarabic 16#064f +/dammalowarabic 16#064f +/dammatanaltonearabic 16#064c +/dammatanarabic 16#064c +/danda 16#0964 +/dargahebrew 16#05a7 +/dargalefthebrew 16#05a7 +/dasiapneumatacyrilliccmb 16#0485 +/dblGrave 16#f6d3 +/dblanglebracketleft 16#300a +/dblanglebracketleftvertical 16#fe3d +/dblanglebracketright 16#300b +/dblanglebracketrightvertical 16#fe3e +/dblarchinvertedbelowcmb 16#032b +/dblarrowleft 16#21d4 +/dblarrowright 16#21d2 +/dbldanda 16#0965 +/dblgrave 16#f6d6 +/dblgravecmb 16#030f +/dblintegral 16#222c +/dbllowline 16#2017 +/dbllowlinecmb 16#0333 +/dbloverlinecmb 16#033f +/dblprimemod 16#02ba +/dblverticalbar 16#2016 +/dblverticallineabovecmb 16#030e +/dbopomofo 16#3109 +/dbsquare 16#33c8 +/dcaron 16#010f +/dcedilla 16#1e11 +/dcircle 16#24d3 +/dcircumflexbelow 16#1e13 +/dcroat 16#0111 +/ddabengali 16#09a1 +/ddadeva 16#0921 +/ddagujarati 16#0aa1 +/ddagurmukhi 16#0a21 +/ddalarabic 16#0688 +/ddalfinalarabic 16#fb89 +/dddhadeva 16#095c +/ddhabengali 16#09a2 +/ddhadeva 16#0922 +/ddhagujarati 16#0aa2 +/ddhagurmukhi 16#0a22 +/ddotaccent 16#1e0b +/ddotbelow 16#1e0d +/decimalseparatorarabic 16#066b +/decimalseparatorpersian 16#066b +/decyrillic 16#0434 +/degree 16#00b0 +/dehihebrew 16#05ad +/dehiragana 16#3067 +/deicoptic 16#03ef +/dekatakana 16#30c7 +/deleteleft 16#232b +/deleteright 16#2326 +/delta 16#03b4 +/deltaturned 16#018d +/denominatorminusonenumeratorbengali 16#09f8 +/dezh 16#02a4 +/dhabengali 16#09a7 +/dhadeva 16#0927 +/dhagujarati 16#0aa7 +/dhagurmukhi 16#0a27 +/dhook 16#0257 +/dialytikatonos 16#0385 +/dialytikatonoscmb 16#0344 +/diamond 16#2666 +/diamondsuitwhite 16#2662 +/dieresis 16#00a8 +/dieresisacute 16#f6d7 +/dieresisbelowcmb 16#0324 +/dieresiscmb 16#0308 +/dieresisgrave 16#f6d8 +/dieresistonos 16#0385 +/dihiragana 16#3062 +/dikatakana 16#30c2 +/dittomark 16#3003 +/divide 16#00f7 +/divides 16#2223 +/divisionslash 16#2215 +/djecyrillic 16#0452 +/dkshade 16#2593 +/dlinebelow 16#1e0f +/dlsquare 16#3397 +/dmacron 16#0111 +/dmonospace 16#ff44 +/dnblock 16#2584 +/dochadathai 16#0e0e +/dodekthai 16#0e14 +/dohiragana 16#3069 +/dokatakana 16#30c9 +/dollar 16#0024 +/dollarinferior 16#f6e3 +/dollarmonospace 16#ff04 +/dollaroldstyle 16#f724 +/dollarsmall 16#fe69 +/dollarsuperior 16#f6e4 +/dong 16#20ab +/dorusquare 16#3326 +/dotaccent 16#02d9 +/dotaccentcmb 16#0307 +/dotbelowcmb 16#0323 +/dotbelowcomb 16#0323 +/dotkatakana 16#30fb +/dotlessi 16#0131 +/dotlessj 16#f6be +/dotlessjstrokehook 16#0284 +/dotmath 16#22c5 +/dottedcircle 16#25cc +/doubleyodpatah 16#fb1f +/doubleyodpatahhebrew 16#fb1f +/downtackbelowcmb 16#031e +/downtackmod 16#02d5 +/dparen 16#249f +/dsuperior 16#f6eb +/dtail 16#0256 +/dtopbar 16#018c +/duhiragana 16#3065 +/dukatakana 16#30c5 +/dz 16#01f3 +/dzaltone 16#02a3 +/dzcaron 16#01c6 +/dzcurl 16#02a5 +/dzeabkhasiancyrillic 16#04e1 +/dzecyrillic 16#0455 +/dzhecyrillic 16#045f +/e 16#0065 +/eacute 16#00e9 +/earth 16#2641 +/ebengali 16#098f +/ebopomofo 16#311c +/ebreve 16#0115 +/ecandradeva 16#090d +/ecandragujarati 16#0a8d +/ecandravowelsigndeva 16#0945 +/ecandravowelsigngujarati 16#0ac5 +/ecaron 16#011b +/ecedillabreve 16#1e1d +/echarmenian 16#0565 +/echyiwnarmenian 16#0587 +/ecircle 16#24d4 +/ecircumflex 16#00ea +/ecircumflexacute 16#1ebf +/ecircumflexbelow 16#1e19 +/ecircumflexdotbelow 16#1ec7 +/ecircumflexgrave 16#1ec1 +/ecircumflexhookabove 16#1ec3 +/ecircumflextilde 16#1ec5 +/ecyrillic 16#0454 +/edblgrave 16#0205 +/edeva 16#090f +/edieresis 16#00eb +/edot 16#0117 +/edotaccent 16#0117 +/edotbelow 16#1eb9 +/eegurmukhi 16#0a0f +/eematragurmukhi 16#0a47 +/efcyrillic 16#0444 +/egrave 16#00e8 +/egujarati 16#0a8f +/eharmenian 16#0567 +/ehbopomofo 16#311d +/ehiragana 16#3048 +/ehookabove 16#1ebb +/eibopomofo 16#311f +/eight 16#0038 +/eightarabic 16#0668 +/eightbengali 16#09ee +/eightcircle 16#2467 +/eightcircleinversesansserif 16#2791 +/eightdeva 16#096e +/eighteencircle 16#2471 +/eighteenparen 16#2485 +/eighteenperiod 16#2499 +/eightgujarati 16#0aee +/eightgurmukhi 16#0a6e +/eighthackarabic 16#0668 +/eighthangzhou 16#3028 +/eighthnotebeamed 16#266b +/eightideographicparen 16#3227 +/eightinferior 16#2088 +/eightmonospace 16#ff18 +/eightoldstyle 16#f738 +/eightparen 16#247b +/eightperiod 16#248f +/eightpersian 16#06f8 +/eightroman 16#2177 +/eightsuperior 16#2078 +/eightthai 16#0e58 +/einvertedbreve 16#0207 +/eiotifiedcyrillic 16#0465 +/ekatakana 16#30a8 +/ekatakanahalfwidth 16#ff74 +/ekonkargurmukhi 16#0a74 +/ekorean 16#3154 +/elcyrillic 16#043b +/element 16#2208 +/elevencircle 16#246a +/elevenparen 16#247e +/elevenperiod 16#2492 +/elevenroman 16#217a +/ellipsis 16#2026 +/ellipsisvertical 16#22ee +/emacron 16#0113 +/emacronacute 16#1e17 +/emacrongrave 16#1e15 +/emcyrillic 16#043c +/emdash 16#2014 +/emdashvertical 16#fe31 +/emonospace 16#ff45 +/emphasismarkarmenian 16#055b +/emptyset 16#2205 +/enbopomofo 16#3123 +/encyrillic 16#043d +/endash 16#2013 +/endashvertical 16#fe32 +/endescendercyrillic 16#04a3 +/eng 16#014b +/engbopomofo 16#3125 +/enghecyrillic 16#04a5 +/enhookcyrillic 16#04c8 +/enspace 16#2002 +/eogonek 16#0119 +/eokorean 16#3153 +/eopen 16#025b +/eopenclosed 16#029a +/eopenreversed 16#025c +/eopenreversedclosed 16#025e +/eopenreversedhook 16#025d +/eparen 16#24a0 +/epsilon 16#03b5 +/epsilontonos 16#03ad +/equal 16#003d +/equalmonospace 16#ff1d +/equalsmall 16#fe66 +/equalsuperior 16#207c +/equivalence 16#2261 +/erbopomofo 16#3126 +/ercyrillic 16#0440 +/ereversed 16#0258 +/ereversedcyrillic 16#044d +/escyrillic 16#0441 +/esdescendercyrillic 16#04ab +/esh 16#0283 +/eshcurl 16#0286 +/eshortdeva 16#090e +/eshortvowelsigndeva 16#0946 +/eshreversedloop 16#01aa +/eshsquatreversed 16#0285 +/esmallhiragana 16#3047 +/esmallkatakana 16#30a7 +/esmallkatakanahalfwidth 16#ff6a +/estimated 16#212e +/esuperior 16#f6ec +/eta 16#03b7 +/etarmenian 16#0568 +/etatonos 16#03ae +/eth 16#00f0 +/etilde 16#1ebd +/etildebelow 16#1e1b +/etnahtafoukhhebrew 16#0591 +/etnahtafoukhlefthebrew 16#0591 +/etnahtahebrew 16#0591 +/etnahtalefthebrew 16#0591 +/eturned 16#01dd +/eukorean 16#3161 +/euro 16#20ac +/evowelsignbengali 16#09c7 +/evowelsigndeva 16#0947 +/evowelsigngujarati 16#0ac7 +/exclam 16#0021 +/exclamarmenian 16#055c +/exclamdbl 16#203c +/exclamdown 16#00a1 +/exclamdownsmall 16#f7a1 +/exclammonospace 16#ff01 +/exclamsmall 16#f721 +/existential 16#2203 +/ezh 16#0292 +/ezhcaron 16#01ef +/ezhcurl 16#0293 +/ezhreversed 16#01b9 +/ezhtail 16#01ba +/f 16#0066 +/fadeva 16#095e +/fagurmukhi 16#0a5e +/fahrenheit 16#2109 +/fathaarabic 16#064e +/fathalowarabic 16#064e +/fathatanarabic 16#064b +/fbopomofo 16#3108 +/fcircle 16#24d5 +/fdotaccent 16#1e1f +/feharabic 16#0641 +/feharmenian 16#0586 +/fehfinalarabic 16#fed2 +/fehinitialarabic 16#fed3 +/fehmedialarabic 16#fed4 +/feicoptic 16#03e5 +/female 16#2640 +/ff 16#fb00 +/ffi 16#fb03 +/ffl 16#fb04 +/fi 16#fb01 +/fifteencircle 16#246e +/fifteenparen 16#2482 +/fifteenperiod 16#2496 +/figuredash 16#2012 +/filledbox 16#25a0 +/filledrect 16#25ac +/finalkaf 16#05da +/finalkafdagesh 16#fb3a +/finalkafdageshhebrew 16#fb3a +/finalkafhebrew 16#05da +/finalmem 16#05dd +/finalmemhebrew 16#05dd +/finalnun 16#05df +/finalnunhebrew 16#05df +/finalpe 16#05e3 +/finalpehebrew 16#05e3 +/finaltsadi 16#05e5 +/finaltsadihebrew 16#05e5 +/firsttonechinese 16#02c9 +/fisheye 16#25c9 +/fitacyrillic 16#0473 +/five 16#0035 +/fivearabic 16#0665 +/fivebengali 16#09eb +/fivecircle 16#2464 +/fivecircleinversesansserif 16#278e +/fivedeva 16#096b +/fiveeighths 16#215d +/fivegujarati 16#0aeb +/fivegurmukhi 16#0a6b +/fivehackarabic 16#0665 +/fivehangzhou 16#3025 +/fiveideographicparen 16#3224 +/fiveinferior 16#2085 +/fivemonospace 16#ff15 +/fiveoldstyle 16#f735 +/fiveparen 16#2478 +/fiveperiod 16#248c +/fivepersian 16#06f5 +/fiveroman 16#2174 +/fivesuperior 16#2075 +/fivethai 16#0e55 +/fl 16#fb02 +/florin 16#0192 +/fmonospace 16#ff46 +/fmsquare 16#3399 +/fofanthai 16#0e1f +/fofathai 16#0e1d +/fongmanthai 16#0e4f +/forall 16#2200 +/four 16#0034 +/fourarabic 16#0664 +/fourbengali 16#09ea +/fourcircle 16#2463 +/fourcircleinversesansserif 16#278d +/fourdeva 16#096a +/fourgujarati 16#0aea +/fourgurmukhi 16#0a6a +/fourhackarabic 16#0664 +/fourhangzhou 16#3024 +/fourideographicparen 16#3223 +/fourinferior 16#2084 +/fourmonospace 16#ff14 +/fournumeratorbengali 16#09f7 +/fouroldstyle 16#f734 +/fourparen 16#2477 +/fourperiod 16#248b +/fourpersian 16#06f4 +/fourroman 16#2173 +/foursuperior 16#2074 +/fourteencircle 16#246d +/fourteenparen 16#2481 +/fourteenperiod 16#2495 +/fourthai 16#0e54 +/fourthtonechinese 16#02cb +/fparen 16#24a1 +/fraction 16#2044 +/franc 16#20a3 +/g 16#0067 +/gabengali 16#0997 +/gacute 16#01f5 +/gadeva 16#0917 +/gafarabic 16#06af +/gaffinalarabic 16#fb93 +/gafinitialarabic 16#fb94 +/gafmedialarabic 16#fb95 +/gagujarati 16#0a97 +/gagurmukhi 16#0a17 +/gahiragana 16#304c +/gakatakana 16#30ac +/gamma 16#03b3 +/gammalatinsmall 16#0263 +/gammasuperior 16#02e0 +/gangiacoptic 16#03eb +/gbopomofo 16#310d +/gbreve 16#011f +/gcaron 16#01e7 +/gcedilla 16#0123 +/gcircle 16#24d6 +/gcircumflex 16#011d +/gcommaaccent 16#0123 +/gdot 16#0121 +/gdotaccent 16#0121 +/gecyrillic 16#0433 +/gehiragana 16#3052 +/gekatakana 16#30b2 +/geometricallyequal 16#2251 +/gereshaccenthebrew 16#059c +/gereshhebrew 16#05f3 +/gereshmuqdamhebrew 16#059d +/germandbls 16#00df +/gershayimaccenthebrew 16#059e +/gershayimhebrew 16#05f4 +/getamark 16#3013 +/ghabengali 16#0998 +/ghadarmenian 16#0572 +/ghadeva 16#0918 +/ghagujarati 16#0a98 +/ghagurmukhi 16#0a18 +/ghainarabic 16#063a +/ghainfinalarabic 16#fece +/ghaininitialarabic 16#fecf +/ghainmedialarabic 16#fed0 +/ghemiddlehookcyrillic 16#0495 +/ghestrokecyrillic 16#0493 +/gheupturncyrillic 16#0491 +/ghhadeva 16#095a +/ghhagurmukhi 16#0a5a +/ghook 16#0260 +/ghzsquare 16#3393 +/gihiragana 16#304e +/gikatakana 16#30ae +/gimarmenian 16#0563 +/gimel 16#05d2 +/gimeldagesh 16#fb32 +/gimeldageshhebrew 16#fb32 +/gimelhebrew 16#05d2 +/gjecyrillic 16#0453 +/glottalinvertedstroke 16#01be +/glottalstop 16#0294 +/glottalstopinverted 16#0296 +/glottalstopmod 16#02c0 +/glottalstopreversed 16#0295 +/glottalstopreversedmod 16#02c1 +/glottalstopreversedsuperior 16#02e4 +/glottalstopstroke 16#02a1 +/glottalstopstrokereversed 16#02a2 +/gmacron 16#1e21 +/gmonospace 16#ff47 +/gohiragana 16#3054 +/gokatakana 16#30b4 +/gparen 16#24a2 +/gpasquare 16#33ac +/gradient 16#2207 +/grave 16#0060 +/gravebelowcmb 16#0316 +/gravecmb 16#0300 +/gravecomb 16#0300 +/gravedeva 16#0953 +/gravelowmod 16#02ce +/gravemonospace 16#ff40 +/gravetonecmb 16#0340 +/greater 16#003e +/greaterequal 16#2265 +/greaterequalorless 16#22db +/greatermonospace 16#ff1e +/greaterorequivalent 16#2273 +/greaterorless 16#2277 +/greateroverequal 16#2267 +/greatersmall 16#fe65 +/gscript 16#0261 +/gstroke 16#01e5 +/guhiragana 16#3050 +/guillemotleft 16#00ab +/guillemotright 16#00bb +/guilsinglleft 16#2039 +/guilsinglright 16#203a +/gukatakana 16#30b0 +/guramusquare 16#3318 +/gysquare 16#33c9 +/h 16#0068 +/haabkhasiancyrillic 16#04a9 +/haaltonearabic 16#06c1 +/habengali 16#09b9 +/hadescendercyrillic 16#04b3 +/hadeva 16#0939 +/hagujarati 16#0ab9 +/hagurmukhi 16#0a39 +/haharabic 16#062d +/hahfinalarabic 16#fea2 +/hahinitialarabic 16#fea3 +/hahiragana 16#306f +/hahmedialarabic 16#fea4 +/haitusquare 16#332a +/hakatakana 16#30cf +/hakatakanahalfwidth 16#ff8a +/halantgurmukhi 16#0a4d +/hamzaarabic 16#0621 +/hamzalowarabic 16#0621 +/hangulfiller 16#3164 +/hardsigncyrillic 16#044a +/harpoonleftbarbup 16#21bc +/harpoonrightbarbup 16#21c0 +/hasquare 16#33ca +/hatafpatah 16#05b2 +/hatafpatah16 16#05b2 +/hatafpatah23 16#05b2 +/hatafpatah2f 16#05b2 +/hatafpatahhebrew 16#05b2 +/hatafpatahnarrowhebrew 16#05b2 +/hatafpatahquarterhebrew 16#05b2 +/hatafpatahwidehebrew 16#05b2 +/hatafqamats 16#05b3 +/hatafqamats1b 16#05b3 +/hatafqamats28 16#05b3 +/hatafqamats34 16#05b3 +/hatafqamatshebrew 16#05b3 +/hatafqamatsnarrowhebrew 16#05b3 +/hatafqamatsquarterhebrew 16#05b3 +/hatafqamatswidehebrew 16#05b3 +/hatafsegol 16#05b1 +/hatafsegol17 16#05b1 +/hatafsegol24 16#05b1 +/hatafsegol30 16#05b1 +/hatafsegolhebrew 16#05b1 +/hatafsegolnarrowhebrew 16#05b1 +/hatafsegolquarterhebrew 16#05b1 +/hatafsegolwidehebrew 16#05b1 +/hbar 16#0127 +/hbopomofo 16#310f +/hbrevebelow 16#1e2b +/hcedilla 16#1e29 +/hcircle 16#24d7 +/hcircumflex 16#0125 +/hdieresis 16#1e27 +/hdotaccent 16#1e23 +/hdotbelow 16#1e25 +/he 16#05d4 +/heart 16#2665 +/heartsuitblack 16#2665 +/heartsuitwhite 16#2661 +/hedagesh 16#fb34 +/hedageshhebrew 16#fb34 +/hehaltonearabic 16#06c1 +/heharabic 16#0647 +/hehebrew 16#05d4 +/hehfinalaltonearabic 16#fba7 +/hehfinalalttwoarabic 16#feea +/hehfinalarabic 16#feea +/hehhamzaabovefinalarabic 16#fba5 +/hehhamzaaboveisolatedarabic 16#fba4 +/hehinitialaltonearabic 16#fba8 +/hehinitialarabic 16#feeb +/hehiragana 16#3078 +/hehmedialaltonearabic 16#fba9 +/hehmedialarabic 16#feec +/heiseierasquare 16#337b +/hekatakana 16#30d8 +/hekatakanahalfwidth 16#ff8d +/hekutaarusquare 16#3336 +/henghook 16#0267 +/herutusquare 16#3339 +/het 16#05d7 +/hethebrew 16#05d7 +/hhook 16#0266 +/hhooksuperior 16#02b1 +/hieuhacirclekorean 16#327b +/hieuhaparenkorean 16#321b +/hieuhcirclekorean 16#326d +/hieuhkorean 16#314e +/hieuhparenkorean 16#320d +/hihiragana 16#3072 +/hikatakana 16#30d2 +/hikatakanahalfwidth 16#ff8b +/hiriq 16#05b4 +/hiriq14 16#05b4 +/hiriq21 16#05b4 +/hiriq2d 16#05b4 +/hiriqhebrew 16#05b4 +/hiriqnarrowhebrew 16#05b4 +/hiriqquarterhebrew 16#05b4 +/hiriqwidehebrew 16#05b4 +/hlinebelow 16#1e96 +/hmonospace 16#ff48 +/hoarmenian 16#0570 +/hohipthai 16#0e2b +/hohiragana 16#307b +/hokatakana 16#30db +/hokatakanahalfwidth 16#ff8e +/holam 16#05b9 +/holam19 16#05b9 +/holam26 16#05b9 +/holam32 16#05b9 +/holamhebrew 16#05b9 +/holamnarrowhebrew 16#05b9 +/holamquarterhebrew 16#05b9 +/holamwidehebrew 16#05b9 +/honokhukthai 16#0e2e +/hookabovecomb 16#0309 +/hookcmb 16#0309 +/hookpalatalizedbelowcmb 16#0321 +/hookretroflexbelowcmb 16#0322 +/hoonsquare 16#3342 +/horicoptic 16#03e9 +/horizontalbar 16#2015 +/horncmb 16#031b +/hotsprings 16#2668 +/house 16#2302 +/hparen 16#24a3 +/hsuperior 16#02b0 +/hturned 16#0265 +/huhiragana 16#3075 +/huiitosquare 16#3333 +/hukatakana 16#30d5 +/hukatakanahalfwidth 16#ff8c +/hungarumlaut 16#02dd +/hungarumlautcmb 16#030b +/hv 16#0195 +/hyphen 16#002d +/hypheninferior 16#f6e5 +/hyphenmonospace 16#ff0d +/hyphensmall 16#fe63 +/hyphensuperior 16#f6e6 +/hyphentwo 16#2010 +/i 16#0069 +/iacute 16#00ed +/iacyrillic 16#044f +/ibengali 16#0987 +/ibopomofo 16#3127 +/ibreve 16#012d +/icaron 16#01d0 +/icircle 16#24d8 +/icircumflex 16#00ee +/icyrillic 16#0456 +/idblgrave 16#0209 +/ideographearthcircle 16#328f +/ideographfirecircle 16#328b +/ideographicallianceparen 16#323f +/ideographiccallparen 16#323a +/ideographiccentrecircle 16#32a5 +/ideographicclose 16#3006 +/ideographiccomma 16#3001 +/ideographiccommaleft 16#ff64 +/ideographiccongratulationparen 16#3237 +/ideographiccorrectcircle 16#32a3 +/ideographicearthparen 16#322f +/ideographicenterpriseparen 16#323d +/ideographicexcellentcircle 16#329d +/ideographicfestivalparen 16#3240 +/ideographicfinancialcircle 16#3296 +/ideographicfinancialparen 16#3236 +/ideographicfireparen 16#322b +/ideographichaveparen 16#3232 +/ideographichighcircle 16#32a4 +/ideographiciterationmark 16#3005 +/ideographiclaborcircle 16#3298 +/ideographiclaborparen 16#3238 +/ideographicleftcircle 16#32a7 +/ideographiclowcircle 16#32a6 +/ideographicmedicinecircle 16#32a9 +/ideographicmetalparen 16#322e +/ideographicmoonparen 16#322a +/ideographicnameparen 16#3234 +/ideographicperiod 16#3002 +/ideographicprintcircle 16#329e +/ideographicreachparen 16#3243 +/ideographicrepresentparen 16#3239 +/ideographicresourceparen 16#323e +/ideographicrightcircle 16#32a8 +/ideographicsecretcircle 16#3299 +/ideographicselfparen 16#3242 +/ideographicsocietyparen 16#3233 +/ideographicspace 16#3000 +/ideographicspecialparen 16#3235 +/ideographicstockparen 16#3231 +/ideographicstudyparen 16#323b +/ideographicsunparen 16#3230 +/ideographicsuperviseparen 16#323c +/ideographicwaterparen 16#322c +/ideographicwoodparen 16#322d +/ideographiczero 16#3007 +/ideographmetalcircle 16#328e +/ideographmooncircle 16#328a +/ideographnamecircle 16#3294 +/ideographsuncircle 16#3290 +/ideographwatercircle 16#328c +/ideographwoodcircle 16#328d +/ideva 16#0907 +/idieresis 16#00ef +/idieresisacute 16#1e2f +/idieresiscyrillic 16#04e5 +/idotbelow 16#1ecb +/iebrevecyrillic 16#04d7 +/iecyrillic 16#0435 +/ieungacirclekorean 16#3275 +/ieungaparenkorean 16#3215 +/ieungcirclekorean 16#3267 +/ieungkorean 16#3147 +/ieungparenkorean 16#3207 +/igrave 16#00ec +/igujarati 16#0a87 +/igurmukhi 16#0a07 +/ihiragana 16#3044 +/ihookabove 16#1ec9 +/iibengali 16#0988 +/iicyrillic 16#0438 +/iideva 16#0908 +/iigujarati 16#0a88 +/iigurmukhi 16#0a08 +/iimatragurmukhi 16#0a40 +/iinvertedbreve 16#020b +/iishortcyrillic 16#0439 +/iivowelsignbengali 16#09c0 +/iivowelsigndeva 16#0940 +/iivowelsigngujarati 16#0ac0 +/ij 16#0133 +/ikatakana 16#30a4 +/ikatakanahalfwidth 16#ff72 +/ikorean 16#3163 +/ilde 16#02dc +/iluyhebrew 16#05ac +/imacron 16#012b +/imacroncyrillic 16#04e3 +/imageorapproximatelyequal 16#2253 +/imatragurmukhi 16#0a3f +/imonospace 16#ff49 +/increment 16#2206 +/infinity 16#221e +/iniarmenian 16#056b +/integral 16#222b +/integralbottom 16#2321 +/integralbt 16#2321 +/integralex 16#f8f5 +/integraltop 16#2320 +/integraltp 16#2320 +/intersection 16#2229 +/intisquare 16#3305 +/invbullet 16#25d8 +/invcircle 16#25d9 +/invsmileface 16#263b +/iocyrillic 16#0451 +/iogonek 16#012f +/iota 16#03b9 +/iotadieresis 16#03ca +/iotadieresistonos 16#0390 +/iotalatin 16#0269 +/iotatonos 16#03af +/iparen 16#24a4 +/irigurmukhi 16#0a72 +/ismallhiragana 16#3043 +/ismallkatakana 16#30a3 +/ismallkatakanahalfwidth 16#ff68 +/issharbengali 16#09fa +/istroke 16#0268 +/isuperior 16#f6ed +/iterationhiragana 16#309d +/iterationkatakana 16#30fd +/itilde 16#0129 +/itildebelow 16#1e2d +/iubopomofo 16#3129 +/iucyrillic 16#044e +/ivowelsignbengali 16#09bf +/ivowelsigndeva 16#093f +/ivowelsigngujarati 16#0abf +/izhitsacyrillic 16#0475 +/izhitsadblgravecyrillic 16#0477 +/j 16#006a +/jaarmenian 16#0571 +/jabengali 16#099c +/jadeva 16#091c +/jagujarati 16#0a9c +/jagurmukhi 16#0a1c +/jbopomofo 16#3110 +/jcaron 16#01f0 +/jcircle 16#24d9 +/jcircumflex 16#0135 +/jcrossedtail 16#029d +/jdotlessstroke 16#025f +/jecyrillic 16#0458 +/jeemarabic 16#062c +/jeemfinalarabic 16#fe9e +/jeeminitialarabic 16#fe9f +/jeemmedialarabic 16#fea0 +/jeharabic 16#0698 +/jehfinalarabic 16#fb8b +/jhabengali 16#099d +/jhadeva 16#091d +/jhagujarati 16#0a9d +/jhagurmukhi 16#0a1d +/jheharmenian 16#057b +/jis 16#3004 +/jmonospace 16#ff4a +/jparen 16#24a5 +/jsuperior 16#02b2 +/k 16#006b +/kabashkircyrillic 16#04a1 +/kabengali 16#0995 +/kacute 16#1e31 +/kacyrillic 16#043a +/kadescendercyrillic 16#049b +/kadeva 16#0915 +/kaf 16#05db +/kafarabic 16#0643 +/kafdagesh 16#fb3b +/kafdageshhebrew 16#fb3b +/kaffinalarabic 16#feda +/kafhebrew 16#05db +/kafinitialarabic 16#fedb +/kafmedialarabic 16#fedc +/kafrafehebrew 16#fb4d +/kagujarati 16#0a95 +/kagurmukhi 16#0a15 +/kahiragana 16#304b +/kahookcyrillic 16#04c4 +/kakatakana 16#30ab +/kakatakanahalfwidth 16#ff76 +/kappa 16#03ba +/kappasymbolgreek 16#03f0 +/kapyeounmieumkorean 16#3171 +/kapyeounphieuphkorean 16#3184 +/kapyeounpieupkorean 16#3178 +/kapyeounssangpieupkorean 16#3179 +/karoriisquare 16#330d +/kashidaautoarabic 16#0640 +/kashidaautonosidebearingarabic 16#0640 +/kasmallkatakana 16#30f5 +/kasquare 16#3384 +/kasraarabic 16#0650 +/kasratanarabic 16#064d +/kastrokecyrillic 16#049f +/katahiraprolongmarkhalfwidth 16#ff70 +/kaverticalstrokecyrillic 16#049d +/kbopomofo 16#310e +/kcalsquare 16#3389 +/kcaron 16#01e9 +/kcedilla 16#0137 +/kcircle 16#24da +/kcommaaccent 16#0137 +/kdotbelow 16#1e33 +/keharmenian 16#0584 +/kehiragana 16#3051 +/kekatakana 16#30b1 +/kekatakanahalfwidth 16#ff79 +/kenarmenian 16#056f +/kesmallkatakana 16#30f6 +/kgreenlandic 16#0138 +/khabengali 16#0996 +/khacyrillic 16#0445 +/khadeva 16#0916 +/khagujarati 16#0a96 +/khagurmukhi 16#0a16 +/khaharabic 16#062e +/khahfinalarabic 16#fea6 +/khahinitialarabic 16#fea7 +/khahmedialarabic 16#fea8 +/kheicoptic 16#03e7 +/khhadeva 16#0959 +/khhagurmukhi 16#0a59 +/khieukhacirclekorean 16#3278 +/khieukhaparenkorean 16#3218 +/khieukhcirclekorean 16#326a +/khieukhkorean 16#314b +/khieukhparenkorean 16#320a +/khokhaithai 16#0e02 +/khokhonthai 16#0e05 +/khokhuatthai 16#0e03 +/khokhwaithai 16#0e04 +/khomutthai 16#0e5b +/khook 16#0199 +/khorakhangthai 16#0e06 +/khzsquare 16#3391 +/kihiragana 16#304d +/kikatakana 16#30ad +/kikatakanahalfwidth 16#ff77 +/kiroguramusquare 16#3315 +/kiromeetorusquare 16#3316 +/kirosquare 16#3314 +/kiyeokacirclekorean 16#326e +/kiyeokaparenkorean 16#320e +/kiyeokcirclekorean 16#3260 +/kiyeokkorean 16#3131 +/kiyeokparenkorean 16#3200 +/kiyeoksioskorean 16#3133 +/kjecyrillic 16#045c +/klinebelow 16#1e35 +/klsquare 16#3398 +/kmcubedsquare 16#33a6 +/kmonospace 16#ff4b +/kmsquaredsquare 16#33a2 +/kohiragana 16#3053 +/kohmsquare 16#33c0 +/kokaithai 16#0e01 +/kokatakana 16#30b3 +/kokatakanahalfwidth 16#ff7a +/kooposquare 16#331e +/koppacyrillic 16#0481 +/koreanstandardsymbol 16#327f +/koroniscmb 16#0343 +/kparen 16#24a6 +/kpasquare 16#33aa +/ksicyrillic 16#046f +/ktsquare 16#33cf +/kturned 16#029e +/kuhiragana 16#304f +/kukatakana 16#30af +/kukatakanahalfwidth 16#ff78 +/kvsquare 16#33b8 +/kwsquare 16#33be +/l 16#006c +/labengali 16#09b2 +/lacute 16#013a +/ladeva 16#0932 +/lagujarati 16#0ab2 +/lagurmukhi 16#0a32 +/lakkhangyaothai 16#0e45 +/lamaleffinalarabic 16#fefc +/lamalefhamzaabovefinalarabic 16#fef8 +/lamalefhamzaaboveisolatedarabic 16#fef7 +/lamalefhamzabelowfinalarabic 16#fefa +/lamalefhamzabelowisolatedarabic 16#fef9 +/lamalefisolatedarabic 16#fefb +/lamalefmaddaabovefinalarabic 16#fef6 +/lamalefmaddaaboveisolatedarabic 16#fef5 +/lamarabic 16#0644 +/lambda 16#03bb +/lambdastroke 16#019b +/lamed 16#05dc +/lameddagesh 16#fb3c +/lameddageshhebrew 16#fb3c +/lamedhebrew 16#05dc +/lamfinalarabic 16#fede +/lamhahinitialarabic 16#fcca +/laminitialarabic 16#fedf +/lamjeeminitialarabic 16#fcc9 +/lamkhahinitialarabic 16#fccb +/lamlamhehisolatedarabic 16#fdf2 +/lammedialarabic 16#fee0 +/lammeemhahinitialarabic 16#fd88 +/lammeeminitialarabic 16#fccc +/largecircle 16#25ef +/lbar 16#019a +/lbelt 16#026c +/lbopomofo 16#310c +/lcaron 16#013e +/lcedilla 16#013c +/lcircle 16#24db +/lcircumflexbelow 16#1e3d +/lcommaaccent 16#013c +/ldot 16#0140 +/ldotaccent 16#0140 +/ldotbelow 16#1e37 +/ldotbelowmacron 16#1e39 +/leftangleabovecmb 16#031a +/lefttackbelowcmb 16#0318 +/less 16#003c +/lessequal 16#2264 +/lessequalorgreater 16#22da +/lessmonospace 16#ff1c +/lessorequivalent 16#2272 +/lessorgreater 16#2276 +/lessoverequal 16#2266 +/lesssmall 16#fe64 +/lezh 16#026e +/lfblock 16#258c +/lhookretroflex 16#026d +/lira 16#20a4 +/liwnarmenian 16#056c +/lj 16#01c9 +/ljecyrillic 16#0459 +/ll 16#f6c0 +/lladeva 16#0933 +/llagujarati 16#0ab3 +/llinebelow 16#1e3b +/llladeva 16#0934 +/llvocalicbengali 16#09e1 +/llvocalicdeva 16#0961 +/llvocalicvowelsignbengali 16#09e3 +/llvocalicvowelsigndeva 16#0963 +/lmiddletilde 16#026b +/lmonospace 16#ff4c +/lmsquare 16#33d0 +/lochulathai 16#0e2c +/logicaland 16#2227 +/logicalnot 16#00ac +/logicalnotreversed 16#2310 +/logicalor 16#2228 +/lolingthai 16#0e25 +/longs 16#017f +/lowlinecenterline 16#fe4e +/lowlinecmb 16#0332 +/lowlinedashed 16#fe4d +/lozenge 16#25ca +/lparen 16#24a7 +/lslash 16#0142 +/lsquare 16#2113 +/lsuperior 16#f6ee +/ltshade 16#2591 +/luthai 16#0e26 +/lvocalicbengali 16#098c +/lvocalicdeva 16#090c +/lvocalicvowelsignbengali 16#09e2 +/lvocalicvowelsigndeva 16#0962 +/lxsquare 16#33d3 +/m 16#006d +/mabengali 16#09ae +/macron 16#00af +/macronbelowcmb 16#0331 +/macroncmb 16#0304 +/macronlowmod 16#02cd +/macronmonospace 16#ffe3 +/macute 16#1e3f +/madeva 16#092e +/magujarati 16#0aae +/magurmukhi 16#0a2e +/mahapakhhebrew 16#05a4 +/mahapakhlefthebrew 16#05a4 +/mahiragana 16#307e +/maichattawalowleftthai 16#f895 +/maichattawalowrightthai 16#f894 +/maichattawathai 16#0e4b +/maichattawaupperleftthai 16#f893 +/maieklowleftthai 16#f88c +/maieklowrightthai 16#f88b +/maiekthai 16#0e48 +/maiekupperleftthai 16#f88a +/maihanakatleftthai 16#f884 +/maihanakatthai 16#0e31 +/maitaikhuleftthai 16#f889 +/maitaikhuthai 16#0e47 +/maitholowleftthai 16#f88f +/maitholowrightthai 16#f88e +/maithothai 16#0e49 +/maithoupperleftthai 16#f88d +/maitrilowleftthai 16#f892 +/maitrilowrightthai 16#f891 +/maitrithai 16#0e4a +/maitriupperleftthai 16#f890 +/maiyamokthai 16#0e46 +/makatakana 16#30de +/makatakanahalfwidth 16#ff8f +/male 16#2642 +/mansyonsquare 16#3347 +/maqafhebrew 16#05be +/mars 16#2642 +/masoracirclehebrew 16#05af +/masquare 16#3383 +/mbopomofo 16#3107 +/mbsquare 16#33d4 +/mcircle 16#24dc +/mcubedsquare 16#33a5 +/mdotaccent 16#1e41 +/mdotbelow 16#1e43 +/meemarabic 16#0645 +/meemfinalarabic 16#fee2 +/meeminitialarabic 16#fee3 +/meemmedialarabic 16#fee4 +/meemmeeminitialarabic 16#fcd1 +/meemmeemisolatedarabic 16#fc48 +/meetorusquare 16#334d +/mehiragana 16#3081 +/meizierasquare 16#337e +/mekatakana 16#30e1 +/mekatakanahalfwidth 16#ff92 +/mem 16#05de +/memdagesh 16#fb3e +/memdageshhebrew 16#fb3e +/memhebrew 16#05de +/menarmenian 16#0574 +/merkhahebrew 16#05a5 +/merkhakefulahebrew 16#05a6 +/merkhakefulalefthebrew 16#05a6 +/merkhalefthebrew 16#05a5 +/mhook 16#0271 +/mhzsquare 16#3392 +/middledotkatakanahalfwidth 16#ff65 +/middot 16#00b7 +/mieumacirclekorean 16#3272 +/mieumaparenkorean 16#3212 +/mieumcirclekorean 16#3264 +/mieumkorean 16#3141 +/mieumpansioskorean 16#3170 +/mieumparenkorean 16#3204 +/mieumpieupkorean 16#316e +/mieumsioskorean 16#316f +/mihiragana 16#307f +/mikatakana 16#30df +/mikatakanahalfwidth 16#ff90 +/minus 16#2212 +/minusbelowcmb 16#0320 +/minuscircle 16#2296 +/minusmod 16#02d7 +/minusplus 16#2213 +/minute 16#2032 +/miribaarusquare 16#334a +/mirisquare 16#3349 +/mlonglegturned 16#0270 +/mlsquare 16#3396 +/mmcubedsquare 16#33a3 +/mmonospace 16#ff4d +/mmsquaredsquare 16#339f +/mohiragana 16#3082 +/mohmsquare 16#33c1 +/mokatakana 16#30e2 +/mokatakanahalfwidth 16#ff93 +/molsquare 16#33d6 +/momathai 16#0e21 +/moverssquare 16#33a7 +/moverssquaredsquare 16#33a8 +/mparen 16#24a8 +/mpasquare 16#33ab +/mssquare 16#33b3 +/msuperior 16#f6ef +/mturned 16#026f +/mu 16#00b5 +/mu1 16#00b5 +/muasquare 16#3382 +/muchgreater 16#226b +/muchless 16#226a +/mufsquare 16#338c +/mugreek 16#03bc +/mugsquare 16#338d +/muhiragana 16#3080 +/mukatakana 16#30e0 +/mukatakanahalfwidth 16#ff91 +/mulsquare 16#3395 +/multiply 16#00d7 +/mumsquare 16#339b +/munahhebrew 16#05a3 +/munahlefthebrew 16#05a3 +/musicalnote 16#266a +/musicalnotedbl 16#266b +/musicflatsign 16#266d +/musicsharpsign 16#266f +/mussquare 16#33b2 +/muvsquare 16#33b6 +/muwsquare 16#33bc +/mvmegasquare 16#33b9 +/mvsquare 16#33b7 +/mwmegasquare 16#33bf +/mwsquare 16#33bd +/n 16#006e +/nabengali 16#09a8 +/nabla 16#2207 +/nacute 16#0144 +/nadeva 16#0928 +/nagujarati 16#0aa8 +/nagurmukhi 16#0a28 +/nahiragana 16#306a +/nakatakana 16#30ca +/nakatakanahalfwidth 16#ff85 +/napostrophe 16#0149 +/nasquare 16#3381 +/nbopomofo 16#310b +/nbspace 16#00a0 +/ncaron 16#0148 +/ncedilla 16#0146 +/ncircle 16#24dd +/ncircumflexbelow 16#1e4b +/ncommaaccent 16#0146 +/ndotaccent 16#1e45 +/ndotbelow 16#1e47 +/nehiragana 16#306d +/nekatakana 16#30cd +/nekatakanahalfwidth 16#ff88 +/newsheqelsign 16#20aa +/nfsquare 16#338b +/ngabengali 16#0999 +/ngadeva 16#0919 +/ngagujarati 16#0a99 +/ngagurmukhi 16#0a19 +/ngonguthai 16#0e07 +/nhiragana 16#3093 +/nhookleft 16#0272 +/nhookretroflex 16#0273 +/nieunacirclekorean 16#326f +/nieunaparenkorean 16#320f +/nieuncieuckorean 16#3135 +/nieuncirclekorean 16#3261 +/nieunhieuhkorean 16#3136 +/nieunkorean 16#3134 +/nieunpansioskorean 16#3168 +/nieunparenkorean 16#3201 +/nieunsioskorean 16#3167 +/nieuntikeutkorean 16#3166 +/nihiragana 16#306b +/nikatakana 16#30cb +/nikatakanahalfwidth 16#ff86 +/nikhahitleftthai 16#f899 +/nikhahitthai 16#0e4d +/nine 16#0039 +/ninearabic 16#0669 +/ninebengali 16#09ef +/ninecircle 16#2468 +/ninecircleinversesansserif 16#2792 +/ninedeva 16#096f +/ninegujarati 16#0aef +/ninegurmukhi 16#0a6f +/ninehackarabic 16#0669 +/ninehangzhou 16#3029 +/nineideographicparen 16#3228 +/nineinferior 16#2089 +/ninemonospace 16#ff19 +/nineoldstyle 16#f739 +/nineparen 16#247c +/nineperiod 16#2490 +/ninepersian 16#06f9 +/nineroman 16#2178 +/ninesuperior 16#2079 +/nineteencircle 16#2472 +/nineteenparen 16#2486 +/nineteenperiod 16#249a +/ninethai 16#0e59 +/nj 16#01cc +/njecyrillic 16#045a +/nkatakana 16#30f3 +/nkatakanahalfwidth 16#ff9d +/nlegrightlong 16#019e +/nlinebelow 16#1e49 +/nmonospace 16#ff4e +/nmsquare 16#339a +/nnabengali 16#09a3 +/nnadeva 16#0923 +/nnagujarati 16#0aa3 +/nnagurmukhi 16#0a23 +/nnnadeva 16#0929 +/nohiragana 16#306e +/nokatakana 16#30ce +/nokatakanahalfwidth 16#ff89 +/nonbreakingspace 16#00a0 +/nonenthai 16#0e13 +/nonuthai 16#0e19 +/noonarabic 16#0646 +/noonfinalarabic 16#fee6 +/noonghunnaarabic 16#06ba +/noonghunnafinalarabic 16#fb9f +/nooninitialarabic 16#fee7 +/noonjeeminitialarabic 16#fcd2 +/noonjeemisolatedarabic 16#fc4b +/noonmedialarabic 16#fee8 +/noonmeeminitialarabic 16#fcd5 +/noonmeemisolatedarabic 16#fc4e +/noonnoonfinalarabic 16#fc8d +/notcontains 16#220c +/notelement 16#2209 +/notelementof 16#2209 +/notequal 16#2260 +/notgreater 16#226f +/notgreaternorequal 16#2271 +/notgreaternorless 16#2279 +/notidentical 16#2262 +/notless 16#226e +/notlessnorequal 16#2270 +/notparallel 16#2226 +/notprecedes 16#2280 +/notsubset 16#2284 +/notsucceeds 16#2281 +/notsuperset 16#2285 +/nowarmenian 16#0576 +/nparen 16#24a9 +/nssquare 16#33b1 +/nsuperior 16#207f +/ntilde 16#00f1 +/nu 16#03bd +/nuhiragana 16#306c +/nukatakana 16#30cc +/nukatakanahalfwidth 16#ff87 +/nuktabengali 16#09bc +/nuktadeva 16#093c +/nuktagujarati 16#0abc +/nuktagurmukhi 16#0a3c +/numbersign 16#0023 +/numbersignmonospace 16#ff03 +/numbersignsmall 16#fe5f +/numeralsigngreek 16#0374 +/numeralsignlowergreek 16#0375 +/numero 16#2116 +/nun 16#05e0 +/nundagesh 16#fb40 +/nundageshhebrew 16#fb40 +/nunhebrew 16#05e0 +/nvsquare 16#33b5 +/nwsquare 16#33bb +/nyabengali 16#099e +/nyadeva 16#091e +/nyagujarati 16#0a9e +/nyagurmukhi 16#0a1e +/o 16#006f +/oacute 16#00f3 +/oangthai 16#0e2d +/obarred 16#0275 +/obarredcyrillic 16#04e9 +/obarreddieresiscyrillic 16#04eb +/obengali 16#0993 +/obopomofo 16#311b +/obreve 16#014f +/ocandradeva 16#0911 +/ocandragujarati 16#0a91 +/ocandravowelsigndeva 16#0949 +/ocandravowelsigngujarati 16#0ac9 +/ocaron 16#01d2 +/ocircle 16#24de +/ocircumflex 16#00f4 +/ocircumflexacute 16#1ed1 +/ocircumflexdotbelow 16#1ed9 +/ocircumflexgrave 16#1ed3 +/ocircumflexhookabove 16#1ed5 +/ocircumflextilde 16#1ed7 +/ocyrillic 16#043e +/odblacute 16#0151 +/odblgrave 16#020d +/odeva 16#0913 +/odieresis 16#00f6 +/odieresiscyrillic 16#04e7 +/odotbelow 16#1ecd +/oe 16#0153 +/oekorean 16#315a +/ogonek 16#02db +/ogonekcmb 16#0328 +/ograve 16#00f2 +/ogujarati 16#0a93 +/oharmenian 16#0585 +/ohiragana 16#304a +/ohookabove 16#1ecf +/ohorn 16#01a1 +/ohornacute 16#1edb +/ohorndotbelow 16#1ee3 +/ohorngrave 16#1edd +/ohornhookabove 16#1edf +/ohorntilde 16#1ee1 +/ohungarumlaut 16#0151 +/oi 16#01a3 +/oinvertedbreve 16#020f +/okatakana 16#30aa +/okatakanahalfwidth 16#ff75 +/okorean 16#3157 +/olehebrew 16#05ab +/omacron 16#014d +/omacronacute 16#1e53 +/omacrongrave 16#1e51 +/omdeva 16#0950 +/omega 16#03c9 +/omega1 16#03d6 +/omegacyrillic 16#0461 +/omegalatinclosed 16#0277 +/omegaroundcyrillic 16#047b +/omegatitlocyrillic 16#047d +/omegatonos 16#03ce +/omgujarati 16#0ad0 +/omicron 16#03bf +/omicrontonos 16#03cc +/omonospace 16#ff4f +/one 16#0031 +/onearabic 16#0661 +/onebengali 16#09e7 +/onecircle 16#2460 +/onecircleinversesansserif 16#278a +/onedeva 16#0967 +/onedotenleader 16#2024 +/oneeighth 16#215b +/onefitted 16#f6dc +/onegujarati 16#0ae7 +/onegurmukhi 16#0a67 +/onehackarabic 16#0661 +/onehalf 16#00bd +/onehangzhou 16#3021 +/oneideographicparen 16#3220 +/oneinferior 16#2081 +/onemonospace 16#ff11 +/onenumeratorbengali 16#09f4 +/oneoldstyle 16#f731 +/oneparen 16#2474 +/oneperiod 16#2488 +/onepersian 16#06f1 +/onequarter 16#00bc +/oneroman 16#2170 +/onesuperior 16#00b9 +/onethai 16#0e51 +/onethird 16#2153 +/oogonek 16#01eb +/oogonekmacron 16#01ed +/oogurmukhi 16#0a13 +/oomatragurmukhi 16#0a4b +/oopen 16#0254 +/oparen 16#24aa +/openbullet 16#25e6 +/option 16#2325 +/ordfeminine 16#00aa +/ordmasculine 16#00ba +/orthogonal 16#221f +/oshortdeva 16#0912 +/oshortvowelsigndeva 16#094a +/oslash 16#00f8 +/oslashacute 16#01ff +/osmallhiragana 16#3049 +/osmallkatakana 16#30a9 +/osmallkatakanahalfwidth 16#ff6b +/ostrokeacute 16#01ff +/osuperior 16#f6f0 +/otcyrillic 16#047f +/otilde 16#00f5 +/otildeacute 16#1e4d +/otildedieresis 16#1e4f +/oubopomofo 16#3121 +/overline 16#203e +/overlinecenterline 16#fe4a +/overlinecmb 16#0305 +/overlinedashed 16#fe49 +/overlinedblwavy 16#fe4c +/overlinewavy 16#fe4b +/overscore 16#00af +/ovowelsignbengali 16#09cb +/ovowelsigndeva 16#094b +/ovowelsigngujarati 16#0acb +/p 16#0070 +/paampssquare 16#3380 +/paasentosquare 16#332b +/pabengali 16#09aa +/pacute 16#1e55 +/padeva 16#092a +/pagedown 16#21df +/pageup 16#21de +/pagujarati 16#0aaa +/pagurmukhi 16#0a2a +/pahiragana 16#3071 +/paiyannoithai 16#0e2f +/pakatakana 16#30d1 +/palatalizationcyrilliccmb 16#0484 +/palochkacyrillic 16#04c0 +/pansioskorean 16#317f +/paragraph 16#00b6 +/parallel 16#2225 +/parenleft 16#0028 +/parenleftaltonearabic 16#fd3e +/parenleftbt 16#f8ed +/parenleftex 16#f8ec +/parenleftinferior 16#208d +/parenleftmonospace 16#ff08 +/parenleftsmall 16#fe59 +/parenleftsuperior 16#207d +/parenlefttp 16#f8eb +/parenleftvertical 16#fe35 +/parenright 16#0029 +/parenrightaltonearabic 16#fd3f +/parenrightbt 16#f8f8 +/parenrightex 16#f8f7 +/parenrightinferior 16#208e +/parenrightmonospace 16#ff09 +/parenrightsmall 16#fe5a +/parenrightsuperior 16#207e +/parenrighttp 16#f8f6 +/parenrightvertical 16#fe36 +/partialdiff 16#2202 +/paseqhebrew 16#05c0 +/pashtahebrew 16#0599 +/pasquare 16#33a9 +/patah 16#05b7 +/patah11 16#05b7 +/patah1d 16#05b7 +/patah2a 16#05b7 +/patahhebrew 16#05b7 +/patahnarrowhebrew 16#05b7 +/patahquarterhebrew 16#05b7 +/patahwidehebrew 16#05b7 +/pazerhebrew 16#05a1 +/pbopomofo 16#3106 +/pcircle 16#24df +/pdotaccent 16#1e57 +/pe 16#05e4 +/pecyrillic 16#043f +/pedagesh 16#fb44 +/pedageshhebrew 16#fb44 +/peezisquare 16#333b +/pefinaldageshhebrew 16#fb43 +/peharabic 16#067e +/peharmenian 16#057a +/pehebrew 16#05e4 +/pehfinalarabic 16#fb57 +/pehinitialarabic 16#fb58 +/pehiragana 16#307a +/pehmedialarabic 16#fb59 +/pekatakana 16#30da +/pemiddlehookcyrillic 16#04a7 +/perafehebrew 16#fb4e +/percent 16#0025 +/percentarabic 16#066a +/percentmonospace 16#ff05 +/percentsmall 16#fe6a +/period 16#002e +/periodarmenian 16#0589 +/periodcentered 16#00b7 +/periodhalfwidth 16#ff61 +/periodinferior 16#f6e7 +/periodmonospace 16#ff0e +/periodsmall 16#fe52 +/periodsuperior 16#f6e8 +/perispomenigreekcmb 16#0342 +/perpendicular 16#22a5 +/perthousand 16#2030 +/peseta 16#20a7 +/pfsquare 16#338a +/phabengali 16#09ab +/phadeva 16#092b +/phagujarati 16#0aab +/phagurmukhi 16#0a2b +/phi 16#03c6 +/phi1 16#03d5 +/phieuphacirclekorean 16#327a +/phieuphaparenkorean 16#321a +/phieuphcirclekorean 16#326c +/phieuphkorean 16#314d +/phieuphparenkorean 16#320c +/philatin 16#0278 +/phinthuthai 16#0e3a +/phisymbolgreek 16#03d5 +/phook 16#01a5 +/phophanthai 16#0e1e +/phophungthai 16#0e1c +/phosamphaothai 16#0e20 +/pi 16#03c0 +/pieupacirclekorean 16#3273 +/pieupaparenkorean 16#3213 +/pieupcieuckorean 16#3176 +/pieupcirclekorean 16#3265 +/pieupkiyeokkorean 16#3172 +/pieupkorean 16#3142 +/pieupparenkorean 16#3205 +/pieupsioskiyeokkorean 16#3174 +/pieupsioskorean 16#3144 +/pieupsiostikeutkorean 16#3175 +/pieupthieuthkorean 16#3177 +/pieuptikeutkorean 16#3173 +/pihiragana 16#3074 +/pikatakana 16#30d4 +/pisymbolgreek 16#03d6 +/piwrarmenian 16#0583 +/plus 16#002b +/plusbelowcmb 16#031f +/pluscircle 16#2295 +/plusminus 16#00b1 +/plusmod 16#02d6 +/plusmonospace 16#ff0b +/plussmall 16#fe62 +/plussuperior 16#207a +/pmonospace 16#ff50 +/pmsquare 16#33d8 +/pohiragana 16#307d +/pointingindexdownwhite 16#261f +/pointingindexleftwhite 16#261c +/pointingindexrightwhite 16#261e +/pointingindexupwhite 16#261d +/pokatakana 16#30dd +/poplathai 16#0e1b +/postalmark 16#3012 +/postalmarkface 16#3020 +/pparen 16#24ab +/precedes 16#227a +/prescription 16#211e +/primemod 16#02b9 +/primereversed 16#2035 +/product 16#220f +/projective 16#2305 +/prolongedkana 16#30fc +/propellor 16#2318 +/propersubset 16#2282 +/propersuperset 16#2283 +/proportion 16#2237 +/proportional 16#221d +/psi 16#03c8 +/psicyrillic 16#0471 +/psilipneumatacyrilliccmb 16#0486 +/pssquare 16#33b0 +/puhiragana 16#3077 +/pukatakana 16#30d7 +/pvsquare 16#33b4 +/pwsquare 16#33ba +/q 16#0071 +/qadeva 16#0958 +/qadmahebrew 16#05a8 +/qafarabic 16#0642 +/qaffinalarabic 16#fed6 +/qafinitialarabic 16#fed7 +/qafmedialarabic 16#fed8 +/qamats 16#05b8 +/qamats10 16#05b8 +/qamats1a 16#05b8 +/qamats1c 16#05b8 +/qamats27 16#05b8 +/qamats29 16#05b8 +/qamats33 16#05b8 +/qamatsde 16#05b8 +/qamatshebrew 16#05b8 +/qamatsnarrowhebrew 16#05b8 +/qamatsqatanhebrew 16#05b8 +/qamatsqatannarrowhebrew 16#05b8 +/qamatsqatanquarterhebrew 16#05b8 +/qamatsqatanwidehebrew 16#05b8 +/qamatsquarterhebrew 16#05b8 +/qamatswidehebrew 16#05b8 +/qarneyparahebrew 16#059f +/qbopomofo 16#3111 +/qcircle 16#24e0 +/qhook 16#02a0 +/qmonospace 16#ff51 +/qof 16#05e7 +/qofdagesh 16#fb47 +/qofdageshhebrew 16#fb47 +/qofhebrew 16#05e7 +/qparen 16#24ac +/quarternote 16#2669 +/qubuts 16#05bb +/qubuts18 16#05bb +/qubuts25 16#05bb +/qubuts31 16#05bb +/qubutshebrew 16#05bb +/qubutsnarrowhebrew 16#05bb +/qubutsquarterhebrew 16#05bb +/qubutswidehebrew 16#05bb +/question 16#003f +/questionarabic 16#061f +/questionarmenian 16#055e +/questiondown 16#00bf +/questiondownsmall 16#f7bf +/questiongreek 16#037e +/questionmonospace 16#ff1f +/questionsmall 16#f73f +/quotedbl 16#0022 +/quotedblbase 16#201e +/quotedblleft 16#201c +/quotedblmonospace 16#ff02 +/quotedblprime 16#301e +/quotedblprimereversed 16#301d +/quotedblright 16#201d +/quoteleft 16#2018 +/quoteleftreversed 16#201b +/quotereversed 16#201b +/quoteright 16#2019 +/quoterightn 16#0149 +/quotesinglbase 16#201a +/quotesingle 16#0027 +/quotesinglemonospace 16#ff07 +/r 16#0072 +/raarmenian 16#057c +/rabengali 16#09b0 +/racute 16#0155 +/radeva 16#0930 +/radical 16#221a +/radicalex 16#f8e5 +/radoverssquare 16#33ae +/radoverssquaredsquare 16#33af +/radsquare 16#33ad +/rafe 16#05bf +/rafehebrew 16#05bf +/ragujarati 16#0ab0 +/ragurmukhi 16#0a30 +/rahiragana 16#3089 +/rakatakana 16#30e9 +/rakatakanahalfwidth 16#ff97 +/ralowerdiagonalbengali 16#09f1 +/ramiddlediagonalbengali 16#09f0 +/ramshorn 16#0264 +/ratio 16#2236 +/rbopomofo 16#3116 +/rcaron 16#0159 +/rcedilla 16#0157 +/rcircle 16#24e1 +/rcommaaccent 16#0157 +/rdblgrave 16#0211 +/rdotaccent 16#1e59 +/rdotbelow 16#1e5b +/rdotbelowmacron 16#1e5d +/referencemark 16#203b +/reflexsubset 16#2286 +/reflexsuperset 16#2287 +/registered 16#00ae +/registersans 16#f8e8 +/registerserif 16#f6da +/reharabic 16#0631 +/reharmenian 16#0580 +/rehfinalarabic 16#feae +/rehiragana 16#308c +/rekatakana 16#30ec +/rekatakanahalfwidth 16#ff9a +/resh 16#05e8 +/reshdageshhebrew 16#fb48 +/reshhebrew 16#05e8 +/reversedtilde 16#223d +/reviahebrew 16#0597 +/reviamugrashhebrew 16#0597 +/revlogicalnot 16#2310 +/rfishhook 16#027e +/rfishhookreversed 16#027f +/rhabengali 16#09dd +/rhadeva 16#095d +/rho 16#03c1 +/rhook 16#027d +/rhookturned 16#027b +/rhookturnedsuperior 16#02b5 +/rhosymbolgreek 16#03f1 +/rhotichookmod 16#02de +/rieulacirclekorean 16#3271 +/rieulaparenkorean 16#3211 +/rieulcirclekorean 16#3263 +/rieulhieuhkorean 16#3140 +/rieulkiyeokkorean 16#313a +/rieulkiyeoksioskorean 16#3169 +/rieulkorean 16#3139 +/rieulmieumkorean 16#313b +/rieulpansioskorean 16#316c +/rieulparenkorean 16#3203 +/rieulphieuphkorean 16#313f +/rieulpieupkorean 16#313c +/rieulpieupsioskorean 16#316b +/rieulsioskorean 16#313d +/rieulthieuthkorean 16#313e +/rieultikeutkorean 16#316a +/rieulyeorinhieuhkorean 16#316d +/rightangle 16#221f +/righttackbelowcmb 16#0319 +/righttriangle 16#22bf +/rihiragana 16#308a +/rikatakana 16#30ea +/rikatakanahalfwidth 16#ff98 +/ring 16#02da +/ringbelowcmb 16#0325 +/ringcmb 16#030a +/ringhalfleft 16#02bf +/ringhalfleftarmenian 16#0559 +/ringhalfleftbelowcmb 16#031c +/ringhalfleftcentered 16#02d3 +/ringhalfright 16#02be +/ringhalfrightbelowcmb 16#0339 +/ringhalfrightcentered 16#02d2 +/rinvertedbreve 16#0213 +/rittorusquare 16#3351 +/rlinebelow 16#1e5f +/rlongleg 16#027c +/rlonglegturned 16#027a +/rmonospace 16#ff52 +/rohiragana 16#308d +/rokatakana 16#30ed +/rokatakanahalfwidth 16#ff9b +/roruathai 16#0e23 +/rparen 16#24ad +/rrabengali 16#09dc +/rradeva 16#0931 +/rragurmukhi 16#0a5c +/rreharabic 16#0691 +/rrehfinalarabic 16#fb8d +/rrvocalicbengali 16#09e0 +/rrvocalicdeva 16#0960 +/rrvocalicgujarati 16#0ae0 +/rrvocalicvowelsignbengali 16#09c4 +/rrvocalicvowelsigndeva 16#0944 +/rrvocalicvowelsigngujarati 16#0ac4 +/rsuperior 16#f6f1 +/rtblock 16#2590 +/rturned 16#0279 +/rturnedsuperior 16#02b4 +/ruhiragana 16#308b +/rukatakana 16#30eb +/rukatakanahalfwidth 16#ff99 +/rupeemarkbengali 16#09f2 +/rupeesignbengali 16#09f3 +/rupiah 16#f6dd +/ruthai 16#0e24 +/rvocalicbengali 16#098b +/rvocalicdeva 16#090b +/rvocalicgujarati 16#0a8b +/rvocalicvowelsignbengali 16#09c3 +/rvocalicvowelsigndeva 16#0943 +/rvocalicvowelsigngujarati 16#0ac3 +/s 16#0073 +/sabengali 16#09b8 +/sacute 16#015b +/sacutedotaccent 16#1e65 +/sadarabic 16#0635 +/sadeva 16#0938 +/sadfinalarabic 16#feba +/sadinitialarabic 16#febb +/sadmedialarabic 16#febc +/sagujarati 16#0ab8 +/sagurmukhi 16#0a38 +/sahiragana 16#3055 +/sakatakana 16#30b5 +/sakatakanahalfwidth 16#ff7b +/sallallahoualayhewasallamarabic 16#fdfa +/samekh 16#05e1 +/samekhdagesh 16#fb41 +/samekhdageshhebrew 16#fb41 +/samekhhebrew 16#05e1 +/saraaathai 16#0e32 +/saraaethai 16#0e41 +/saraaimaimalaithai 16#0e44 +/saraaimaimuanthai 16#0e43 +/saraamthai 16#0e33 +/saraathai 16#0e30 +/saraethai 16#0e40 +/saraiileftthai 16#f886 +/saraiithai 16#0e35 +/saraileftthai 16#f885 +/saraithai 16#0e34 +/saraothai 16#0e42 +/saraueeleftthai 16#f888 +/saraueethai 16#0e37 +/saraueleftthai 16#f887 +/sarauethai 16#0e36 +/sarauthai 16#0e38 +/sarauuthai 16#0e39 +/sbopomofo 16#3119 +/scaron 16#0161 +/scarondotaccent 16#1e67 +/scedilla 16#015f +/schwa 16#0259 +/schwacyrillic 16#04d9 +/schwadieresiscyrillic 16#04db +/schwahook 16#025a +/scircle 16#24e2 +/scircumflex 16#015d +/scommaaccent 16#0219 +/sdotaccent 16#1e61 +/sdotbelow 16#1e63 +/sdotbelowdotaccent 16#1e69 +/seagullbelowcmb 16#033c +/second 16#2033 +/secondtonechinese 16#02ca +/section 16#00a7 +/seenarabic 16#0633 +/seenfinalarabic 16#feb2 +/seeninitialarabic 16#feb3 +/seenmedialarabic 16#feb4 +/segol 16#05b6 +/segol13 16#05b6 +/segol1f 16#05b6 +/segol2c 16#05b6 +/segolhebrew 16#05b6 +/segolnarrowhebrew 16#05b6 +/segolquarterhebrew 16#05b6 +/segoltahebrew 16#0592 +/segolwidehebrew 16#05b6 +/seharmenian 16#057d +/sehiragana 16#305b +/sekatakana 16#30bb +/sekatakanahalfwidth 16#ff7e +/semicolon 16#003b +/semicolonarabic 16#061b +/semicolonmonospace 16#ff1b +/semicolonsmall 16#fe54 +/semivoicedmarkkana 16#309c +/semivoicedmarkkanahalfwidth 16#ff9f +/sentisquare 16#3322 +/sentosquare 16#3323 +/seven 16#0037 +/sevenarabic 16#0667 +/sevenbengali 16#09ed +/sevencircle 16#2466 +/sevencircleinversesansserif 16#2790 +/sevendeva 16#096d +/seveneighths 16#215e +/sevengujarati 16#0aed +/sevengurmukhi 16#0a6d +/sevenhackarabic 16#0667 +/sevenhangzhou 16#3027 +/sevenideographicparen 16#3226 +/seveninferior 16#2087 +/sevenmonospace 16#ff17 +/sevenoldstyle 16#f737 +/sevenparen 16#247a +/sevenperiod 16#248e +/sevenpersian 16#06f7 +/sevenroman 16#2176 +/sevensuperior 16#2077 +/seventeencircle 16#2470 +/seventeenparen 16#2484 +/seventeenperiod 16#2498 +/seventhai 16#0e57 +/sfthyphen 16#00ad +/shaarmenian 16#0577 +/shabengali 16#09b6 +/shacyrillic 16#0448 +/shaddaarabic 16#0651 +/shaddadammaarabic 16#fc61 +/shaddadammatanarabic 16#fc5e +/shaddafathaarabic 16#fc60 +/shaddakasraarabic 16#fc62 +/shaddakasratanarabic 16#fc5f +/shade 16#2592 +/shadedark 16#2593 +/shadelight 16#2591 +/shademedium 16#2592 +/shadeva 16#0936 +/shagujarati 16#0ab6 +/shagurmukhi 16#0a36 +/shalshelethebrew 16#0593 +/shbopomofo 16#3115 +/shchacyrillic 16#0449 +/sheenarabic 16#0634 +/sheenfinalarabic 16#feb6 +/sheeninitialarabic 16#feb7 +/sheenmedialarabic 16#feb8 +/sheicoptic 16#03e3 +/sheqel 16#20aa +/sheqelhebrew 16#20aa +/sheva 16#05b0 +/sheva115 16#05b0 +/sheva15 16#05b0 +/sheva22 16#05b0 +/sheva2e 16#05b0 +/shevahebrew 16#05b0 +/shevanarrowhebrew 16#05b0 +/shevaquarterhebrew 16#05b0 +/shevawidehebrew 16#05b0 +/shhacyrillic 16#04bb +/shimacoptic 16#03ed +/shin 16#05e9 +/shindagesh 16#fb49 +/shindageshhebrew 16#fb49 +/shindageshshindot 16#fb2c +/shindageshshindothebrew 16#fb2c +/shindageshsindot 16#fb2d +/shindageshsindothebrew 16#fb2d +/shindothebrew 16#05c1 +/shinhebrew 16#05e9 +/shinshindot 16#fb2a +/shinshindothebrew 16#fb2a +/shinsindot 16#fb2b +/shinsindothebrew 16#fb2b +/shook 16#0282 +/sigma 16#03c3 +/sigma1 16#03c2 +/sigmafinal 16#03c2 +/sigmalunatesymbolgreek 16#03f2 +/sihiragana 16#3057 +/sikatakana 16#30b7 +/sikatakanahalfwidth 16#ff7c +/siluqhebrew 16#05bd +/siluqlefthebrew 16#05bd +/similar 16#223c +/sindothebrew 16#05c2 +/siosacirclekorean 16#3274 +/siosaparenkorean 16#3214 +/sioscieuckorean 16#317e +/sioscirclekorean 16#3266 +/sioskiyeokkorean 16#317a +/sioskorean 16#3145 +/siosnieunkorean 16#317b +/siosparenkorean 16#3206 +/siospieupkorean 16#317d +/siostikeutkorean 16#317c +/six 16#0036 +/sixarabic 16#0666 +/sixbengali 16#09ec +/sixcircle 16#2465 +/sixcircleinversesansserif 16#278f +/sixdeva 16#096c +/sixgujarati 16#0aec +/sixgurmukhi 16#0a6c +/sixhackarabic 16#0666 +/sixhangzhou 16#3026 +/sixideographicparen 16#3225 +/sixinferior 16#2086 +/sixmonospace 16#ff16 +/sixoldstyle 16#f736 +/sixparen 16#2479 +/sixperiod 16#248d +/sixpersian 16#06f6 +/sixroman 16#2175 +/sixsuperior 16#2076 +/sixteencircle 16#246f +/sixteencurrencydenominatorbengali 16#09f9 +/sixteenparen 16#2483 +/sixteenperiod 16#2497 +/sixthai 16#0e56 +/slash 16#002f +/slashmonospace 16#ff0f +/slong 16#017f +/slongdotaccent 16#1e9b +/smileface 16#263a +/smonospace 16#ff53 +/sofpasuqhebrew 16#05c3 +/softhyphen 16#00ad +/softsigncyrillic 16#044c +/sohiragana 16#305d +/sokatakana 16#30bd +/sokatakanahalfwidth 16#ff7f +/soliduslongoverlaycmb 16#0338 +/solidusshortoverlaycmb 16#0337 +/sorusithai 16#0e29 +/sosalathai 16#0e28 +/sosothai 16#0e0b +/sosuathai 16#0e2a +/space 16#0020 +/spacehackarabic 16#0020 +/spade 16#2660 +/spadesuitblack 16#2660 +/spadesuitwhite 16#2664 +/sparen 16#24ae +/squarebelowcmb 16#033b +/squarecc 16#33c4 +/squarecm 16#339d +/squarediagonalcrosshatchfill 16#25a9 +/squarehorizontalfill 16#25a4 +/squarekg 16#338f +/squarekm 16#339e +/squarekmcapital 16#33ce +/squareln 16#33d1 +/squarelog 16#33d2 +/squaremg 16#338e +/squaremil 16#33d5 +/squaremm 16#339c +/squaremsquared 16#33a1 +/squareorthogonalcrosshatchfill 16#25a6 +/squareupperlefttolowerrightfill 16#25a7 +/squareupperrighttolowerleftfill 16#25a8 +/squareverticalfill 16#25a5 +/squarewhitewithsmallblack 16#25a3 +/srsquare 16#33db +/ssabengali 16#09b7 +/ssadeva 16#0937 +/ssagujarati 16#0ab7 +/ssangcieuckorean 16#3149 +/ssanghieuhkorean 16#3185 +/ssangieungkorean 16#3180 +/ssangkiyeokkorean 16#3132 +/ssangnieunkorean 16#3165 +/ssangpieupkorean 16#3143 +/ssangsioskorean 16#3146 +/ssangtikeutkorean 16#3138 +/ssuperior 16#f6f2 +/sterling 16#00a3 +/sterlingmonospace 16#ffe1 +/strokelongoverlaycmb 16#0336 +/strokeshortoverlaycmb 16#0335 +/subset 16#2282 +/subsetnotequal 16#228a +/subsetorequal 16#2286 +/succeeds 16#227b +/suchthat 16#220b +/suhiragana 16#3059 +/sukatakana 16#30b9 +/sukatakanahalfwidth 16#ff7d +/sukunarabic 16#0652 +/summation 16#2211 +/sun 16#263c +/superset 16#2283 +/supersetnotequal 16#228b +/supersetorequal 16#2287 +/svsquare 16#33dc +/syouwaerasquare 16#337c +/t 16#0074 +/tabengali 16#09a4 +/tackdown 16#22a4 +/tackleft 16#22a3 +/tadeva 16#0924 +/tagujarati 16#0aa4 +/tagurmukhi 16#0a24 +/taharabic 16#0637 +/tahfinalarabic 16#fec2 +/tahinitialarabic 16#fec3 +/tahiragana 16#305f +/tahmedialarabic 16#fec4 +/taisyouerasquare 16#337d +/takatakana 16#30bf +/takatakanahalfwidth 16#ff80 +/tatweelarabic 16#0640 +/tau 16#03c4 +/tav 16#05ea +/tavdages 16#fb4a +/tavdagesh 16#fb4a +/tavdageshhebrew 16#fb4a +/tavhebrew 16#05ea +/tbar 16#0167 +/tbopomofo 16#310a +/tcaron 16#0165 +/tccurl 16#02a8 +/tcedilla 16#0163 +/tcheharabic 16#0686 +/tchehfinalarabic 16#fb7b +/tchehinitialarabic 16#fb7c +/tchehmedialarabic 16#fb7d +/tcircle 16#24e3 +/tcircumflexbelow 16#1e71 +/tcommaaccent 16#0163 +/tdieresis 16#1e97 +/tdotaccent 16#1e6b +/tdotbelow 16#1e6d +/tecyrillic 16#0442 +/tedescendercyrillic 16#04ad +/teharabic 16#062a +/tehfinalarabic 16#fe96 +/tehhahinitialarabic 16#fca2 +/tehhahisolatedarabic 16#fc0c +/tehinitialarabic 16#fe97 +/tehiragana 16#3066 +/tehjeeminitialarabic 16#fca1 +/tehjeemisolatedarabic 16#fc0b +/tehmarbutaarabic 16#0629 +/tehmarbutafinalarabic 16#fe94 +/tehmedialarabic 16#fe98 +/tehmeeminitialarabic 16#fca4 +/tehmeemisolatedarabic 16#fc0e +/tehnoonfinalarabic 16#fc73 +/tekatakana 16#30c6 +/tekatakanahalfwidth 16#ff83 +/telephone 16#2121 +/telephoneblack 16#260e +/telishagedolahebrew 16#05a0 +/telishaqetanahebrew 16#05a9 +/tencircle 16#2469 +/tenideographicparen 16#3229 +/tenparen 16#247d +/tenperiod 16#2491 +/tenroman 16#2179 +/tesh 16#02a7 +/tet 16#05d8 +/tetdagesh 16#fb38 +/tetdageshhebrew 16#fb38 +/tethebrew 16#05d8 +/tetsecyrillic 16#04b5 +/tevirhebrew 16#059b +/tevirlefthebrew 16#059b +/thabengali 16#09a5 +/thadeva 16#0925 +/thagujarati 16#0aa5 +/thagurmukhi 16#0a25 +/thalarabic 16#0630 +/thalfinalarabic 16#feac +/thanthakhatlowleftthai 16#f898 +/thanthakhatlowrightthai 16#f897 +/thanthakhatthai 16#0e4c +/thanthakhatupperleftthai 16#f896 +/theharabic 16#062b +/thehfinalarabic 16#fe9a +/thehinitialarabic 16#fe9b +/thehmedialarabic 16#fe9c +/thereexists 16#2203 +/therefore 16#2234 +/theta 16#03b8 +/theta1 16#03d1 +/thetasymbolgreek 16#03d1 +/thieuthacirclekorean 16#3279 +/thieuthaparenkorean 16#3219 +/thieuthcirclekorean 16#326b +/thieuthkorean 16#314c +/thieuthparenkorean 16#320b +/thirteencircle 16#246c +/thirteenparen 16#2480 +/thirteenperiod 16#2494 +/thonangmonthothai 16#0e11 +/thook 16#01ad +/thophuthaothai 16#0e12 +/thorn 16#00fe +/thothahanthai 16#0e17 +/thothanthai 16#0e10 +/thothongthai 16#0e18 +/thothungthai 16#0e16 +/thousandcyrillic 16#0482 +/thousandsseparatorarabic 16#066c +/thousandsseparatorpersian 16#066c +/three 16#0033 +/threearabic 16#0663 +/threebengali 16#09e9 +/threecircle 16#2462 +/threecircleinversesansserif 16#278c +/threedeva 16#0969 +/threeeighths 16#215c +/threegujarati 16#0ae9 +/threegurmukhi 16#0a69 +/threehackarabic 16#0663 +/threehangzhou 16#3023 +/threeideographicparen 16#3222 +/threeinferior 16#2083 +/threemonospace 16#ff13 +/threenumeratorbengali 16#09f6 +/threeoldstyle 16#f733 +/threeparen 16#2476 +/threeperiod 16#248a +/threepersian 16#06f3 +/threequarters 16#00be +/threequartersemdash 16#f6de +/threeroman 16#2172 +/threesuperior 16#00b3 +/threethai 16#0e53 +/thzsquare 16#3394 +/tihiragana 16#3061 +/tikatakana 16#30c1 +/tikatakanahalfwidth 16#ff81 +/tikeutacirclekorean 16#3270 +/tikeutaparenkorean 16#3210 +/tikeutcirclekorean 16#3262 +/tikeutkorean 16#3137 +/tikeutparenkorean 16#3202 +/tilde 16#02dc +/tildebelowcmb 16#0330 +/tildecmb 16#0303 +/tildecomb 16#0303 +/tildedoublecmb 16#0360 +/tildeoperator 16#223c +/tildeoverlaycmb 16#0334 +/tildeverticalcmb 16#033e +/timescircle 16#2297 +/tipehahebrew 16#0596 +/tipehalefthebrew 16#0596 +/tippigurmukhi 16#0a70 +/titlocyrilliccmb 16#0483 +/tiwnarmenian 16#057f +/tlinebelow 16#1e6f +/tmonospace 16#ff54 +/toarmenian 16#0569 +/tohiragana 16#3068 +/tokatakana 16#30c8 +/tokatakanahalfwidth 16#ff84 +/tonebarextrahighmod 16#02e5 +/tonebarextralowmod 16#02e9 +/tonebarhighmod 16#02e6 +/tonebarlowmod 16#02e8 +/tonebarmidmod 16#02e7 +/tonefive 16#01bd +/tonesix 16#0185 +/tonetwo 16#01a8 +/tonos 16#0384 +/tonsquare 16#3327 +/topatakthai 16#0e0f +/tortoiseshellbracketleft 16#3014 +/tortoiseshellbracketleftsmall 16#fe5d +/tortoiseshellbracketleftvertical 16#fe39 +/tortoiseshellbracketright 16#3015 +/tortoiseshellbracketrightsmall 16#fe5e +/tortoiseshellbracketrightvertical 16#fe3a +/totaothai 16#0e15 +/tpalatalhook 16#01ab +/tparen 16#24af +/trademark 16#2122 +/trademarksans 16#f8ea +/trademarkserif 16#f6db +/tretroflexhook 16#0288 +/triagdn 16#25bc +/triaglf 16#25c4 +/triagrt 16#25ba +/triagup 16#25b2 +/ts 16#02a6 +/tsadi 16#05e6 +/tsadidagesh 16#fb46 +/tsadidageshhebrew 16#fb46 +/tsadihebrew 16#05e6 +/tsecyrillic 16#0446 +/tsere 16#05b5 +/tsere12 16#05b5 +/tsere1e 16#05b5 +/tsere2b 16#05b5 +/tserehebrew 16#05b5 +/tserenarrowhebrew 16#05b5 +/tserequarterhebrew 16#05b5 +/tserewidehebrew 16#05b5 +/tshecyrillic 16#045b +/tsuperior 16#f6f3 +/ttabengali 16#099f +/ttadeva 16#091f +/ttagujarati 16#0a9f +/ttagurmukhi 16#0a1f +/tteharabic 16#0679 +/ttehfinalarabic 16#fb67 +/ttehinitialarabic 16#fb68 +/ttehmedialarabic 16#fb69 +/tthabengali 16#09a0 +/tthadeva 16#0920 +/tthagujarati 16#0aa0 +/tthagurmukhi 16#0a20 +/tturned 16#0287 +/tuhiragana 16#3064 +/tukatakana 16#30c4 +/tukatakanahalfwidth 16#ff82 +/tusmallhiragana 16#3063 +/tusmallkatakana 16#30c3 +/tusmallkatakanahalfwidth 16#ff6f +/twelvecircle 16#246b +/twelveparen 16#247f +/twelveperiod 16#2493 +/twelveroman 16#217b +/twentycircle 16#2473 +/twentyhangzhou 16#5344 +/twentyparen 16#2487 +/twentyperiod 16#249b +/two 16#0032 +/twoarabic 16#0662 +/twobengali 16#09e8 +/twocircle 16#2461 +/twocircleinversesansserif 16#278b +/twodeva 16#0968 +/twodotenleader 16#2025 +/twodotleader 16#2025 +/twodotleadervertical 16#fe30 +/twogujarati 16#0ae8 +/twogurmukhi 16#0a68 +/twohackarabic 16#0662 +/twohangzhou 16#3022 +/twoideographicparen 16#3221 +/twoinferior 16#2082 +/twomonospace 16#ff12 +/twonumeratorbengali 16#09f5 +/twooldstyle 16#f732 +/twoparen 16#2475 +/twoperiod 16#2489 +/twopersian 16#06f2 +/tworoman 16#2171 +/twostroke 16#01bb +/twosuperior 16#00b2 +/twothai 16#0e52 +/twothirds 16#2154 +/u 16#0075 +/uacute 16#00fa +/ubar 16#0289 +/ubengali 16#0989 +/ubopomofo 16#3128 +/ubreve 16#016d +/ucaron 16#01d4 +/ucircle 16#24e4 +/ucircumflex 16#00fb +/ucircumflexbelow 16#1e77 +/ucyrillic 16#0443 +/udattadeva 16#0951 +/udblacute 16#0171 +/udblgrave 16#0215 +/udeva 16#0909 +/udieresis 16#00fc +/udieresisacute 16#01d8 +/udieresisbelow 16#1e73 +/udieresiscaron 16#01da +/udieresiscyrillic 16#04f1 +/udieresisgrave 16#01dc +/udieresismacron 16#01d6 +/udotbelow 16#1ee5 +/ugrave 16#00f9 +/ugujarati 16#0a89 +/ugurmukhi 16#0a09 +/uhiragana 16#3046 +/uhookabove 16#1ee7 +/uhorn 16#01b0 +/uhornacute 16#1ee9 +/uhorndotbelow 16#1ef1 +/uhorngrave 16#1eeb +/uhornhookabove 16#1eed +/uhorntilde 16#1eef +/uhungarumlaut 16#0171 +/uhungarumlautcyrillic 16#04f3 +/uinvertedbreve 16#0217 +/ukatakana 16#30a6 +/ukatakanahalfwidth 16#ff73 +/ukcyrillic 16#0479 +/ukorean 16#315c +/umacron 16#016b +/umacroncyrillic 16#04ef +/umacrondieresis 16#1e7b +/umatragurmukhi 16#0a41 +/umonospace 16#ff55 +/underscore 16#005f +/underscoredbl 16#2017 +/underscoremonospace 16#ff3f +/underscorevertical 16#fe33 +/underscorewavy 16#fe4f +/union 16#222a +/universal 16#2200 +/uogonek 16#0173 +/uparen 16#24b0 +/upblock 16#2580 +/upperdothebrew 16#05c4 +/upsilon 16#03c5 +/upsilondieresis 16#03cb +/upsilondieresistonos 16#03b0 +/upsilonlatin 16#028a +/upsilontonos 16#03cd +/uptackbelowcmb 16#031d +/uptackmod 16#02d4 +/uragurmukhi 16#0a73 +/uring 16#016f +/ushortcyrillic 16#045e +/usmallhiragana 16#3045 +/usmallkatakana 16#30a5 +/usmallkatakanahalfwidth 16#ff69 +/ustraightcyrillic 16#04af +/ustraightstrokecyrillic 16#04b1 +/utilde 16#0169 +/utildeacute 16#1e79 +/utildebelow 16#1e75 +/uubengali 16#098a +/uudeva 16#090a +/uugujarati 16#0a8a +/uugurmukhi 16#0a0a +/uumatragurmukhi 16#0a42 +/uuvowelsignbengali 16#09c2 +/uuvowelsigndeva 16#0942 +/uuvowelsigngujarati 16#0ac2 +/uvowelsignbengali 16#09c1 +/uvowelsigndeva 16#0941 +/uvowelsigngujarati 16#0ac1 +/v 16#0076 +/vadeva 16#0935 +/vagujarati 16#0ab5 +/vagurmukhi 16#0a35 +/vakatakana 16#30f7 +/vav 16#05d5 +/vavdagesh 16#fb35 +/vavdagesh65 16#fb35 +/vavdageshhebrew 16#fb35 +/vavhebrew 16#05d5 +/vavholam 16#fb4b +/vavholamhebrew 16#fb4b +/vavvavhebrew 16#05f0 +/vavyodhebrew 16#05f1 +/vcircle 16#24e5 +/vdotbelow 16#1e7f +/vecyrillic 16#0432 +/veharabic 16#06a4 +/vehfinalarabic 16#fb6b +/vehinitialarabic 16#fb6c +/vehmedialarabic 16#fb6d +/vekatakana 16#30f9 +/venus 16#2640 +/verticalbar 16#007c +/verticallineabovecmb 16#030d +/verticallinebelowcmb 16#0329 +/verticallinelowmod 16#02cc +/verticallinemod 16#02c8 +/vewarmenian 16#057e +/vhook 16#028b +/vikatakana 16#30f8 +/viramabengali 16#09cd +/viramadeva 16#094d +/viramagujarati 16#0acd +/visargabengali 16#0983 +/visargadeva 16#0903 +/visargagujarati 16#0a83 +/vmonospace 16#ff56 +/voarmenian 16#0578 +/voicediterationhiragana 16#309e +/voicediterationkatakana 16#30fe +/voicedmarkkana 16#309b +/voicedmarkkanahalfwidth 16#ff9e +/vokatakana 16#30fa +/vparen 16#24b1 +/vtilde 16#1e7d +/vturned 16#028c +/vuhiragana 16#3094 +/vukatakana 16#30f4 +/w 16#0077 +/wacute 16#1e83 +/waekorean 16#3159 +/wahiragana 16#308f +/wakatakana 16#30ef +/wakatakanahalfwidth 16#ff9c +/wakorean 16#3158 +/wasmallhiragana 16#308e +/wasmallkatakana 16#30ee +/wattosquare 16#3357 +/wavedash 16#301c +/wavyunderscorevertical 16#fe34 +/wawarabic 16#0648 +/wawfinalarabic 16#feee +/wawhamzaabovearabic 16#0624 +/wawhamzaabovefinalarabic 16#fe86 +/wbsquare 16#33dd +/wcircle 16#24e6 +/wcircumflex 16#0175 +/wdieresis 16#1e85 +/wdotaccent 16#1e87 +/wdotbelow 16#1e89 +/wehiragana 16#3091 +/weierstrass 16#2118 +/wekatakana 16#30f1 +/wekorean 16#315e +/weokorean 16#315d +/wgrave 16#1e81 +/whitebullet 16#25e6 +/whitecircle 16#25cb +/whitecircleinverse 16#25d9 +/whitecornerbracketleft 16#300e +/whitecornerbracketleftvertical 16#fe43 +/whitecornerbracketright 16#300f +/whitecornerbracketrightvertical 16#fe44 +/whitediamond 16#25c7 +/whitediamondcontainingblacksmalldiamond 16#25c8 +/whitedownpointingsmalltriangle 16#25bf +/whitedownpointingtriangle 16#25bd +/whiteleftpointingsmalltriangle 16#25c3 +/whiteleftpointingtriangle 16#25c1 +/whitelenticularbracketleft 16#3016 +/whitelenticularbracketright 16#3017 +/whiterightpointingsmalltriangle 16#25b9 +/whiterightpointingtriangle 16#25b7 +/whitesmallsquare 16#25ab +/whitesmilingface 16#263a +/whitesquare 16#25a1 +/whitestar 16#2606 +/whitetelephone 16#260f +/whitetortoiseshellbracketleft 16#3018 +/whitetortoiseshellbracketright 16#3019 +/whiteuppointingsmalltriangle 16#25b5 +/whiteuppointingtriangle 16#25b3 +/wihiragana 16#3090 +/wikatakana 16#30f0 +/wikorean 16#315f +/wmonospace 16#ff57 +/wohiragana 16#3092 +/wokatakana 16#30f2 +/wokatakanahalfwidth 16#ff66 +/won 16#20a9 +/wonmonospace 16#ffe6 +/wowaenthai 16#0e27 +/wparen 16#24b2 +/wring 16#1e98 +/wsuperior 16#02b7 +/wturned 16#028d +/wynn 16#01bf +/x 16#0078 +/xabovecmb 16#033d +/xbopomofo 16#3112 +/xcircle 16#24e7 +/xdieresis 16#1e8d +/xdotaccent 16#1e8b +/xeharmenian 16#056d +/xi 16#03be +/xmonospace 16#ff58 +/xparen 16#24b3 +/xsuperior 16#02e3 +/y 16#0079 +/yaadosquare 16#334e +/yabengali 16#09af +/yacute 16#00fd +/yadeva 16#092f +/yaekorean 16#3152 +/yagujarati 16#0aaf +/yagurmukhi 16#0a2f +/yahiragana 16#3084 +/yakatakana 16#30e4 +/yakatakanahalfwidth 16#ff94 +/yakorean 16#3151 +/yamakkanthai 16#0e4e +/yasmallhiragana 16#3083 +/yasmallkatakana 16#30e3 +/yasmallkatakanahalfwidth 16#ff6c +/yatcyrillic 16#0463 +/ycircle 16#24e8 +/ycircumflex 16#0177 +/ydieresis 16#00ff +/ydotaccent 16#1e8f +/ydotbelow 16#1ef5 +/yeharabic 16#064a +/yehbarreearabic 16#06d2 +/yehbarreefinalarabic 16#fbaf +/yehfinalarabic 16#fef2 +/yehhamzaabovearabic 16#0626 +/yehhamzaabovefinalarabic 16#fe8a +/yehhamzaaboveinitialarabic 16#fe8b +/yehhamzaabovemedialarabic 16#fe8c +/yehinitialarabic 16#fef3 +/yehmedialarabic 16#fef4 +/yehmeeminitialarabic 16#fcdd +/yehmeemisolatedarabic 16#fc58 +/yehnoonfinalarabic 16#fc94 +/yehthreedotsbelowarabic 16#06d1 +/yekorean 16#3156 +/yen 16#00a5 +/yenmonospace 16#ffe5 +/yeokorean 16#3155 +/yeorinhieuhkorean 16#3186 +/yerahbenyomohebrew 16#05aa +/yerahbenyomolefthebrew 16#05aa +/yericyrillic 16#044b +/yerudieresiscyrillic 16#04f9 +/yesieungkorean 16#3181 +/yesieungpansioskorean 16#3183 +/yesieungsioskorean 16#3182 +/yetivhebrew 16#059a +/ygrave 16#1ef3 +/yhook 16#01b4 +/yhookabove 16#1ef7 +/yiarmenian 16#0575 +/yicyrillic 16#0457 +/yikorean 16#3162 +/yinyang 16#262f +/yiwnarmenian 16#0582 +/ymonospace 16#ff59 +/yod 16#05d9 +/yoddagesh 16#fb39 +/yoddageshhebrew 16#fb39 +/yodhebrew 16#05d9 +/yodyodhebrew 16#05f2 +/yodyodpatahhebrew 16#fb1f +/yohiragana 16#3088 +/yoikorean 16#3189 +/yokatakana 16#30e8 +/yokatakanahalfwidth 16#ff96 +/yokorean 16#315b +/yosmallhiragana 16#3087 +/yosmallkatakana 16#30e7 +/yosmallkatakanahalfwidth 16#ff6e +/yotgreek 16#03f3 +/yoyaekorean 16#3188 +/yoyakorean 16#3187 +/yoyakthai 16#0e22 +/yoyingthai 16#0e0d +/yparen 16#24b4 +/ypogegrammeni 16#037a +/ypogegrammenigreekcmb 16#0345 +/yr 16#01a6 +/yring 16#1e99 +/ysuperior 16#02b8 +/ytilde 16#1ef9 +/yturned 16#028e +/yuhiragana 16#3086 +/yuikorean 16#318c +/yukatakana 16#30e6 +/yukatakanahalfwidth 16#ff95 +/yukorean 16#3160 +/yusbigcyrillic 16#046b +/yusbigiotifiedcyrillic 16#046d +/yuslittlecyrillic 16#0467 +/yuslittleiotifiedcyrillic 16#0469 +/yusmallhiragana 16#3085 +/yusmallkatakana 16#30e5 +/yusmallkatakanahalfwidth 16#ff6d +/yuyekorean 16#318b +/yuyeokorean 16#318a +/yyabengali 16#09df +/yyadeva 16#095f +/z 16#007a +/zaarmenian 16#0566 +/zacute 16#017a +/zadeva 16#095b +/zagurmukhi 16#0a5b +/zaharabic 16#0638 +/zahfinalarabic 16#fec6 +/zahinitialarabic 16#fec7 +/zahiragana 16#3056 +/zahmedialarabic 16#fec8 +/zainarabic 16#0632 +/zainfinalarabic 16#feb0 +/zakatakana 16#30b6 +/zaqefgadolhebrew 16#0595 +/zaqefqatanhebrew 16#0594 +/zarqahebrew 16#0598 +/zayin 16#05d6 +/zayindagesh 16#fb36 +/zayindageshhebrew 16#fb36 +/zayinhebrew 16#05d6 +/zbopomofo 16#3117 +/zcaron 16#017e +/zcircle 16#24e9 +/zcircumflex 16#1e91 +/zcurl 16#0291 +/zdot 16#017c +/zdotaccent 16#017c +/zdotbelow 16#1e93 +/zecyrillic 16#0437 +/zedescendercyrillic 16#0499 +/zedieresiscyrillic 16#04df +/zehiragana 16#305c +/zekatakana 16#30bc +/zero 16#0030 +/zeroarabic 16#0660 +/zerobengali 16#09e6 +/zerodeva 16#0966 +/zerogujarati 16#0ae6 +/zerogurmukhi 16#0a66 +/zerohackarabic 16#0660 +/zeroinferior 16#2080 +/zeromonospace 16#ff10 +/zerooldstyle 16#f730 +/zeropersian 16#06f0 +/zerosuperior 16#2070 +/zerothai 16#0e50 +/zerowidthjoiner 16#feff +/zerowidthnonjoiner 16#200c +/zerowidthspace 16#200b +/zeta 16#03b6 +/zhbopomofo 16#3113 +/zhearmenian 16#056a +/zhebrevecyrillic 16#04c2 +/zhecyrillic 16#0436 +/zhedescendercyrillic 16#0497 +/zhedieresiscyrillic 16#04dd +/zihiragana 16#3058 +/zikatakana 16#30b8 +/zinorhebrew 16#05ae +/zlinebelow 16#1e95 +/zmonospace 16#ff5a +/zohiragana 16#305e +/zokatakana 16#30be +/zparen 16#24b5 +/zretroflexhook 16#0290 +/zstroke 16#01b6 +/zuhiragana 16#305a +/zukatakana 16#30ba +.dicttomark readonly def +/currentglobal where +{pop currentglobal{setglobal}true setglobal} +{{}} +ifelse +/MacRomanEncoding .findencoding +/MacGlyphEncoding +/.notdef/.null/CR +4 index 32 95 getinterval aload pop +99 index 128 45 getinterval aload pop +/notequal/AE +/Oslash/infinity/plusminus/lessequal/greaterequal +/yen/mu1/partialdiff/summation/product +/pi/integral/ordfeminine/ordmasculine/Ohm +/ae/oslash/questiondown/exclamdown/logicalnot +/radical/florin/approxequal/increment/guillemotleft +/guillemotright/ellipsis/nbspace +174 index 203 12 getinterval aload pop +/lozenge +187 index 216 24 getinterval aload pop +/applelogo +212 index 241 7 getinterval aload pop +/overscore +220 index 249 7 getinterval aload pop +/Lslash/lslash/Scaron/scaron +/Zcaron/zcaron/brokenbar/Eth/eth +/Yacute/yacute/Thorn/thorn/minus +/multiply/onesuperior/twosuperior/threesuperior/onehalf +/onequarter/threequarters/franc/Gbreve/gbreve +/Idotaccent/Scedilla/scedilla/Cacute/cacute +/Ccaron/ccaron/dmacron +260 -1 roll pop +258 packedarray +7 1 index .registerencoding +.defineencoding +exec + +%%BeginResource: file (PDF CharProc obj_13) +13 0 obj +<>stream +85.2 0 4 -91 94 0 d1 +90 0 0 91 4 -91 cm +BI +/IM true +/W 90 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fjg7-m/Khs7m.V%1*"6s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W*_p&G'iLHu,t +J,fQKs8W-!s8TV=*98r"qu?V#D>4'7C>Wl4$\JV8$Y*\Y_hYVM$kP*q%)N9^OT~> +EI +endstream +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_15) +15 0 obj +<>stream +79.9 0 3 -92 77 -1 d1 +74 0 0 91 3 -92 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q98m=ruoeis8W-! +hYog9^YA^6p=F6L0#LtI+a)H,qr*6].0Dtj +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_16) +16 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_19) +19 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF CharProc obj_22) +22 0 obj +<>stream +79.9 0 3 -91 77 0 d1 +74 0 0 91 3 -91 cm +BI +/IM true +/W 74 +/H 91 +/BPC 1 +/D[1 +0] +/F[/A85 +/CCF] +/DP[null +<>] +ID +-Fk$$s8W,?F:`+Us8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!s8W-!q8NC6s8VX1+92B@ +s8W-!s0r%-huA0)ho#.0Y^XWJhZq!g%:`3~> +EI +endstream +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_24) +24 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_27) +27 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_23) +23 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 74 91]/FirstChar 0/LastChar 0/Widths[ +79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_14) +14 0 obj +<>/FontMatrix[1 0 0 1 0 0]/FontBBox[0 0 90 92]/FirstChar 0/LastChar 1/Widths[ +85.2 79.9] +/Subtype/Type3>> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_8) +8 0 obj +<> +endobj +%%EndResource +%%BeginResource: procset (PDF Font obj_10) +10 0 obj +<> +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_30) +30 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_9) +9 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_28) +28 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QT8#7''lVQqe5A+D`J0!5"2&A"\A]lVo+g/]e'Ub]#A->j-s$ +&dSPl5nR^M@H>ZQ!!4&M5`e7XAMBMQi2,p4#Teg3N>-F>4]Vl*_#RlaLlfu#3Z][MfuO0/Cc@a* +1]Z!V+u5+K%KJo$&G93D6pq7>$+.lc!^oFH"*r,TA%+`,#6U*Qi0#T97oc::&.3me!4*d]hIf!? +0E<00&:ac1!'J2@7;UXr!b0XZ&Gkl!W54u(VDE`(DudBJ*e4fp#F^$-iWqQK.#9q/O'jE:df9KN;$Y*< +af5E6&YR4p7R/XU!An`IOW/hd,=6FZ0&YapJ0C9a)1Y5p2Vthe9Jk"Z9ZRFeJ.bi"'7c8laTFF1 +3DA)5,iAe[!(!-t!6_#KBS&2jfDo+U&2XXm&h&R3!)'7:#)&V!!N#mPTF-/!3rf79!gk[/%OD)u +#Rgq<+a=L@4$WcT(Q^@2!"XU!0]ms3jff-pJ:JX+!!RoR+BSV0.$?>$!W\rG"9q,s&;?fhEEuY2 +ompORQ)Gf-KEZrC=952<5[5Dopn0/j)@,*W_S\6#$aWAY;]tQ?ki/+97+X@LW=M +3!NJ"r'=^$!.8Ga&+p+$5G>&%&,QJ*L"i)!N9`r0[:S8E@ +-mSkY^uu$Z!+dsOE-`,+5o_+SY`=B5TE0kb(5)g#:5.U776BH@+p7$4&M3uN4SWjq`%u9B +Y!><9nHdTs(kMfs'oDuG"<9[O"c5JQ5R7$7+;tA`!+GiC#Nq[#RK.aHJ:%EReq"[R(jcchGWiD6 +oH%?bCB.f-f*@E,q]gUn%k\JVJ2$ER8L)@f_5mZm=.UF9ZcN2Uc(G:iTE.ED5`,OM34e,U$\0XE +BE>g!L?="*=o`@?!":`l0\"MQ6U2(I+>^MmbickoA.4Ft+:-?7+TiBT$n[Pp1]Y/lJ/DPmEC;Fd +!4E"q(g.4W-nKts#;X(3=)#KR[fo$oiW>lXRc"T'!MBW26@]gOTgTND0VAMuJ-DGc$n'>N$5:4b +!sue#%KK=qf`GhYEmrA9K\$JC!.=GGJA_JA\_IhOE(Z`f'I>Y/oDl`n7m[5"Z;D_K&V;O!#gGAZ +JA;O^5Suq>O8&bZ8-fdD&/YD@%BS!>"qX*$%KN1+Z31/D!^J=l!+>o["7UUD5U\j3+Sq^\:ja'E +(d4N7(8$+2GRit749@bV*J:86;udar#:Mp>!'7Og_8&!e+Q9U.H>Wb!&-E.)\sn4(CuGDn1o3If +XFic>:+MK+!A>i=[?+o+>d,ts!6(de!#Z$XK9-8pP+VmN1(/X?&-^?F@_-M^ej3kk!2-W.!lkUQ +^_eO(^`W]1VgVqQ(b'ESTG+nU:t@oqUB%a0!J5M%B\+hp!2,UUJj:Xg5V7op@#j,p:e&e4'p/Kh +M6):?6"qm+!sC6fkC>6Oi;ihq"5p2MMa0B-6"gE(^utfMf00EY+<,6LBr:utS-CSo(h`nS$WI*Z ++TSph^7YlAJ5dWp>_!Lj!"91Zl[AiLQ/DY88[8@8p&T(3!s02g#W)N'4/`DeSJZ(m!8@ta5\jE) +j__k.0EqT_GRA1CliDWe%hcZF;8qH&=.obM!:TV@E/MWjJ4\`$*H2)\0h2?H3d(N;Zr$ft"!Q_Q +>Q>[E!>b_=1'g_q!'spob?8a9A_atco*/XI=cY=M>g8].7VU(_X#4MEh4+"jEQd]Nbm%VS>sgEe ++Y:\7!MFrF!$KTe6Tl!2:tbo.#VR$I:j)pP!!G,jN!98U#_EU3$$da5H()i#Dt4 +J`If$1%uf&KE)!Kk)=fk"p^h%%03UF!PfOqe\EG%!"eLqJNsJA5YF?B%>"l$&0dYIcuomaAYT6U +jO(cUG7NTu4+WJ)(kBCE!0CRiJUe-4^q^/)5QV`fQo,(U6kP&J63TXrQ/+\n0FRE"6A>IA$%a-Z +J3h0r6cf-.UTf4RZTJs-pu;@RK``Oi.O+up0a#4Z;h4p#9S"q@'L4Vk$4maPK_Q2m+CGY8huY(!X>qsa(ig,Fr%X!$6lk)" +UP#/=dK#(`gOQTsK:jV'^o0I!_#+Rmn1YBga>j>g4;A+j3-E\KD*Io'f$+tcm!;j,F,nNAQJZkICTMq20+D_&\5aWY/ +(aBC'gaL-dq]DQt3X28>"p9Zg)2UHcJ.N>XK^a[(@AkN+n>$p%&<.d,YWR_\W"]D[UD@=[+,CL% +'uLmM"@.cX&(/$I6XXI6To_/E+pJXSDjAJ%=R_b'tQ +PQG5P#lkA7i+`=$+9A-o0Hb*45R[\o":-,4kFpPl?t@rNM$%Ul#E>_blNHKjN9Lh8lU:LMi'(-/ +lL=k?('#$UJ?Ti_!%J1^+C^uG_>Y8ODuq/"#6;%F^g7-%*WtA/<=R=3D;*h73X/u&!l-;U:Dhqr +B_)3l!77>-@#P`W/c['c#Q[I,Tk5)!0HZtq&0Qi;T[jO&":ldq%j_Z!%09 +E!&of*.d;nJbTJ0U]:C$fs9W>m\p>lZkbn,"(237OB`-S=oi$0$ZKS$TE,8'&-GaM#B4ts+_VJG +2AQ9N!)^c+D]807+pP1%h9j=9Z2ZVQ#TeOLojE7WnA7+MoE[^d%:I0e,g%3ZV%(f1%R:.#@.GD5 +-5aPL'>[cN+h&!/ro!mt!.f7jAnD-q!">NO$DJ7Rd4$">.M3dO!:R$iiC#i&h\24;m'>!.fS!!Ib$bIK8>U!C:oI?6B\i4ToY>>KA&(1]TeF)F778_1i"VmK!?Y(?"fpJSGosi>phf!$G)[_36j! +OpqPI!!9Y5+92^uJ-;SN!['N)5R8'S1]]m5!e!$DaW'dMG/i$8As +"9LoA!amJ^+@lU>-3<%4"]9+"!Qe2VW$"a_Ki#i':gL=Q2e,4+:.pR('"=e!!$1.&LJ)4 +(]_Ab!^SpLJDe4NHifsa!?caji+)p)#goar4jJs_i#i+EJ--q0Jh>7NY>$'[1A#SR6uh>h'MX>? +";QIF$Xg=O+Q')Yc@H"hU9q8h/1m%+D:u0 +7K?l2%KI%H@#>:-c2hAO*jFc35qWhe4<-Yq$DBiobPV[^Qk!O+&KpWdJX54*g(9re(>pPQAkE7[ +&cc?:!2I)UTY(O13WeiQ6r2;45Tr10\,a;I'_k&ri$.p2$C"ou#8fiMJ9_4TQl:O44cLNbiTMAD +L_u,V)#5a;Es46R%0f9n0h+\9)*]k7C^K#T$fEcNkTUD--^F'Kd]XNEnbkiH2"Equ'1c##QT5P5q2mY3Z%n+'8InF+9DjNml)BS&R^D%^pFdnRMPIQ+5u!a9`P=S!$gI8#QV:6@0cpb +-36CF<^B.9ZF0dA&ZS0T_qMU$/6l4B"p+&d!Pg25!L[GZ4&EcH";Ws$(+]h/0E@g$";WZl!SasX +6Cg2!#$X$nHU5#(&$qQg(-i?1ErHH>J-SE,"^i#Kn*0ng&D"W,65m?7J1q"a.8nGq@),_C+A`-/ +E!FJ?!.](jJ;sU0NW:2V!+:N]J;aL/PQ?<;!!'/&+L2#u1Nfl30@5m=&`L.u7ii93"EOD?J=mrL +O?J.5N59raJ\iC8j<)3c%Y+Zi5l74-ard:"hbF215Qh`dq@)(r2^*bQ6#cb;!!d+L$'3YJJ?)@O +!!9q[!<<`6EbGL47!.BS!l6u"TG,7P:TK"Z!i%t],ecS1O"$lkf%hX#N575c1n[VpI&=3]r#RQ%@!5P66JERQ\Jfh5&'MT,CJQ@_; +Z2fDe+2N[=TV`TXC*17%RQtTu+aOUUen$'gr<"enoXfZ^/&G\E^gU1C+=0d6:QH-q$"+2ni"uLq +-NP(m.T5+-=p36<&^pd5)hHYrJ//7F0(,CJ!oY1%iEu`XCSP$B*j8$5cQM7.>?%;@%KN40i8+q$ +SdHUuB(3eLn?iXS$4;>_-&YTI^hU&5,;k"Q2*K+=\+n/RC>bkK\V@nVIBr +K428_TM^4ZcDLbk0=*Pk@obU"ei@8'Lt::i!Id/8i#2W(*!"SqVh"aM@6Oj'IKaLb!?b8@5Z.Vj +=93qS!ME1'GDT)'-J,*+;tn9 +*"sG['-KUT+@Hkc7MR$Y'd+2*+;P\7(_n/3'd+J2+@$Ya65:V2'd,sNOi;JDB6I'FG*d%9F[sSU +HiQ*V*3mcl^q^F&*"p'h%=mRI+OUlg8eQ^5+$dIWT`P]H&eQ8e/HC;.@3QU55TdiA+2QqF@D"U. +;@_X]$"/\t!/q"F8d-@n&4'J7+?foOr#UCB%D[i,5])-]8d:tK&Rf>f@\J`g2BTb?!(?45VG[O> +J-#NC0JTLK#V](#!!N@Q!+;IP;2FQF%RqQ@KCQIi#`_D"!4_e*4TL:)Tg0//2J=fF6`ZLT'WBAI +'nHhGo*!bIRfIs?p\TmV7KWeo'EJI>N^+4J!20t>Gt82L.074!&.JU>;$2gYK^_Mj4p?uK?m2IJ ++p8/O#6H$#dF^2l3b+VGVh#Fki:V7&G`% +J5"._1;V,p=/hNb?jlqUrZ$J-i'B=&2un2b$\7jl5Tf%k"$f-4,hP'o$iknC:FL05KF3=WTI_Dk +i349r!bi2q-3=]c*N2"pbo.a&lE(.noD/r0Q?$3l%]E!?W!!13t`6_L@`$ikh!/d?n-Qll_;Zlgn4Jmg&U)M2Cr-lrHKi%Q2S ++lG0u"(C+I,6J!$1+@faQmaHe!jFEj!V@3[!=PtO$E17(TP=je^^E+DY\ZWk_#ec#.M71upg?K" +@>OCtNZ]0n+c%=m;'cDkQio1*i!:aH +^aUT3R\0X1!"%Wb;?i;7=X468J;=\,JL$<]3s$[H$9<]G#jdBKJ<1`bJH1j^'`pWs7KWX@!)N\! +5dJtN(l.$oE\BqVg_h_iEU7lia7AeA+3,L3=omQk4pum7+D)OHCc`<)YtVlg>_4,d.PM\#p^.n$ +-gOAfOX*Nr6ChW-#]YnQnN^l^_$PLYR5VE +J,k$@"!@Ue$]i(?)FoB(n/):h?l7f2J\[?a%4EAJ$jM?"=kII,Ol@Pj*/CCf]]Qk?)AiR/GW7a7 +6eF.WK1,Jog=;Sc64bm;3'nJ_J@c:-!%a37a9#&nDqG/sr%j-#!t`BF,_-JE!(5+e!$HegL[\%p +Kh0o9K2?Fl;0iSb#c\m)J,kHM!?a6&_#tU\?t@DM,!:otea'njIZVBj49phi,S0,HP"0OY#:TuIJ,j*f_2pnd +6%BgX!+[=jPNr2q0GuJ9Qt;^'&MrR&Z8pT..7"Q?PV.5fal"]N#1uN_J]q>V=%"4LpcSsmGVfZq +qBuI@4pjT)?]WSGl!684'EP^0'eo1sK*]dA,P5`RTE7923+rpK(k.MpYr8K?hOFW.^k\%'(IG?9 +D1DTu!!'5'#2fLfJ-9=:0E`RIa9!?;O9(C"#SR1\U&^kM!f4W!1Oq0F!5e4-JRAs@J41+UJ072Z +O:aQ>!B;4n[%ICZg&PG`D+8V^P>Z^(8\dJ<-GW*:;Xa[:$4RoKZa><_!!EFT!!knbJG-1./j`.8 +'`ih!!!(O59Ia%8WKfB><;N:]f`9N=N.I'fdGQ'9q#;\Y^^sMUBE/nN2PkOcQI]ft9rX=m-krtU +d`QK38[nbu:tPam0Gdi\ANt$ikR3K&!!9+G%O+.<"qXhg;@0XMUc$S[f^`j;b;]J-JX1!R@-SHD +-uob?Qkk>thAZPC@;V`*`)eFX7VYl.*Yi^_Y##]L+cXk3^c0%9p!J78P7)#kW7&0$-"G>NlF";!B+jF@4hE(S+R'Z9ii!)["6 +Y7LmGcEm]ZH[fET75Sk3#VQR:@Oq\-\dRFY*Y2'I#OPH+)Im:]!f>ZaE-V0c"7U;\iMlrF9<>sO +BRkU~> +endstream +endobj +%%EndResource +%%BeginResource: file (PDF FontDescriptor obj_11) +11 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF FontFile obj_29) +29 0 obj +<>stream +J,fQl#Ttr(J,fSb"TisC?8@+#5QkTX7''lVQqe5A+Up^?!A=joA"\Ao1KD+4/]]%<-tYFVc)u-j +`JG^s_%C:#@H>ZQ!!4D'!RZGEAMBMR.7N`L#Y5_!7`L$+.lc/jr()"*r,T5U6Fb7g"m3%!.YQVN-YJ0!#8j7kS9Nd'$,m)!#k>L!$OA> +:]Of%#06j3J-@%sC4HEM!(O;5RfprcYbP1J$rH:YC4N44!5Q,4/3aVp^n]C:1GE$&;DcbtL&d)r +(r-02^^.0tZ_.V(!Jq:8$IjTY"Hifhnmn7733;_T'S&F^B[/J5TE&SS6Jqt\ac[?6'h`IDp)^up +j9m0IXRi@kSLo'j`?9]P$=JAc:_"cO^gI3G!:[4kdgoh'AcS#[17U$bTH+6e$-b:\-NGhN2ulCd +YRCTHmQ^af"9=!\!?B;SJ.<,+#[(O>O!+OCJ"P_NYQ=o7 +.'cqTT]'8ZKV1V=!X,27_d6Eq"bgDfejYj9=k8*7E7P(rNF!JH.#D#+'p+;,#aZs:/65hpee$FL +:g00XJ2l84.DPp-%\G)apc&J1c@`q"b#XJ63"]l,D%j$36pLA-(t' +)0)^Cq-e-+(:djdQ53V3@TWoo.:V[]!#].0("uepQ5+ph#$$pR?j]ncJ0+7^PrcHQRhXfM##]3t +)+64[V&idYJ7T$<#6:S+8cb.Y^_?j7*4\6ZJ7S-l!L'3r##5a1n-Vp%K\80f!2S7.o5nNb1!1.l +\M;>/]sn8?B*>sr!g>/q@%D +!5r*_&OI`UJ643"`)AW-/u/Qb^]ktc3"Z.nVA$$cJ.Mt\"GIs,6G3p;+^)/!!+H?E!&4U&J/eOh +@K8/C_#VX\phY*Sr!\*0r#]1:IVSCpER4ltQ55lr=U9Nd/2G#Db6#$K$EUH\ZXBTd6AnngO^KRoYats4(et>[!$M=rR+$Xc +2@1L^"9;8^&->4##iH0E"En)`J<0j=TF&kr=IKg')qYFZ/0TZo@7!3r63o7LLB'?c!^J=N!,n0_ +_VfqY^`Yjt!;HTscjC;8BEJL4nYu]C5S!nMS#(WD*]&[_!5[#B!^IG?1k9TV+]UQ'FT;GpG'XUc +?o8.J:`?XTBFNb:92NFGc.)du%"XBTWg-nO6Q361_140@!#-8E0O>-;W!07f$l?Zd>R-eTBE2GN +j9![@irNs]"b<_T!lmP5kF`!^J.*1!J5nl8-n8iEU_Gs7;@l)1.&!O>9FR0VD0EqgL%AU;sid(SY63o(Y+_^q,&&PAT?6?BnXoK6kJ1s1X.t@^(bhrt_0Eqb05T9iV +$k36(U^!qT)7"HG!J,u-"meJjAUmq2JP[cF!3D([J5,B9n-0%6`T.#,9$)W3qZ.^f&S6u^fDu<4 +"7*H#!V$-p=YLi=!,[Ou^^LFRJ/HH0?&/Mi!$"P6'n/DH9`?XB5"Wk!0.(5b +SWDD0V@:B;9)q6$!E#NtA&)b#!5Jjp^]4QUi!+L]ciea4Gf1MQYS_lj+e&")0EPWM&:kBcSO!Nn +5%F(BJ1rlG#;/sUi&H)p+QNQ`+TjTP!o>*I!'u0d5Qa8&"FtFq)o*k2!?qLDLA\mp!'gklq02mS +!$VDo#S$nK2?._5o;H^+B/s99md(2LqX\@#UA]@<$&qR +"TSS)234sc5)8Wc,R;\GN\C__^`lT25bJ)^i.)3NfHC9'B/_3roEI^N#SGug&;]76,=(aZ"Mui! +L&`&3J8bQb^]@Mg+;tUfcjp*VScF>76j8-<.Fho>G%Rsh%#5r:*Pb&L"-@T*a)L)]g=UIdX_n8d +pF,(56kTM#<#`YMGQe0L'`^MlbeOM"!(-_eN(.gg7N_mPJ5ftY@>G*,!#QOQA7,G2)AbXL:^4A$ +"'sh9%)J#`c="j'Je2Z!J.8F[eL2@=5.h=*2cKeS",=TDD+2X*\M?)3Y +7Y'nm^^*Mf:u!1DJ6r]de12!Uc2^1Mi=<]f2i&Us!(GiE)F:;^KV48W"TYA7_'D.\JAa=]81>Kg +8:dG,!!*=Ji;a$B5m#sS"$iLt4l?GNLeng&?!&$I:"TH$TG/Ufck-MU9F_->$j4=R'*R5M*<8hG +!J*;(!'n=1C9biA36&&[5EAs"c"[EuOSg-SCQ8F7EXW,U0*C22%uUEPM`QA]('%;`"bCt"!'D@^ +J72hK!!hAZ!,`#AZIc4-fI_jFY205Q,3t9%fC%#NOQBeY!$EHeJ.1d0:=m9DmEW!BTE=Hf +:]O+P!`%SRm=YP6!s7CKlC]Qjm]m%i#R4`4*?`cI!3ck3,S7cf'L=>U_+kMLL`[f0(ngR:i,&S4 +r"B)X&V1o7+X.N7(_UGJ++Ud>U%/?%9H2p:$it5_JK>5M^&T9n+$oN!+D_GDa:uG@+2Jd1iKP;_ +\f64=)))8%J8X,7#TI,)@oRW'7^]e76Ue2$3]8k"b6XZ5TBrX ++9^U>"lM5fD-A!3a<,qWej'3=njWkF^uI[jjUOEOhu`pD(B:T;"%V3VEbkhS"T]/K(4cAd@:01F +"TL.L-@c+E:^/%_Erb,C!?eZJ/F*@t^?ct1ltq:*;(i[bC^."l!(!VT_-A(u1^7AVn)7"U^]Fo% +^(4%>'EjdFJ;+M!GRZpp)'Q-_5]R7(^pC(!<<`6Z>9VN!oY8$"-Pq"mOB*9q'9qW!Wi61:0%W%Xok>I"/,X:@@dH" +ScBq*!(!1XTq5C>T]uuA(%/:1^hs?r6j,aTWC*7$!"K1\W)*I"$GlKWiC"?pne5Cp&qF()Tn4:. +r#D@2!l;er+9DO/VuXXX&HMeC5Thku&/sN9&)d:!n2^b^r#_&%+2P)q+`nNoHl"G<2.J0Am2Q2% +-3sTH!T=(]+TMPA!!)CEdd8dkD)q]*r8""e!Pg)a5S6AV$pJ&i!^IILi'P&;nC>@Rif/(,N^22* +DBH]Neh^XaNK4+gY0Rf'.h9)B+aa9@N"9@nm@jFg@.k\X"s1eU8:]t3: +1c%fC.BjKhZD@T(KE*/d'uB_e+^u30!Y$i&g)tqP"Pk.beFl-C!!"W\J:I]/!"n-+!5Ta51H#=C +Qi`q:!Ad7K&jY!2#A1-#?G"L2GOO^%t'00,5dlMpps_`A5--kbJk&s\e$J^>LT +bQ&b@*?im8Jc$MGN#b4**0mX1U!sKgg`OB1!$Geo_4=h^r'0<1WQ^B?lfhD +,11ol&V(c#2=qQ4(IS6+?XOu[J0Y..3!FgP"opFhc7mfMM+0AJ(r;0k5Tgoh:ur-1#6m!d!!>D8 +kQ$P+!h^[JJ1^m'0dFRc#QOo3!!EQ72?88X!2,,LTR[*ZJ-+YZ!u)Fl?j1'SiWK5_"98Q)dt]8* +Mbh,E:a-,"NS..6SJ&_.3`%O4DS&EC*tu_A)Ju2T^m5Q5+r[0O)6c+'^ha`NoECo-!.[rh_<_Kd +S/6`a+4,K@TVr;CH4Af`!R8(G^]Y&G$SYRB5sUWH?j6WS,S*-g'7_4_pADgG%KV)T!cO_5+CR]5 +>T\O61tHnEa- +VuT(,!YJ,l1_:@OKHJ$n*Pj!C68T.E!YRa"#pAj?+=Io]iWPsh)'RiX_<`3$:)a1@!$N*r+g)6* +1]SXZ(4ZGoJ-$HnJ-[=r'`iPqVWMZfE$)o"'B)&^Dd3;#]_4Tu!!-#S?pFfZ-39bF!6-Jg?k*:3 ++:tS)%mX#+N:$cJ."EEM%nB;*J49U[-3GA;!C1r3J4*?:&-\CK!5O$bi-GJJ:'.Vn#N/D^J5cXO +:'?)L"MeCL2BdR57t6M%eh(@kN^"fIGl5?f*RE*nE``Arh#5JA!FU?\5e[Ffh?H7g#!lY7[nTZ% +rWY;\c)fZ7:_cqP?3*;t!FT48lGORu'H,gE);m+bmZ[o@''^#OG&T6Q0J)TG>FFt1!]>OtQF$_( +RKCI,#,+Wu_+k\q9h@W9$io,p@0.,Dr$Y^mSJfoWM^eOsHrW8b7HiPE$+AN=_';M3e"/$2,i#Vrm"Q;TW"X#8pi(49k!!2!\"\pE(YJ4QW +2\?N_20\p/+l).(7/c&0?=46E!$!#j\#]ACX'i496"C#s=*1+H#QPVC!*0:(JC.BjNa"]B4\HOL'UG>Q)\#QX&l!#,SZ('Pft"X"]e+?frO5Qr8s"X$263fS9"CRAn5`u.UPQ?;t!MGMVi0"3COp!5r$Qp,k+;P>- +(^hH)$Qq]7g#L"i'%,q3kN05">Ztn^ubWj +Fr0+J(LZ5<_29/I?PF[I%0>r1JDpVR@MYY"'VP4=+`\H4jrHbc*ME*Ji/dp]W(93D&YT[DJER3q +FpK7E'd7rC5[">"r"q^^JDg,1@.X\SD?lk]'B-59Jfl6j=t\an9Ahce@"8Bq%s=+29V;@fL[G6e +j)Of1!mM:,d&jIP\T6(1=hjT>iFHVeh5Pd&Tgl3Q84C$[o=fn +SX0>^(?HAA'@I-U3X`S!loZ7b;P%/bm1%Tk"qS0\qI!#Aq&Xf9'"I!"BTV!ol*=!#cI--oYQ+!5J^NJ1(g+ +0rs4V!$GC=&h,+!@F)-nF.o"c/Rp&e_+(eG-.lu45T;-%j>*G7?9g6MEh!CBdK&250u+8#TFoC5 +9E>-"""9NKi%bu(1''YO!e!]CD!BGJNIqn0.ZVLfTgTS\EW@P]'YnAf^lSge";,#R);l'YF/*#M')f?kVk$ +##h/t'AsA;TE5ed"9Ao\!apDg?l/p;(]k.A!^M,6^=3J!l2W@`![&B]bZ,g=k?pt;!am>/)Ebk& +.`GEW!2(?C_5J64h#+HL,u;ph?t$+/Z)cdi*O!kki"-pD1%RnDo"\i-T/lL-2tS$6(-o^4DPDjo +=`f0F!Ec]3S]h+";0N!A#G;b9+=7AcB=@jf$K)U+^a9JT-36B[!at6eTG.o%-4rKW!l,4SXN1B2 +H]+I'6@]IF5S%7F9"\urA0;"di$W&c$3C29=$SA=!$V:W($]0B!rs/>bK'a89E5&h3+*@%^_?oZ +(TG2LcG1bL!aq\b!':1A^dIT.r!5LgO2/[&39Uo8"HGc8Y[HB-3!g(HA!!B$!(?mM5m1"U(_fFC +P!ObOBcnNh#a,6WJ=.6&;#h:1,leNB##G@8!2TZM5RpTn'EKL&;,A$1#o/&'0VL`_@K75F-3+X> +#%RcP!2]`NJ.>ri(]bs+;32Q*$(-=!!3t#RGQ==#8'i.G#^HKC5f\sHkR]uiSj=`3;8a5m"s&8m +?uag?G6f5+-ZG3p-?fe@JLHUY!%`@IJ.&$3#Y[]F&;.;hi:MOo>^_EJB,G*!!iR:J%3:S0JH<(r"+A[G^pG/ +^`Xa,J7&@48cbU\-j,&GcmC`&"4Gm-Oamug(':.Z"quM1?iV*tJC"uF"@.P%FrlD^p`9Zq+CYlpkO5Usa&V,B;\e9a*W'VDRc-SiZ#,.\8)2:D\/dSr%*3^(Z +@1WhSJq15:)ZYGW@"/gjYtdHLLWT$pO(C:eO8o92".S]ZQ9ZRK!!OJGZ60E/+9W;[+n-@6b%YOlP(L%3Rn3@P8 +J?T)OJ->o[7tfg*64/qWd2iT+JN1F[";UDm%Y4Vi=pfnUn/_]8i2DSI!'t9>P(cb)Lis]!ZumDk +;>bn]!YK6M*1b-Th&aW==JdVLi.)ejhr$[-Iu>H^A.SoP%%8:H!B<7VKE4&!'8/Y27P+X-ck\26 +K$YDf"6.Zm/Hd9E6nAIO0Kqi,">E/0"@Oq59*=7Z5YD5*YXD+eAM?;H"9gJG;ZoNC7Lk4T=T0&# +i1XHaQ/JoR$^KYd?4<1YTmd?8i3@_=Qf,]/%"ZZJ\f6BtQokAn;\378Ktn,$)bY5;EP+u/1scb` +4-\"m9S"n[2#r;D'L!'pq(b:!,MB/)MM9Et`K:8$kW=\j3@%7ZV`C&!R"%E18OQtdY.^%33F#P#kP(.3=,Ll7o7WA5Y?+93A??3G-D18]0A%"YWA!.]/)NT"8+ +#OpjU+D>j$;32Y_=;;FB$qcA-/gZ.[NWVZh<=:/95C`b6!$K2rK)tm4"CQa"j-XltJG:3m8H1^N +j8oSX\c'!+;t;H0EV;@kQQK&3!=p$Duu[l"\(0U!EC+G!K2%,JA;?o5_.?$ +O1YaNP^Ok0\i0kHYR?(/F>\e0Q^!ET(bc^0"99k;PO&h`%bY,=,ugrM9G)t'kdiiX@'X2ollZJ) +/d*@PB`KIS!W[0\LB0pL"YZ\c!3f3#JN+/C^d'FN&>fGZWC[)`<2G+QV?+Q<$4=R"1]S7;=pn/; +!9)Q1*FS@:KCAsR^^rO,;!;@R89b/di!+su*$%:hFTMTr#_ueE*Iudc"+[)RJ5C-$NNouPPYBlI +i'[m&4)f(/VuVaKN'Dr^GlT(b<<*dW$H2]?&`MMp!K^h5K6T$X@)su$?ucbY\3h*B_uYhWg'L"U +gH9!4.L3bt"9<\i#_;7_T-Zr>L[aO.,8:+f0E;.u&3uBnA-,4S!!,?H!!$CR8Zq1=]uH_h8)V/j +KAZeA>FJLki@$>_JVjL3LlrV6'O?Mk8h.l[>#Zlr*KT-[!36m*HY!HW&ZJRjoD!1X7G!(ctfO>7f+aV?Ic2N;(2mZ\"E +Ij=$)/Hbbo()7-&J/AjR!MX'tXEKHP"L\Gs3!+("S-YqoU^Y$EUefu-5mZ!J/d7%3%4T7VO+HdT +'>f&;USM"B+HRL2!6H3JE,L[:PV#7+M$rA=ALQO81/sA7")!Tj!!.\"^^/*`"1S=2YQ,.:TFCnA +a9G3jpb;hPYQA6$/.5"L=-7_=7H%eq$U=n55Y,;#kc5YcPo(^g?=Y82`jD@IQ=>]@t2@"c=9 +%Dm'Z#2nPh#(U]V_8](R[6T5%PN2a2cik>coDjL4J.Y%[$iiOD1'%A!":LS'!C0.3J=n&#!#Ph= +EHWi5!"#1tBF9S]/-KT>hhM:F&ca)f!!'eY!l1=\!\mdaJ90oVJ=%V,^_?c$F?$o;+T*43&.#I. +l)2ACU6A-lG$F2m-fhq't:%DYLo!C6PdK9-o\^gK/'T`9n"i-kdEp^d_H,U@oEX9(`0 +$O^>r/V)3s3IkLU!J-mJkS!M.Ve?>H!%r^ri>r/R95Vs8-],K!ZlkgN.<$=*e?")$NMjk"b9A&"/#o-+$_1R!3cJ+!'H-9[CepqOaLC:Ae,,cmZZ]% +j%4CY$jEjg"6'.gMZ?!"2<_7G])uIBmC9+1n,W2k")r)GB&"$p[K8Bt,'6S,FPHj2k^cQ/$NL5H +!LTVkK"t:l62U`dpg4Ou!(.(ne,_l9C*0-O2?r-)22CD8;!626M",RFLDT%PfDu`g +!&LrR3/%&6'0$4"p]c7f$G[g(J9!8m3F;at#(c7H2kiJ[85Fai"0gubJCji%4:H`A\2G6dJB/0" +&.O3[$R;SsUaQ=q!!3-c%03U6]Dt(p^]B,H$%R=m!'i[IL]me2%$9HpJ862M91+`t"FuRAJE!ni +j%g9W)$,(`JWU`on/3&><[CC?V5m^pP?B3$=@1bF_WtANq1\kWC,VR82ToM/j4p@C3'HkF[Wio" +!!3-#"[GJ8d#h!%WRZ/:_[j!2q[aVuqZ;#6R3uVuSr1W'Z"77=]=a1Z/D1 +ZEg^m#Cn32J1:*jg(M4M%0.4RJ635P-jG4##Ct$$!72('fG#''&-*7W!#Q?!=;$-l'EDl]JMLs? +J.hp='S+7=JC"s[fGo]K>7HhhuJDf!<_6\KAa[uBKL``3WOCc!.[*1 +LcPO/4926D8"@rWJ?j23k"p@I$KLc=N3!Y*r$3W$iKJ3gf0F\.=%>*9ANL8TO +Tt->C\,]d+Y7%"_^]=M0DhN?8KZgA#(]].q7>L@>KK+%.5XbqI2?[[nJLH!OkWs_)D1hTa"A-.b +(k3uR)jE;^Jae-n'X\(:!/:"L&"!>$WsK"*!JAQ'J,ft-!"XY]#I0'fJ>b/PHPq@L#r(YaJAOmR +kSYJ!pQ)h9@e:[etC +"R,tq,).(jKKt"k(aah_@/pQsKKoTm!$DGA5_8]3LO^t.KaZ8K/ ++.J05SXpf7M/*ee9Q;!9!T>n#*9&\kOj]0LGL=:B]c5F@fGK_dERYYTeJ$R6JnK_hMF +68?8("JZe?J>!C%W#l"kV#Y`^,0UaOW$[&"E?jI*U[S;*%T@`<'qR(QpOr`Roo_8>o75[^Y+GJ +dOp&D_Z6rZU!%8$O.h2Pu!!%)ZJ3XEk>IaaA)uu?0===K+?jV@!^DJM(!8%VY^^>V%$NWKqJNsA> +5Qu]m#?K1eJ:J@7L_ToO'nDtef&.?pfGafu)ZXOj!,rp.J/X7M$A%s]\EG+:?m5Sa+olR+J=%m< +81Xa;/-&ss!jDr^YcE;A1]U'&!+7S_Ck"tU1Ot!0J;>n0O>-a&14Z#R!3u$G_L8n<"bY/-"2G1p +^^1+I$%pS3KNJP6=:,1%$A:qX"F(C-QqIF0>_#@N!)Qr$=Bkj1.N<%8S&cJ](_F7MSrMO!RtW5m +p]1FmIYZi[03Vfh!)/E_>7P$@KV2"ok^!BM[Y0H857@":jIl_CZNf?:L6T(LW'c@0Bg8j$.gR:q +;0;un+9:$sJ1Gu!GQWR3\hl)E(D$WJGQRqb&cb9e1qGMC6:qi'@Qa5A6Ajb-TRR"#@KD_l[I`-I +gL@C5!.]]54npR^O:Snnfs[,%K%k-L:gdX!o0\^\JcGt*GR/p&mJr&>!/P!4L]W1oSrNLNgj%^; ++97'VU]O(MJ1)39fRErqX+2==.\JI#n5'?\I=Pi(O-7Bk]#?a5rr<$DJcHF7#QfO5"23Vb=0P:0 +TKN8m$%pS0$ZJQ8PZ%QfS&Nk=+p]"t5nu!*hN:bcOf9:dfcDb3qiX8DJ\B)f.Ck"mm8P:taoDF* +6Kp+r1C%L:05tARK)$)$Ig!@V0.QRX/_3-/2O%,B0LH!G-.TSQrNGMdL/;6WJ,g.Jq1Zd&0YeWZ +"AOD#2h4.J6b#(LYQ05"l[UqqJKP#F$Q?/5:/$"5/b;o($JU)E-idp7!,+=lBKuQ6!rt&&P'ip- +D9.55I0K+hKudU)n,WSM?PGTkJ-dW=V:Yo,iJ@V($ro8#J2e)? +3cK]iG/3_Ve*mfs+:WiL$Hs=j6g,6b+;Fl)'`^c>&MOFj^]4CcRc.'I`l(2q^]ss$!(;?!!$F?' +-p)r54?97EVsk0Vj.FHe=64s^"3QcU16a4SQ)SYhO'83V)"EY>56E&*J1so!:^MXP3!'8GJ:n=r +_PJ_Y-@gUKJ.?FH(cQtA!eV/Y"+>\"8.nohgji_7J:-iC\toB<&Cf1SJW]]>p:!AE@kJmN4VHSa +6nF]OA8B.pQuf!hO9Yb= +83Dq]AEDH$LY+B_+;^(UI07Ol#>fi%mLbMSW@FQ\bKT8_i"6"k%]]")!sf)2-A6mP:k4W.[*9[7 +K\`H'*/8LBX*V;(E!(W\bbM8aS3jh<_S$)6+3aZ5blB)klG'D-_13X3bmPjm>6f[Tq#EYtd81/M +#YP4$FUOmI$Q:dNB)0s5A<&&CAon"QGVTff$35$#5WJQ>TEVgq5Cb:$`9TA_0*MDj#A5ao6-SbI +-o]I0j,c](65`udT*6Iu;1O&4[)ciGK@%rO.Dj&3kBo#IP$0`@(8[0oV:Z)3WO;:!"(O_ +)R@i]"Mf)hJ3kqYN'2[s$NLbKJ>`MLa92La"Rn:'JA;AY=;(Z7'*&:O!"]eD(_hKC&ccd1!N6#" +TE0VJ"bEc9PX\X!2cT*^ki;&Cm8#V5re.tAHgJ0h"CbEDpF07\:#J:K;' +LbF:?07]ECJ=nQGZpoZr!.u[#""42&5QV$I!eW00"#'k13!BCD\q"DoK.KQDGVoJO2#rFh!2)Bt +^]E[J3e0IVN/.W>W!.g`"p:TLJ9X6XJ3Esh4Fj(T3T\?llAH+5)9O?>J1qDG^f:X/Jj>Phq2!q0>GbNLAV!#5L8*/"S'jZ#N1 +hun];X(ogEJ=&S%=?fO4"sVU\!2Ec9\.Se*2X*6qU=C*N`prU=Td<*Js):Lh?s=n!%&P'X>h32 +O92H"$pE6"Jca5JJ.&0'"PCL!KQmgLAfX1Q:4W*J!GDik+9MVJ)ZY3=!FQ*4J.L1tE_M:5,hX.A +,#F"J#R5?I&d-[8!n.7%&3Z776X+C-r&90(^N&jaKqLGV\2f)Tq?$*K1*5[Ri"HQpibk3DW7e]? +\/PIIAqCj9JT)ca#T*Se+b=>jK.p_f=JuC+"fIOSd(BP^'!H8j,&0V;J4`)#qKcjZP +#S;aC0ETTaKFU4D-uFb?"jR9dJ,oWMkl;V(K)lBGQoGd*!!.[<%7VSH,WQ]l!Y7b.jDlp\O+8J% +#g=7h"/JN,Ae5+CM#n%)lGO8,>4O7q!$DB"!!!3k_#OM?!I0,I$_RMCn5pY7"#kitVBErZ+p.h7 +_'e0.!%86g!eWaH+&d:!Rq*lIN8Ii9;=5?bT\8MLdIgiLkeKsdtC2!;%A@[XpU\#bMWsQHijIg2bW?!ja?uS09&4n +!NalNIK4ngVq;"!C&oHLVrLb_!rj`7MSLRP(aoABO98m@GU@lM!h4d,cq1kc@L40/THJI\a:8K- +JH2]&@NU@M!02X9@HbE\#P!`YUd9M4-'eO-W%8aX!%IsS$1oq\+6EQB#_qNVt!;NP3!kbIh(kU"E9l$.6^Fl`[Uh-+3(h?:)-2h2Dl#`5nZAR7'hp7 +QR0HT:BEetL/Ju1P(aAR5RG"(Pe[jKM?!WrBE8)Am6YDM`hAc_1r0I)",VfQ$8E*rjO=86.PNOV +K`V71#RlWA&d8:Y?krbD6QdEU!T9Un#d+/^>R1D=fUDjA.c;=5.V!]?X+J-E]!-`NBGLWq!&,Z+ +XT5Bf\HIi+168WZi-8;m\.!3!%'M]dPU$B5%9ou[?/BGJaB?r.[B!MD+d!s.=6+9MZf^_P%ETPu@c +k]D&#$.iT^'G>t*-lN!BUgE.eIP!/Q.3 +#QU6B$4$XYV?I>-=Khu:TP1>1$35=T#R^WgdKPUQ@*/\4TQ&*[N'Kcb!?f/\_Z1A]+=oa-Yjqku +p^@YJ1ck]qliY/H&.]mO+be8CB@XPo2#meb)KXDDed8]A`q\aQ`quI5R<'Q'br(Y+5a<"7 +E(Z2Mn?eLS_AiOY!tXA_3!\rn*8h*M$5"s=70;d\Tr`6m&V)kHkhV'XBE/R=coh@Wn,NG:!!e%) +#65q6!5K9LL.Qh-:#VWCTGTM9J-$_+!!rY`7(E:?(4]3m`%]>q@Na_Og"T%&!0,!:[rbT'&WdAf +89/bOZp'LI+d3$/!"],A?33E;$35X"'`bTjL$)>j-hF/D:;F/O9i(utTTmhBBKuP_+T<9e"?$Oc +(`IoIg)+9-Fq:8=/(!4K+2\3^#ga!)^h<]MKI?rN:^e=L%(@`p#R:t3pb;f4"s8MOOan!:!/l@? +#2iG_;nsO)BaF;P"5nH]TaW)teK56n"DiT"`W/@P:^s+S2%SXE5D:$"X&O&1M&JPXKC'l`'U0'? +"U78l?jd#Y*\niLA326J3$a%()Z_/@!.d*e;>'9HM4kD&`6e.ToR-j:&&1cq[%)?TuP[fA!>">eCI!'lVR"/LsdU5$=Z*G8Q +8-&b/ph'VX(dE[5!Y+,&^doISTR7'$5U744^*`s>UcJJUapE\K!t?A80ESID#I,[%"Z#!JJ7&dg +m4>aK5R8+["ZMUgKuI!q%0Va.fE;C9aW8NoP$O/[Y*J"\!fI()Job1XQ&L4rb0\M9/'7mC3$T:! +e8'cs[QT=@S/28YIh$`L*CfgA%KInY$/mWj7Bj!(i5euWnKD;YW!s4:'MAMC>VAN2LDHP5%1R;X +1e.6q#%.QG#luG*7*r.RTpSB-+U0./!.I:dK+7lh`)37RD?pa2N><'<+^,]l!/*$bJG&sHK)cei +C)jY^```ZKO9&2B_DR[e#WWG6K0[>:Yr5$FE>83n(4^cAL&a+3O\-5f8@2J"1gl8meE84VZjfd; +7#;)?O98sEER0G-C&ic"bb/PZ6/pf&!=\F1J:(^S+HS7qf]=*IlsG8Tn1UTc%-#1S!f!J756p-G +**djkJ`$`R_cZh@_Q84s?igQ5#ZG(](cgmn4(ouumfebo!!_UI)h>j#$ikq]W1XeA$s +E"#,'9`P`^!(;Qjmbp,*Kb+:uOH4r7_Rt@LO_s'p=Cgi)XBLNY!bHuq@lr4[=c_OY)uQ`3!!!:S +O$\L#7bL7=`(X3b!29H>n--3b"9E$W,[K(;^B+>@!BLh69R\&,pH5F"%!!*J2Q6d'0l[' +M!uLZO:Ye&!eF/J5UmCTqA^YP&#&h3JGKt1"9Y;"(r>nJUQ,dloFdpr!$I@F_/Q0($jZ)Z((3B8 +`8D0[6O$ +OO>e=[VZQ%S*&T,`pfR3p_LY114U8G!#tuQn3T_=69lAW"=+#Q&f(UV7O0Sf6phI*Vp +!&+F]!cMIc!$IGuMLkoF"9f$b!'kK(5`Xel"Tgpj![H4,j'j;Z;DnV^!)2k^5R&"?q?m>^+0/9O +_2Rqnr#B/'=?m&m622G9quFO^!$FlCTEZHgp]3Y2+2PCB!!!GF]E!mO#_2o7#f[3f7Kd*/!amW( +J3Xa(E">2^]"mtV!@S!M(]cn;!+?!3JN*d_#R,`2!alE>j6d)$!!])W"$db.5Y*P:k\B%#CEs_h%:52jp)McIK@FmTJ8&7JC4E_bQ/ghK8BF_WYE)'U]<\;+/.[' +5R%Y5q@(.B#XHrJdps7#5RP@&'-Vs18RMtDKE0to@t4W.!0.+gaS12p!^Og-%sgJLfVDmt!8n=e +`c;,g,b*!`.Y&(D5Tg)Z\./$j!6'*_@\a(ccif%`"G3u^+<"-#8-**)4lc*J?p\V6(`eU5*/pa7 +K*DQ-\g).30h0#7!+]omlS;r/S.Foai#ZfTp(7V$/O1?Y5V`>t0EOL'!`/@ji$8IK-3YM?#66"S +i\gjGEWUcS!8rq?5b8$BPQG6W!f#24!$hs1,RZja$U?*L+:\h\,RrZW%3Qu,+=I`X%M/1maA]&5 +^a9'^-j%0o!gKP`?q^R[dKJ(*!e>(ei+;uiC'%dX\mQ!RTF_BZ-FuIB!8sdV!34j?.63Tb%"KZ5 +?mlM8%M#-C%Y,l9?mlQd1_\e((#Unbi%tRu,W#f51pLFGW(8g=(50MO)'Atr?j-74(]Y^5(u]oc +TlB"A!"kq&!!mO(+ncj1dLB]\3a`4)61u>W#Qc1C3tfULbW#TQngM:;!"Vs1UNcm6n?n$B%Y,T/ +TI:5A%9%fF!!'q +i&o[X!<;_>"6nlG.5;RBC#NVJ-]Nc*RV/(209G25`+DkK4'34 +J,f[:5fTHD%=f]7/6cNJ=90sj$iis&J.s2^h!h_SgJ1L]9('MXY5m9_5'usP^(GD@DB0nt!!3#WJ[c$F>ROrt!MKW*TnMEVHkF>f&_F#r!!Et.QLKDA*OHU8C;?E`T5/]"ePB@)N%!]96b9QO8\^`idZ-38WDpo7e7VIBTL;?;;G!MGqbi1'oMS-0r[lAX8)Z;^gI8loC#8Jb^k +N4&fJ:PS;E!'r^Z\C(t_*YQ:C(EeMKJCkh:-6L(QGbP'Q^kE[#Q4%*[!J(@_f;&](iG1`AI\EhC +6/d0ArFt61+2Qe6+S#LT]Ds)d!$PWr!UL5pZ5Zr<&G:,Wp\;1i7XOK4F.g]IeY3-JGZS8cF?gTD +&f.X;6KpaClE7;U+@PO'/kk[, +_,qeq>I*Ok'*&(C_Ria?r?ob+&mIqqjt[/#N%#Oj&HI=f#<$45RKS,KMoI3-\Fa0^&P;#f+Rd!OD6(5TLu%m_QUU +@JU[lW#hY>*MHXYT_&4,:(m>R'&ia-+9W[W-4=4W+2EdP_6sq@U*$(B3bWOP!Ib\J@KbCe'$N-& +idgZ8BSiN?#G?SL.'Yn-`0UbB!%1s/Ls9cZ,)ni=g-mj?af]G(pbG)I"op7^igKr-4p'b*l@Fujr"K20`Zflo ++iXMUL9q\s#l1Y=i#:5j&e2au&)]JWJ-HIu2+\q,=4Su)gUI?p$?Q8#"J@sBc)Fr.lKMI@61F^R +!+5p0ScfP#!'3^T$AEVuJ-P>T2*_V*4N^Yh#Qip/F!*pk_2MP@r0%0Z%O%>MXRZ?7a:P'C)6XSd +_>Fa"3WL;.&.r.\?&0;81)??3+2Mh:_-@3W4:ia')IT$A@86eXUQRo8#@Mcu_)q\us(=UA=$[T% +^rQRB9ueG@$m:uD00CWDp)BY/?fhD5L'V2,&-_$_@:gDZAf_=F"pokU@\tb*q4(/eION?24J5.f +cX?GNfe0T!0-L>H5S=VA!;\qj!C._hFqk@a@Nu88Rj'c#_<`8m+;g:g^8BjU0E1uZ2,fULp*L3N +&B[mBE1G:TUnAb8i#Vo!(q_,N(5VlH5e$f&7,rgk!.d*OJA'unoEbRFVI6gXU"gP0r"bI:)B]5* +^]Xe@5To@@4D#'(!7E%m.=r`p)N&.Ki^&77[:]MYT&g@>SFfQUejJW>L"Z8Kj^dHMNf(r$+U&YJ'"t]ct!1#lNVuR#% +'bCEh.1Ck2!W\EL5QaOi=oeY^fn5F._uL?p1BmufR:$L9!jZJr1<>7Q1B<6H5pZXK5otEC@_`8d +W!M_j*5KQc!!)AnMub7j5_Dq%34$p2"LWb*WGVqU$Y>%U!!rU4A +9)sDt+cQc`0%Z$3n-OQZ@'GsTR8YW(+D*CQ%,MC+9)sK:i".'^r2d'9OT6'6D'S$VM#fm(G +!uQi$*IK6=;'i@mDq]"(m'AEW^ls3%P/d!'#!$Tn@:a-8M5B +YH"6$1lHn4Uq\TW1C+LF#%=5W$\Q79Qm%2MW,*IZ_@V;A#N4fA.L.,9)BskX5`?H]JS8EkLS6D@ +S-XXi6lUtk5QD6"1ACtaJtSJ>#QTD-(_m/r8/qY]5eqOHJq/Xa&qWC,/07JbEiLDh@/)te#m#H] +>ZWf5G;'QE$+9>/9h:5<4'B6dj9)RJ.k"`$\/6H!"=AZ?iV@#!K[:"J,ukS +*<6-0!$M=D#QW8-huGe<:DIhh!!U.<)?:&9!)`dt!!%rX"b6SD!!T"uVMkbQ!)*@t!!7+t#_2mr +!&m3Tg&P"6[(/b0$"ud.!h]N?!)(+Zq@.rT@RL2!+93#S!Qt0O!!<3$FoVPN"L&/^!%7g[J,kZ2 +%KHL5!ERhKFMoI*!E]=4J/+e0,QJRnT<;t@p:mh5Fn.2\9"Qi105&'#LbarW#cp(E@jpCpN6T># +!0S69_d6_Nal-a_FiB.e1B=/"!'#L`0+\32!`09)nM@su!Z.@l"@]'#.3$8,7"0:\)E^7h +Bn-7d7F_ClW9+2Fh,"GAJ-B<`HZ_Rp2B@=fc=>":'[Qh?J=WX_!YD:*pWdr.W-@Bk+=N>$SQq4T +!YBP72ujki&SM.P5UE^Lr*TOL!dEVU$7fcg#^-7,*,h'ig28WVeH$K%'EXa%#^[ZOn`GZ>$pL1h +!sYOu.Y(C5iu@Jk!3d;"J5F2E!%QYD5Rj`N-oCbX\,[+[HqjZMHiO6K#'=:t!fV-u4^e%LGV:5" +Kcgq%*(nm!d!S*pnIl/HA3>M(*!7MFiW4[1N%;(Da#kOt" +endstream +endobj +%%EndResource +%%BeginResource: encoding (PDF Encoding obj_12) +12 0 obj +<> +endobj +%%EndResource +%%BeginResource: file (PDF object obj_1) +1 0 obj +<<>>endobj +%%EndResource +%%EndProlog +%%Page: 1 1 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +4 0 obj +<> +/Contents 7 0 R +>> +endobj +%%EndPageSetup +7 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R8 24 Tf +1 0 0 1 34.3477 774.039 Tm +[(La)1(ngua)1(ge a)1(nd So)1(ft)1(w)0.998942(a)1(r)1(e St)1(udi)0.998942(es)1(, by)]TJ +28.1953 TL +T*[(F)1(l)1(o)1(r)1(i)1(a)1(n C)1(r)1(a)1(mer)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 712.965 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 712.965 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 712.965 Tm +[(F)1(l)1(ori)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.207 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.02 712.965 Tm +[(Crame)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.309 712.965 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.125 712.965 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.098 712.965 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.289 712.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.359 712.965 Tm +[( )0.998942(are)1( )1(i)0.998942(nt)0.998942(ri)1(nsi)0.998942(cal)1(l)0.996908(y)1( )1(re)0.996908(l)1(at)1(e)1(d )1(,)1( )1(si)0.996908(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 698.996 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 698.996 Tm +[( )1(may)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.199 698.996 Tm +[(proce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.98 698.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.793 698.996 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.863 698.996 Tm +[( )0.998942(,)0.998942( )0.998942(and )1(i)0.998942(s )1(const)0.998942(ruct)1(e)1(d )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.137 698.996 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.203 698.996 Tm +[( )1(.)1( )1(Y)87.0117(e)1(t)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.266 698.996 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.332 698.996 Tm +[( )1(me)0.996908(ans )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 685.027 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 45.8 685 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 54.3754 685.027 Tm +[(e)1(re)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.8828 685.027 Tm +[( )1(t)1(hi)1(ngs )1(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.316 685.027 Tm +[(cont)1(e)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.504 685.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.797 685.027 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.602 685.027 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.273 685.027 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.047 685.027 Tm +[( )0.998942(l)0.998942(anguage)1(s )1(i)1(n )0.996908(w)1(hi)1(ch )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.387 685.027 Tm +[(al)1(gori)0.996908(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.945 685.027 Tm +[( )1]TJ +-508.598 -13.9688 Td +[(are)1( )1(e)1(x)1(pre)1(sse)1(d )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.836 671.059 Tm +[(soft)1(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.746 671.059 Tm +[( )0.998942(i)0.998942(s )1(i)0.998942(mpl)0.998942(e)1(me)1(nt)0.998942(e)1(d )0.998942(,)0.998942( )1(and )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.227 671.059 Tm +[(so-)1(cal)0.998942(l)0.998942(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.996 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.813 671.059 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.945 671.059 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.762 671.059 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.922 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.738 671.059 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.871 671.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.688 671.059 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.852 671.059 Tm +[( )1]TJ +-487.504 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.016 657.09 Tm +[(T)1(he)1(re)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.688 657.09 Tm +[( )1(are)1( )1(at)1( )1(l)1(e)1(ast)1( )0.998942(t)0.998942(w)1(o )0.998942(l)0.998942(ay)1(e)1(rs )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.184 657.09 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.957 657.09 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.773 657.09 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.84 657.09 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.035 657.09 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.945 657.09 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 643.121 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 643.121 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 643.121 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 643.121 Tm +[( )1(i)1(n )1(w)1(hi)0.998942(ch )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.215 643.121 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.125 643.121 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(ri)1(t)0.998942(t)1(e)0.998942(n )1(,)0.998942( )0.998942(and )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.359 643.121 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.426 643.121 Tm +[( )1]TJ +-458.078 -13.9688 Td +[(i)1(mpl)1(e)1(me)1(nt)1(e)1(d)-318(w)1(i)1(t)1(hi)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.32 629.152 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.23 629.152 Tm +[( )0.998942(as )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.805 629.152 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.426 629.152 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(.)1( )0.998942(In )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.887 629.152 Tm +[(case)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.02 629.152 Tm +[( )1(of )1(compi)1(l)1(e)0.996908(rs )1(,)1( )1]TJ +-426.672 -13.9688 Td +[(she)1(l)1(l)1(s )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.992 615.184 Tm +(macro)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.207 615.184 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.906 615.184 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.93 615.184 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1(se)1( )0.998942(l)0.998942(ay)1(e)0.998942(rs )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.102 615.184 Tm +[(ov)1(e)1(rl)0.996908(ap)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.617 615.184 Tm +[( )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.059 615.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.195 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.008 615.184 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.941 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.758 615.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.891 615.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 601.215 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 601.215 Tm +[( )1(i)1(s )1(w)1(hat)1( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.25 601.215 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.031 601.215 Tm +[( )1(proce)1(sse)1(d )1(as )0.998942(dat)1(a )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.254 601.215 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.164 601.215 Tm +[( )0.998942(;)0.998942( )1(si)0.998942(nce)0.996908( )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.559 601.215 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 509.59 601.215 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 587.246 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 587.246 Tm +[( )1(,)1( )1(how)1(e)1(v)1(e)1(r )1(,)1( )1(i)1(t)1( )1(i)1(s )1(re)1(st)1(ri)1(ct)0.998942(e)1(d )0.998942(t)0.998942(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.629 587.246 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.367 587.246 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(.)0.998942( )0.998942(W)0.996908(hi)1(l)0.996908(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.949 587.246 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 450.4 587.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 458.977 587.246 Tm +[(e)1(re)0.996908(nt)1(i)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 587.246 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 573.277 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 573.277 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 573.277 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 573.277 Tm +[( )1(l)1(anguage)1(s )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.758 573.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.895 573.277 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.707 573.277 Tm +[(art)1(i)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 298.2 573.2 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 306.227 573.277 Tm +[(ci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.813 573.277 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9420>1(from )0.996908(l)1(anguage)0.992839(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 559.309 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.0781 559.309 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.02 559.309 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.156 559.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.969 559.309 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.133 559.309 Tm +[( )1(l)1(anguage)1(s )0.998942<9420>1(i)0.998942(s )0.998942(conce)0.998942(pt)1(ual)0.998942(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.898 559.309 Tm +[(i)0.998942(mport)1(ant)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.285 559.309 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.48 559.309 Tm +[(undi)0.992839(sput)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.629 559.309 Tm +[( )1(,)1( )1(i)1(t)1( )1]TJ +-454.281 -13.9688 Td +[(re)1(mai)1(ns )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 545.34 Tm +[(probl)1(e)1(mat)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.434 545.34 Tm +[( )1(i)1(n )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.262 545.34 Tm +[(pure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.512 545.34 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.324 545.34 Tm +[(t)0.998942(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.68 545.34 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.352 545.34 Tm +[(T)1(he)0.998942(re)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.023 545.34 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.648 545.34 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.398 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.215 545.34 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.348 545.34 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.164 545.34 Tm +[(nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.324 545.34 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.141 545.34 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.273 545.34 Tm +[( )1(about)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 531.371 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.5117 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.3281 531.371 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.395 531.371 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.32 531.371 Tm +[(cul)1(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.887 531.371 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.703 531.371 Tm +[(const)1(ruct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.363 531.371 Tm +[( )0.998942(and )1(t)0.998942(hus )1(just)0.998942( )1(as )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.18 531.371 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.316 531.371 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.129 531.371 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 430.7 531.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 438.649 531.371 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.234 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.051 531.371 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.184 531.371 Tm +[( )1(as )1(any)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.602 531.371 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.375 531.371 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 517.402 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8125 517.402 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 133.105 517.402 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.922 517.402 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.988 517.402 Tm +[( )1(.)1( )1(T)77.9928(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.543 517.402 Tm +[(cal)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.094 517.402 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.91 517.402 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.129 517.402 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942<9320>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.934 517.402 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.586 517.402 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 503.434 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.2422 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.0547 503.434 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.8711 503.434 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.6836 503.434 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5078 503.434 Tm +[( )1(sol)1(v)1(e)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.703 503.434 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.348 503.434 Tm +[( )1(e)1(i)0.998942(t)0.998942(he)1(r )1(,)0.998942( )0.998942(as )1(i)0.998942(t)0.998942( )0.998942(obscure)1.00301(s )0.998942(t)1(hat)0.998942( )1<9320>0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.148 503.434 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.801 503.434 Tm +[( )1(l)1(anguage)0.992839(s )1<9420>1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 489.465 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 489.465 Tm +[( )1(cre)1(at)1(i)1(ons )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.809 489.465 Tm +[(Hi)1(gh-)1.00199(l)1(e)1(v)1(e)0.998942(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.234 489.465 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.047 489.465 Tm +[(machi)0.998942(ne)1(-)1(i)0.998942(nde)1(pe)1(nde)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.949 489.465 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.762 489.465 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.984 489.465 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.84 489.465 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.176 489.465 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 475.496 Tm +[(F)56.0117(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.418 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.8633 475.496 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.043 475.496 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.488 475.496 Tm +[(J)1(av)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.387 475.496 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.207 475.496 Tm +[(B)1(asi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.898 475.496 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(e)1(v)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.633 475.496 Tm +[(di)0.998942(re)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.535 475.496 Tm +[( )0.998942(mappi)1(ngs )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.945 475.496 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.598 475.496 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.41 475.496 Tm +[(l)1(ogi)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.715 475.496 Tm +[( )1(.)1( )1(If )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 461.527 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 461.527 Tm +[( )1(l)1(anguage)1.00199(s )1(are)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.23 461.527 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.949 461.527 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.02 461.527 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.672 461.527 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.484 461.527 Tm +[(cont)1(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.781 461.527 Tm +[( )1(,)1( )1(t)1(he)1(y)0.996908( )1(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.477 461.527 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.262 461.527 Tm +[( )1]TJ +-501.914 -13.9688 Td +[(cal)1(l)1(e)1(d )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 447.559 Tm +[(cy)1(be)1(rne)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.727 447.559 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(.)0.998942( )0.998942(B)1(ut)0.998942( )1(t)0.998942(he)1(se)1( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(can )0.998942(al)0.998942(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.77 447.559 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.551 447.559 Tm +[( )1(use)1(d )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 448.852 447.559 Tm +[(out)1(si)1(de)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.406 447.559 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.219 447.559 Tm +[(machi)0.996908(ne)0.996908(s)]TJ +-462.871 -13.9688 Td +[<9769>1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.9141 433.59 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.7266 433.59 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.949 433.59 Tm +[( )1(handbook)1(s )1(,)0.998942( )0.998942(for )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.277 433.59 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.301 433.59 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.125 433.59 Tm +[(programme)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.934 433.59 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.75 433.59 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.563 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.379 433.59 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.535 433.59 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.352 433.59 Tm +[(di)0.996908(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.164 433.59 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.98 433.59 Tm +[(t)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.578 433.59 Tm +[( )1(jok)1.00505(e)1(s )1(,)1( )1(or )1.00505]TJ +-463.23 -13.9688 Td +[(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.4727 419.621 Tm +[(abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.723 419.621 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.539 419.621 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.313 419.621 Tm +[( )1(l)1(anguage)1(s )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.383 419.621 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.336 419.621 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.152 419.621 Tm +[(l)0.998942(ogi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.445 419.621 Tm +[( )0.998942(const)1(ruct)1(s )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.523 419.621 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.859 419.621 Tm +[( )1(as )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.184 419.621 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.785 419.621 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 405.652 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.3867 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.1992 405.652 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0156 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8281 405.652 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.9883 405.652 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.8008 405.652 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.789 405.652 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.551 405.652 Tm +[(P)46.0144(ascal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.113 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.926 405.652 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.148 405.652 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.961 405.652 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.031 405.652 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 405.652 Tm +[(e)1(x)0.998942(pl)0.998942(ai)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.816 405.652 Tm +[( )1(aspe)1(ct)1(s )1.00505(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 391.684 Tm +[(st)1(ruct)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.9023 391.684 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.195 391.684 Tm +[(Samue)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.617 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.434 391.684 Tm +[(B)1(e)1(ck)0.998942(e)1(t)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.09 391.684 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.906 391.684 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.719 391.684 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.508 391.684 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng.)0.998942(1)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.871 391.684 Tm +[( )0.998942(In )0.998942(t)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.332 391.684 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.578 391.684 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.023 391.684 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.418 391.684 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 391.684 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.527 391.684 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-446.18 -13.9688 Td +[(coul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3555 377.715 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.1367 377.715 Tm +[( )1(more)1( )1(broadl)1(y)1( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 189.8 377.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 197.809 377.715 Tm +[(ne)1(d )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.359 377.715 Tm +[(sy)1(nt)1(act)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.094 377.715 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(as )1(oppose)1(d )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.508 377.715 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.41 377.715 Tm +[( )1]TJ +-485.063 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(B)0.998942(ut)1( )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.563 363.746 Tm +[(t)1(e)1(rmi)1(nol)0.998942(ogy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.914 363.746 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(i)0.998942(t)1(s )0.998942(probl)1(e)1(ms )0.998942(e)0.996908(i)1(t)1(he)1(r )0.996908(.)1.00505( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.398 363.746 Tm +(Common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.516 363.746 Tm +[( )1]TJ +-471.168 -13.9688 Td +[(l)1(anguage)1(s )1(l)1(i)1(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.25 349.777 Tm +[(E)1(ngl)1(i)1(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.984 349.777 Tm +[( )1(are)1( )1(bot)0.998942(h )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.875 349.777 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.648 349.777 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.844 349.777 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.746 349.777 Tm +[( )0.998942(;)0.998942( )1(al)0.998942(t)0.998942(hough )0.996908(t)1.00505(he)0.996908(i)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.18 349.777 Tm +[(scope)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.066 349.777 Tm +[( )1(e)1(x)1(t)1(e)1(nds )0.996908]TJ +-458.719 -13.9688 Td +[(be)1(y)1(ond )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.824 335.809 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.598 335.809 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.043 335.809 Tm +[(any)1(t)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.504 335.809 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.078 335.809 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.859 335.809 Tm +[( )0.998942(e)1(x)0.998942(pre)1(sse)1.00301(d )0.998942(i)0.998942(n )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.328 335.809 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.723 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.535 335.809 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.832 335.809 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.645 335.809 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.715 335.809 Tm +[( )1]TJ +-509.367 -13.9688 Td +[(can )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.9531 321.84 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 321.84 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.234 321.84 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.891 321.84 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.707 321.84 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.773 321.84 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.998942(fol)0.996908(l)1(ow)0.998942(s )0.998942(t)1(hat)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.746 321.84 Tm +[(comput)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.141 321.84 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.957 321.84 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.25 321.84 Tm +[( )1]TJ +-469.902 -13.9688 Td +[(l)1(anguage)1(s )1(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.164 307.871 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.938 307.871 Tm +[( )1(\( )1(and )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 230.754 307.871 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.09 307.871 Tm +[( )0.998942(rat)1(he)1(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.996 307.871 Tm +[(pri)1(mi)0.998942(t)0.998942(i)1(v)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.012 307.871 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.32 307.871 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.973 307.871 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.266 307.871 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.922 307.871 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.738 307.871 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.457 307.871 Tm +[( )1]TJ +-494.109 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)78.9948(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.129 293.902 Tm +[(compl)1(i)1(cat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.609 293.902 Tm +[( )1(t)1(hi)0.998942(ngs )1(e)0.998942(v)1(e)1(n )0.998942(furt)1(he)0.998942(r )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.457 293.902 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.852 293.902 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.668 293.902 Tm +[(sci)0.998942(e)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 293.902 Tm +[( )1(has )1(i)0.996908(t)1.00505(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.34 293.902 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.563 293.902 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 279.934 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.117 279.934 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.41 279.934 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.547 279.934 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.359 279.934 Tm +[(ope)1(rat)1(i)1(onal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.863 279.934 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942<9420>1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.883 279.934 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.105 279.934 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.805 279.934 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 548.828 279.934 Tm +[( )1]TJ +-514.48 -13.9688 Td +[(i)1(n )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.1953 265.965 Tm +[(const)1(ruct)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.648 265.965 Tm +[( )1(of )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.91 265.965 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.133 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.945 265.965 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.016 265.965 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.828 265.965 Tm +[(i)0.998942(nt)1(e)0.998942(rpre)1.00301(t)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.234 265.965 Tm +[( )0.998942(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.824 265.965 Tm +[(compi)1(l)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.344 265.965 Tm +[( )1(.)1( )1(J)1(ust)1( )1(as )1(t)1.00505(hi)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 251.996 Tm +[(i)1(nt)1(e)1(rpre)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.754 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.566 251.996 Tm +[(doe)1(sn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.277 251.996 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.09 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.906 251.996 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.727 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.543 251.996 Tm +[(pe)1(rform)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.844 251.996 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.656 251.996 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.793 251.996 Tm +[( )0.998942(i)0.998942(nt)1(e)1(rpre)1(t)1(at)0.998942(i)0.998942(ons )1<9420>0.998942(i)1(n )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.215 251.996 Tm +[(he)1(rme)1(ne)1(ut)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.199 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.016 251.996 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.262 251.996 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 490.559 251.996 Tm +[(se)1(mant)0.996908(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.461 251.996 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 238.027 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8594 238.027 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.6758 238.027 Tm +[(e)1(x)1(pl)1(i)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.391 238.027 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.301 238.027 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.695 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.508 238.027 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.879 238.027 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.691 238.027 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.258 238.027 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.555 238.027 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.688 238.027 Tm +[( )0.998942(se)1(mant)1(i)0.998942(cs )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.379 238.027 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 238.027 Tm +[( )1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 432.1 237.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 440.08 238.027 Tm +[(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.188 238.027 Tm +[(l)1(i)0.996908(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.379 238.027 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 224.059 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 224.059 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.066 224.059 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.879 224.059 Tm +[(unde)1(rst)1(andi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.648 224.059 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.41 224.059 Tm +[(w)0.998942(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.324 224.059 Tm +[( )0.998942(,)0.998942( )0.998942(si)1(nce)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.129 224.059 Tm +[(compi)0.998942(l)0.998942(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.648 224.059 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.465 224.059 Tm +[(const)1(ruct)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.918 224.059 Tm +[( )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 210.09 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 210.09 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.906 210.09 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.125 210.09 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(de)1(not)1(e)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.457 210.09 Tm +[(not)1(hi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.207 210.09 Tm +[( )0.998942(but)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.07 210.09 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.805 210.09 Tm +[( )1]TJ +-442.457 -13.9688 Td +[(mani)1(pul)1(at)1(i)1(ons )1(of )1(sy)1(mbol)1(s )1(.)1( )1(W)1(hat)0.998942( )0.998942(mi)1(ght)0.998942( )1(more)1( )0.998942(sui)0.998942(t)1(abl)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.766 196.121 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.547 196.121 Tm +[( )0.998942(cal)0.998942(l)0.998942(e)0.996908(d )1(t)1(he)1( )1(se)1(mant)0.996908(i)1(cs )1(of )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 182.152 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 182.152 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 182.152 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 182.152 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(re)1(si)1(de)1(s )0.998942(i)0.998942(n )0.998942(t)1(he)1( )0.998942(sy)1(mbol)0.998942(s )0.998942(w)1(i)0.998942(t)0.998942(h )1(w)0.998942(hi)0.998942(ch )1(t)1(hose)1( )1(ope)1(rat)1(i)1(ons )1(are)0.996908( )1]TJ +-105.504 -13.9688 Td +[(de)1(not)1(e)1(d )1(i)1(n )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 136.281 168.184 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.504 168.184 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(:)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.215 168.184 Tm +[(E)1(ngl)0.998942(i)0.998942(sh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.949 168.184 Tm +[( )0.998942(w)1(ords )1(l)0.998942(i)0.998942(k)0.998942(e)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.512 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.648 168.184 Tm +[( )1(i)1(f )1(,)1( )1<9420>0.996908<9320>1(t)1(he)1(n )0.996908(,)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.906 168.184 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.043 168.184 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.855 168.184 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.992 168.184 Tm +[( )1(e)1(l)0.996908(se)1( )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.4297 154.215 Tm +[( )1(for )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.0898 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2266 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.0391 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.1758 154.215 Tm +[( )1(w)1(hi)1(l)1(e)1( )1(,)1( )1<9420>1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.16 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.293 154.215 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.109 154.215 Tm +[(got)1(o)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.063 154.215 Tm +[( )1(,)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.504 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.641 154.215 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.832 154.215 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.969 154.215 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.781 154.215 Tm +[(pri)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.59 154.215 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.031 154.215 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.168 154.215 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.363 154.215 Tm +[(conjunct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.547 154.215 Tm +[( )0.998942(w)1(i)0.998942(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.836 154.215 Tm +[(ari)0.996908(t)1.00505(hme)0.992839(t)1.00505(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.969 154.215 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 140.246 Tm +[(punct)1(uat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.523 140.246 Tm +[( )1(sy)1(mbol)1(s )1(;)0.998942( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.609 140.246 Tm +[(al)1(phabe)1(t)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.332 140.246 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.145 140.246 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.055 140.246 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942(w)0.998942(ords )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.652 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.465 140.246 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.121 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.566 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.699 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.516 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.648 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 140.246 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.949 140.246 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.391 140.246 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.527 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.34 140.246 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.477 140.246 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 126.277 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.7539 126.277 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1953 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.332 126.277 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.523 126.277 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.66 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 120.473 126.277 Tm +[(past)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.391 126.277 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.207 126.277 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.34 126.277 Tm +[( )1(;)1( )1(i)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 126.277 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.926 126.277 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.742 126.277 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.652 126.277 Tm +[( )0.998942(cont)1(rol)0.998942(s )0.998942(,)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.363 126.277 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.699 126.277 Tm +[( )0.998942(as )1(sy)1(mbol)0.996908(s )1(l)1(i)0.996908(k)1(e)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.004 126.277 Tm +[(t)1(rash)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 552.602 126.277 Tm +[( )1]TJ +-518.254 -13.9688 Td +[(can )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.3945 112.309 Tm +[(F)56.0115(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.715 112.309 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.125 112.309 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.113 112.309 Tm +[( )0.998942(st)1(at)0.998942(e)1(s )1(t)0.998942(hat)1( )0.998942(t)0.998942(he)1( )0.998942(si)1(gns )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.625 112.309 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.281 112.309 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.098 112.309 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.816 112.309 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.629 112.309 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.699 112.309 Tm +[( )1(are)1( )1]TJ +-477.352 -13.9688 Td +[(arbi)1(t)1(rary)1(2 )1(be)1(cause)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174 98.3398 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.156 98.3398 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.621 98.3398 Tm +[(cul)0.998942(t)1(ural)0.998942(-)1(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 324.176 98.3398 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.988 98.3398 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.887 98.3398 Tm +[( )0.998942(t)1(hat)1( )1(assi)1(gns )0.996908(phone)0.996908(me)1(s )1(t)1(o )1.00505]TJ +-360.539 -13.9688 Td +[(conce)1(pt)1(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9492 84.3711 Tm +[(Li)1(k)0.998942(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.496 84.3711 Tm +[( )1(,)1( )1(i)1(t)1( )1<92>1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.043 84.3711 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.203 84.3711 Tm +[( )1(pure)1.00301(l)0.998942(y)0.998942( )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.664 84.3711 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.23 84.3711 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.047 84.3711 Tm +[(conv)1(e)0.998942(nt)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.941 84.3711 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.617 84.3711 Tm +[(assi)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.336 84.3711 Tm +[( )1(sy)1(mbol)0.996908(s )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.047 84.3711 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.695 84.3711 Tm +[( )1]TJ +-515.348 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(.)1( )1(B)0.998942(ut)1( )1(just)1( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.48 70.4023 Tm +[(cul)0.998942(t)1(ural)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.047 70.4023 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.863 70.4023 Tm +[(choi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.195 70.4023 Tm +[( )0.998942(of )0.998942(phone)1(me)1(s )0.998942(i)0.998942(n )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.789 70.4023 Tm +[(spok)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.957 70.4023 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.77 70.4023 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.84 70.4023 Tm +[( )1(i)1(s )1]TJ +-462.492 -13.9688 Td +[(re)1(st)1(rai)1(ne)1(d )1(by)1( )1(w)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.754 56.4336 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.473 56.4336 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.285 56.4336 Tm +[(v)1(oi)0.998942(ce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.949 56.4336 Tm +[( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 283.184 56.4336 Tm +[(pronounce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.059 56.4336 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.969 56.4336 Tm +[(assi)1(gnme)0.992839(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.719 56.4336 Tm +[( )1(of )1(sy)1(mbol)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 42.4648 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.9961 42.4648 Tm +[( )1(ope)1(rat)1(i)1(ons )1(i)1(s )1(l)1(i)1(mi)1(t)1(e)1(d )0.998942(t)1(o )0.998942(w)0.998942(hat)1( )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.488 42.4648 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.273 42.4648 Tm +[( )0.998942(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 319.1 42.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 327.689 42.4648 Tm +[(i)0.998942(ci)0.998942(e)1(nt)0.998942(l)0.998942(y)1( )0.998942(proce)1(sse)1(d )1(by)0.996908( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.316 42.4648 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.965 42.4648 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +%%Page: 2 2 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +17 0 obj +<> +/Contents 18 0 R +>> +endobj +%%EndPageSetup +18 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(and )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.207 801.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.02 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.832 801.516 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.82 801.516 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.496 801.516 Tm +[(humans.)1.00199(3)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.824 801.516 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.18 801.516 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.625 801.516 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.063 801.516 Tm +[(ope)1(rabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.758 801.516 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 801.516 Tm +[(usabi)0.996908(l)0.996908(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.789 801.516 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(obv)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.9805 787.547 Tm +[( )1(i)1(n )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.023 787.547 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.047 787.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.488 787.547 Tm +[(U)1(ni)0.998942(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.938 787.547 Tm +[( )0.998942(commands )1(.)0.998942( )0.998942(O)0.998942(ri)1(gi)0.998942(nal)0.998942(l)1(y)0.998942( )0.998942(use)1(d )1(on )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.957 787.547 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.203 787.547 Tm +[( )1(t)1(e)1(rmi)0.996908(nal)0.996908(s )1(,)1( )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(ope)1(rat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.8594 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6719 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.809 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.621 773.578 Tm +[(copy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.844 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.977 773.578 Tm +[( )1(w)1(as )1(abbre)1(v)0.998942(i)0.998942(at)1(e)1(d )0.998942(t)1(o )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.066 773.578 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.332 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.148 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.281 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.098 773.578 Tm +(cp)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.5 773.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.941 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.078 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.891 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.027 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.84 773.578 Tm +[(mov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.324 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.141 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.273 773.578 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.949 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.086 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.898 773.578 Tm +[(mv)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.059 773.578 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.5 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.637 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 522.449 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.586 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.398 773.578 Tm +[(l)1(i)0.996908(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.055 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.1563 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.1055 759.609 Tm +[(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.1016 759.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.5469 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.6797 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.496 759.609 Tm +[(e)1(t)1(c.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.953 759.609 Tm +[( )1(,)1( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.777 759.609 Tm +[(orde)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.258 759.609 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.934 759.609 Tm +[(cut)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 223.207 759.609 Tm +[( )0.998942(dow)1(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.742 759.609 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.391 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.207 759.609 Tm +[(me)1(mory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.805 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.621 759.609 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.609 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.051 759.609 Tm +[(t)1(e)1(l)1(e)0.996908(t)1.00505(y)0.996908(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.301 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.113 759.609 Tm +[(pape)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.469 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 745.641 Tm +[(consumpt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 112.582 745.641 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.402 745.641 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.121 745.641 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 195.938 745.641 Tm +[(t)1(y)0.998942(pi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.469 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.281 745.641 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 245.3 745.6 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 253.893 745.641 Tm +[(ort)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.691 745.641 Tm +[( )0.998942(at)1( )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.766 745.641 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.559 745.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.371 745.641 Tm +[(t)0.998942(i)1(me)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.512 745.641 Tm +[( )0.998942(.)0.998942( )0.998942(Any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.945 745.641 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.34 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.152 745.641 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.449 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(i)1(s )1(t)1(hus )1.00199(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.262 731.672 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.828 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.641 731.672 Tm +[(compromi)1(se)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.086 731.672 Tm +[( )0.998942(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1(t)0.998942(he)1( )0.998942(const)1(rai)0.998942(nt)1(s )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.375 731.672 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.027 731.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.84 731.672 Tm +[(de)0.996908(si)1<676E97>]TJ +-466.492 -13.9688 Td +[(w)1(hi)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 70.6328 717.703 Tm +[( )1(i)1(s )1(far )1(from )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142 717.703 Tm +[(obje)1(ct)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.992 717.703 Tm +[( )1(,)1( )0.998942(but)1( )0.998942(base)1.00301(d )0.998942(on )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.84 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.559 717.703 Tm +[( )0.998942(choi)0.998942(ce)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.309 717.703 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.984 717.703 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.809 717.703 Tm +[(t)1(hi)0.996908(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 525.445 717.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 529.258 717.703 Tm +[(st)1(y)1(l)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.957 717.703 Tm +[( )1]TJ +-523.609 -13.9688 Td +[(i)1(t)1(se)1(l)1(f )1(4\227and )1(t)1(he)1( )1(e)1(qual)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.777 703.734 Tm +[(subje)1(ct)0.998942(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.43 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.242 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.969 703.734 Tm +[( )0.998942(pre)1(fe)1(re)1(nce)0.998942(s )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.836 703.734 Tm +[(i)0.998942(nv)1(ol)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.27 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.086 703.734 Tm +[(fuz)1(z)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.68 703.734 Tm +[( )1(fact)1.00505(ors )1(l)1(i)0.996908(k)1(e)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(re)1(adabi)1(l)1(i)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.9727 689.766 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 111.414 689.766 Tm +[(e)1(l)1(e)1(gance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.844 689.766 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.664 689.766 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.488 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 243.305 689.766 Tm +[(e)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 250.3 689.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 258.917 689.766 Tm +[(i)0.998942(ci)0.998942(e)1(ncy)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.656 689.766 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)1( )0.998942(sy)1(mbol)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.262 689.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.656 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.473 689.766 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.766 689.766 Tm +[( )1]TJ +-479.418 -13.9688 Td +[(l)1(anguage)1(s )1(i)1(ne)1(v)1(i)1(t)0.998942(abl)1(y)1( )1(do )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.484 675.797 Tm +[(hav)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.246 675.797 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.063 675.797 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.965 675.797 Tm +[( )0.998942(connot)1(at)0.998942(i)0.998942(ons )1(si)0.998942(mpl)0.998942(y)1( )0.998942(be)1(cause)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.918 675.797 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.406 675.797 Tm +[( )1(e)1(x)1(i)1(st)1( )1(no )1]TJ +-451.059 -13.9688 Td +[(sy)1(mbol)1(s )1(w)1(i)1(t)1(h )1(w)1(hi)1(ch )1(humans )1(w)0.998942(oul)0.998942(d )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.797 661.828 Tm +[(associ)0.998942(at)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.129 661.828 Tm +[( )0.998942(some)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.621 661.828 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.23 661.828 Tm +[( )1(.)1( )1(B)1(ut)1( )1(sy)1(mbol)0.996908(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.309 661.828 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.125 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.938 661.828 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 549.762 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(de)1(not)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0078 647.859 Tm +[( )1(any)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.297 647.859 Tm +[(se)1(mant)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.199 647.859 Tm +[( )1(st)1(at)1(e)1(me)1(nt)0.998942(s )1(,)0.998942( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(,)0.998942( )0.998942(t)1(he)1(y)0.998942( )0.998942(do )1(not)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.043 647.859 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.75 647.859 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.563 647.859 Tm +[(me)0.996908(ani)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 468.176 647.859 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908(i)0.996908(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.41 647.859 Tm +[(ow)1.00505(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.637 647.859 Tm +[( )1]TJ +-511.289 -13.9688 Td +[(t)1(e)1(rms )1(;)1( )1(humans )1.00199(me)1(t)1(aphori)1(cal)0.996908(l)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.719 633.891 Tm +[(re)1(ad)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.391 633.891 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.207 633.891 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.816 633.891 Tm +[( )0.998942(i)0.998942(nt)1(o )0.998942(t)0.998942(he)1(m )0.998942(t)1(hrough )0.996908(associ)1.00505(at)1(i)1(ons )1(t)1(he)0.996908(y)1( )1]TJ +-277.469 -13.9688 Td +[(mak)1(e)1( )1(.)1( )1(Language)1.00199(s )1(w)0.998942(i)1(t)1(hout)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.117 619.922 Tm +[(se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.02 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.836 619.922 Tm +[(de)1(not)0.998942(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.16 619.922 Tm +[( )0.998942(are)1( )1(not)0.998942( )0.998942(hi)0.998942(st)1(ori)0.996908(cal)1(l)1(y)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.863 619.922 Tm +[(ne)0.996908(w)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.965 619.922 Tm +[( )1(phe)0.996908(nome)0.996908(na )1(;)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 605.953 Tm +[( )1(formul)1(as )1(are)1( )1(t)1(he)1(i)0.998942(r )0.998942(ol)0.998942(de)1(st)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.215 605.953 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.238 605.953 Tm +[( )0.998942(.)0.998942( )0.998942(In )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.965 605.953 Tm +[(compari)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.813 605.953 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.488 605.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.145 605.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.957 605.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.676 605.953 Tm +[( )1]TJ +-508.328 -13.9688 Td +[(l)1(anguage)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.484 591.984 Tm +[(mul)1(t)1(i)1(t)1(ude)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.422 591.984 Tm +[( )1(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.719 591.984 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.938 591.984 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(i)0.998942(s )1(of )0.996908(l)1(e)0.998942(sse)1(r )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.992 591.984 Tm +[(si)1(gni)0.992839]TJ +/R14 1 Tf +0.1 0 0 -0.1 461.2 591.9 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 469.204 591.984 Tm +[(cance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.668 591.984 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(cri)1(t)1(e)1(ri)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.0938 578.016 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.387 578.016 Tm +[(T)1(uri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.105 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 150.918 578.016 Tm +[(compl)1(e)1(t)1(e)0.998942(ne)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.934 578.016 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.199 578.016 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.418 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.234 578.016 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.301 578.016 Tm +[( )1(,)1( )1(t)1(hat)1( )1(i)1(s )1(,)1( )1(t)1.00505(hat)0.996908( )1(any)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(comput)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.672 564.047 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.902 564.047 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.688 564.047 Tm +[( )1(e)1(x)1(pre)1(sse)1(d )0.998942(i)0.998942(n )0.998942(i)0.998942(t)1( )0.998942(,)0.998942( )0.998942(me)1(ans )1(t)0.998942(hat)1( )0.998942(e)1(v)0.998942(e)1(ry)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.277 564.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.5 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.313 564.047 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.383 564.047 Tm +[( )1(i)1(s )1(,)1( )1]TJ +-477.035 -13.9688 Td +[(formal)1(l)1(y)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.5508 550.078 Tm +[(spe)1(ak)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.168 550.078 Tm +[( )1(,)1( )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 191.824 550.078 Tm +[(ri)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 201.3 550.1 Tm +<00>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.922 550.078 Tm +[( )0.998942(on )0.998942(e)1(v)1(e)0.998942(ry)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.816 550.078 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.43 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 306.246 550.078 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.465 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.281 550.078 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.348 550.078 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.793 550.078 Tm +[(Not)1.00505(hi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.316 550.078 Tm +[( )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 539.547 550.078 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.332 550.078 Tm +[( )1]TJ +-519.984 -13.9688 Td +[(e)1(x)1(pre)1(sse)1(d )1(i)1(n )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126 536.109 Tm +[(T)1(uri)1(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.586 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.398 536.109 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.469 536.109 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.281 536.109 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.617 536.109 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.559 536.109 Tm +(C)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.742 536.109 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.898 536.109 Tm +[(coul)0.998942(dn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.82 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.633 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.449 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.262 536.109 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 434.086 536.109 Tm +[( )1(al)1(so )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.09 536.109 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.871 536.109 Tm +[( )1(e)1(x)1(pre)0.996908(sse)1(d )1]TJ +-446.523 -13.9688 Td +[(i)1(n )1(anot)1(he)1(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.039 522.141 Tm +[(T)1(uri)1(ngcompl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.625 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.438 522.141 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.508 522.141 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.32 522.141 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.656 522.141 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.598 522.141 Tm +[(Li)0.998942(sp)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.246 522.141 Tm +[( )0.998942(\( )1(or )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.332 522.141 Tm +[(F)56.011(ort)1(ran)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.402 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.848 522.141 Tm +[(Smal)1(l)0.996908(t)1(al)1(k)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.363 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.805 522.141 Tm +[(J)1(av)0.996908(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.703 522.141 Tm +[( )1(.)1(.)1(.)1( )1(\) )1]TJ +-483.355 -13.9688 Td +[(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.7266 508.172 Tm +[(v)1(i)1(ce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.1641 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.9805 508.172 Tm +[(v)1(e)1(rsa)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.91 508.172 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.895 508.172 Tm +[(ul)1(t)1(i)1(mat)0.998942(e)1(l)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.195 508.172 Tm +[( )0.998942(prov)1(e)1(s )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.973 508.172 Tm +[(i)0.998942(mport)1(ance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 508.172 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.656 508.172 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.375 508.172 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.566 508.172 Tm +[(cul)1(t)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.133 508.172 Tm +[( )1(fact)1.00505(ors )1]TJ +-469.785 -13.9688 Td +[(i)1(n )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.7266 494.203 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.949 494.203 Tm +[( )1(l)1(anguage)1.00199(s )1(:)0.998942( )1(w)0.998942(hi)0.998942(l)0.998942(e)1( )0.998942(t)1(he)0.998942(y)1( )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.305 494.203 Tm +[(i)0.998942(nt)1(e)0.998942(rchange)1.00301(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.422 494.203 Tm +[( )0.998942(i)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.617 494.203 Tm +[(re)1(gard)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.711 494.203 Tm +[( )1(t)1(o )1.00505(t)1(he)1(i)0.996908(r )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.426 494.203 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.723 494.203 Tm +[( )1]TJ +-522.375 -13.9688 Td +[(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 480.234 Tm +[(machi)1(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.477 480.234 Tm +[( )1(funct)1(i)1(ons )1(,)1( )1(t)1(he)1(i)1(r )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.168 480.234 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 217.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 226.196 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.703 480.234 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.516 480.234 Tm +[(st)1(ruct)1(ure)1(s\227se)1(mant)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.133 480.234 Tm +[( )0.998942(de)1(scri)0.996908(pt)1(ors )1.00505(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.25 480.234 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.469 480.234 Tm +[( )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(st)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.0469 466.266 Tm +[( )1(i)1(n )1(w)1(hi)1(ch )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.344 466.266 Tm +[(al)1(gori)1(t)1(hms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.902 466.266 Tm +[( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.137 466.266 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.918 466.266 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.734 466.266 Tm +[(e)1(x)0.998942(pre)1(sse)1<64976C>1(e)0.998942(nd)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.57 466.266 Tm +[( )0.998942(t)1(he)0.998942(mse)1(l)1(v)0.998942(e)1(s )1(not)1( )1.00505(onl)0.996908(y)0.996908( )1.00505(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.203 466.266 Tm +[(di)0.996908]TJ +/R14 1 Tf +0.1 0 0 -0.1 491.6 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 500.231 466.266 Tm +[(e)1(re)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.738 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(probl)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9883 452.297 Tm +[( )1(se)1(t)1(s )1(,)1( )1(but)1( )1(al)1(so )1(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.586 452.297 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 204 452.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 212.614 452.297 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.121 452.297 Tm +[( )0.998942(st)1(y)1(l)0.998942(e)0.998942(s )1(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.086 452.297 Tm +[(t)0.998942(hi)1(nk)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.723 452.297 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.168 452.297 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.688 452.297 Tm +[( )0.998942(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.629 452.297 Tm +[(programmi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.848 452.297 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-458.5 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 438.328 Tm +[(subse)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.773 438.328 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.066 438.328 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.723 438.328 Tm +[( )1(l)1(anguage)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.207 438.328 Tm +[(T)1(uri)0.998942(ngi)1(ncompl)0.998942(e)1(t)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.359 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.176 438.328 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.57 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.383 438.328 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.68 438.328 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-440.332 -13.9688 Td +[(are)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.1211 424.359 Tm +[(const)1(rai)1(ne)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.016 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.832 424.359 Tm +[(subse)1.00199(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.48 424.359 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.777 424.359 Tm +[(T)1(uri)0.998942(ngcompl)1(e)0.998942(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.363 424.359 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(T)1(hi)0.998942(s )1(promi)0.996908(ne)1(nt)0.996908(l)1(y)0.996908( )1(i)1(ncl)1(ude)0.996908(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(mark)1(up)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.2969 410.391 Tm +[( )1(l)1(anguage)1.00199(s )1(\( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.648 410.391 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.984 410.391 Tm +[( )1(as )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.926 410.391 Tm +[(HT)0.998942(M)0.998942(L)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 247.652 410.391 Tm +[( )0.998942(\) )1(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 267.6 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 275.582 410.391 Tm +[(l)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.535 410.391 Tm +[( )0.998942(format)1(s )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.707 410.391 Tm +[(ne)1(t)0.998942(w)1(ork)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.863 410.391 Tm +[( )0.998942(prot)1(ocol)1.00505(s )1(,)1( )1(and )1(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.531 410.391 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.254 410.391 Tm +[( )1]TJ +-522.906 -13.9688 Td +[(cont)1(rol)1(s )1(\( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.1094 396.422 Tm +[(se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.473 396.422 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.754 396.422 Tm +[(e)1(nt)1(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.922 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.734 396.422 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.871 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.684 396.422 Tm +[(Int)1(e)1(rface)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.23 396.422 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.047 396.422 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.18 396.422 Tm +[( )0.998942(\) )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.973 396.422 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.367 396.422 Tm +[( )0.998942(programs )1.00301(.)1( )1(In )1(most)1( )1(case)1(s )1.00505(,)1( )1]TJ +-307.02 -13.9688 Td +[(l)1(anguage)1(s )1(of )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.23 382.453 Tm +[(t)1(y)1(pe)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.613 382.453 Tm +[( )1(are)1( )1(re)1(st)0.998942(rai)1(ne)1(d )0.998942(from )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.703 382.453 Tm +[(de)1(not)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.512 382.453 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.324 382.453 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.285 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 368.484 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 368.484 Tm +[(se)1(curi)1(t)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.441 368.484 Tm +[( )1(re)1(asons\227t)0.998942(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.379 368.484 Tm +[(pre)1(v)1(e)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.328 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.145 368.484 Tm +[(v)1(i)0.998942(rus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.383 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.199 368.484 Tm +[(i)0.998942(nfe)1(ct)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.641 368.484 Tm +[( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.836 368.484 Tm +[(re)1(mot)1.00505(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.199 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.016 368.484 Tm +[(t)1(ak)1(e)1(ov)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.207 368.484 Tm +[( )1(.)1( )1(T)1(hi)0.996908(s )1]TJ +-458.859 -13.9688 Td +[(show)1(s )1(how)1( )1(t)0.998942(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.418 354.516 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.609 354.516 Tm +[( )1(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.871 354.516 Tm +[(formal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.645 354.516 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.461 354.516 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.527 354.516 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.121 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.313 354.516 Tm +[( )0.998942(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 422.344 354.516 Tm +[(machi)0.996908(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.992 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.809 354.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.102 354.516 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(Acce)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8711 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5469 340.547 Tm +[(hardw)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.113 340.547 Tm +[( )1(funct)1(i)1(ons )0.998942(i)0.998942(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.941 340.547 Tm +[(l)0.998942(i)0.998942(mi)0.998942(t)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.441 340.547 Tm +[( )0.998942(not)1( )0.998942(onl)0.998942(y)1( )0.998942(t)0.998942(hrough )1.00301(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 340.547 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.07 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.887 340.547 Tm +[(appl)0.996908(i)0.996908(cat)1.00505(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.566 340.547 Tm +[( )1(,)1( )1]TJ +-497.219 -13.9688 Td +[(but)1( )1(t)1(hrough )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.324 326.578 Tm +[(sy)1(nt)1(ax)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.734 326.578 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.016 326.578 Tm +[(soft)0.998942(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.926 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.742 326.578 Tm +[(appl)1(i)0.998942(cat)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.422 326.578 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.363 326.578 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.352 326.578 Tm +[( )0.998942(for )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.383 326.578 Tm +[(st)1(ori)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.574 326.578 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 477.766 326.578 Tm +[(t)1(ransmi)0.996908(t)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.477 326.578 Tm +[( )1]TJ +-519.129 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 312.609 Tm +[(i)1(nformat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.93 312.609 Tm +[( )1(i)1(t)1( )1(proce)1(sse)1(s )1(.)0.998942( )0.998942(T)78.9887(o)]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.813 312.609 Tm +[(name)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.176 312.609 Tm +[( )0.998942(one)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.859 312.609 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.254 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 360.07 312.609 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 403.363 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.18 312.609 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.246 312.609 Tm +[( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.031 312.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.164 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 298.641 Tm +[( )1(,)1( )1<9420>1(anot)1(he)0.998942(r )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.121 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.258 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.07 298.641 Tm +[(prot)1(ocol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.543 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.988 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.121 298.641 Tm +[( )0.998942(and )1(y)0.998942(e)1(t)1( )0.998942(anot)1(he)1(r )0.996908(a )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.113 298.641 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.246 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 464.1 298.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 472.054 298.641 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.004 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.82 298.641 Tm +[(format)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.578 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.391 298.641 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.527 298.641 Tm +[( )1(i)1(s )1]TJ +-503.18 -13.9688 Td +[(me)1(re)1(l)1(y)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.0664 284.672 Tm +[(conv)1(e)1(nt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.961 284.672 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.375 284.672 Tm +[(nome)1(ncl)0.998942(at)0.998942(ure)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.637 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.453 284.672 Tm +[(i)0.998942(ndi)1(cat)0.998942(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 329.484 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.297 284.672 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 344.7 284.7 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 353.325 284.672 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.832 284.672 Tm +[( )0.998942(de)1(gre)1(e)1(s )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.504 284.672 Tm +[(sy)0.996908(nt)1(act)1.00505(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.25 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(re)1(st)1(rai)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.4453 270.703 Tm +[( )1(bui)1(l)1(t)1( )1(i)1(nt)1(o )1(t)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.086 270.703 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.277 270.703 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.539 270.703 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.934 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.75 270.703 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.043 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.859 270.703 Tm +[(l)0.998942(anguage)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.926 270.703 Tm +[( )1(.)1( )1(In )1(i)0.996908(t)1(s )1.00505(most)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 256.734 Tm +[(pow)1(e)1(rful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.3711 256.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.1836 256.734 Tm +[(T)1(uri)1(ng-)1(compl)1(e)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.824 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.641 256.734 Tm +[(supe)1(rse)1.00301(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 249.129 256.734 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.57 256.734 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.965 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.781 256.734 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.074 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.891 256.734 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.957 256.734 Tm +[( )1(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 443.582 256.734 Tm +[(l)1(anguage)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.652 256.734 Tm +[( )1(t)1(hat)1( )1]TJ +-465.305 -13.9688 Td +[(e)1(x)1(e)1(cut)1(e)1(s )1(.)1( )1(As )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.406 242.766 Tm +[(magi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 196.172 242.766 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.363 242.766 Tm +[(spe)1(cul)0.998942(at)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.289 242.766 Tm +[( )0.998942(conce)1(pt)0.998942(s )1(of )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.555 242.766 Tm +[(l)0.998942(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.625 242.766 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.535 242.766 Tm +[(w)1(ord)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.449 242.766 Tm +[( )1]TJ +-460.102 -13.9688 Td +[(aut)1(omat)1(i)1(cal)1(l)1(y)1( )1(pe)1(rforms )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.355 228.797 Tm +[(ope)1(rat)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.867 228.797 Tm +[( )0.998942(.)0.998942( )0.998942(Y)87.0097(e)1(t)0.998942( )0.998942(t)1(hi)0.998942(s )0.998942(i)1(s )0.998942(not)1( )0.998942(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 375.551 228.797 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.332 228.797 Tm +[( )0.998942(confuse)0.996908(d )1(w)1(i)0.996908(t)1.00505(h )0.996908(w)1(hat)1( )1]TJ +-355.984 -13.9688 Td +[(l)1(i)1(ngui)1(st)1(i)1(cs )1(cal)1(l)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 143.004 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.137 214.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.953 214.828 Tm +[(pe)1(rformat)0.998942(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.949 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.762 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.898 214.828 Tm +[( )0.998942(or )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.488 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.621 214.828 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.438 214.828 Tm +[(i)0.998942(l)0.998942(l)0.998942(ocut)1(i)0.998942(onary)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.906 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.723 214.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.855 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.672 214.828 Tm +[(spe)1(e)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 405.164 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.977 214.828 Tm +[(act)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.676 214.828 Tm +[( )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.336 214.828 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.359 214.828 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +-477.012 -13.9688 Td +[(w)1(ords )1(of )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.684 200.859 Tm +[(judge)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.598 200.859 Tm +[( )1(w)1(ho )1(pronounce)0.998942(s )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.266 200.859 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 296.945 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.359 200.859 Tm +[(l)0.998942(e)1(ade)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.973 200.859 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.785 200.859 Tm +[(gi)0.998942(v)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.332 200.859 Tm +[( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.117 200.859 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 473.383 200.859 Tm +[( )1(,)1( )1(or )1.00505(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 186.891 Tm +[(l)1(e)1(gi)1(sl)1(at)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.7383 186.891 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.5547 186.891 Tm +[(passi)1.00199(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.953 186.891 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.738 186.891 Tm +[(l)1(aw)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.816 186.891 Tm +[(.)1( )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.094 186.891 Tm +[(e)1(x)0.998942(e)1(cut)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.125 186.891 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.422 186.891 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 352.816 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.629 186.891 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.926 186.891 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1(i)1(s )1(pure)0.996908(l)0.996908(y)0.996908( )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.1211 172.922 Tm +[( )1(;)1( )1(i)1(t)1( )1(i)1(s )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.543 172.922 Tm +[(mani)1(pul)1(at)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.66 172.922 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 245.922 172.922 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.574 172.922 Tm +[( )0.998942(,)0.998942( )0.998942(not)1( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.574 172.922 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 378.508 172.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.324 172.922 Tm +[(pe)1(rformance)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.328 172.922 Tm +[( )1(base)1(d )0.996908(on )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 158.953 Tm +[( )1(conv)1(e)1(nt)1(i)1(ons )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.75 158.953 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.086 158.953 Tm +[( )1(as )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.027 158.953 Tm +[(acce)0.998942(pt)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.477 158.953 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.258 158.953 Tm +[(v)1(e)0.998942(rdi)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.938 158.953 Tm +[( )0.998942(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.383 158.953 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.238 158.953 Tm +[( )0.998942(l)0.998942(anguage)0.992839(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.094 158.953 Tm +[(be)0.996908(come)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.301 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 144.984 Tm +[(pe)1(rformat)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.344 144.984 Tm +[( )1(onl)1(y)1( )1(t)1(hrough )1.00199(t)1(he)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.473 144.984 Tm +[(soci)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.406 144.984 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.223 144.984 Tm +[(i)0.998942(mpact)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.816 144.984 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942(proce)1(sse)1.00301(s )0.998942(t)1(he)0.996908(y)0.996908( )1.00505(t)1(ri)0.996908(gge)0.996908(r )1(,)1( )1(e)1(spe)0.996908(ci)1(al)1(l)1(y)0.996908( )1]TJ +-268.469 -13.9688 Td +[(w)1(he)1(n )1(t)1(he)1(i)1(r )1(out)1(put)1(s )1(are)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.547 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.363 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 193.176 131.016 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 201.813 131.016 Tm +[(cri)0.998942(t)1(i)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(che)1(ck)0.998942(e)0.998942(d )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.684 131.016 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.387 131.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.203 131.016 Tm +[(W)83.0129(e)1(i)0.998942(z)0.998942(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.594 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.406 131.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.223 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.035 131.016 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.195 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.008 131.016 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.918 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(psy)1(chot)1(he)1(rapi)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.684 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.496 117.047 Tm +[(E)1(l)1(i)1(z)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.41 117.047 Tm +[( )1(,)1( )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.82 117.047 Tm +[(si)1(mpl)0.998942(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 227.816 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.633 117.047 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.227 117.047 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(sy)1(nt)1(act)0.998942(i)1(cal)0.998942(l)0.998942(y)0.998942( )1(t)0.998942(ransforms )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.902 117.047 Tm +[(i)1(nput)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.703 117.047 Tm +[( )1(phrase)0.996908(s )1(,)1( )1]TJ +-464.355 -13.9688 Td +[(i)1(s )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 59.125 103.078 Tm +[(cl)1(assi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.707 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.52 103.078 Tm +[(e)1(x)1(ampl)1(e)1(,)1(5)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.992 103.078 Tm +[( )1(as )1(i)1(s )0.998942(t)1(he)0.998942( )1(1987 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.566 103.078 Tm +[(Ne)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.254 103.078 Tm +[(Y)86.9853(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.363 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.18 103.078 Tm +[(St)0.998942(ock)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.438 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.254 103.078 Tm +[(E)1(x)0.998942(change)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.895 103.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.711 103.078 Tm +(crash)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.207 103.078 Tm +[( )1(t)1(hat)1( )1(i)1(nv)0.996908(ol)1(v)0.996908(e)1(d )1]TJ +-432.859 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 89.1094 Tm +[(chai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.4844 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.3008 89.1094 Tm +[(re)1(act)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.625 89.1094 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.922 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.055 89.1094 Tm +[( )1(se)1(l)1(l)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.621 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 192.754 89.1094 Tm +[( )1(re)0.998942(comme)1(ndat)1(i)0.998942(ons )0.998942(by)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.637 89.1094 Tm +[(day)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.254 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.066 89.1094 Tm +[(t)0.998942(radi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.711 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.523 89.1094 Tm +[(soft)1.00505(w)1(are)0.996908(.)1.00505(6)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.883 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.699 89.1094 Tm +[(W)46(ri)0.996908(t)1.00505(i)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.137 89.1094 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 75.1406 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.59 75.1406 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.66 75.1406 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.285 75.1406 Tm +[(phrasi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.992 75.1406 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(for )0.996908(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.039 75.1406 Tm +[(ut)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.25 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 465.063 75.1406 Tm +[(i)1(di)0.996908(ot)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.469 75.1406 Tm +[( )1(.)1( )1(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 61.1719 Tm +[(proje)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.3555 61.1719 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.6484 61.1719 Tm +[(Art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 119.7 61.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 127.68 61.1719 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.266 61.1719 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.082 61.1719 Tm +[(Int)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.32 61.1719 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.809 61.1719 Tm +[(prov)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.332 61.1719 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.488 61.1719 Tm +[(i)0.998942(nt)1(e)0.998942(l)1(l)0.998942(i)0.998942(ge)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.824 61.1719 Tm +[( )0.998942(i)0.998942(s )1(just)1( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.664 61.1719 Tm +[(mat)1(t)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.68 61.1719 Tm +[( )1(of )1(a )1.00505]TJ +-458.332 -13.9688 Td +(su)Tj +/R14 1 Tf +0.1 0 0 -0.1 48.1 47.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 56.7516 47.2031 Tm +[(i)1(ci)1(e)1(nt)1(l)1(y)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.238 47.2031 Tm +[(massi)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.809 47.2031 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.621 47.2031 Tm +[(l)1(ay)1(e)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 207.48 47.2031 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.773 47.2031 Tm +[(fool)0.998942(proof)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.813 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 47.2031 Tm +[(re)1(ci)0.998942(pe)1<739769>0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.531 47.2031 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.344 47.2031 Tm +[(l)0.998942(i)0.998942(ngui)1(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.535 47.2031 Tm +[( )1(t)1(e)1(rms )1(,)1( )1(t)1(hat)1( )1(se)1(mant)0.996908(i)1(cs )1]TJ +-379.188 -13.9688 Td +[(i)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 48.1563 33.2344 Tm +[(not)1(hi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.9102 33.2344 Tm +[( )1(e)1(l)1(se)1( )1(but)1( )1(\( )1(more)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.535 33.2344 Tm +[(e)1(l)1(aborat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.352 33.2344 Tm +[( )0.998942(\) )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.66 33.2344 Tm +[(sy)1(nt)1(ax)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.07 33.2344 Tm +[( )0.998942(.)0.998942( )0.998942(As )0.998942(l)1(ong )0.998942(as )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.566 33.2344 Tm +[(A.)0.998942(I)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 398.789 33.2344 Tm +[( )0.998942(.)0.998942( )1(fai)1(l)0.996908(s )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.336 33.2344 Tm +[(de)0.996908(l)1(i)1(v)0.996908(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.414 33.2344 Tm +[( )1(t)1(hi)0.996908(s )1.00505]TJ +ET +Q +Q + +endstream +endobj +%%Page: 3 3 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +20 0 obj +<> +/Contents 21 0 R +>> +endobj +%%EndPageSetup +21 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +(proof)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.6563 801.516 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.566 801.516 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 113 801.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 121.594 801.516 Tm +[(e)1(re)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.102 801.516 Tm +[( )1(be)1(t)1(w)1(e)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.539 801.516 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.195 801.516 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.43 801.516 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.824 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.637 801.516 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.934 801.516 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-441.586 -13.9688 Td +[(cont)1(i)1(nue)1(s )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.074 787.547 Tm +[(e)1(x)1(i)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.762 787.547 Tm +[( )1(,)1( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.582 787.547 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.652 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.465 787.547 Tm +[(proce)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.496 787.547 Tm +[( )0.998942(t)1(hrough )1(comput)0.998942(e)1(rs )0.996908(re)1(mai)0.996908(ns )1(re)0.996908(st)1.00505(rai)0.996908(ne)1(d )0.996908]TJ +-271.148 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 773.578 Tm +[(formal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9805 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.7969 773.578 Tm +[(st)1(ri)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.762 773.578 Tm +[( )1(mani)1(pul)1(at)1(i)1(ons )1(,)0.998942( )0.998942(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.262 773.578 Tm +[(fact)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.398 773.578 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(aft)1(e)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.625 773.578 Tm +[(i)0.998942(ni)0.998942(t)1(i)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.684 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 773.578 Tm +[(e)1(nt)0.998942(husi)0.996908(asm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 439.293 773.578 Tm +[( )1(has )1(made)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.094 773.578 Tm +[(many)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.137 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 759.609 Tm +[(e)1(x)1(pe)1(ri)1(me)1(nt)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.598 759.609 Tm +[( )1(poe)1(t)1(s )1(si)1(nce)1( )1(t)1(he)0.998942( )0.998942(1950s )1.00301(abandon )1(t)0.998942(he)1(i)0.998942(r )1(e)1(x)0.998942(pe)1(ri)0.998942(me)1(nt)1(s )1(w)1.00505(i)0.996908(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.469 759.609 Tm +[(comput)1(e)1(r-)0.996908]TJ +-419.121 -13.9688 Td +[(ge)1(ne)1(rat)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.457 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.27 745.641 Tm +[(t)1(e)1(x)1(t)1(s.)1(7)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 141.391 745.641 Tm +[( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.855 745.641 Tm +[(hi)1(st)1(ory)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.141 745.641 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.438 745.641 Tm +[(comput)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.242 745.641 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.867 745.641 Tm +[(ri)1(ch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.891 745.641 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(confusi)0.996908(ons )1(of )1.00505]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.426 745.641 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.199 745.641 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.0039 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.8164 731.672 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.535 731.672 Tm +[( )1(l)1(anguage)1.00199(s )1(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 235.398 731.672 Tm +[(fal)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.094 731.672 Tm +[( )0.998942(hope)1(s )1(and )0.998942(promi)1(se)1(s )0.998942(t)1(hat)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.43 731.672 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.203 731.672 Tm +[( )1(l)1(anguage)0.992839(s )1]TJ +-426.855 -13.9688 Td +[(w)1(oul)1(d )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.9063 717.703 Tm +[(be)1(come)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.113 717.703 Tm +[( )1(more)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.184 717.703 Tm +[(l)1(i)1(k)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.234 717.703 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.047 717.703 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.703 717.703 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.52 717.703 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.238 717.703 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Among )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.684 717.703 Tm +[(unre)0.996908(al)0.996908(i)1(z)1(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.914 717.703 Tm +[( )1(hope)1(s )1(are)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 703.734 Tm +[(art)1(i)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 55.9 703.6 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 63.8676 703.734 Tm +[(ci)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.4531 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.2656 703.734 Tm +[(i)1(nt)1(e)1(l)1(l)1(i)1(ge)1(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.605 703.734 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 172.047 703.734 Tm +[(graphi)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.582 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.395 703.734 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.121 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.934 703.734 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.578 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.395 703.734 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.582 703.734 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(h )0.998942(i)1(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.504 703.734 Tm +[(promi)0.996908(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.625 703.734 Tm +[( )1(of )1(an )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.617 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.75 703.734 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +[(i)1(nt)1(ui)1(t)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8438 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6563 689.766 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 689.766 Tm +[( )1(or )1(,)1( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.871 689.766 Tm +[(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.859 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.676 689.766 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.027 689.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.844 689.766 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.305 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.117 689.766 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.934 689.766 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.746 689.766 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.906 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 246.719 689.766 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.758 689.766 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.203 689.766 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.336 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.152 689.766 Tm +[(humane)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.973 689.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.785 689.766 Tm +[(i)0.998942(nt)1(e)0.998942(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 404.43 689.766 Tm +[( )0.998942(,)1( )1<9420>1(8 )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.652 689.766 Tm +(major)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.867 689.766 Tm +[( )1(curre)0.996908(nt)1(s )1]TJ +-464.52 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 675.797 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6797 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.4961 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.207 675.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.652 675.797 Tm +[(D)1(i)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.445 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.258 675.797 Tm +[(i)1(nst)1(al)1(l)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 234.402 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 238.219 675.797 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.93 675.797 Tm +[( )0.998942(t)1(y)0.998942(pi)1(cal)0.998942(l)0.998942(y)1( )0.998942(mi)0.998942(spe)1(rce)1(i)0.998942(v)1(e)0.998942(s )1(i)0.998942(t)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.051 675.797 Tm +[(programme)0.992839(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 495.809 675.797 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(be)1(hav)1(i)1(ori)1(st)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.41 661.828 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.223 661.828 Tm +[(bl)1(ack)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.891 661.828 Tm +[( )1(box)1(e)1(s )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.578 661.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.715 661.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.527 661.828 Tm +[(i)0.998942(nt)1(e)0.998942(ract)1(i)0.998942(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 274.172 661.828 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.613 661.828 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.75 661.828 Tm +[( )0.998942(and )1(some)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.621 661.828 Tm +[(di)0.998942(gi)1(t)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.473 661.828 Tm +[( )0.998942(art)1(i)1(st)1(s )1(are)1( )1(caught)0.996908( )1(i)1(n )1(t)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(mi)1(sconce)1(pt)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.512 647.859 Tm +[( )1(t)1(hat)1( )1(t)1(he)1(y)1( )1(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 210.332 647.859 Tm +[(ov)1(e)0.998942(rcome)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.602 647.859 Tm +[( )0.998942(w)1(hat)0.998942( )0.998942(t)1(he)1(y)0.998942( )1(se)0.998942(e)1( )0.998942(as )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.223 647.859 Tm +[(W)83.0119(e)1(st)1(e)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.227 647.859 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.039 647.859 Tm +[(mal)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.512 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.328 647.859 Tm +[(bi)0.996908(nari)0.996908(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.84 647.859 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 633.891 Tm +[( )1(l)1(anguage)1.00199(s )1(by)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.871 633.891 Tm +[(re)1(shapi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.68 633.891 Tm +[( )0.998942(t)1(he)0.998942(m )1(aft)0.998942(e)0.998942(r )1(romant)1(i)0.998942(ci)0.998942(z)1(e)0.998942(d )1(i)0.998942(mage)0.996908(s )1.00505(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.379 633.891 Tm +[(i)1(ndi)0.992839(ge)1(nous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.09 633.891 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.0664 619.922 Tm +[( )1(l)1(anguage)1.00199(s )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.199 619.922 Tm +[(di)1(gi)1(t)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.051 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.867 619.922 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 281.262 619.922 Tm +[( )0.998942(i)0.998942(s )1(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 309.855 619.922 Tm +[(sy)1(mbol)0.998942(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.473 619.922 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.289 619.922 Tm +[(machi)0.998942(ne)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.938 619.922 Tm +[( )1(t)1(hat)1( )1(comput)1(e)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(sy)1(nt)1(act)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.082 605.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.898 605.953 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.965 605.953 Tm +[( )1(and )1(proce)1(sse)1(s )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.016 605.953 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.797 605.953 Tm +[( )0.998942(sy)1(mbol)0.998942(s )1(;)1( )1(i)0.996908(t)1( )1.00505(t)1(re)0.996908(at)1.00505(s )1(al)0.996908(l)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.23 605.953 Tm +[(dat)1<6197>]TJ +-449.883 -13.9688 Td +[(i)1(ncl)1(udi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 91.1289 591.984 Tm +[( )1(i)1(mage)1(s )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.449 591.984 Tm +(sounds\227as)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.441 591.984 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.258 591.984 Tm +[(t)0.998942(e)1(x)0.998942(t)1(ual)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.492 591.984 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hat)1( )0.998942(i)0.998942(s )0.998942(,)0.998942( )1(as )0.998942(chunk)1(s )0.998942(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.473 591.984 Tm +[(code)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.883 591.984 Tm +[( )1(sy)1(mbol)0.996908(s )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(Ne)1(l)1(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 76.8984 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.7109 578.016 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.691 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.504 578.016 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.32 578.016 Tm +[( )1(s )1(cri)1(t)1(e)1(ri)1(a )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.348 578.016 Tm +[(w)0.998942(ri)1(t)0.998942(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.266 578.016 Tm +[( )0.998942(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.207 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.34 578.016 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.156 578.016 Tm +[(di)0.998942(sjunct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.555 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.367 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 357.504 578.016 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 387.695 578.016 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 393.832 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 397.645 578.016 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.805 578.016 Tm +[( )1(,)1( )1<9420>1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 484.973 578.016 Tm +[(consi)1(st)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.871 578.016 Tm +[( )1]TJ +-512.523 -13.9688 Td +[(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.8281 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 102.738 564.047 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.551 564.047 Tm +[(si)1(ngl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.898 564.047 Tm +[( )1(e)1(nt)1(i)1(t)1(i)1(e)1(s )1(t)1(hat)0.998942( )1(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 235.6 564 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 244.19 564.047 Tm +[(e)1(r )0.998942(from )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.57 564.047 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.184 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330 564.047 Tm +[(se)1(parat)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.91 564.047 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.723 564.047 Tm +[(si)0.998942(ngl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.07 564.047 Tm +[( )1(e)1(nt)1(i)0.996908(t)1.00505(i)0.996908(e)1(s )1(,)1( )1(al)1(so )1.00505(appl)0.992839(i)1(e)1(s )1]TJ +-388.723 -13.9688 Td +[(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 50.207 550.078 Tm +[(di)1(gi)1(t)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.0625 550.078 Tm +[( )1]TJ +/R14 1 Tf +0.1 0 0 -0.1 92.9 550 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 100.858 550.078 Tm +[(l)1(e)1(s.)1(9 )1(T)1(he)1( )1(v)1(e)1(ry)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.102 550.078 Tm +[(me)1(ani)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 242.711 550.078 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.008 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.141 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.957 550.078 Tm +[(di)0.998942(gi)1(t)0.998942(i)0.998942(z)1(at)0.998942(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.746 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.559 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.695 550.078 Tm +[( )0.998942(i)0.998942(s )1(t)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.18 550.078 Tm +[(st)1(ruct)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.734 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.551 550.078 Tm +[(anal)0.996908(og)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.332 550.078 Tm +[( )1(dat)1(a )1(as )1]TJ +-450.984 -13.9688 Td +[(numbe)1(rs )1(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.055 536.109 Tm +[(st)1(ore)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.098 536.109 Tm +[( )1(t)1(he)1(m )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.883 536.109 Tm +[(nume)1(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.109 536.109 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.922 536.109 Tm +[(t)0.998942(e)1(x)0.998942(t)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.594 536.109 Tm +[( )0.998942(compose)1(d )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.875 536.109 Tm +[(di)0.998942(scre)1(t)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.035 536.109 Tm +[( )1(part)1(s )1(.)1( )1(Al)1(l)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.004 536.109 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.398 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 522.141 Tm +[( )1(cont)1(rol)1(s )1(are)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.145 522.141 Tm +[(l)1(i)1(ngui)1.00199(st)1(i)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.336 522.141 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.152 522.141 Tm +[(re)1(gardl)1(e)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.5 522.141 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1(i)0.998942(r )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.836 522.141 Tm +[(pe)1(rce)1(i)0.998942(v)1(abl)0.998942(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.57 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.383 522.141 Tm +[(shape)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.207 522.141 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(al)1(phanume)1(ri)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.129 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.941 508.172 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.859 508.172 Tm +[( )1(,)1( )1(graphi)1(cs)-317.985(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.445 508.172 Tm +(sound)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.965 508.172 Tm +[( )0.998942(si)1(gnal)0.998942(s )0.998942(,)1( )0.998942(or )0.998942(w)1(hat)0.998942(e)1(v)1(e)0.996908(r )1(e)1(l)0.996908(se)1( )1(.)1.00505( )1(T)0.996908(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.355 508.172 Tm +[(U)1(ni)0.996908(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.805 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.6133 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 97.4297 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.563 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 107.379 494.203 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.492 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 128.3 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 136.3 494.203 Tm +[(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.25 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 151.066 494.203 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.199 494.203 Tm +[( )1(i)1(s )1(ope)1(rat)1(i)0.998942(onal)0.998942(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.762 494.203 Tm +[(i)0.998942(de)1(nt)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.484 494.203 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 331.16 494.203 Tm +[(draggi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.344 494.203 Tm +[( )0.998942(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 413.6 494.1 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 421.617 494.203 Tm +[(l)1(e)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.566 494.203 Tm +[( )1(i)1(nt)0.996908(o )1.00505(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 487.277 494.203 Tm +[(t)1(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 540.48 494.203 Tm +[( )1(on )1]TJ +-506.133 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 480.234 Tm +[(de)1(sk)1(t)1(op)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.2578 480.234 Tm +[( )1(.)1( )1(B)1(ot)0.998942(h )1(are)1( )1(just)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.16 480.234 Tm +[(di)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 198.6 480.2 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 207.188 480.234 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.695 480.234 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.871 480.234 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.664 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.477 480.234 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 447.988 480.234 Tm +[( )1(,)1( )1(just)1.00505( )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(al)1(phabe)1(t)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.0664 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.883 466.266 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.949 466.266 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.145 466.266 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.742 466.266 Tm +[( )0.998942(be)1(e)1(ps )0.998942(are)1.00301( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 292.902 466.266 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 304.3 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 312.93 466.266 Tm +[(e)1(re)1(nt)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 345.438 466.266 Tm +[( )0.998942(e)1(ncodi)0.998942(ngs )1(for )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.613 466.266 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.406 466.266 Tm +[( )1]TJ +-457.059 -13.9688 Td +[(charact)1(e)1(rs )1(.)1( )1(As )1(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.43 452.297 Tm +[(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.051 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.863 452.297 Tm +[(handl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 239.098 452.297 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 276.902 452.297 Tm +[(e)1(ncodi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.605 452.297 Tm +[( )0.998942(may)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 365.547 452.297 Tm +[(e)1(nabl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.152 452.297 Tm +[( )1(or )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.742 452.297 Tm +[(re)1(st)1(rai)0.996908(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 475.02 452.297 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 478.832 452.297 Tm +[(ce)1(rt)1(ai)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.934 452.297 Tm +[( )1(use)1(s )1]TJ +-487.586 -13.9688 Td +[(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.293 438.328 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.363 438.328 Tm +[( )1(.)1( )1(In )1(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.449 438.328 Tm +[(re)1(spe)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.773 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(t)1(he)1( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 275 438.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 283.649 438.328 Tm +[(e)1(re)1(nce)0.998942(s )1(be)1(t)0.998942(w)1(e)0.998942(e)1(n)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 390.813 438.328 Tm +[(i)0.998942(de)1(ographi)0.996908(c-)1(pi)0.996908(ct)1.00505(ori)0.996908(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.109 438.328 Tm +[( )1(and )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(abst)1(ract)1(-)1(sy)1(mbol)1(i)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.27 424.359 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.086 424.359 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.742 424.359 Tm +[( )1(l)0.998942(anguage)1.00301(s )0.998942(al)0.998942(so )1(appl)0.998942(y)1( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.598 424.359 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.992 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.805 424.359 Tm +[(cont)1.00505(rol)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 454.102 424.359 Tm +[( )1(l)1(anguage)0.992839(s )1(.)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[(P)1(i)1(ct)1(ori)1(al)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.5938 410.391 Tm +[( )1(sy)1(mbol)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 142.441 410.391 Tm +[(si)1(mpl)1(i)1(fy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.395 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.207 410.391 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 237.504 410.391 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(t)1(hrough )1(pre)1(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 395 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 403.02 410.391 Tm +[(ne)0.996908(d )1(obje)1(ct)1.00505(s )1(and )1]TJ +-368.672 -13.9688 Td +[(ope)1(rat)1(i)1(ons )1(,)1( )1(but)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.508 396.422 Tm +[(mak)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.414 396.422 Tm +[( )1(i)1(t)1( )1(more)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.957 396.422 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 230.4 396.4 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 238.985 396.422 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 396.422 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.625 396.422 Tm +[(l)0.998942(i)0.998942(nk)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 308.301 396.422 Tm +[( )0.998942(t)1(he)0.998942(m )1(t)0.998942(hrough )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.395 396.422 Tm +(grammar)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.617 396.422 Tm +[( )1(and )0.996908(t)1.00505(hus )0.996908]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(e)1(x)1(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.0508 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.8672 382.453 Tm +[(cust)1(om)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.898 382.453 Tm +[( )1(ope)1(rat)1(i)1(ons )1(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.828 382.453 Tm +[(J)1(ust)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.348 382.453 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.258 382.453 Tm +[(pi)0.998942(ct)1(ogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.496 382.453 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.758 382.453 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.699 382.453 Tm +[( )0.998942(i)0.998942(s )1(e)1(asi)0.996908(e)1(r )1(t)1(o )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.09 382.453 Tm +[(unde)0.996908(rst)1(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.613 382.453 Tm +[( )1]TJ +-502.266 -13.9688 Td +[(t)1(han )1(t)1(he)1( )1(l)1(e)1(t)1(t)1(e)1(rs )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 132.457 368.484 Tm +[(h-)1(o-)1(u-)1(s-)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 184.617 368.484 Tm +[( )1(,)1( )1(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.527 368.484 Tm +[(same)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.32 368.484 Tm +[( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.945 368.484 Tm +[(t)0.998942(rue)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.332 368.484 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.832 368.484 Tm +[(t)0.998942(rashcan)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.035 368.484 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.848 368.484 Tm +[(i)0.998942(con)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.359 368.484 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.555 368.484 Tm +[(compari)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.402 368.484 Tm +[( )1(t)1(o )1.00505(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 354.516 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 40.4805 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 44.2969 354.516 Tm +(rm)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 61.4102 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.2266 354.516 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 71.3594 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.1758 354.516 Tm +(command)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 354.516 Tm +[( )1(.)1( )1(B)1(ut)1( )1(i)1(t)1( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.355 354.516 Tm +[(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 208.8 354.5 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 217.384 354.516 Tm +[(i)0.998942(cul)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.348 354.516 Tm +[( )0.998942(t)1(o )0.998942(pre)1(ci)0.998942(se)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.793 354.516 Tm +[(e)1(x)0.998942(pre)1(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 369.496 354.516 Tm +[( )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.777 354.516 Tm +[(ope)1(rat)1(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.289 354.516 Tm +[( )1<9320>1(If )0.996908(I )1(am )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.953 354.516 Tm +[(home)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 546.387 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(t)1(omorrow)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 93.9648 340.547 Tm +[( )1(at)0.998942( )1(si)1(x)1( )1(,)1( )1(I )1(w)1(i)1(l)1(l)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.934 340.547 Tm +[(cl)1(e)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.477 340.547 Tm +[( )0.998942(up )1(e)0.998942(v)1(e)1(ry)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.828 340.547 Tm +[(se)1(cond)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.441 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 315.258 340.547 Tm +(room)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.82 340.547 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 389.484 340.547 Tm +[(house)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 425.426 340.547 Tm +[( )1<9420>1(t)1(hrough )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.621 340.547 Tm +[(se)1(ri)0.996908(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 538.715 340.547 Tm +[( )1(of )1]TJ +-504.367 -13.9688 Td +[(pi)1(ct)1(ograms )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.188 326.578 Tm +[(Abst)1(ract)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 165.949 326.578 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.391 326.578 Tm +[(grammat)0.998942(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.25 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.063 326.578 Tm +[(al)0.998942(phanume)1.00301(ri)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.852 326.578 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )1(are)1( )1(more)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.77 326.578 Tm +[(sui)0.996908(t)1(abl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.094 326.578 Tm +[( )1(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 312.609 Tm +[(compl)1(e)1(x)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.0586 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.875 312.609 Tm +[(comput)1(at)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.191 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.004 312.609 Tm +[(i)1(nst)1(ruct)1(i)0.998942(ons.)0.998942(10)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.594 312.609 Tm +[( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 302.055 312.609 Tm +[(ut)1(opi)0.998942(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.504 312.609 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.77 312.609 Tm +[(uni)0.998942(v)1(e)1(rsal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.832 312.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.645 312.609 Tm +[(pi)0.996908(ct)1.00505(ori)1(al)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 481.5 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.313 312.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.707 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 81.457 298.641 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 137.523 298.641 Tm +[( )1(\( )1(w)1(i)1(t)1(h )1(i)1(cons )0.998942(,)0.998942( )1(w)0.998942(i)0.998942(ndow)1(s )0.998942(,)0.998942( )0.998942(and )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 314.418 298.641 Tm +[(poi)0.998942(nt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.551 298.641 Tm +[( )0.998942(ope)1(rat)1(i)0.998942(ons )1(\) )0.996908(i)1(s )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.125 298.641 Tm +[(re)1(e)0.996908(nact)1.00505(me)0.996908(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.523 298.641 Tm +[( )1(of )1]TJ +-507.176 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 284.672 Tm +[(ri)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 80.6484 284.672 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.84 284.672 Tm +[(e)1(v)1(e)1(nt)1(ual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.094 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.91 284.672 Tm +[(fal)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.18 284.672 Tm +[( )1(of )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 205.477 284.672 Tm +[(uni)0.998942(v)1(e)1(rsal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.539 284.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.352 284.672 Tm +[(pi)0.998942(ct)1(ori)0.998942(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.207 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 320.02 284.672 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.09 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.902 284.672 Tm +[(ut)1(opi)0.996908(as)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.512 284.672 Tm +[( )1(i)1(n )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.172 284.672 Tm +[(R)0.996908(e)1(nai)0.996908(ssance)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.051 284.672 Tm +[( )1(,)1( )1]TJ +-508.703 -13.9688 Td +[(from )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 270.703 Tm +[(T)79.0116(ommaso)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.535 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.348 270.703 Tm +[(Campane)1.00199(l)1(l)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.559 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.375 270.703 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.188 270.703 Tm +[( )0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.977 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.109 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 231.926 270.703 Tm +[(Ci)0.998942(t)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 261.742 270.703 Tm +[( )0.998942(de)1(l)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 287.992 270.703 Tm +[(sol)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 312.316 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.129 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.266 270.703 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.941 270.703 Tm +[(Come)1(ni)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.281 270.703 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.094 270.703 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 409.91 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.723 270.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 419.859 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.672 270.703 Tm +[(O)1(rbi)0.992839(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.926 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.738 270.703 Tm +[(pi)0.996908(ct)1.00505(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.688 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.504 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 507.637 270.703 Tm +[( )1<97>]TJ +-473.289 -13.9688 Td +[(al)1(t)1(hough )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.535 256.734 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.387 256.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.199 256.734 Tm +[(proje)1(ct)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.207 256.734 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.504 256.734 Tm +[(e)1(x)0.998942(pre)1(ssi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.457 256.734 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.27 256.734 Tm +[(onl)0.998942(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.84 256.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.656 256.734 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 379.305 256.734 Tm +[( )0.998942(ope)1(rat)1(i)1(ons )1(i)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.984 256.734 Tm +[(pi)0.996908(ct)1.00505(ograms)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 535.383 256.734 Tm +[( )1]TJ +-501.035 -13.9688 Td +[(w)1(as )1(l)1(e)1(ss)]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.8164 242.766 Tm +[(ambi)1(t)1(i)1(ous)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.641 242.766 Tm +[( )1(.)1( )1(T)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.73 242.766 Tm +[(conv)1(e)0.998942(rse)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 241.281 242.766 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.957 242.766 Tm +[(ut)1(opi)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.137 242.766 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.949 242.766 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.02 242.766 Tm +[( )0.998942(de)1(si)0.998942(gns )1.00505(occurs )1(w)1.00505(he)0.996908(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.742 242.766 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 560.137 242.766 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 228.797 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 77.6406 228.797 Tm +[( )1(l)1(anguage)1.00199(s )1(ge)1(t)1( )1(appropri)1(at)1(e)1(d )0.998942(and )0.998942(use)1.00301(d )0.998942(i)0.998942(nformal)0.998942(l)0.998942(y)1( )0.998942(i)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 394.242 228.797 Tm +[(e)1(v)0.998942(e)1(ry)0.996908(day)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.355 228.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 453.168 228.797 Tm +[(cul)1(t)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.844 228.797 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 214.828 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.5117 214.828 Tm +[(Sw)1(i)1(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.105 214.828 Tm +[( )1(t)1(e)1(l)1(l)1(s )1(how)1( )1(sci)1(e)0.998942(nt)1(i)0.998942(st)1(s )0.998942(on )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R23 1 Tf +0.1 0 0 -0.1 289.9 214.8 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 297.918 214.828 Tm +[(y)1(i)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.957 214.828 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.773 214.828 Tm +[(i)0.998942(sl)0.998942(and)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.172 214.828 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.465 214.828 Tm +(Lagado)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.332 214.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.145 214.828 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.281 214.828 Tm +[( )1(w)1(oul)1(d )1(,)1( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 200.859 Tm +[(e)1(x)1(ampl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.3711 200.859 Tm +[( )1(,)1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.8125 200.859 Tm +[(prai)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.484 200.859 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 161.766 200.859 Tm +[(be)1(aut)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.031 200.859 Tm +[( )0.998942(of )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.297 200.859 Tm +[(w)0.998942(oman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.055 200.859 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(any)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 330.75 200.859 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.363 200.859 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.176 200.859 Tm +[(ani)0.998942(mal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.27 200.859 Tm +[( )1(.)1(.)1(.)1( )1(by)0.996908( )1(rhombs )1(,)1( )1(ci)1(rcl)0.996908(e)1(s )1(,)1( )1.00505]TJ +-373.922 -13.9688 Td +[(paral)1(l)1(e)1(l)1(ograms )1(,)1( )1(e)1(l)1(l)1(i)1(pse)1(s )1(,)1( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 221.004 186.891 Tm +[(ot)0.998942(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.617 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 257.43 186.891 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.566 186.891 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.379 186.891 Tm +[(ge)1(ome)1(t)0.998942(ri)1(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 339.977 186.891 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 343.793 186.891 Tm +[(t)0.998942(e)1(rms.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 382.805 186.891 Tm +[( )0.998942<9420>1(11 )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415.652 186.891 Tm +[(Li)1(k)1(e)1(w)1(i)1(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 469.199 186.891 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0 1 RG +0 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.645 186.891 Tm +[(t)1(he)1(re)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.133 186.891 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 172.922 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 172.922 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 181.266 172.922 Tm +[(poe)1(t)0.998942(ry)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 220.609 172.922 Tm +[( )0.998942(w)1(hi)0.998942(ch )0.998942(,)0.998942( )0.998942(unl)1(i)0.998942(k)0.998942(e)1( )0.998942(most)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.875 172.922 Tm +[(al)0.998942(gori)1(t)0.998942(hmi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.836 172.922 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.648 172.922 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.996 172.922 Tm +[( )1(,)1( )1(w)1(ri)1(t)1(e)1(s )1(i)1(t)1(s)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 158.953 Tm +(program)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.9414 158.953 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.7539 158.953 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.426 158.953 Tm +[( )1(as )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.832 158.953 Tm +[(poe)1(t)1(i)0.998942(cal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.215 158.953 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.027 158.953 Tm +[(w)0.998942(ork)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 258.531 158.953 Tm +[( )0.998942(,)0.998942( )0.998942(or )1(crossbre)1.00301(e)1(ds )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.023 158.953 Tm +[(cy)1(be)0.998942(rne)1(t)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 428.254 158.953 Tm +[( )1(w)1(i)1(t)1(h )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.543 158.953 Tm +(common)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.199 158.953 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.016 158.953 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.734 158.953 Tm +[( )1]TJ +-525.387 -13.9688 Td +[(l)1(anguage)1(s )1(.)1( )1(T)1(he)1(se)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.926 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.059 144.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 157.875 144.984 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 186.602 144.984 Tm +[( )1(poe)1(ms )0.998942<9420>1(or )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.5 144.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.637 144.984 Tm +[( )0.998942(code)1(w)0.998942(ork)1(s )0.998942<9420>1(oft)0.998942(e)1(n )0.998942(pl)0.998942(ay)0.996908( )1.00505(w)1(i)0.996908(t)1.00505(h )0.996908(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.945 144.984 Tm +[(i)1(nt)0.996908(e)1(rfe)1(re)0.996908(nce)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 543.105 144.984 Tm +[( )1]TJ +-508.758 -13.9688 Td +[(be)1(t)1(w)1(e)1(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 89.9688 131.016 Tm +(human)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.688 131.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 135.504 131.016 Tm +[(age)1(ncy)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.668 131.016 Tm +[( )1(and )1(programme)1.00301(d )0.998942(proce)1(sse)1(s )1(i)0.998942(n )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.668 131.016 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 429.063 131.016 Tm +[( )1(ne)0.996908(t)1.00505(w)1(ork)1(s )1.00505(.)1( )1(In )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 117.047 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 117.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 117.047 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.777 117.047 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 209.969 117.047 Tm +[(comput)1(e)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.363 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.18 117.047 Tm +[(sci)0.998942(e)1(nce)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.547 117.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 328.992 117.047 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.125 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.941 117.047 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.668 117.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.484 117.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.617 117.047 Tm +[( )0.998942(i)0.998942(s )1(oft)0.996908(e)1(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 430.375 117.047 Tm +[(unde)0.996908(rst)1(ood)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.465 117.047 Tm +[( )1(e)1(i)0.996908(t)1.00505(he)0.996908(r )1(as )1]TJ +-465.117 -13.9688 Td +[(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 45.3164 103.078 Tm +[(sy)1(nony)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0938 103.078 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 118.387 103.078 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 176.781 103.078 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.598 103.078 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.816 103.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 267.633 103.078 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.699 103.078 Tm +[( )0.998942(or )1(as )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.387 103.078 Tm +[(t)0.998942(e)1(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.898 103.078 Tm +[( )0.998942(w)1(ri)1(t)1(t)1(e)1(n )1(i)0.996908(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.23 103.078 Tm +(such)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.566 103.078 Tm +[( )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 89.1094 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 89.1094 Tm +[( )1(.)1( )1(T)1(hi)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.402 89.1094 Tm +[(mode)1(rn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.254 89.1094 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 182.066 89.1094 Tm +[(usage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.891 89.1094 Tm +[( )0.998942(of )0.998942(t)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.652 89.1094 Tm +[(t)0.998942(e)1(rm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.691 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 293.508 89.1094 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.641 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.457 89.1094 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 332.184 89.1094 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336 89.1094 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.133 89.1094 Tm +[( )0.998942(di)0.998942]TJ +/R14 1 Tf +0.1 0 0 -0.1 357.3 89.1 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 365.965 89.1094 Tm +[(e)1(rs )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 444.867 89.1094 Tm +[(t)1(radi)0.996908(t)1(i)1(onal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.703 89.1094 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 75.1406 Tm +[(mat)1(he)1(mat)1(i)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.438 75.1406 Tm +[( )1(and )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.633 75.1406 Tm +[(cry)1(pt)1(ographi)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.137 75.1406 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.953 75.1406 Tm +[(not)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 275.52 75.1406 Tm +[( )0.998942(of)]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.813 75.1406 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.543 75.1406 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.453 75.1406 Tm +[(se)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.535 75.1406 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.828 75.1406 Tm +[(formal)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.602 75.1406 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 436.418 75.1406 Tm +[(t)1(ransformat)0.996908(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 527.566 75.1406 Tm +[( )1]TJ +-493.219 -13.9688 Td +[(rul)1(e)1(s )1(t)1(hat)1( )1(t)1(ranscri)1(be)1( )1(one)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.426 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.48 61.1719 Tm +[( )0.998942(of )0.998942(sy)1(mbol)0.998942(s )1(t)0.998942(o )0.998942(anot)1(he)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.98 61.1719 Tm +(group)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 401.031 61.1719 Tm +[( )0.998942(of )1(sy)1(mbol)0.996908(s )1(,)1( )1(for )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.207 61.1719 Tm +[(e)1(x)1(ampl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 553.23 61.1719 Tm +[( )1(,)1( )1]TJ +-518.883 -13.9688 Td +[(w)1(ri)1(t)1(t)1(e)1(n )1(l)1(e)1(t)1(t)1(e)1(rs )1(i)1(nt)1(o )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.305 47.2031 Tm +[(morse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 190.902 47.2031 Tm +[( )1(be)1(e)1(ps )0.998942(.)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 268.535 47.2031 Tm +[(t)0.998942(ransl)1(at)1(i)0.998942(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.738 47.2031 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(occurs )1(w)1(he)1(n )0.996908(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.613 47.2031 Tm +[(t)1(e)1(x)1(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.125 47.2031 Tm +[( )1(i)1(n )0.996908(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 33.2344 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.566 33.2344 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 121.383 33.2344 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.449 33.2344 Tm +[( )1(ge)1(t)1(s )0.998942(compi)0.998942(l)0.998942(e)1(d )0.998942(i)0.998942(nt)1(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 297.551 33.2344 Tm +[(machi)0.998942(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 349.199 33.2344 Tm +[( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )1(i)1(s )1(not)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.43 33.2344 Tm +[(e)1(ncodi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.137 33.2344 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +Q + +endstream +endobj +%%Page: 4 4 +%%PageBoundingBox: 0 0 595 841 +%%BeginPageSetup +25 0 obj +<> +/Contents 26 0 R +>> +endobj +%%EndPageSetup +26 0 obj +<>stream +q 0.1 0 0 0.1 0 0 cm +0.828125 0.828125 0.828125 RG +0.828125 0.828125 0.828125 rg +0 0 5950 8410 re +f +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 801.516 Tm +[(t)1(hi)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.707 801.516 Tm +[(se)1(nse)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.957 801.516 Tm +[( )1(be)1(cause)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 175.699 801.516 Tm +[(proce)0.998942(ss)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.48 801.516 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 263.695 801.516 Tm +[(one)1(t)0.998942(o-)1(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.906 801.516 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.719 801.516 Tm +[(re)1(v)1(e)1(rsi)0.998942(bl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 388.793 801.516 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(hi)0.996908(s )1(i)1(s )1(w)1(hy)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 472.184 801.516 Tm +[(propri)0.996908(e)1(t)1(ary)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 541.676 801.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 787.547 Tm +[(soft)1(w)1(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2578 787.547 Tm +[( )1(compani)1(e)1(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.289 787.547 Tm +[(k)1(e)1(e)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.445 787.547 Tm +[( )0.998942(t)1(he)0.998942(i)1(r )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.301 787.547 Tm +[(source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 291.973 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.785 787.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.922 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.734 787.547 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 334.465 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.277 787.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 344.414 787.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 348.227 787.547 Tm +[(se)1(cre)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.867 787.547 Tm +[( )0.998942(.)0.998942( )0.998942(It)1( )0.996908(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.5 787.547 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.164 787.547 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 773.578 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 773.578 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 773.578 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.121 773.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 147.938 773.578 Tm +[(unde)1(rst)1(andi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.707 773.578 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 256 773.578 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.137 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 265.949 773.578 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.68 773.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 298.492 773.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.629 773.578 Tm +[( )0.998942(i)0.998942(s )1(hi)0.998942(st)1(ori)0.998942(cal)0.998942(l)0.998942(y)1( )0.998942(de)1(ri)1(v)0.996908(e)1(d )1(from )0.996908(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 499.539 773.578 Tm +[(name)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 532.902 773.578 Tm +[( )1(of )1]TJ +-498.555 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R14 1 Tf +0.1 0 0 -0.1 57.8 759.5 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 65.8043 759.609 Tm +[(rst)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 82.5352 759.609 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.3477 759.609 Tm +[(hi)1(gh-)1(l)1(e)1(v)1(e)1(l)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.039 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.852 759.609 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.246 759.609 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.063 759.609 Tm +[(programmi)1.00301(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.281 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.098 759.609 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.164 759.609 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 366.609 759.609 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.742 759.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.559 759.609 Tm +[(Short)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.289 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.105 759.609 Tm +[(Code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.293 759.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 449.109 759.609 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 455.242 759.609 Tm +[( )1(from )1(1950.)0.992839(12 )1]TJ +-420.895 -13.9688 Td +[(T)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 60.9961 745.641 Tm +[(onl)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 86.5664 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.3789 745.641 Tm +[(programmi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.602 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.414 745.641 Tm +[(l)1(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 233.484 745.641 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942(i)1(s )0.998942(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 290.418 745.641 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 319.148 745.641 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(he)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 361.809 745.641 Tm +[(ori)1(gi)0.998942(nal)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 408.848 745.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 412.664 745.641 Tm +[(se)1(nse)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.91 745.641 Tm +[( )1(i)1(s )1(asse)1(mbl)0.996908(y)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 731.672 Tm +[(l)1(anguage)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.4141 731.672 Tm +[( )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 125.324 731.672 Tm +[(human-)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 171.098 731.672 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.914 731.672 Tm +[(re)1(adabl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 228.363 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.176 731.672 Tm +[(mne)1(moni)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 295.277 731.672 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 299.09 731.672 Tm +[(one)1(-)1(t)0.998942(o-)1(one)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.355 731.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.172 731.672 Tm +[(re)1(pre)1(se)1(nt)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.105 731.672 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 476.402 731.672 Tm +[(proce)1(ssor)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.145 731.672 Tm +[( )1]TJ +-501.797 -13.9688 Td +[(i)1(nst)1(ruct)1(i)1(ons )1(.)1( )1(Conv)1(e)1(rse)1(l)1(y)1( )1(,)1( )1(t)1(hose)1( )0.998942(i)0.998942(nst)1(ruct)1(i)0.998942(ons )0.998942(can )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 335.953 717.703 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.734 717.703 Tm +[( )0.998942(code)1(d )0.998942(back)1( )1(,)1( )1.00505(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.82 717.703 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.957 717.703 Tm +[( )1(di)0.996908(sasse)1(mbl)0.996908(e)1(d )1(,)1( )1]TJ +-423.609 -13.9688 Td +[<9420>1(i)1(nt)1(o )1(asse)1(mbl)1(y)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 131.789 703.734 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 187.855 703.734 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.301 703.734 Tm +[(Soft)0.998942(w)0.998942(are)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 254.273 703.734 Tm +[( )0.998942(as )1(a )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.184 703.734 Tm +[(w)0.998942(hol)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.348 703.734 Tm +[( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942(onl)1(y)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.945 703.734 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 399.082 703.734 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.895 703.734 Tm +[(code)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.625 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 435.438 703.734 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.574 703.734 Tm +[( )1(but)0.996908( )1.00505(a )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.402 703.734 Tm +[(sy)0.996908(mbol)1(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.023 703.734 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 689.766 Tm +(form)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.1289 689.766 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.9414 689.766 Tm +[(i)1(nv)1(ol)1(v)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.379 689.766 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 126.191 689.766 Tm +[(cul)1(t)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.758 689.766 Tm +[( )1(pract)1(i)0.998942(ce)1(s )0.998942(of )0.998942(i)0.998942(t)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 271.434 689.766 Tm +[(e)1(mpl)0.998942(oy)1(me)0.998942(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.469 689.766 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 376.664 689.766 Tm +[(appropri)0.996908(at)1.00505(i)0.996908(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.164 689.766 Tm +[( )1(.)1( )1(B)1(ut)1( )1(si)1(nce)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 675.797 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.2617 675.797 Tm +[( )1(i)1(n )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 108.426 675.797 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.82 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.637 675.797 Tm +[(cont)1(rol)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 213.93 675.797 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 217.746 675.797 Tm +[(l)0.998942(anguage)1.00301]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.813 675.797 Tm +[( )0.998942(i)0.998942(s )1(w)0.998942(hat)1( )0.998942(mat)1(e)0.998942(ri)1(al)0.998942(l)0.998942(y)1( )0.998942(mak)1(e)1(s )1(up )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.789 675.797 Tm +[(soft)1.00505(w)1(are)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 505.699 675.797 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.141 675.797 Tm +[(cri)1(t)1(i)0.996908(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 559.809 675.797 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 661.828 Tm +[(t)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.9844 661.828 Tm +[( )1(about)1( )1(comput)1(e)1(rs )1(i)1(s )0.998942(not)0.998942( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.992 661.828 Tm +[(possi)1(bl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.672 661.828 Tm +[( )0.998942(w)1(i)0.998942(t)0.998942(hout)1( )0.998942(an )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.434 661.828 Tm +[(i)0.998942(nforme)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.566 661.828 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 414.379 661.828 Tm +[(unde)0.996908(rst)1(andi)0.992839(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 503.148 661.828 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 647.859 Tm +[(st)1(ruct)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.793 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.6055 647.859 Tm +[(formal)1(i)1(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.754 647.859 Tm +[( )1(of )1(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 197.684 647.859 Tm +[(cont)0.998942(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.977 647.859 Tm +[( )0.998942(l)0.998942(anguage)1.00301(s )0.998942(.)0.998942( )0.998942(Art)1(i)0.998942(st)1(s )0.998942(and )1(act)0.998942(i)1(v)0.996908(i)1(st)1(s )1.00505(si)0.996908(nce)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 501.789 647.859 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 545.133 647.859 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 633.891 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 633.891 Tm +[( )1(poe)1(t)1(s )1(and )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.957 633.891 Tm +[(M)1(IT)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 189.988 633.891 Tm +[( )1(hack)1(e)0.998942(rs )1(i)0.998942(n )0.998942(t)1(he)1( )0.998942(1960s )1(hav)1(e)1( )0.998942(show)1(n )0.998942(how)1.00505( )1(t)1(he)1(i)0.996908(r )1(l)0.996908(i)1(mi)0.996908(t)1(at)1.00505(i)0.996908(ons )1(can )1.00505]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 619.922 Tm +[(be)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 49.1289 619.922 Tm +[( )1(e)1(mbrace)1(d )1(as )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 134.441 619.922 Tm +[(cre)1(at)1(i)1(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.695 619.922 Tm +[( )1(chal)0.998942(l)0.998942(e)1(nge)1(s )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.004 619.922 Tm +[(Li)0.998942(k)0.998942(e)1(w)0.998942(i)0.998942(se)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.555 619.922 Tm +[( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.281 619.922 Tm +[(i)0.998942(ncumbe)1(nt)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.012 619.922 Tm +[( )1(upon )0.996908(cri)1(t)1(i)1(cs )1(t)1.00505(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.512 619.922 Tm +[(re)1]TJ +/R23 1 Tf +0.1 0 0 -0.1 528.3 619.9 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 536.332 619.922 Tm +[(e)1(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 605.953 Tm +[(t)1(he)-317.004(some)1(t)1(i)1(me)1(s )1(more)1( )1(and )1(some)0.998942(t)1(i)0.998942(me)1(s )0.998942(l)0.998942(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 284.473 605.953 Tm +[(amusi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 336.141 605.953 Tm +[( )0.998942(const)1(rai)0.998942(nt)1(s )1(and )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 438.238 605.953 Tm +[(game)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.555 605.953 Tm +[( )1(rul)0.996908(e)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 591.984 Tm +[(comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 92.7422 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.5547 591.984 Tm +[(cont)1(rol)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 139.852 591.984 Tm +[( )1(l)1(anguage)1.00199(s )0.998942(w)1(ri)0.998942(t)1(e)0.998942( )0.998942(i)1(nt)0.998942(o )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 272.719 591.984 Tm +[(cul)0.998942(t)1(ure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.395 591.984 Tm +[( )0.998942(.)0.998942( )0.998942(Not)1(e)1(s )0.998942(1 )0.998942(.)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 386.535 591.984 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.141 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.953 591.984 Tm +[(K)27.0142(e)1(nne)0.996908(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.992 591.984 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 479.438 591.984 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.57 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.387 591.984 Tm +[(B)1(e)1(ck)1.00505(e)0.996908(t)1.00505(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 536.043 591.984 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 578.016 Tm +[(T)1(hi)1(nk)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.1641 578.016 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.6094 578.016 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.742 578.016 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 124.938 578.016 Tm +(Hugh)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.543 578.016 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.355 578.016 Tm +[(K)27.0131(e)1(nne)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.395 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.488 578.016 Tm +[(M)0.998942(e)1(chani)0.998942(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.766 578.016 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 307.582 578.016 Tm +[(M)0.998942(use)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 340.855 578.016 Tm +[( )0.998942(,)0.998942( )0.998942(83\226107 )1.00301(.)0.998942( )0.998942(2 )1(.)1( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 426.996 578.016 Tm +[(F)56.0099(e)1(rdi)0.996908(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 489.316 578.016 Tm +[( )1(de)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 564.047 Tm +[(Saussure)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 90.332 564.047 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 101.777 564.047 Tm +[(Course)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 144.906 564.047 Tm +[( )1(i)1(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 164.102 564.047 Tm +[(G)1(e)1(ne)1(ral)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.348 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 216.164 564.047 Tm +[(Li)0.998942(ngui)0.998942(st)1(i)0.998942(cs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 282.645 564.047 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 294.086 564.047 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 300.223 564.047 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.035 564.047 Tm +[(Chapt)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.441 564.047 Tm +[( )0.998942(I )0.998942(:)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.668 564.047 Tm +[(Nat)1(ure)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.711 564.047 Tm +[( )1(of )1(t)1.00505(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 459.473 564.047 Tm +[(Li)1(ngui)0.992839(st)1.00505(i)0.996908(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.797 564.047 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.609 564.047 Tm +[(Si)1(gn.)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 554.895 564.047 Tm +[( )1]TJ +-520.547 -13.9688 Td +[<9420>1(3 )1(.)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.375 550.078 Tm +[(Se)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 85.7969 550.078 Tm +[( )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 113.078 550.078 Tm +[(se)1(ct)0.998942(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.672 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.117 550.078 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 174.25 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 178.066 550.078 Tm +[(Saussure)1.00301(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 248.934 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.75 550.078 Tm +[(Si)0.998942(gns)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 286.375 550.078 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 316.57 550.078 Tm +[(M)0.998942(at)1(e)0.998942(ri)1(al)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.5 550.078 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 372.316 550.078 Tm +[(M)0.998942(at)1(t)0.998942(e)1(rs)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 420.398 550.078 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 431.84 550.078 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.977 550.078 Tm +[( )1(i)1(n )0.996908]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 457.172 550.078 Tm +[(N)63.9974(.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 470.719 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.531 550.078 Tm +[(Kat)1.00505(he)0.996908(ri)0.996908(ne)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 534.707 550.078 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 536.109 Tm +[(Hay)1(l)1(e)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.8438 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 87.2852 536.109 Tm +[(M)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 106.352 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 110.168 536.109 Tm +[(M)1(ot)1(he)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.066 536.109 Tm +[( )1(W)88.0015(as )1(a )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.27 536.109 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 259.125 536.109 Tm +[( )0.998942(,)0.998942( )0.998942(42\22645 )1.00301(.)0.998942( )0.998942(4 )1(.)0.998942( )0.998942(F)56.0038(or )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 362.074 536.109 Tm +[(e)1(x)0.998942(ampl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 413.098 536.109 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.539 536.109 Tm +[(St)1.00505(e)0.996908(v)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 458.566 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 462.379 536.109 Tm +[(W)69.0145(oz)1.00505(ni)0.996908(ak)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 513.438 536.109 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 517.254 536.109 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 521.066 536.109 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 522.141 Tm +[(de)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.5352 522.141 Tm +[( )1(of )1(t)1(he)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 117.297 522.141 Tm +[(Appl)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.266 522.141 Tm +[( )1(I )1(mai)1(nboard )1(w)1(as )0.998942(consi)0.998942(jde)1(re)1(d )1<9320>0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 356.852 522.141 Tm +[(be)1(aut)1(i)0.998942(ful)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 411.188 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 415 522.141 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 445.504 522.141 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 464.801 522.141 Tm +[(art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 482.512 522.141 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 486.328 522.141 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 492.461 522.141 Tm +[( )1(i)1(n )0.996908(i)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 530.289 522.141 Tm +[(t)1(i)1(me)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 557.43 522.141 Tm +[( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 508.172 Tm +[(accordi)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.832 508.172 Tm +[( )1(t)1(o )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 114.508 508.172 Tm +[(St)1(e)1(v)1(e)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.262 508.172 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.078 508.172 Tm +[(Le)1(v)1(y)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 188.707 508.172 Tm +[( )1(,)1( )1(Insane)1(l)0.998942(y)1( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.191 508.172 Tm +[(G)0.998942(re)1(at)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 289.594 508.172 Tm +[( )0.998942(:)0.998942( )1(T)0.998942(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 327.914 508.172 Tm +[(Li)0.998942(fe)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.262 508.172 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 381.457 508.172 Tm +[(T)1(i)0.998942(me)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 417.938 508.172 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 437.23 508.172 Tm +[(M)1(aci)1(nt)0.996908(osh)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 500.895 508.172 Tm +[( )1(,)1( )1(81 )1(.)1( )1(5 )0.996908(.)1.00505( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 494.203 Tm +[(J)1(ose)1(ph)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 75.0508 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 78.8672 494.203 Tm +[(W)83.0129(e)1(i)1(z)1(e)1(nbaum)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.258 494.203 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 167.699 494.203 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.836 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 177.648 494.203 Tm +[(E)1(LIZ)0.998942<419741>]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 236.789 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 240.602 494.203 Tm +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.457 494.203 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 305.273 494.203 Tm +[(P)1(rogram)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 358.258 494.203 Tm +[( )0.998942(for )0.998942(t)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.758 494.203 Tm +[(St)1.00505(udy)0.992839]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 441.988 494.203 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 461.285 494.203 Tm +[(Nat)1(ural)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.219 494.203 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 480.234 Tm +[(Language)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.5469 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 98.3594 480.234 Tm +[(Communi)1(cat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.309 480.234 Tm +[( )1(be)1(t)1(w)0.998942(e)1(e)0.998942(n )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 253.746 480.234 Tm +[(M)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.914 480.234 Tm +[( )0.998942(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 311.109 480.234 Tm +[(M)0.998942(achi)0.998942(ne)1(.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 367.48 480.234 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 371.297 480.234 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.43 480.234 Tm +[( )0.998942(6 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 400.324 480.234 Tm +[(M)1(arsha)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.543 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.355 480.234 Tm +[(P)46.0124(ascual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 496.645 480.234 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 508.09 480.234 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 514.223 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 518.039 480.234 Tm +[(B)1(l)1(ack)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 551.84 480.234 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 466.266 Tm +[(M)1(onday)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 83.2031 466.266 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 94.6445 466.266 Tm +[(Cause)1.00199(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 138.129 466.266 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.32 466.266 Tm +[(E)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 177 466.3 Tm +<00>Tj +/R10 12 Tf +1 0 0 1 185.588 466.266 Tm +[(e)1(ct)1(s.)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.223 466.266 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.039 466.266 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.172 466.266 Tm +[( )0.998942(7 )1(.)0.998942( )0.998942(Among )0.998942(t)0.998942(he)1(m )0.998942(concre)1(t)1(e)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 385.375 466.266 Tm +[(poe)1(t)1(ry)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 424.723 466.266 Tm +[( )1(w)1(ri)1(t)1(e)1(rs )1(,)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.645 466.266 Tm +[(F)0.996908(re)1(nch)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 526.984 466.266 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 452.297 Tm +[(O)1(ul)1(i)1(po)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 74.4961 452.297 Tm +[( )1(poe)1(t)1(s )1(,)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.207 452.297 Tm +[(G)1(e)1(rman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.895 452.297 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.707 452.297 Tm +[(poe)1(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 225.539 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 229.352 452.297 Tm +(Hans)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 260.859 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 264.672 452.297 Tm +[(M)0.998942(agnus)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 313.41 452.297 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 317.227 452.297 Tm +[(E)1(nz)1(e)0.998942(nsbe)1(rge)1.00301(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 402.063 452.297 Tm +[( )0.998942(,)1( )1(and )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 463.352 452.297 Tm +[(Aust)1(ri)0.996908(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.184 452.297 Tm +[( )1(poe)1(t)1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 438.328 Tm +[(F)56.0117(e)1(rdi)1(nand)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 96.668 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.48 438.328 Tm +[(Schmat)1(z)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.828 438.328 Tm +[( )1(and )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 183.023 438.328 Tm +[(F)1(ranz)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.289 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 222.105 438.328 Tm +[(J)1(ose)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.84 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 255.656 438.328 Tm +[(Cz)1(e)0.998942(rni)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 303.293 438.328 Tm +[( )0.998942(.)0.998942( )0.998942(8 )1(.)0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 333.813 438.328 Tm +[(J)1(e)1(f)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 350.168 438.328 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 353.98 438.328 Tm +[(R)-22(ask)1(i)0.998942(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 395.441 438.328 Tm +[( )0.998942(,)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 433.535 438.328 Tm +[(Humane)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 485.09 438.328 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 488.906 438.328 Tm +[(Int)1(e)0.996908(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 544.453 438.328 Tm +[( )1(:)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 424.359 Tm +[(Ne)1(w)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 62.2188 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 66.0352 424.359 Tm +[(D)1(i)1(re)1(ct)1(i)1(ons)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 128.824 424.359 Tm +[( )1(for )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 153.855 424.359 Tm +[(D)1(e)1(si)1(gni)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 215.23 424.359 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 219.047 424.359 Tm +[(Int)0.998942(e)1(ract)1(i)0.998942(v)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.59 424.359 Tm +[( )0.998942(Sy)1(st)0.998942(e)1(ms )1(.)0.998942( )0.998942(9 )0.998942(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 370.547 424.359 Tm +[(Accordi)0.996908(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 432.543 424.359 Tm +[( )1(t)1(o )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 452.219 424.359 Tm +[(Ne)1(l)0.996908(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 494.77 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 498.586 424.359 Tm +[(G)1(oodman)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 556.563 424.359 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 410.391 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 38.1602 410.391 Tm +[( )1(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 51.9492 410.391 Tm +[(de)1]TJ +/R14 1 Tf +0.1 0 0 -0.1 66.7 410.3 Tm +<01>Tj +/R10 12 Tf +1 0 0 1 74.7129 410.391 Tm +[(ni)1(t)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 109.914 410.391 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 129.211 410.391 Tm +[(w)1(ri)1(t)1(i)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.125 410.391 Tm +[( )1(i)1(n )1(T)1(he)1( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.969 410.391 Tm +[(Language)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 285.328 410.391 Tm +[( )0.998942(of )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 304.621 410.391 Tm +[(Art)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 323.848 410.391 Tm +[( )0.998942(,)0.998942( )0.998942(143 )1(.)1( )0.998942(10 )1(.)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 396.352 410.391 Tm +[(Al)0.998942(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 423.738 410.391 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 427.551 410.391 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 450.449 410.391 Tm +[( )1(,)1( )1(an )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 480.59 410.391 Tm +[(i)1(nv)0.992839(e)1(nt)1(or)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.551 410.391 Tm +[( )1(of )1]TJ +-497.203 -13.9688 Td +[(t)1(he)1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 57.8125 396.422 Tm +[(graphi)1(cal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 115.348 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 119.16 396.422 Tm +[(use)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 145.887 396.422 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 149.699 396.422 Tm +[(i)1(nt)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 204.344 396.422 Tm +[( )0.998942(,)0.998942( )0.998942(conce)1(de)1(d )0.998942(i)0.998942(n )0.998942(1990 )1.00301(t)0.998942(hat)1( )0.998942<9320>1(i)0.998942(t)0.998942( )0.998942(w)1(oul)0.998942(d )1(not)1( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 442.211 396.422 Tm +[(be)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 456.996 396.422 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.809 396.422 Tm +[(surpri)0.992839(si)1(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 523.094 396.422 Tm +[( )1(i)1(f )1(t)1(he)0.996908( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 382.453 Tm +[(v)1(i)1(sual)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 69.8438 382.453 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 73.6563 382.453 Tm +[(sy)1(st)1(e)1(m)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 116.055 382.453 Tm +[( )1(w)1(e)1(re)1( )1(l)1(e)1(ss )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 180.965 382.453 Tm +[(abl)1(e)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 206.742 382.453 Tm +[( )0.998942(i)0.998942(n )1(t)0.998942(hi)0.998942(s )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 252.297 382.453 Tm +[(are)1(a)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 279.445 382.453 Tm +[( )0.998942(t)1(han )0.998942(t)1(he)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 337.973 382.453 Tm +[(me)1(chani)0.998942(sm)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 407.16 382.453 Tm +[( )1(t)1(hat)1( )1(sol)1(v)1(e)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 474.234 382.453 Tm +(noun)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 504.645 382.453 Tm +[( )1(phrase)0.996908(s )1]TJ +-470.297 -13.9688 Td +[(for )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 55.5625 368.484 Tm +[(nat)1(ural)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.7266 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 103.539 368.484 Tm +[(l)1(anguage)1.00199]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.609 368.484 Tm +[( )1(.)1( )1(Al)1(t)1(hough )0.998942(i)0.998942(t)1( )0.998942(i)0.998942(s )1(not)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 280.16 368.484 Tm +[(fai)0.998942(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 301.328 368.484 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.004 368.484 Tm +[(say)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 341.098 368.484 Tm +[( )0.998942(t)1(hat)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 373.254 368.484 Tm +[<91>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 377.066 368.484 Tm +[( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.883 368.484 Tm +[(i)0.998942(coni)1(c)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 416.953 368.484 Tm +[( )1(l)1(anguage)0.992839(s )1(can )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 512.227 368.484 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 516.039 368.484 Tm +[( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 519.855 368.484 Tm +[(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 524.676 368.484 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 528.492 368.484 Tm +[(w)1(ork)1.00505]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 558.996 368.484 Tm +[( )1]TJ +-524.648 -13.9688 Td +[<92>1( )1(just)1( )1(be)1(cause)1( )1(no )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 140.449 354.516 Tm +[(one)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 162.504 354.516 Tm +[( )1(has )1.00199(be)1(e)0.998942(n )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 224.602 354.516 Tm +[(abl)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.375 354.516 Tm +[( )0.998942(t)1(o )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.051 354.516 Tm +[(de)1(si)0.998942(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 310.242 354.516 Tm +[( )0.998942(a )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.023 354.516 Tm +(good)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 354.836 354.516 Tm +[( )0.998942(one)1( )0.998942(,)0.998942( )0.998942(i)1(t)0.998942( )0.998942(i)0.998942(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 418.434 354.516 Tm +[(l)1(i)0.996908(k)1(e)1(l)1(y)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 451.102 354.516 Tm +[( )1(t)1(hat)1( )1(t)1(he)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 506.723 354.516 Tm +[(abov)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 542.664 354.516 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 340.547 Tm +[(e)1(x)1(pl)1(anat)1(i)1(on)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 105.387 340.547 Tm +[( )1(i)1(s )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 123.012 340.547 Tm +[(cl)1(ose)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.055 340.547 Tm +[( )1(t)1(o )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 173.73 340.547 Tm +[(t)1(rut)1(h.)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 208.383 340.547 Tm +[( )0.998942]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 212.195 340.547 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 218.332 340.547 Tm +[( )0.998942(T)1(hi)0.998942(s )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 251.688 340.547 Tm +[(st)1(at)0.998942(us)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 288.531 340.547 Tm +[( )0.998942(quo )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 318.797 340.547 Tm +(hasn)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 347.566 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 351.379 340.547 Tm +[<92>0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 355.195 340.547 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 359.008 340.547 Tm +[(t)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 363.832 340.547 Tm +[( )0.998942(change)1(d )1(si)0.996908(nce)1( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.246 340.547 Tm +[(Al)1(an)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 493.633 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 497.449 340.547 Tm +[(Kay)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 520.348 340.547 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 531.789 340.547 Tm +<93>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 537.926 340.547 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 326.578 Tm +[(U)1(se)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 63.457 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 67.2695 326.578 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 122.816 326.578 Tm +[( )1(:)1( )1(A )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 146.969 326.578 Tm +[(P)46.0144(e)1(rsonal)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 199.445 326.578 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 203.262 326.578 Tm +[(V)17.9952(i)0.998942(e)1(w)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 232.926 326.578 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 244.371 326.578 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 250.504 326.578 Tm +[( )0.998942(i)0.998942(n )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 277.328 326.578 Tm +[(B)0.998942(re)1(nda)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 321.551 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 325.363 326.578 Tm +[(Laure)1(l)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 364.891 326.578 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.707 326.578 Tm +[(e)1(d)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 383.488 326.578 Tm +[( )0.998942(.)0.998942( )0.998942(T)1(he)0.996908( )1.00505]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 421.582 326.578 Tm +[(Art)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 440.805 326.578 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 460.102 326.578 Tm +[(Human-)0.996908]TJ +-425.754 -13.9688 Td +[(Comput)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 95.2031 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 99.0156 312.609 Tm +[(Int)1(e)1(rface)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 154.563 312.609 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 158.379 312.609 Tm +[(D)1(e)1(si)1(gn)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 200.508 312.609 Tm +[( )1(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 211.949 312.609 Tm +[(R)1(e)1(adi)0.998942(ng)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.172 312.609 Tm +[( )0.998942(:)0.998942( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.844 312.609 Tm +[(Addi)0.998942(son)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 322.82 312.609 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 326.637 312.609 Tm +[(W)83.0129(e)1(sl)0.998942(e)1(y)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 368.969 312.609 Tm +[( )0.998942(,)0.998942( )0.998942(1989 )1.00505(,)1( )1(203 )0.996908(.)1( )1(11 )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 483.457 312.609 Tm +[(Sw)1.00505(i)0.996908(ft)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 515.051 312.609 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 298.641 Tm +[(J)1(onat)1(han)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 88.6992 298.641 Tm +[( )1(,)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 100.141 298.641 Tm +[(G)1(ul)1(l)1(i)1(v)1(e)1(r)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 148.586 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 152.402 298.641 Tm +[<92>1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 156.215 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 160.031 298.641 Tm +(s)Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 166.188 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 170.004 298.641 Tm +[(T)1(rav)1(e)1(l)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 214.773 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 226.219 298.641 Tm +[(P)1(roje)0.998942(ct)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 269.617 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.434 298.641 Tm +[(G)0.998942(ut)1(e)0.998942(nbe)1(rg)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.602 298.641 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.414 298.641 Tm +[(E)1(book)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 380.578 298.641 Tm +[( )0.998942(,)0.998942( )0.998942]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 392.02 298.641 Tm +[(av)1(ai)0.996908(l)1(abl)0.996908(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 446.559 298.641 Tm +[( )1(at)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 466.164 298.641 Tm +[(ht)1(t)1(p)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 491.219 298.641 Tm +[( )1(:)1( )1]TJ +ET +Q +1 0 0 RG +1 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 502.891 298.641 Tm +[(/)1(/)0.996908]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 510.977 298.641 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 284.672 Tm +[(w)1(w)1(w)120.004(.)1(gut)1(e)1(nbe)1(rg.)1(org)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 155.273 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 159.086 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 163.129 284.672 Tm +[( )1(di)1(rs )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 194.172 284.672 Tm +[(/)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 198.215 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 202.031 284.672 Tm +[(e)1(x)0.998942(t)0.998942(e)1(x)0.998942(t)1(197)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 262.316 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 266.133 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 270.176 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 273.988 284.672 Tm +[(gl)0.998942(t)1(rv)1(10.)1(t)0.998942(x)0.998942(t)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 338.344 284.672 Tm +[( )0.998942]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 342.156 284.672 Tm +[(/)0.998942]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 346.199 284.672 Tm +[( )0.998942(.)0.998942( )0.998942(12 )1(.)0.998942( )1]TJ +ET +Q +1 0 1 RG +1 0 1 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 384.355 284.672 Tm +[(Se)0.998942(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 406.781 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 410.594 284.672 Tm +[(W)69.0145(ol)1(fgang)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 467.863 284.672 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 471.68 284.672 Tm +[(Hage)1(n)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 511.809 284.672 Tm +[( )1(,)1( )1<9320>1(T)1(he)0.996908( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 34.3477 270.703 Tm +[(St)1(y)1(l)1(e)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 65.1094 270.703 Tm +[( )1(of )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 84.4023 270.703 Tm +[(Source)1]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 127.137 270.703 Tm +[( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 130.949 270.703 Tm +[(Code)1(s)]TJ +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 168.297 270.703 Tm +[( )1(.)1( )1]TJ +ET +Q +0 0.501953 0 RG +0 0.501953 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 179.742 270.703 Tm +<94>Tj +ET +Q +0 0 0 RG +0 0 0 rg +q +10 0 0 10 0 0 cm BT +/R10 12 Tf +1 0 0 1 185.875 270.703 Tm +[( )1]TJ +ET +Q +Q + +endstream +endobj +%%Trailer +end +%%EOF diff --git a/python-cheatsheet.ipynb b/python-cheatsheet.ipynb index e939bbb..f81ee8b 100644 --- a/python-cheatsheet.ipynb +++ b/python-cheatsheet.ipynb @@ -144,7 +144,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "metadata": {}, "outputs": [], "source": [ @@ -153,18 +153,40 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'HELLO!'" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s.upper()" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'hello!'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s.lower()" ] @@ -189,9 +211,20 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "'hallo!'" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s.replace('e', 'a')" ] @@ -207,27 +240,60 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s.count('l')" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s.endswith('o')" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "True" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "s.startswith('h')" ] @@ -344,14 +410,22 @@ "cell_type": "markdown", "metadata": {}, "source": [ - "## if/else" + "## if/elif/else" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "quilting is NOT in the list!\n" + ] + } + ], "source": [ "# check if a word is in a list\n", "words = ['hello', 'language', 'weaving']\n", @@ -364,9 +438,19 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "the letter \"a\" is NOT in the word \"hello\"!\n", + "the letter \"a\" is in the word \"language\"!\n", + "the letter \"a\" is in the word \"weaving\"!\n" + ] + } + ], "source": [ "# check if a letter is in a word\n", "words = ['hello', 'language', 'weaving']\n", @@ -380,9 +464,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "---\n", + "NO, the word \"programming\" is NOT in the sentence \"Software and language are intrinsically related, since software may process language, and is constructed in language.\"!\n", + "---\n", + "NO, the word \"programming\" is NOT in the sentence \"Yet language means different things in the context of computing: formal languages in which algorithms are expressed and software is implemented, and in so-called “natural” spoken languages.\"!\n", + "---\n", + "YES, the word \"programming\" is in the sentence \"There are at least two layers of formal language in software: programming language in which the software is written, and the language implemented within the software as its symbolic controls.\"!\n" + ] + } + ], "source": [ "# check if a word is in a sentence\n", "sentences = [\n", @@ -394,16 +491,26 @@ "for sentence in sentences:\n", " print('---')\n", " if word in sentence:\n", - " print(f'the word \"{word}\" is in the sentence \"{sentence}\"!')\n", + " print(f'YES, the word \"{word}\" is in the sentence \"{sentence}\"!')\n", " else:\n", - " print(f'the word \"{word}\" is NOT in the sentence \"{sentence}\"!')" + " print(f'NO, the word \"{word}\" is NOT in the sentence \"{sentence}\"!')" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NO, the word \"hello\" DOES NOT end with \"-ing\"!\n", + "NO, the word \"language\" DOES NOT end with \"-ing\"!\n", + "YES, the word \"weaving\" ends with \"-ing\"!\n" + ] + } + ], "source": [ "# check if a word ends with \"ing\"\n", "words = ['hello', 'language', 'weaving']\n", diff --git a/quilt2.pdf b/quilt2.pdf deleted file mode 100644 index 310d825..0000000 --- a/quilt2.pdf +++ /dev/null @@ -1,80 +0,0 @@ -%PDF-1.3 -% ReportLab Generated PDF document http://www.reportlab.com -1 0 obj -<< -/F1 2 0 R /F2 3 0 R /F3 4 0 R ->> -endobj -2 0 obj -<< -/BaseFont /Helvetica /Encoding /WinAnsiEncoding /Name /F1 /Subtype /Type1 /Type /Font ->> -endobj -3 0 obj -<< -/BaseFont /Courier /Encoding /WinAnsiEncoding /Name /F2 /Subtype /Type1 /Type /Font ->> -endobj -4 0 obj -<< -/BaseFont /ZapfDingbats /Name /F3 /Subtype /Type1 /Type /Font ->> -endobj -5 0 obj -<< -/Contents 9 0 R /MediaBox [ 0 0 2383.937 3370.394 ] /Parent 8 0 R /Resources << -/Font 1 0 R /ProcSet [ /PDF /Text /ImageB /ImageC /ImageI ] ->> /Rotate 0 /Trans << - ->> - /Type /Page ->> -endobj -6 0 obj -<< -/PageMode /UseNone /Pages 8 0 R /Type /Catalog ->> -endobj -7 0 obj -<< -/Author (anonymous) /CreationDate (D:20201007160204+00'00') /Creator (ReportLab PDF Library - www.reportlab.com) /Keywords () /ModDate (D:20201007160204+00'00') /Producer (ReportLab PDF Library - www.reportlab.com) - /Subject (unspecified) /Title (untitled) /Trapped /False ->> -endobj -8 0 obj -<< -/Count 1 /Kids [ 5 0 R ] /Type /Pages ->> -endobj -9 0 obj -<< -/Filter [ /ASCII85Decode /FlateDecode ] /Length 33904 ->> -stream -Gb"-6I:"1$Op:d_r=g[r;dtn5q$MBiEI,d!hX9:XFnV_=KiVs*$G0kn,MG!$/]_S>H1D+>jWIuN^cQ.(=Z&eYR;['QtET'VJ@V^D+49@WH.K(?-s,CoR@V3!_YQP:Z_K&s!RZWna-#CoN,am$)N5ho:P>;dkI'9[^$^2*@(,"Vk!`!?C*Zr?$eNk8+KFHGAp@;2(eS/Vu$joULAeWlQn]?NZQk.!XK.lO_;C*YVfI;Ns"MFoPZsD175(fqmB3)%(qJLmetEn]5phbq)Ju`gtb_2;`"pt]%p/`;VpY;'i5_U1]EuD1%,I:o\.R9bUF5Z4VqIc-(!2q["p-$E1-]5B;ZU]s?V;Jp+*RkR"^$NE7Ial5EnYloBXbkn2n;`*S\+$M#^9I*a0IPCO5:O5QK!PUS!VOf_W?;/XX7-^U76p_<,:-."@*'tCY/e`Z!FSnU@$Cu$o)mNr.A%&W2'2h"E$"r2_kB=#q)@BV%$U?U(]c<.T.$P-E$,-(rj65'PW*d^E?GPgC:[TqHb)@drdCWu?ldm3U]s/=k(!Y'aGmE\P86((KlI?/;.b%4)V)`>GFXshLAPX160%c%sJo-q<)WJmUT75Preo0)=VCKB)cWaT7^)l,?O2]`9WLmrHSR4>aI]:l#.TQ(FpTgQb_\34'>.]pipQUcS[1pX'5qkn:!Qr&"G:1CXU]fm,Y7)43)IL-`,Nq%(DS@!jEICs&C]8J*^"s(a"Zr]Klhoo;]:SQgCfIHl\"f2O"=[PE0a3Mm7.<"VgYfSqN,=@YJRcnHmIMJiI2%O=$*=@_]jCkT&i0P?NrS&R?-WgN]60&nu^,ZV,7BMG0-<21`]iJ(p!R7k'E5R=Y'78Xu.!e]t2l6?7B2TpM+>K%fWGd\`^.qp^L]0?3tPuE,ZP>JfXQYr=DrA&WWrc*jQL;,X+,VBVg*?-tA-TMG`^B"oU3D)sJf9,d`;`$_g0LMUTp^"p(8GJ5L>R3banQj;+cLqr3U5J/l4#o\N/a49qniGqJ7ceB1RhtElCq<[6F^+(b95P;+hZ\$E^S7`IP.GI:hfQ>R-.JpC]5C(_@t0t(RR2qD@PPlPCXAa(+KQO;)dD5#@8g+,t0rU3$9h>,fqg`TZBY/7V".g,NUsoK)dGscq@CFQ?J(QVIM^nQ?]>JNPIK3U/Lg:rmtG#5s`&u1gn4AUB7$aY`IN%5RT5,][5M@K.!#\odW8&)h9kJbNe&2XD/YeB:#9Af?Tu;^7%PG_BhNf#+1Rc@5]h(T#VuLOu,+TQ&C?=W8uDsRH7n^L]SkWd>mSp%]\-fOU0X+UOujZ8l)#+n^Ohn#p#m5lBLl1LsV-!Ecatb:ko-#`4rUpIVO?6#^@Z6nGGD]?pFD1]?.+]h;,s?&\^^B&XA8bDRr("!!kt7_T3J;CR!iY*?6?(4e.6IF$FV9$rTJ.E\F5(>Jgd@LiHeoS7T42le6UeOH\f7M?^T%Bgn-TkL;5G3.EPE>W7D+hcenur/VeHHc5]U%f>?KYR=BJKpNfZ#&VfsJpqn,r-gdgs)MFX8nJL*\(`h04mu5ApAK]#?1D$^_fqXlqKi5!#j!/%]R&#%K/eX?"$2Z(,Y`:j3Y\B9;dtZ:Z[3/DmY#ut@ml:U,e-r)0J4B+O6.gnXshN?Fc>ich)i5cH.eZm6Z:d^eSr7mR0X,Z0dWrE$N)75ll39,`-oMOI*66_98-Xs;\:;.X'IjcWeA&F#HB2-26H9AXPZCNCRle5aY"_S=-7=[LS`=)1&,BBL$g%i`aGV*R@Rm>-H!NKI/$a6;R49*g^Gq?5ZKgt4?CP:;'ArJ+F&#KjA$A;sIn;IrSD1P=cU*;'Bp7ilFTHoYWUdPe)/EM79_F6g`ISjfD`'U4N<$F0'QoA.]n@]n5-Q4##i.,Sg)P-%&?Ng($E'K!L&`OVCXD%>'nF!++c%An#Dolk.q_3=m)sV_/LIPq^(!ss1((kL"Q,9e&=["UC\%>@"/DDtI6K'U.$c,FV%acL&%=20uBTYTlucN)]P7G+N)^i51MV:bMFp82M@o[TK:aXEb9"0LHij/S^RO(8/jZZX\;r1WmGF15kR)']nC^+'kh9Re`,>P64E%SR05(X:]@))@KN:?Fp/LMn(5j[.>7#+O5?h!r=B!t\KPZTBl5L_Rq>'MfuS$/mEk3nCX=IRTb`5[9mk*-a4;Q,'c/#lb;LS:Y7.^&>n[rY%MG$NCGEe>i1L@%;nSDr.GHO.FSb=5d`jHG22\S2@DjPB@l"_\\"8GhE#MJb=G),dJLQQ)qaPCM9X'6BA93D>'!k2blJoUFGCRV(s\@h#MFV!5Vs,PA\AH"EA"bX+.daJ5q^hYmiBZVCf#!j6([#d$?dtPL)"`IVpP(?21fKIaj,&H?aGVI?`\VFR:XUW^*=loK5p%I-A]Uf@b=+r6*T6h$1#82Jn##]_3.t*KT3uUjE]SXHt5C^bteH@E2q5&mXtIP%]Zu%p98K]H7#n)g'o@'uMcB0oRK+gZQq%N^,6!^+&F?(j%gh@6(n?p<-hAE@():l<:=0^W"#1P%tLLIa,d,VXa+UIe*6?N&h*mCj-hX/h[c.,cU;L_muBVG#_2l&8@";\BYc(e3)<@T1>=R5SHKo$r4O-f>5dU3Z^\Uki[n`f4`lf-q[c/&$1W?&PN0'%bp#Qi]kM+(TUl-rc@]IWF.si"SqCAIFRdg"T;B/c:/=j-j0Ta"3P=E@jb*/B0OZWeIs+s&#gIQN4obUZ"'Sb\"b`]%?OpL]1WKp5>MtCU+O8Tg59#]JQm5t=\,.,5!K:n@Q_WdlEb3O)&:E]-l)j:T]5p5Uc<,hqJ`Wk0^S%Hc/2I48hJd8I/[E`1$XYe9AAYM*nCjG%ZU!\j^V!c/o"D2*42n7"gq]Q>^;d:h$Btf-7O/">"Xr+YIK%9o&J[glt#*31')tO_3h&eS:E!#O,1CjF&Tgja>%D"[RA,@a[5EIITl4`bi4?pM`Upeo>HB&P!5s==\n7gN/pR[q(B#%qs.dB1*;VZiJU5gY\'lpUBBQie12EFoW1g*a3Toh71CRW=dk$-geDZhP<40;hQl1eC*=&u`?2>?j@cI*"Ef>a7@FhYH]Hi=Xm0BDn!m!B[Ucq$)"g)EE'>g/SJS>msMP-SB3tGCZZ5Cm20.1UZ*!pR@SkejL@TB,M\aNinV)A0/N3['-It+G3MKaOR)?`!io1l`'IbuW1BKj^H?g!h@/;HGJg'Ck2.@MjVdnefl&fDM'fPW]f'_aXV%QhJaMo6Z(fL`DIK"hQ_H^#)-*#fm<2&F*W$A\i_bC0LcQ[Z(uSqmNEjGNa5N2bu?O+5bCnJ^5"?=U(.jaOn_!m&!g2Ks@0*O)lm'enP6K!o"sn('qBgcMKpcseq:)TjZ)6r5F5Ng[rG1(*df:K(.$=^9TR42k2tPXUVb1B`>QTZl_qFjfC!//FpU.*bd1]DPd!jo(T4CBUmen2-`!k2`r8JX5[OhFFHA+.;7+]s:`6F$!R-h>@W,Dmo,N.mjl^9Y5+"n*`'F*;e>1HqD!kj:uV.!(sAnYVAI_F+CWje6,C9[g7*m:]qG59SN:iPX\,Er/X-.K]=_@0$@DM-m"F"oJtP:i)nd4gan`+[%*Q>98\$G+#*M+'ItiIO^LibO,GYSVM5'+2VS1V!*jm-DXQ@_fSB12^B^?M=6!g3ZqE"=s8.6AY*3_XqDf;?Tt`P96\:=:)+1u`BeAiJ%Y'\KG9s6BYn;GT_iM)r#Knq_[)#Bq7N->*CBBOJ"6O+%g3(4\V18k+"+@5#jo4;.nE7m96[@VY<?*#et'M/2S7#^3e`4'\\sIY>T)qK03iu)kf)+2a.;N]l7R#RiUA:gl7hJOlU,qE_YV;+2H5.PSR[H:u`F2Bn:.[k??\hphanJ_J@A29!`6er#!k#c0WtU#@5>=3,og6-]>*9OOD!CX?j0L3LEs$1Cm+kG\u7&"$BU4.i]qg6JJY04mLZgM=qS5>hh@;""7E+c""?-:]269L\!]bTa)4EB_Hip*g#)-,\OjdtD2(n5p!ed'Q"bq:eoj:jVE!USAndF_tAJqpkVs\B^BZSSM%arJQZjHra!#:CA+NI4:e=i\M7J,gm_.L$7F_b3g/=U]Q)F:=P[KHj=,=sH0L4\Yn'8#q6J4K[!c5iJB5e#MS1ef"Ggn%TiI(U.$Qr`m$-_15O#3sKok8=*.HoNZVN0F6h\)2)gUQ_^ma89NZg.-cKk',@S3CN'[iJ#OhY_dYIJeL>R%HD5mir&(ZYr4Vil>Z/d;*a0H!+'JgZ\Jo27Nj/I+7PT+r/I2rLP#NpqQDAt=88"G:UkR+J,F],[ii#ps#8P<`tkX*+o-hY:hDRM$$cCR&ui0YVc.=,/VP"R80UZ$?%d6*\F=6W\ZPdT']1_fFo^43?;3d2BJ!FjdTR_;kSL#mq&]4!b\S_St?t%TEKNo)e[nL<@!a_lsjWGD9fnZ)l;^r+jYs1F5tTm.i?J3"Ii=f;f7WFiM^^ru/5>(O*(WTQ,i=^1M@X3@$"E6&@2Dg`je*a9W1'deQTSk>"ou#\D.l`Q(m'P&g/eY$WBm]\F6FTMRC[`R[a3'FX>e@J/QJn%T!,UTnmacg?LSr@lHJ=&6gP"Qcp-'tE&fGBtE.ehS-HX<*V69=TYeAcqg2MTT_@]3"f#^K^"7nd;U0eAjl1a[NFUEFYtZV)kPjVPkMRPcp)\/#1r.jj9h5d4fQI3B28fSpa"W+%_@>2Stdp*n;sfnDiH8n])gRRDBEIb*:iDC\$@O!(m-o=#%5V*0Sie\+brdb/)JA*d*!]$pA?"nT1,A#[IO]O$<3MWg0(E7AkPKhB?I;":$>L`KlfJ8N;@25_7XqhTD=HRj0:.BSal8A*A:qoFGNjEHLn^9gD'rYXt<9gU*YfQ!Oa#*+-J:/jS&,JDD;I5t`m.CZ+_3HB!uaMQsU2IdtDlUu-0*3_bk\L<<=Q@27'2b>5/gF@rLU#WcoDdp4Z7-S4N>DV@MW5)Cj-)#JA)?F[UKlB;VuIZAkB3nPi!lj5_s"*NId[+pgH<+Ae8b85e[#b#Ilro)lmu\p=8lM_a*E=iDj.PknMsuk1XF#3'6QApRrZN60?>i(.*O!'#Z;1E3`tkMIQbJ@L993j$Ur*`O_=TJDpNLT)1Z38CGAPC^QGP,dh`!'T)W2C_&t#ig4.^8C(p__I^h=dbO"!ps*7P'nhll5E2e(>b20e*.gtVn`3,=2$muREEUdPYc[G*M4:k.H%ed?W2j'K\EgZPC3[*[p\#abQ`0_t'UOZr8ZP=ENr,YWRuhc`kb6=<=os)u]I@cWkbSnHc6p8?N[5)L3rsjRq2FiFK!ZFXnAKe9Kha1uaG5Z,ZrOZ]VW9?TafJE&utu"9qI*Q/d79.CW\h@u=1B:Bi:AHAn5.7ZT:-#?K(u6D:@4MA&u=Q^/C75K20NN-?mm@p$-gn;k3VRL=hUmS=?:Z"J(VmDu/l^]&EtP`*l$X"ob"RLaOcI!ogTp`YQPM"iiU$scKi)N%]pmOq29q-[@:$U\N?VqE6j>,1"I\F,"QA9D-]pD/6AbW4V8;>/!a*8\GB=cMun.//B\cG85omb,*4HhH;G;jUk5#D4(u7g4h)i=9eHj*&/;!)s#-JY0!KX8^W!LR4(&'LL=eDlKI8d^[]#*s0GFPr,-TQ]fCgP@`NiUc).Hek8d5!:t$XJMOD6f1B`40oHV>k"CT.T?#N.(-.j&^M3A#]BQBq^E*Jp8GYOfhr">43t;/2N0=-:S/@K`G,:/8gJDUPf=uD[54=!"m=44Uk4-kkq%DN#5do!!8:+$H0gW_E?kb[iG)I(#^GelEEJYjWm6d0P8D^6pYeNSrkZBJ$VC>:*/Ae;Fr\pb2\SCQ(9O7CZd;CgUdb+KeZ^q>;XCX.Z3^!fmoAQe+\BZU^];'k%-sO+Xr@2_jAf,-+i.T7LiT8>BR2"@duJR_2aLmGtAW7>-*`-bmNJE=#aZFS4kJHnK$,Tma;n]PGX\^f$+brME6uD;8?NA9f$U!2W,\*]A`Rin\_gtfZ2-h:mJUT%c$F820MDO5,'3EXKm+7','V*L#nq`*m4:D@/2K^N#@`R6OYA7ne0Wq3gJQ"Yo(uf3S+\>n]TU"Gq?VTMi33[1-mASM3Fec;Ml@L&^W;ur`N[t8/`6nL`pbPN!Hc"E,$[JJSO^4Oh+b]50soq)Kd,u#`+BLTFr)#[KKPM'bJioYC$piSC=i?[BV,o^nlATYM=?>h=("$L knPa#lZB;7hpRiKDS-GTdHa*?`UD5:%HPN2k[Ofu"VN\EtBZ5_DPZ!AW=+?9J6,'7i+9''8&u*?s%4/np==_$(o,mel%-YTNX\;R]pGuoqWF$as)68"eH%V`4g/H!%PjjDqqE]X`pceb('\adOM25XjrpXf#:c&dX^Nfeg04b+Q_Rj(/^j=Oc0GBh%5&HV'%hn,ntDDdD'Kp/0S?i9mB83jnRje)k8tUSs3TY]`1.BX-)!/$-s=R]e^Z=k\!0e9!8QbDHPYkP.d,L-_dVq*lXKpGa/^)IDE$>JU!c#ZV\o!PXXBe,:$95Q4D^5meajm*r7cs7mNgCjBqF4h,"djJRlK['_8-/#pK!e;L9SCfY_*[2',Sk)h?I,2)/s)j.=D@;>RtC>(]*.>U#Y7AYQtE5'[f&UcBeo(PA2^LD"iAg\o]b%EDBc\iQ!OXE,!%[cCEL^uStA+?0K;99a%89UGC?7_3V1hfhY2bRDQr$/kmW#U?t&e+Ch`kfP@=1q]EPF1ZHkpN)s]=7MY^k3#52FgKs\rB5;!eZM7\mV/-Ae'#"F=Aag4K1^l%\6tP46BQ?Wilf_32uee[J5901;rdRjg:N.,1RN'dp2qO5bK$n)"8SaLDp`^C2P99#NQ8Vig(ejF_e\ore+377DPm+L+)]BMG",$nKr_YH-#Y*4Zm;fi-P#j,UH_uK--)X;\DIUh,=A%%>)6kaS!q.Q2aK*"[SeRhTi@Ne1(91+EmdM9&(UI5aX]LlC:<]*n:m=\=q^)h>(7LQj6F*Gf)4+UD:E<+ru0:VLrnh?p5[P%OUR5+d-W\s&+X8dGS3b9>Ip8co^i?B&aiNI'$YUIZ:q9eBe'+>,PFl<2ZHkLpTI(fL_&Xd#V3H,J%etS5Z2*!^u*Nc9s!.[fD[C5dk.Y1;I%_,V#2cY\jC).E'1,DTWlqUS23'Z=mL_I`,6SUF62h+cXrIEl.ecrOjOkk4X/-5p*jN$S+cUs,S99p'aOulSNO2nqeCp"$<0FJ5o$TIBF+a(rG'd"CXI+3SNE,E1KdtX"D'3\aq2@>%6M3B$b#&d2@,&YBbkHMq'Ld'VZDYWL0XF;mjD"U5@M7@8UgPi_eMpF`&cb`W5#]nmji4`XN%H1"uYn7Z*nAXQf/d9(S6Yu/i3Xu\;08f>\n\9DMUGNp>1mHl:J$bHkT3&-qZdf3?^H-kOrhn6@ot/s_\F//Gr[6X-$M^ZRhlb_cIs?:f0!CrCHiN]h+0Frs[rj!%ij?`U8F1kB'gj6i/?k[56A,=``$lW0(.sf2@Eu]>$KVIsD"C%q?F4_6g]c,)(>ilTMa;.\8ofK/S;>^MHQU0h+NO@n:k(n(?uUPCljQ!4K(9Jk]7*LXFNdsJm0%gm#05`Q],5SXJfRq"Mtn/<$(&JLEN9Y%.i<@SZsfmP+M%fRN104rrqmLtE5;LgWtBUL$ZQAT'PQ_nUhCESIB>Nn9,Ki;dKp8&OUiiEfc"ID$]*Y?![kj%`enq+Yf[=W3eYhEQZu/-RU9p?WO&A08Q9;-\*!a-s1?mi,/kfOqF&V,9[K#%V9To9RA23ra8FX6jh/WL`ri.'?)&hY\V*3E-V\A5=1eP+`r#UR3b7_!ttl/4;_f;rd)>)=Q\58fR7?9,86IHF,./4t)q'V3-:pR#O'jXGBFpVehj<.Rj7@WkF]?a@`*kdm0[9S/E<4&La+VC!OQ3j]3L[@OQV_)0iPd(:[E`nF=_ShA.3%Gj2\CjLed2#Ci-_rc0MbVL:&[F>52ANRSW#YpX#@RP`;T)?O!o!pSBZIeI/qr.(+WljLqNn,h'oI:Yi3o$6+gEdiK]B#CNQIGnlnWD\S+*+XU2iIk7)t4&/TkZi][S=Idd702?&)mO-Uo*]*8N@cem2`E#U)4F'R/!b$Kc(]?0-Z0(s$tAauA!mG[4G'8bk3>+?,?qDZ&H!6E\hC&/$`\(IQkNW)$EPDQsJMD(NnQ$4ms8eo.B`0?i0'^)#FS(rB3bELYHq+_shdd9C;#&X\XL>"!sdb+JjV04:-5j;JXDhE2a[fM6*S.t$-8$\jS$(QO/`,gk%/5r'aK5\]%Ok!BP6U1M?6'.V[AT8>7%Dan$sF$3@KX"f3Tk_sYab^?mAbJf"2G\!u;)]J]U.'dXaLNgDXYn/G/]GH"hHDS"(-%U)B]k=Zp7s5Jj0)nB]+i+TgQZpPQGR3jhdB(e;YE9e8u$'p*PtfK)n)YF?nEUXWu!@(-W$]:X,noRJ)?u99Hf!f-?L:s-fP3-UnKiFPo&]j\O'oYtE,7m-[lGEi-#aiPFi!7(@7R\>7+s+hJ^[*D$p0b3DQ7f`BS3-']jGbb3C]9h@Zm2PW1+H3pBOCf)YA6c*ao5fi#7?M59D?".\Ang*(8R"N;[_!'dLF#6lWd[5.cF#pG6Aqdm1@h<\YcK]s.6SW13PZp)Ht\1q])Q0h!-8O?bp?WGJ5%TLNpeXKn39.jS7aG/9,?MMW=kA7Y"(rGbS50G6e$bA2FC"7$8*#;&7U]a#0'n,"f#\$`&pP",6"ob$;]kU7ZDre#JHEhfMF\Np7^FM'<3ura[]T6GsieX/K,"E7D9#U`;=MH#+f+9a*&K&erR/$8GHWCiB42.9a3.?-?A/Nsq3FMs?n`Q1SRa!Y%Dr(^)[G@@ET6$@7-pLH8?_YPC.h'5Xncr46HIb%^1Qj(i0>i2TK$n,56``9O?HVsq@Uq0SEB9:,E0849'.,RV54[VY2V:\jK];[B2Rk9'fQlCe=0P`?gYGU.I>.Q:C-#!lXh)3#"/aNQdTP&pk77a(s)^e4Nmj0P+7-QGc$7m'aS[9#.<53u-'nUKZWC>:1pKE!!b=YZoc]BlpHKU>n!/A_DY@Xp_J#?9/:3Sd=_/V?k>63_uf:6LL9"N#q'(u6(pcAb;lpEHc9?H`L"I9+M;j2u"2X!h:KE1a*Ffh1=S,e8Zt5f$%GSk3mO,XK/'onm6GLl4RlXMsr>Qr4oo5S"M3_6gnl9nl)=AKbp27.s#1)CO$%>SD6O#!"=H?bW?:Rl6cjN$;@-@p/i(`QnNg0u+=b`r1QA"@Y['[0`0erJ<`VAbpqgV%"_!TaElW[%n6,.Q&H!,oqEBH?i-a1EF5!Fa`I9a<3oGF-Zc&.T?"oa>F@9eU(#Gc*.=,B^YqFQen;(mgWW$E]JeE\pJ9&),E)P`S!OfBiM6E+9\V<[:@XD6V6[JXDD@/#BCU7R@9"mATP4\87ZL]!b$$[:p]`,CdUM<_3lOD"T]Dbt&FB;TG24acPDA:a5h*;rdpr(*"_<%1-#NUc\Xn<#>"+<#8/)Y)]5Ci_<'LMS8!0g87">8XD*;GaKU:nY`/S_5Op=^Q2u:U2`!^''T0IN>j$k@>83!RgI500qqi1,',K;M7YNJ&QAfC61Eq`Mo:Zhn\^K!0u\6%=s!-tP);&TbL[M^rT,?.8e:Gu;8G)/&t"us,5/m#4W>;s;g"RD'qeZ4ge:fQXAWYXD7Co1&J!GAfV:o"OS[]U@YZRb`4R%7%o:'M5T;R-[!bi*Sqt>Z[T2:!EN[5X3QnB]o/B(DOeFc[rDh&t[;T>!E\G/oH(mZ@'_\R3!U=(et)D5r[l\C9G4.lfIf6:GGb,Vo`^aCp"c(YB<_D94R/^#H:P+mB>V(3%UjiPBGJ"p]sP@/@O!SoNj#Q\cL?aO,"k^@[W"LG8,ZiZF8/eBs!P]Ji/.S&7IB;86m;F%>=O,Hc.%b[#hXI*Lc>7/Gc[n5%#JlR]up_#H"KshGEX;E&MUr@]iP6jO_G*>7T&E&//;h_6]P]@#)pati]#RB#_k,Di`!SdZ\kEQsO;#oDfaP@UrB,MaOBg*T'p6T;-7$\=(73bc!"As.H,t=Q%_317KTGdl'iODchOC35O@\lphpN%@*?H^-n'Y;cOZt8N1\Z='F'ODQO98_ALEqI&$'i*MO*>Q>cI6)DiZ]p3pEo\Of>QNH7TVDHa$o-n-W/F?@lRha4m_+n4m2BBc&a?_4i!O#]bbRm:)`L`DL+s+#PS;;,]F/Jc-jI^^]GWaD$76&GPDfa"_1.sZ*AtnP!U.%17#c]Fkr0dj]:JGXb/>jc!kjD\aXJOC,R9<*`+9<;4pjImm8S--]HWs3L@sUURS9,OPp4'\b+hC-/>=#HH]C/X+DR$qVQj>8i/S7)J,-*1@k%#b3'G8(.k:CP;A$tN,18paMd].-#q!<'_EC2?@'o/nTtX;b0F>W88FH]WGiW"dUL:`=M3Cm/LnXttHdrBRXb[WV<"KFC^]tG>6Q&&>-l\=h+ik8gW!P/FO!d3Q%))Mc@?jX#*b`iq45ZG0__L83P,o>SCWYt>M-?E$c6<_3W11!;r.OEptN>oWa-#Y6ZVh6[>_Z6I9EWd4ZaA/09(4A$fGqYEPC"i,F8dM;:J4V>g,iP:&DeMdJ:t+,264Sb@:,(=B\[L'*/'][\q[ZnG9QUO\#&[+.'5Yis10-sRf+_+1jFedX@nFNX08%hSL*Tea@nYSMTS@XscU/1?dBe`W>5B9F$K6X`>=9)c>'f\UH*928WcS1k9:[?/Do)(rcSNr04#N,m\T9N[ZG)D$=nHBfPo4Q/'#KWt[(AsPg+;<%Cj`Nj_fkp:U8#44tXR+,t!ISAk`MBs[]-1]Jo&HO/:\d?sqY)Sj>3#\Yj:6KKo=F#ck5sdm_B/n5#TY7.)*?9Ejk4ua"(Z]Z(CJ+]WKp!02^2@eQVbZY;R:`,1ghm<&lchMm,L'SA$;f+.7;8C%$n70A\r)h'Ta>S$5"C"()XKbEgIj,[=f&6d,MO).0Gb$*Nc7H6*!Rc"ki&DiPa*/`<\]"3$jJ:Z\qSPk,u'3+1IZM:0Ke?V@Bu7UZWf\$;N:ML9NJZKd2-T;$M*a1./9Cre=i7(hc63@?BK7TTBQqr4tME262cDW8j2\?Wr!A=:Vj\l7K_H\i`S#,)juB&P\uf9d=(r<$CDGkmotp9_[@^jG*/aTj6UeCPPKV$'LaH;X505HgPW0GF^"Zlk1.1C%Z)N-q\`@)Ol?c*g5)Y&o3Bc(d@4].&lrm8npr>1ncskUX[C)QC+?).18A.j>pBGX56_s[_XOa/D>*[.BGY@Ef!>N1i4b>=pOZ0[^L.@G'4(lH,,e"@\k0h%Un?D_YOXK7ET'AL5MgE^9cl]3lGhdbFO0!W;s*/FL7j*\B8b2KdmnMpV@<:Ojf""F#CllctS&3e<66J#11rYd`T6^hR-)mH'-?W&S-&8iACa>gZG9^FiQAT.)k2Je)M\P?hhCbj7(s(iE-")qZ"UM?7_t'NfM#LT:RBZnWt7DY<"^-3oYY\'D]D\J+;E=m-h'j-9Kg9!^JO2"kXDp!4pSa\"Y:JLYYRiQ)*A$#Y;-pOQdA%q`p/GpM,ioW5]#OuJ2:;0cBY%P1R8C-X3ZmCV6':cQk`ua,&iJsA[I.<6Vq_%_RoT/K'e$"V;hf8;"USI$AZTg[6pZcJbA`hT?s#H[!jO"0W>cRdUQl>n==Y>RCq"tB\u4Dml7b+nJ4,[bntq-r6i.C`.&V-c=jCMst(bJ,*EVTO=/W??-B\l?6X),#5Ud4%)R&1^XZ20tj@BK\T#)B0JEpZacAL-3bsZGt69Hmq,+tHet85_Gg(aloDT_;NqJ9cB"@,HHAAde"]$aeEk+k&Dt,9g-Vd7dE52JYLfQX>N"tUO%"7VSj7@`kGInb_mIEfe"!D.,s_c[&MoRh0CqA04EF_&"Ds2D(e@q6I*Fk>L[%%GDMc6UQVs.6LKS.P*:2DBul+V(@i4jgkgd[uApm]!++RTQEU7rQKT]j%1sB+a@@+/ooH?G;g9.(FT9R;T0+96'h.UUYZ:/CRVR[N1O"f([?i:uK?dd/rMK?^sr8Wgje\VXZ8(F[6!mVN-dgf;-HnHPjG@/[*UC:Hq1)Q/tr;_K3i)@eud&iON>dd-*mTKRfnGo_WWhh24n5ICf/n%j>[`TcA0Ni*+ted5G"ctYm0S)b0&ScdL4:I)pr7q(o54!R;;%`1m9V6*99^Y"&DOhP<+5]TcH:N'987"AX&7$ZLnk+9LA=,W3Z6Vc3h,C#FuTtCb(*sTS%.#4fDUIgjhhA&irZY3fanRERNk/-uj)JZ?;[,d#QQJ*-'`5U\W'Y\R>#ffm12012kmLd(:Bq+MSud_[0[ME$nAN@P<'lAYXj;-0C-ZfUK31oJ2[hB_;=_G'as@-sDgrE_M[W-66Y1dh)C(EN>Kq7[\pq@qB6,]eJ#g*M5NQ^>>pif=YZnVb%NmM/T$7\(#hODb.5"Nd;WKLgFdhCN&2gBfD5[!m@gsc'/tja#X#WmZfV$9=2UAgHJJd-2#K]Pk&LJjiqY?j7a$t13\mLj$`>ROUZB&$6N)6_2L^sKq`(R%B,oMW$HI:Xc,qq@&M%ZT8Z>r9VN[lSTMh19hQqQDf/##mHn("BdRL6lh*=>8d36f=Q0*8FO1E8,VX1"?^RJ*]A`u8pJm9.eXH"X`A!;0.>ZC'7Z7f#:f^lQKSaR?[L"hR#XG+C_s)6KlgT(=cmDdo(EPSlDM",:qDc6Ts*q>E)5cukdP3JuQZb\+uV)QgR&='Q(MGng9"DCa+Pg75RFcePY=ClfDU)WA,YP+Kg>k6V(bs,A=+l"Ja\El@m6-M>)E<9pdmIM*0OAQeKYl0>nF/JtAuq=-MH,/^K!-Kt/VH6"AuJr/Faa\\:6+2rD7cK%*E)F&Bg:.4`R^+oQADq>6M$JQiN374YA\'qEPdc$lE!`l9Wn[B0ga(a7Q1!)>n4(+(i-!TMR^'.g%\Kn$ufgG;q:UeF%J_Poc$KkT]>'F6;@I`H7)-WoDZT_>o94+/kqfn4HX6PDF>sCN*[a'bO=TXV<3Uus0/=+js_C^kX*BH;^OAg3h)'eLsp!.@I*hVq=NF`W_AnE4R-49fIOE7Dhe<(mA%.)TBO7EY>$o>LZ/FuiA'#e]A^LtqVt9+FP&iXaa-"/_T*>GhcsaeBjBg^X49b]kTo8:Vs/0dkVp7"e%T@F]Hp3L(1^uHu/PI7H9a?J/&*Mmg.O-BB48*LHD6oOcV'o`qtDpA,WD4JjS+F.>=XOe16&FaEe5[H]lVH/PJ6^(UR+!g-NENDgA#kFo*'Ju^0YF;H[m&I_#i@?-A4R;p:9S[A:d02060gh1Tr6u@7"ZSEAC=1P3qAgI>\59$_5PF[or@'U"Ml?*>=5U'ZnjAE!ss$OhcA(i,L1D>dX)ND(q)Im!9X61oD6dL3([Zd)8_*$+54@?->nX]f3U3@t,Q;3i5aW_m30l+*[7D`V7j'!_s%";,XQ;S.$"$O$laCp=%0O3/nlZlo.KHaS+)[9\$]dR0&gkac0F)]4@dISn&toP8_KoC=GB>NJdf"8/aRQ'.pF$nB4[7Y8?Aj(k$"PC3h'Nf:O!YO=NtOV%S"p&QhPtg!d;L.DrONj2.07.rJF/YocCdqB9q3/lFZCg\NH:fBq=Z88oS't2LluFYN"l%3.[`*NO5/t/h!A?N@Ae/Rgf9-HCq,m?^a9h!u[%AZbs%/L7C!n+Y%8`WC?RIWlP*kA$>U&tDlXT8W2)I5I"LWuEf+dQZ7@+o'NSLKrSoV=/e*U8jt;2]cuLO\.uJaDbKa""27QAI^>>6R>?@hfu&F=R[l*2i9H&)0dR4c0'(['MesfO]I`6o8OHdLI[$L8(RpY:ZINDqCIYk]O\Z9r9,a-O"fh07mu/:HdE6&tegiSCGb0@c4&I@I!>'5AAuB-ugSe4-%-N^Z[7*Jp3Q)n]mm'BO<8\Ia038=olME_i4ba$dh*h,##F>U)$?8pIS*2UiY:1;KS)gUA;aCPGr0;.DlpBL99uVl"N>09d7QnST86mWrS/?X\)>drl=O_^!hhJo&qo5O@`#\g+P92R0i[e6@F?WfjIjG">6ibO7)R&Z%/mG=,S^b19r+6"*6J"fS&FmHW8V7TSS79&gOGB'6r+IeKu45j&tnW%O!i+*_(69J;goBZI3K7e8sR;._u/Q%^cS)&'Rr8,:<0!(dDP22;G?3l[e"Fe7A\lqZmoK64J1Ia711*YR5DcS36>%'0@JF!WA#IK9ljLYGUpbhE?]-\(Q3bm,a]%N00l_M63@/2^"#Pacr9nR'gc;d?GD[4.%7!")O5,X9@dVu*N+$WF!CH;Cm4"gjqCRJ?[=gX;fbk8\PuXnIH>+C7M"@S]1NU]ZmmXoOIce%\j\<4,_1-(Lfr_JI8$$#X+6Y2)u?q,7j<4PK9()+h:&l*'RG/i%QG*8jb?HtHMA5J:$B=FKb?@?=sAEcPZaLtV2E8QWQTYtE"\I4.peF"2TMd:/]l6Y-R2Yehe/8;FUNd[/u>3&joVI@?u/O/Ct=M%nl);8(;V^Q-_[&$qgmhBj1dGA^&olA3[i'=T(S?D+T7s2I&a$e^_0s5&)oA'u@O!52iJZ$W>RH'/LY1;`5jX#=`jnk!1;G?Ydl&9NAe)g8>#W?H$^SIV58.\Yuq6S-ON2DPsWdRKeYLWl&^!W3S0WTkXqmGVMajI`dCRKb>V#QuasC6Fm%1>\"K)t&+c-K7%^M?P<#&4H$o@mSV_RWIQrR`7#%SJ"a90&d;V:J+X/^KrZC`*06u,lFV^0o#$uWROf-3I1#r#:@.PZL4f]MLer*(1ru)a`1dQ^>S9!A][)84[D9.P8CH/VTMnYmH/Q,Zfj533GgmVkC6;)Zb1pVOa,t%9THq06`E)%p-O4G_]q"@C*T#$#+/_!n6$/f'W.VS*(4Xgf_TP4+;'d!2(ae2_pX\KFCth_dE)I`QSo,Nt@4A"u/Ru%MXLL-Lg@)fKWgNPJKXQ!@\_Nn-iPO!9$n=VC;d6(J-Lh&UD/[VJ5$";c2RQ#n!R/,$pe&ioP^rqMlF:)CllXTZic)*PGZX]mf@bh]$>Sc.2aIGis,c1j/P10IV8iX4kiYAAnH;op8]Tk>86/8f]D+E_u<#r*6_J%S+3uN.ff=2?6@]B146a_C\<)$T@7"Lqn[%==B&V0##Z=4FcCY.`FTG&u?Eb-B1*i!;6T!c\TEoFWkJbo2;B&08'+D@""G/!"]3[5/csa_bKfAYZhPT?jnsOu2qc116?URZp0tFV0;h(%YC9?p7I)6Hd%sB^Fpd-l1UI&.#iAo]$FcI]KV,<<9OThU3nJoaml](*g&]I]dg8%`^-qV,k4.<6]L?bDp`U:D?W@m7,[a;o$_e'ZS9]+A2&Sk,K9d'eYLY7RBT`D\5DVUj1V3!=_YUZ_aB`.G$32%#c;1CP?Gc`,t`V8m#"?P'.69$C7')%osk0dBNmmSd/E%?S+&E=@g:p"*SbY;&tue`YYi1#eJ9MRr:c3>T[#8RXa.8YBN;8^eSY+3k#CnY%N,G)kipR4!-2s-c`3*jVT(5>XjSQJY@.S]bKaF8Ouut(RpqS6^o+9:ilif&X.=c"LB?bk,f-JiB^gA4fYNRH;b86=YBnqVL"28)6[CZh#gZX1+3Cok+o)KSF>nb59G=llo\fBLA7nng6it"d&lA//a,P-$/SC_P6FA](SJjQ,%N*BT_f@eTL!Q@)/KtM4!RcD#`Bi[G8l`K^fX[lGVA#C]gQF(Q3_-f/EV$M\cTC%D21)b=\pq+iaBbE"O%O^X"dZNX3@E^,I:G=hd("Kk^.HY0t^DsRdS_O^`<8N)=r*Z;W4:k9YD&?lYpeXI"EC4U&>O%4k`j@-,7:G)Ua3Ek%Ze[G(GLfbBY&TKgs4u8_k-0V^VeXH&-J#%gNb,I6#S;b4cn1JO7d`U(2#r'\]2lV]V]^@J9\o[+J7f?J@um&&Z?LFg.k;dbnZV+-1CM-FX?d0h2L^&Od*?kHI;DgrrogTf-3TQ!^*,f#::2+2d01?4(7Zp>Re=:Oo49\e,CtFKscT/rW'Wn;'M=K*#1`eAFO6$>E+caa(WYtDsnCZ+peD\1Lq.Ei=5IE]V"MB20G^^]cWh91Nh;m,?mdO,LKs)I(;>NEh\EPNOebB72/VVVZr0;o<5VABC6m*PS,H>rlF]ZcVa(c:B_c$Rbue@g9[iF,eM)0ff6>2InES(b_VAO6.gnXshN?Fc>ich)i5cH.eZm6Z:d^eS==BCN*_SrOoMOa.Q>5AA+se6o3C&qme4A=$o"H.$0N(K+q0I\o"i#3_2iGK[F!Q_.[@KLbaoFME4;$lGO6LLtJ@,bN#SFM2SqG7GF4t1D-!KiRe2_>7[/;]%k1e\Hr<%N-@'NrG@(b=4T]OlL`@dolZi@C3Un?4Ra74TT-je"&(kF4r>[Z3p_T6/&?\o7&V:e`d*6ARob>I1IO&WA8CiLr2Qi(a``V8]A'E8F./lA^TKiL`enB#&+<8nh)m*N&/K3=h1sC1g/-*75;Y]uVgpZH1CT=37T5BX9c,LS8K'%q)Id].M3_lg\r2_h33Jqfb-"<%FJPFj,$n@S]b!sd/=JJ!VR[D`StO^MJW%7Re!NY_.NllWoK_`OfXU50^uI9>X4]OJ&,oE'S@RB2cAW?n'$umN(]6C_LTPl7=9k]+K8\l/Y7-gkHRJEYb%$EjJT>`\N7a"#-3tA710p,$DKU=RmR8Z$Crib/R.nINi[KFfP@n^C\*t;`TT+`Af]i<_'k6L4k<%_J8b;4%:X.R#pnH,F*k))l@!s-Fb3XmY-0t$m)VXG"Pq,'HEfh0M"R$i1SD$nHeq1D+W%cNAj,tgP7[5BAe"*qVTh;IRe0^K5.$5$`q?V.IUBUZ?`#NFn6PR7q(NSoV^!YOj(.<9Z4+X&E@77s@pl[TQ9:h/l`D]IoBO[a4#Y+M(^3\FOc'91>F`90-Q.7E/[s.jQgOrbcH<;kTIjI:2j55_>gX7[$DU&-6eKF!ZBoMpH3cffYG#5QVG&$E8+DYTQtn%&t5&=a;40I;l!HAL7/EZ@2%dWsQV-H^n8eYcn$[3JkO-?60qFjd+fnp:_43u&8X'qeZTU=+<&?0CG=,%0Lr55C=MX2gm^W=I)`CpIFIlAmH@5?HHO2?#2QE$9e^!92Tm>\Y2WDWN6q:Wo\(@*Nl(dHG&8j#FW%atcTSZAE!f(nBC4)YZlO">Ea7QdokoZh#m_L/7Sd2X2I5\e?>XQ'8#VCOgQst"^>DSo'O("I]h/i+MqhWB4SYEe,D^3l<8elET&tY_u&d$djiV@nZ'&[W%*0]K"(>mB1MoJKl*j&l".R[;'8C#6L-`er+)aI2V_jO@Ia\rjV"Zuh&;QcC:7-S:Wg[`Nnf[a9;R4HQ=E.5DKe'mh(.E,GgP&Y(((u3Ze$B=C#C"Vp-XM\d'9d]Za98hBTPM"<`Ys0is7Gn&?bVth))FkYf0_R;2o2QZ>,f,4t>-6)X'NS3)bts9Rp7Qe6tj7ck`-Z4F4m!L2$3+"bhg3!E("kg>W]J+G>jA$?3pFVQ`>08Z]']c7?B]#$SC0SN)dh\TA4'5i5%&^fU-/d]Qq4a8\)"CYH($rTZQQQp&2n`mSX'R2#D%d935Me5msM!)!9N+Dig6T6C=!u%Jo)0?RQ7Qd36F&Mo&I&qV;1j5A6=3+\O7_;o@g?ma"Q'XXFL3Lns&%-SukV93o.-I!6!4"jgP-ZI4BF$sOBZ$E$GT^V$jB?_(#aB?1+dOSJ-4lp!*f<50QF4FH-m*g&QcpXUV&>qr&WNoQP(0VZ69F`B(%7JWRS`n5LO1?.DOt1dr&r$"e?YX]kMNZdUTQ#[[#NAi@Jt0.ckqgD`oRSI;6+HoTR?tnW;To[b0raaR7KmP+($r>cEJN&ccP)WP#N9n."omTQ';CZb0A\F5ssFGKOH'H75heB8WDTllU;6#eqb'FlSGptnWAY(`n)l[u*=.,p@`Od1uFq/kHg7['=.VA:i8`&c6,?:o_>QkQihnSto/S!U:\bNuXr2oeL[DsPHZ=p-t&8kNGF,S"T(9tYs0uT1iaXn*uORmF"!!Y_mjg:4=eI:GpT.uX`_H-u_E8n[.;ZPXFojsWQ&7WlInYg=e"-f^Q0^hZf]:)or,U4da,u0Zj3du>.TR96SbqhT<1;!i`@,N1qtHGGVKhi:TL!PG3U^K/k4buuaH+B0lg$[^LZS$G7N:lR8R!q^dTbRe85at`8N-`K8r:&]8]K=-X]cF(4('Igi1*GTQ*KPdYTbM[rFJg92]u!@`$m,9m\0585r:Q-7RR6)X#>G,##J*CkQIB*Y2"5`)J]G.e^Y;6T57`9GMm]%dpD*CqII?QTBAD$^1]XmU/ag.KIJ^12D;=tJ("Aql2q1+qeF#X^T]ZQ&X*6loJKbekg/,s9n\h&Y1tRdl2f]H9gQj_4JBiSW0+.&BcAJ/R!D"Xs*ec\-G:b.Kj$#QA%@&H2bS?e.=k0"cd0[sd)4/)KZ[F%=]HffV::CEY[GU?5hA(N#duUpSm#cT@ac-#SG?caC@[nCsI9L.IZ_P\/CSq([!D27$@G*HW1%pBN.RVtBYk[A>Z6aeOQ!`5@gLNoYj:E1]g%+S9]r#S\OX@[K..]0(_b,q(`m7+=)"Y`26!5_Q!GU$DXV8k9r9S&)0i[7QHcbjPBKdbV4_>CbBUEj)Do4Jh.8n4r0/ohHh+u;+V",Ch1c/cft.]5fff]S]\W2/LUm^a/"<*U\D6>.g:NR^!;QI``:OMYhp=C_6Db`7NGQ^6)Tk$cW838D5uDID`iB;+7tP)57^HX%E!"1`>)sD0Wm>eo.,IZO>^AVh)6,e,E>f$671j'D7GcGMS'>CU0XH0IY(].PUq>1q>])neo_BT$54Eq4JFPCN2(IG:m?+."5RuBcnolaF*h4Bo1>o4?s;+,STFp0(oTMXSn%-USsPiH(#u*>hsInBqWOa?n+#hPKD*^NMtpX9C5p2!.)$DW<_797fdTd!4)ioj0iGbg8k17#I8l'&.!\#\8UVmu#P_,I.n))6Kn>_'rei,U55R8!JV(/[C%PTAm&R3:XDN(XS=6hVp2djRQClX0]E#T9+tTOtQG;FcL`[%R06.DH%N;*AfX,mUBdQf$Glii>nVL*@[b#KUrsVNStXHE^5bV-/A^"\-I&[=e#*o,[J,d^UX,E&Q_bEe>j34_d!G*'YOI9nDRBPHhPs3aCp-Gip]ake%/DeJoWO`?KW'J;]0hF:,S2cBtZf"!O(Y_pM-gO=7Ja6f(us\gMOELp@gh)*IlB;`[q,cnC,BaV9i_r4="_^3a#TK<7='BYq9_EWXK+7Q#f=>2E>e!n`*dME9(+q1$)Mk^`$SpUL:3,-ksM+?"+@MK02'/4n/#:0i881C3n'SAY10sj&Z0n9T-Q0Pr0i/asVW)RS6maj_J\4q&%Q"3o9eWWHq+Z1Hqh`[hu*i@=HQ0[)(mcmj$dd08es^+=!ZHigpdB,@3=XfaSS"2Xp*Nm/YOJSU4,KIE\T4*$Xf@IMh1c`S+")l\`maPNM<--bg5[3i;G@RK3(i\Fp7!5)HG2Amrs);OSNKF#Zs5\6fQqMkpgXoGXr1I:.T:qWYK;81!@6K1]SaNmW;p84g\XKBjn./@*d*!]"NE:;cXe^RrZ#ksrm:PB_?sof;BfsuggNcK!2Yd#"OiVkmnq*DO!60W'^ZXDg]/#7Q*JbV.0j*>4]I5@0Z;qCcr)Rs)L-Y^GU&jLqg5F2"].3t\(eB7hG*^>rD;f0?9Rm7K\o7##m,U[E]^?PQ-Pr8GB*W\p$LplSG=/jaQaMcUA'gZ4?9O[P_=kqW/_%9D7g:J@W5Mh(8oJa6Z&1)Qf[hG=hlA;nLJC^+"AB#qu+.u@G0!*p@GI7YG)JXY.nTYDuZ6-f6Q`4]JZi2NJBmmPK&A$1sP<>YuCJho7!5Z)K):HE;>^;O>*+$Og'"*$ANG]C0c^dgr[)H&^d??q6JDG,H8MOS0BnfXA@>?cn#lJY[.2r#b(n^!X:W4mMbAuU?U.N)a/D0b8U!E?UHN\Xu-a&_3K9_6#4HcSR6$!B@i_9%f`_Yf&7ar[8are65TUChc"bG_C1kA-\^.a/"MfV5*YIt7K=[Ygam%n>8d]2%K8YYrCOO%;VVQ5qNR.o_Dkns('S[l#TSiA&L4T@[\4M`C,0?*5Il#^M=iI$?A$hgmc&iG4(.c]I??K!)6C:`E+o0#"0\-&RIAY_IVXBa'9dBR]C9o3)$$f=5Pe1Lo9l7U]r_dnF%u\n7Ra"OO_kQ%e,imYA%f^qbUC+hEp%J1)Wpa]+'i+%jh;._$:[=\s\S.NU+>aT\\eN"l+>U?K'sZ%u4)Lb0Y-Q33.64f#Y/PE<)orRT(L`tgp/9*hB!jc*j:[ig'oREA"a3V!U22=VTmINf^rPLF)4B83nEb\;V+ZO/rGu4_5IfgK^[`W)(MT38nT6D35(l2$PMf;t:;"5@A0Z6d_Zi]bMW6pSA5T]IHedOKX?Gc)qEuU3UCXeS>">YnEd0e+GE1ph,FpMWU!Cge&MWuXN4f+InkH:Mp2t&%hqZhnL`AgmHS99=-W%5[C))Mr/1k5Jm3[bf:HWOdM5;ODHnG)jIHh'OYA=U#FW@[&`Q3kjbXt\2\p_-C`II8"7+rp$BNQ\X>%\>HKMFp&LoN49AH_;DIn-4bfkIV'd,le_U\LP5V:I05]iNt,+cMQ\@(B^e<0I8340*d>)leiT>OB=Y=Gi(4CjJL,0`?blN_)<.a5V"rD^rf/EK5OoO3_Q8YcU6eVm9OdFN8:l;`n`INra1]e-b'$rN:1]aJ=VFDAO]k--k-AQ:qKWF+a-mik4LBuMpM8BCAV?umsW,I.@ucg#U^sF,c:u9$A7!Z":K5q3,5f*k2XQ[U>Za1,MEhS@R"?B"7\at9Jh-Wko*B=M`bJ-3+07*7G8sPStil4-Fum_C@7Ze@J?,9DDgZ$hYclLScru4AMQk=%Mp8ZiN1hEc7=daUORS<>IFG..W9`N(a^06;'\s8e;/7-njL@U%88_%E,^]tAP.?u5R2%kWMIC#l>DW(==^J!d#1>39VJD#1&0"VfBIA.;"].P_!M!V8K31;G6^:K<"GJ2AN-f)fOsU<>pF%DUDPSY$33;7rnY%iQOgj3^WSi[0C[m9j!\(<'N!oqDQB[M\9IV-20a"Q78;n)=E8VG%(<6b[3_05'J^q=rZJ#MmXX0?a=NbsT,J7MIU*TG<509rfV6:eQL3%*YX);BskP"%IM+]1P+:lLY.?>pk9a/FHN&t&f8Y*XRd;3&$(flKU<$11J(C+*,Xl6,&s]0-Cr;6PVo,U+a!hX@f,S,luIG[]n.#i8(HRZhW=N9q%_nq(_9T>Uc/(+X$MIk(`&e[Hl.NLS2\BLc23cN\8i[2R?kgA*p)%&V9_8OK9tjdV,9k=D_5BnH^8#t&8D(i5o`T894sBd]$r0ka\PR??R<5dH_=j=Jp5`&`_5Ba+F#lPdHE/ptno'-96($[qHOc^.%_1gofT4s>Y-`67E,\oc'J,P,Xb(L4niSAR*V.<.[,^-S/.&fu63Un4m3nGXque?fFfP=bV8+lEk#>=o&9LnfSFI&&(dC`F9:g6bc>F2K]I[Z)j9IN?.pEe41)F)Y'1rD@.`)4oWPG9OSt9fR@PK`8lu_JCkc!%gP1GfTqoZ!e`6rlrjt6JFMg5%k]N2GmOa7-,LneikZ0@I89e/P[-,$oX4U(%oV,:lSu+dho29N4>kju0\EL$nLe6^eBp4,9QHpb6Y-pi-/KNA=)G:MM.$5$?7?AG1*AkgSNART,b*_H5-6#fkhLoq#5]ofN<0E'XPd9`^;,;W?0D[m[1U([?!TeA1)N>/BgtOMC8/D?p?^lZqk4S'G4@eJKr3uDT0UJ?h8NchMIXCTr`3+5Id5HWb\fE>g_9C9BeR:UH[^[)=o!WeG4h9baDL!\PY-Uk_\ECAkJ6#>D+2[Zs%3%TjE4OA+iA'foit;qek9rpH2L-3aUKbkk)'UT7-37@9=)pGNH'p/:,F$nH^NI4fGThESjrDJl\f/F^*kOL1(iq!-(>D5)o/N23-M"?K/7$imOe2<;Acc7EHmUMA2]2;,CF./$1.jNX`a(TNendstream -endobj -xref -0 10 -0000000000 65535 f -0000000073 00000 n -0000000124 00000 n -0000000231 00000 n -0000000336 00000 n -0000000419 00000 n -0000000622 00000 n -0000000690 00000 n -0000000986 00000 n -0000001045 00000 n -trailer -<< -/ID -[<2593cc957e2f3a19c873c996a0b8fbcd><2593cc957e2f3a19c873c996a0b8fbcd>] -% ReportLab generated PDF document -- digest (http://www.reportlab.com) - -/Info 7 0 R -/Root 6 0 R -/Size 10 ->> -startxref -35041 -%%EOF diff --git a/quilts/mplus-1m-regular.ttf b/quilts/mplus-1m-regular.ttf deleted file mode 100644 index f28fc25..0000000 Binary files a/quilts/mplus-1m-regular.ttf and /dev/null differ diff --git a/quilts/quilt.ipynb b/quilts/quilt.ipynb deleted file mode 100644 index 57ff44f..0000000 --- a/quilts/quilt.ipynb +++ /dev/null @@ -1,1320 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": 42, - "metadata": {}, - "outputs": [], - "source": [ - "quilt = [\n", - "[\"Louisa\",\"Camilo\",\"newest patch_floor_rain\",\"jacopo.otherness.def\"],\n", - "[\"kendalpatch\",\"euna\", \"patchericoforthefuture\",\"punctuationflag\"],\n", - "[\"euna\",\"punctuationflag\",\"euna\",\"patchericoforthefuture\"],\n", - "[\"Louisa\",\"Martin\", \"jacopo.otherness.def\",\"kendalpatch\"],\n", - "]\n" - ] - }, - { - "cell_type": "code", - "execution_count": 43, - "metadata": {}, - "outputs": [ - { - "data": { - "text/plain": [ - "[['Louisa', 'Camilo', 'newest patch_floor_rain', 'jacopo.otherness.def'],\n", - " ['kendalpatch', 'euna', 'patchericoforthefuture', 'punctuationflag'],\n", - " ['euna', 'punctuationflag', 'euna', 'patchericoforthefuture'],\n", - " ['Louisa', 'Martin', 'jacopo.otherness.def', 'kendalpatch']]" - ] - }, - "execution_count": 43, - "metadata": {}, - "output_type": "execute_result" - } - ], - "source": [ - "quilt" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "line 0 Louisa\n", - "line 0 Camilo\n", - "line 0 newest patch_floor_rain\n", - "line 0 jacopo.otherness.def\n", - "line 1 Louisa\n", - "line 1 Camilo\n", - "line 1 newest patch_floor_rain\n", - "line 1 jacopo.otherness.def\n", - "line 2 Louisa\n", - "line 2 Camilo\n", - "line 2 newest patch_floor_rain\n", - "line 2 jacopo.otherness.def\n", - "line 3 Louisa\n", - "line 3 Camilo\n", - "line 3 newest patch_floor_rain\n", - "line 3 jacopo.otherness.def\n", - "line 4 Louisa\n", - "line 4 Camilo\n", - "line 4 newest patch_floor_rain\n", - "line 4 jacopo.otherness.def\n", - "line 5 Louisa\n", - "line 5 Camilo\n", - "line 5 newest patch_floor_rain\n", - "line 5 jacopo.otherness.def\n", - "line 6 Louisa\n", - "line 6 Camilo\n", - "line 6 newest patch_floor_rain\n", - "line 6 jacopo.otherness.def\n", - "line 7 Louisa\n", - "line 7 Camilo\n", - "line 7 newest patch_floor_rain\n", - "line 7 jacopo.otherness.def\n", - "line 8 Louisa\n", - "line 8 Camilo\n", - "line 8 newest patch_floor_rain\n", - "line 8 jacopo.otherness.def\n", - "line 9 Louisa\n", - "line 9 Camilo\n", - "line 9 newest patch_floor_rain\n", - "line 9 jacopo.otherness.def\n", - "line 10 Louisa\n", - "line 10 Camilo\n", - "line 10 newest patch_floor_rain\n", - "line 10 jacopo.otherness.def\n", - "line 11 Louisa\n", - "line 11 Camilo\n", - "line 11 newest patch_floor_rain\n", - "line 11 jacopo.otherness.def\n", - "line 12 Louisa\n", - "line 12 Camilo\n", - "line 12 newest patch_floor_rain\n", - "line 12 jacopo.otherness.def\n", - "line 13 Louisa\n", - "line 13 Camilo\n", - "line 13 newest patch_floor_rain\n", - "line 13 jacopo.otherness.def\n", - "line 14 Louisa\n", - "line 14 Camilo\n", - "line 14 newest patch_floor_rain\n", - "line 14 jacopo.otherness.def\n", - "line 15 Louisa\n", - "line 15 Camilo\n", - "line 15 newest patch_floor_rain\n", - "line 15 jacopo.otherness.def\n", - "line 16 Louisa\n", - "line 16 Camilo\n", - "line 16 newest patch_floor_rain\n", - "line 16 jacopo.otherness.def\n", - "line 17 Louisa\n", - "line 17 Camilo\n", - "line 17 newest patch_floor_rain\n", - "line 17 jacopo.otherness.def\n", - "line 18 Louisa\n", - "line 18 Camilo\n", - "line 18 newest patch_floor_rain\n", - "line 18 jacopo.otherness.def\n", - "line 19 Louisa\n", - "line 19 Camilo\n", - "line 19 newest patch_floor_rain\n", - "line 19 jacopo.otherness.def\n", - "line 20 Louisa\n", - "line 20 Camilo\n", - "line 20 newest patch_floor_rain\n", - "line 20 jacopo.otherness.def\n", - "line 21 Louisa\n", - "line 21 Camilo\n", - "line 21 newest patch_floor_rain\n", - "line 21 jacopo.otherness.def\n", - "line 22 Louisa\n", - "line 22 Camilo\n", - "line 22 newest patch_floor_rain\n", - "line 22 jacopo.otherness.def\n", - "line 23 Louisa\n", - "line 23 Camilo\n", - "line 23 newest patch_floor_rain\n", - "line 23 jacopo.otherness.def\n", - "line 24 Louisa\n", - "line 24 Camilo\n", - "line 24 newest patch_floor_rain\n", - "line 24 jacopo.otherness.def\n", - "line 25 Louisa\n", - "line 25 Camilo\n", - "line 25 newest patch_floor_rain\n", - "line 25 jacopo.otherness.def\n", - "line 26 Louisa\n", - "line 26 Camilo\n", - "line 26 newest patch_floor_rain\n", - "line 26 jacopo.otherness.def\n", - "line 27 Louisa\n", - "line 27 Camilo\n", - "line 27 newest patch_floor_rain\n", - "line 27 jacopo.otherness.def\n", - "line 28 Louisa\n", - "line 28 Camilo\n", - "line 28 newest patch_floor_rain\n", - "line 28 jacopo.otherness.def\n", - "line 29 Louisa\n", - "line 29 Camilo\n", - "line 29 newest patch_floor_rain\n", - "line 29 jacopo.otherness.def\n", - "line 30 Louisa\n", - "line 30 Camilo\n", - "line 30 newest patch_floor_rain\n", - "line 30 jacopo.otherness.def\n", - "line 31 Louisa\n", - "line 31 Camilo\n", - "line 31 newest patch_floor_rain\n", - "line 31 jacopo.otherness.def\n", - "line 32 Louisa\n", - "line 32 Camilo\n", - "line 32 newest patch_floor_rain\n", - "line 32 jacopo.otherness.def\n", - "line 33 Louisa\n", - "line 33 Camilo\n", - "line 33 newest patch_floor_rain\n", - "line 33 jacopo.otherness.def\n", - "line 34 Louisa\n", - "line 34 Camilo\n", - "line 34 newest patch_floor_rain\n", - "line 34 jacopo.otherness.def\n", - "line 35 Louisa\n", - "line 35 Camilo\n", - "line 35 newest patch_floor_rain\n", - "line 35 jacopo.otherness.def\n", - "line 36 Louisa\n", - "line 36 Camilo\n", - "line 36 newest patch_floor_rain\n", - "line 36 jacopo.otherness.def\n", - "line 37 Louisa\n", - "line 37 Camilo\n", - "line 37 newest patch_floor_rain\n", - "line 37 jacopo.otherness.def\n", - "line 38 Louisa\n", - "line 38 Camilo\n", - "line 38 newest patch_floor_rain\n", - "line 38 jacopo.otherness.def\n", - "line 39 Louisa\n", - "line 39 Camilo\n", - "line 39 newest patch_floor_rain\n", - "line 39 jacopo.otherness.def\n", - "line 40 Louisa\n", - "line 40 Camilo\n", - "line 40 newest patch_floor_rain\n", - "line 40 jacopo.otherness.def\n", - "line 41 Louisa\n", - "line 41 Camilo\n", - "line 41 newest patch_floor_rain\n", - "line 41 jacopo.otherness.def\n", - "line 42 Louisa\n", - "line 42 Camilo\n", - "line 42 newest patch_floor_rain\n", - "line 42 jacopo.otherness.def\n", - "line 43 Louisa\n", - "line 43 Camilo\n", - "line 43 newest patch_floor_rain\n", - "line 43 jacopo.otherness.def\n", - "line 44 Louisa\n", - "line 44 Camilo\n", - "line 44 newest patch_floor_rain\n", - "line 44 jacopo.otherness.def\n", - "line 45 Louisa\n", - "line 45 Camilo\n", - "line 45 newest patch_floor_rain\n", - "line 45 jacopo.otherness.def\n", - "line 46 Louisa\n", - "line 46 Camilo\n", - "line 46 newest patch_floor_rain\n", - "line 46 jacopo.otherness.def\n", - "line 47 Louisa\n", - "line 47 Camilo\n", - "line 47 newest patch_floor_rain\n", - "line 47 jacopo.otherness.def\n", - "line 48 Louisa\n", - "line 48 Camilo\n", - "line 48 newest patch_floor_rain\n", - "line 48 jacopo.otherness.def\n", - "line 49 Louisa\n", - "line 49 Camilo\n", - "line 49 newest patch_floor_rain\n", - "line 49 jacopo.otherness.def\n", - "line 50 Louisa\n", - "line 50 Camilo\n", - "line 50 newest patch_floor_rain\n", - "line 50 jacopo.otherness.def\n", - "line 51 Louisa\n", - "line 51 Camilo\n", - "line 51 newest patch_floor_rain\n", - "line 51 jacopo.otherness.def\n", - "line 52 Louisa\n", - "line 52 Camilo\n", - "line 52 newest patch_floor_rain\n", - "line 52 jacopo.otherness.def\n", - "line 53 Louisa\n", - "line 53 Camilo\n", - "line 53 newest patch_floor_rain\n", - "line 53 jacopo.otherness.def\n", - "line 54 Louisa\n", - "line 54 Camilo\n", - "line 54 newest patch_floor_rain\n", - "line 54 jacopo.otherness.def\n", - "line 55 Louisa\n", - "line 55 Camilo\n", - "line 55 newest patch_floor_rain\n", - "line 55 jacopo.otherness.def\n", - "line 56 Louisa\n", - "line 56 Camilo\n", - "line 56 newest patch_floor_rain\n", - "line 56 jacopo.otherness.def\n", - "line 57 Louisa\n", - "line 57 Camilo\n", - "line 57 newest patch_floor_rain\n", - "line 57 jacopo.otherness.def\n", - "line 58 Louisa\n", - "line 58 Camilo\n", - "line 58 newest patch_floor_rain\n", - "line 58 jacopo.otherness.def\n", - "line 59 Louisa\n", - "line 59 Camilo\n", - "line 59 newest patch_floor_rain\n", - "line 59 jacopo.otherness.def\n", - "line 60 Louisa\n", - "line 60 Camilo\n", - "line 60 newest patch_floor_rain\n", - "line 60 jacopo.otherness.def\n", - "line 61 Louisa\n", - "line 61 Camilo\n", - "line 61 newest patch_floor_rain\n", - "line 61 jacopo.otherness.def\n", - "line 62 Louisa\n", - "line 62 Camilo\n", - "line 62 newest patch_floor_rain\n", - "line 62 jacopo.otherness.def\n", - "line 63 Louisa\n", - "line 63 Camilo\n", - "line 63 newest patch_floor_rain\n", - "line 63 jacopo.otherness.def\n", - "line 64 Louisa\n", - "line 64 Camilo\n", - "line 64 newest patch_floor_rain\n", - "line 64 jacopo.otherness.def\n", - "line 65 Louisa\n", - "line 65 Camilo\n", - "line 65 newest patch_floor_rain\n", - "line 65 jacopo.otherness.def\n", - "line 66 Louisa\n", - "line 66 Camilo\n", - "line 66 newest patch_floor_rain\n", - "line 66 jacopo.otherness.def\n", - "line 67 Louisa\n", - "line 67 Camilo\n", - "line 67 newest patch_floor_rain\n", - "line 67 jacopo.otherness.def\n", - "line 68 Louisa\n", - "line 68 Camilo\n", - "line 68 newest patch_floor_rain\n", - "line 68 jacopo.otherness.def\n", - "line 69 Louisa\n", - "line 69 Camilo\n", - "line 69 newest patch_floor_rain\n", - "line 69 jacopo.otherness.def\n", - "line 70 Louisa\n", - "line 70 Camilo\n", - "line 70 newest patch_floor_rain\n", - "line 70 jacopo.otherness.def\n", - "line 71 Louisa\n", - "line 71 Camilo\n", - "line 71 newest patch_floor_rain\n", - "line 71 jacopo.otherness.def\n", - "line 72 Louisa\n", - "line 72 Camilo\n", - "line 72 newest patch_floor_rain\n", - "line 72 jacopo.otherness.def\n", - "line 73 Louisa\n", - "line 73 Camilo\n", - "line 73 newest patch_floor_rain\n", - "line 73 jacopo.otherness.def\n", - "line 0 kendalpatch\n", - "line 0 euna\n", - "line 0 patchericoforthefuture\n", - "line 0 punctuationflag\n", - "line 1 kendalpatch\n", - "line 1 euna\n", - "line 1 patchericoforthefuture\n", - "line 1 punctuationflag\n", - "line 2 kendalpatch\n", - "line 2 euna\n", - "line 2 patchericoforthefuture\n", - "line 2 punctuationflag\n", - "line 3 kendalpatch\n", - "line 3 euna\n", - "line 3 patchericoforthefuture\n", - "line 3 punctuationflag\n", - "line 4 kendalpatch\n", - "line 4 euna\n", - "line 4 patchericoforthefuture\n", - "line 4 punctuationflag\n", - "line 5 kendalpatch\n", - "line 5 euna\n", - "line 5 patchericoforthefuture\n", - "line 5 punctuationflag\n", - "line 6 kendalpatch\n", - "line 6 euna\n", - "line 6 patchericoforthefuture\n", - "line 6 punctuationflag\n", - "line 7 kendalpatch\n", - "line 7 euna\n", - "line 7 patchericoforthefuture\n", - "line 7 punctuationflag\n", - "line 8 kendalpatch\n", - "line 8 euna\n", - "line 8 patchericoforthefuture\n", - "line 8 punctuationflag\n", - "line 9 kendalpatch\n", - "line 9 euna\n", - "line 9 patchericoforthefuture\n", - "line 9 punctuationflag\n", - "line 10 kendalpatch\n", - "line 10 euna\n", - "line 10 patchericoforthefuture\n", - "line 10 punctuationflag\n", - "line 11 kendalpatch\n", - "line 11 euna\n", - "line 11 patchericoforthefuture\n", - "line 11 punctuationflag\n", - "line 12 kendalpatch\n", - "line 12 euna\n", - "line 12 patchericoforthefuture\n", - "line 12 punctuationflag\n", - "line 13 kendalpatch\n", - "line 13 euna\n", - "line 13 patchericoforthefuture\n", - "line 13 punctuationflag\n", - "line 14 kendalpatch\n", - "line 14 euna\n", - "line 14 patchericoforthefuture\n", - "line 14 punctuationflag\n", - "line 15 kendalpatch\n", - "line 15 euna\n", - "line 15 patchericoforthefuture\n", - "line 15 punctuationflag\n", - "line 16 kendalpatch\n", - "line 16 euna\n", - "line 16 patchericoforthefuture\n", - "line 16 punctuationflag\n", - "line 17 kendalpatch\n", - "line 17 euna\n", - "line 17 patchericoforthefuture\n", - "line 17 punctuationflag\n", - "line 18 kendalpatch\n", - "line 18 euna\n", - "line 18 patchericoforthefuture\n", - "line 18 punctuationflag\n", - "line 19 kendalpatch\n", - "line 19 euna\n", - "line 19 patchericoforthefuture\n", - "line 19 punctuationflag\n", - "line 20 kendalpatch\n", - "line 20 euna\n", - "line 20 patchericoforthefuture\n", - "line 20 punctuationflag\n", - "line 21 kendalpatch\n", - "line 21 euna\n", - "line 21 patchericoforthefuture\n", - "line 21 punctuationflag\n", - "line 22 kendalpatch\n", - "line 22 euna\n", - "line 22 patchericoforthefuture\n", - "line 22 punctuationflag\n", - "line 23 kendalpatch\n", - "line 23 euna\n", - "line 23 patchericoforthefuture\n", - "line 23 punctuationflag\n", - "line 24 kendalpatch\n", - "line 24 euna\n", - "line 24 patchericoforthefuture\n", - "line 24 punctuationflag\n", - "line 25 kendalpatch\n", - "line 25 euna\n", - "line 25 patchericoforthefuture\n", - "line 25 punctuationflag\n", - "line 26 kendalpatch\n", - "line 26 euna\n", - "line 26 patchericoforthefuture\n", - "line 26 punctuationflag\n", - "line 27 kendalpatch\n", - "line 27 euna\n", - "line 27 patchericoforthefuture\n", - "line 27 punctuationflag\n", - "line 28 kendalpatch\n", - "line 28 euna\n", - "line 28 patchericoforthefuture\n", - "line 28 punctuationflag\n", - "line 29 kendalpatch\n", - "line 29 euna\n", - "line 29 patchericoforthefuture\n", - "line 29 punctuationflag\n", - "line 30 kendalpatch\n", - "line 30 euna\n", - "line 30 patchericoforthefuture\n", - "line 30 punctuationflag\n", - "line 31 kendalpatch\n", - "line 31 euna\n", - "line 31 patchericoforthefuture\n", - "line 31 punctuationflag\n", - "line 32 kendalpatch\n", - "line 32 euna\n", - "line 32 patchericoforthefuture\n", - "line 32 punctuationflag\n", - "line 33 kendalpatch\n", - "line 33 euna\n", - "line 33 patchericoforthefuture\n", - "line 33 punctuationflag\n", - "line 34 kendalpatch\n", - "line 34 euna\n", - "line 34 patchericoforthefuture\n", - "line 34 punctuationflag\n", - "line 35 kendalpatch\n", - "line 35 euna\n", - "line 35 patchericoforthefuture\n", - "line 35 punctuationflag\n", - "line 36 kendalpatch\n", - "line 36 euna\n", - "line 36 patchericoforthefuture\n", - "line 36 punctuationflag\n", - "line 37 kendalpatch\n", - "line 37 euna\n", - "line 37 patchericoforthefuture\n", - "line 37 punctuationflag\n", - "line 38 kendalpatch\n", - "line 38 euna\n", - "line 38 patchericoforthefuture\n", - "line 38 punctuationflag\n", - "line 39 kendalpatch\n", - "line 39 euna\n", - "line 39 patchericoforthefuture\n", - "line 39 punctuationflag\n", - "line 40 kendalpatch\n", - "line 40 euna\n", - "line 40 patchericoforthefuture\n", - "line 40 punctuationflag\n", - "line 41 kendalpatch\n", - "line 41 euna\n", - "line 41 patchericoforthefuture\n", - "line 41 punctuationflag\n", - "line 42 kendalpatch\n", - "line 42 euna\n", - "line 42 patchericoforthefuture\n", - "line 42 punctuationflag\n", - "line 43 kendalpatch\n", - "line 43 euna\n", - "line 43 patchericoforthefuture\n", - "line 43 punctuationflag\n", - "line 44 kendalpatch\n", - "line 44 euna\n", - "line 44 patchericoforthefuture\n", - "line 44 punctuationflag\n", - "line 45 kendalpatch\n", - "line 45 euna\n", - "line 45 patchericoforthefuture\n", - "line 45 punctuationflag\n", - "line 46 kendalpatch\n", - "line 46 euna\n", - "line 46 patchericoforthefuture\n", - "line 46 punctuationflag\n", - "line 47 kendalpatch\n", - "line 47 euna\n", - "line 47 patchericoforthefuture\n", - "line 47 punctuationflag\n", - "line 48 kendalpatch\n", - "line 48 euna\n", - "line 48 patchericoforthefuture\n", - "line 48 punctuationflag\n", - "line 49 kendalpatch\n", - "line 49 euna\n", - "line 49 patchericoforthefuture\n", - "line 49 punctuationflag\n", - "line 50 kendalpatch\n", - "line 50 euna\n", - "line 50 patchericoforthefuture\n", - "line 50 punctuationflag\n", - "line 51 kendalpatch\n", - "line 51 euna\n", - "line 51 patchericoforthefuture\n", - "line 51 punctuationflag\n", - "line 52 kendalpatch\n", - "line 52 euna\n", - "line 52 patchericoforthefuture\n", - "line 52 punctuationflag\n", - "line 53 kendalpatch\n", - "line 53 euna\n", - "line 53 patchericoforthefuture\n", - "line 53 punctuationflag\n", - "line 54 kendalpatch\n", - "line 54 euna\n", - "line 54 patchericoforthefuture\n", - "line 54 punctuationflag\n", - "line 55 kendalpatch\n", - "line 55 euna\n", - "line 55 patchericoforthefuture\n", - "line 55 punctuationflag\n", - "line 56 kendalpatch\n", - "line 56 euna\n", - "line 56 patchericoforthefuture\n", - "line 56 punctuationflag\n", - "line 57 kendalpatch\n", - "line 57 euna\n", - "line 57 patchericoforthefuture\n", - "line 57 punctuationflag\n", - "line 58 kendalpatch\n", - "line 58 euna\n", - "line 58 patchericoforthefuture\n", - "line 58 punctuationflag\n", - "line 59 kendalpatch\n", - "line 59 euna\n", - "line 59 patchericoforthefuture\n", - "line 59 punctuationflag\n", - "line 60 kendalpatch\n", - "line 60 euna\n", - "line 60 patchericoforthefuture\n", - "line 60 punctuationflag\n", - "line 61 kendalpatch\n", - "line 61 euna\n", - "line 61 patchericoforthefuture\n", - "line 61 punctuationflag\n", - "line 62 kendalpatch\n", - "line 62 euna\n", - "line 62 patchericoforthefuture\n", - "line 62 punctuationflag\n", - "line 63 kendalpatch\n", - "line 63 euna\n", - "line 63 patchericoforthefuture\n", - "line 63 punctuationflag\n", - "line 64 kendalpatch\n", - "line 64 euna\n", - "line 64 patchericoforthefuture\n", - "line 64 punctuationflag\n", - "line 65 kendalpatch\n", - "line 65 euna\n", - "line 65 patchericoforthefuture\n", - "line 65 punctuationflag\n", - "line 66 kendalpatch\n", - "line 66 euna\n", - "line 66 patchericoforthefuture\n", - "line 66 punctuationflag\n", - "line 67 kendalpatch\n", - "line 67 euna\n", - "line 67 patchericoforthefuture\n", - "line 67 punctuationflag\n", - "line 68 kendalpatch\n", - "line 68 euna\n", - "line 68 patchericoforthefuture\n", - "line 68 punctuationflag\n", - "line 69 kendalpatch\n", - "line 69 euna\n", - "line 69 patchericoforthefuture\n", - "line 69 punctuationflag\n", - "line 70 kendalpatch\n", - "line 70 euna\n", - "line 70 patchericoforthefuture\n", - "line 70 punctuationflag\n", - "line 71 kendalpatch\n", - "line 71 euna\n", - "line 71 patchericoforthefuture\n", - "line 71 punctuationflag\n", - "line 72 kendalpatch\n", - "line 72 euna\n", - "line 72 patchericoforthefuture\n", - "line 72 punctuationflag\n", - "line 73 kendalpatch\n", - "line 73 euna\n", - "line 73 patchericoforthefuture\n", - "line 73 punctuationflag\n", - "line 0 euna\n", - "line 0 punctuationflag\n", - "line 0 euna\n", - "line 0 patchericoforthefuture\n", - "line 1 euna\n", - "line 1 punctuationflag\n", - "line 1 euna\n", - "line 1 patchericoforthefuture\n", - "line 2 euna\n", - "line 2 punctuationflag\n", - "line 2 euna\n", - "line 2 patchericoforthefuture\n", - "line 3 euna\n", - "line 3 punctuationflag\n", - "line 3 euna\n", - "line 3 patchericoforthefuture\n", - "line 4 euna\n", - "line 4 punctuationflag\n", - "line 4 euna\n", - "line 4 patchericoforthefuture\n", - "line 5 euna\n", - "line 5 punctuationflag\n", - "line 5 euna\n", - "line 5 patchericoforthefuture\n", - "line 6 euna\n", - "line 6 punctuationflag\n", - "line 6 euna\n", - "line 6 patchericoforthefuture\n", - "line 7 euna\n", - "line 7 punctuationflag\n", - "line 7 euna\n", - "line 7 patchericoforthefuture\n", - "line 8 euna\n", - "line 8 punctuationflag\n", - "line 8 euna\n", - "line 8 patchericoforthefuture\n", - "line 9 euna\n", - "line 9 punctuationflag\n", - "line 9 euna\n", - "line 9 patchericoforthefuture\n", - "line 10 euna\n", - "line 10 punctuationflag\n", - "line 10 euna\n", - "line 10 patchericoforthefuture\n", - "line 11 euna\n", - "line 11 punctuationflag\n", - "line 11 euna\n", - "line 11 patchericoforthefuture\n", - "line 12 euna\n", - "line 12 punctuationflag\n", - "line 12 euna\n", - "line 12 patchericoforthefuture\n", - "line 13 euna\n", - "line 13 punctuationflag\n", - "line 13 euna\n", - "line 13 patchericoforthefuture\n", - "line 14 euna\n", - "line 14 punctuationflag\n", - "line 14 euna\n", - "line 14 patchericoforthefuture\n", - "line 15 euna\n", - "line 15 punctuationflag\n", - "line 15 euna\n", - "line 15 patchericoforthefuture\n", - "line 16 euna\n", - "line 16 punctuationflag\n", - "line 16 euna\n", - "line 16 patchericoforthefuture\n", - "line 17 euna\n", - "line 17 punctuationflag\n", - "line 17 euna\n", - "line 17 patchericoforthefuture\n", - "line 18 euna\n", - "line 18 punctuationflag\n", - "line 18 euna\n", - "line 18 patchericoforthefuture\n", - "line 19 euna\n", - "line 19 punctuationflag\n", - "line 19 euna\n", - "line 19 patchericoforthefuture\n", - "line 20 euna\n", - "line 20 punctuationflag\n", - "line 20 euna\n", - "line 20 patchericoforthefuture\n", - "line 21 euna\n", - "line 21 punctuationflag\n", - "line 21 euna\n", - "line 21 patchericoforthefuture\n", - "line 22 euna\n", - "line 22 punctuationflag\n", - "line 22 euna\n", - "line 22 patchericoforthefuture\n", - "line 23 euna\n", - "line 23 punctuationflag\n", - "line 23 euna\n", - "line 23 patchericoforthefuture\n", - "line 24 euna\n", - "line 24 punctuationflag\n", - "line 24 euna\n", - "line 24 patchericoforthefuture\n", - "line 25 euna\n", - "line 25 punctuationflag\n", - "line 25 euna\n", - "line 25 patchericoforthefuture\n", - "line 26 euna\n", - "line 26 punctuationflag\n", - "line 26 euna\n", - "line 26 patchericoforthefuture\n", - "line 27 euna\n", - "line 27 punctuationflag\n", - "line 27 euna\n", - "line 27 patchericoforthefuture\n", - "line 28 euna\n", - "line 28 punctuationflag\n", - "line 28 euna\n", - "line 28 patchericoforthefuture\n", - "line 29 euna\n", - "line 29 punctuationflag\n", - "line 29 euna\n", - "line 29 patchericoforthefuture\n", - "line 30 euna\n", - "line 30 punctuationflag\n", - "line 30 euna\n", - "line 30 patchericoforthefuture\n", - "line 31 euna\n", - "line 31 punctuationflag\n", - "line 31 euna\n", - "line 31 patchericoforthefuture\n", - "line 32 euna\n", - "line 32 punctuationflag\n", - "line 32 euna\n", - "line 32 patchericoforthefuture\n", - "line 33 euna\n", - "line 33 punctuationflag\n", - "line 33 euna\n", - "line 33 patchericoforthefuture\n", - "line 34 euna\n", - "line 34 punctuationflag\n", - "line 34 euna\n", - "line 34 patchericoforthefuture\n", - "line 35 euna\n", - "line 35 punctuationflag\n", - "line 35 euna\n", - "line 35 patchericoforthefuture\n", - "line 36 euna\n", - "line 36 punctuationflag\n", - "line 36 euna\n", - "line 36 patchericoforthefuture\n", - "line 37 euna\n", - "line 37 punctuationflag\n", - "line 37 euna\n", - "line 37 patchericoforthefuture\n", - "line 38 euna\n", - "line 38 punctuationflag\n", - "line 38 euna\n", - "line 38 patchericoforthefuture\n", - "line 39 euna\n", - "line 39 punctuationflag\n", - "line 39 euna\n", - "line 39 patchericoforthefuture\n", - "line 40 euna\n", - "line 40 punctuationflag\n", - "line 40 euna\n", - "line 40 patchericoforthefuture\n", - "line 41 euna\n", - "line 41 punctuationflag\n", - "line 41 euna\n", - "line 41 patchericoforthefuture\n", - "line 42 euna\n", - "line 42 punctuationflag\n", - "line 42 euna\n", - "line 42 patchericoforthefuture\n", - "line 43 euna\n", - "line 43 punctuationflag\n", - "line 43 euna\n", - "line 43 patchericoforthefuture\n", - "line 44 euna\n", - "line 44 punctuationflag\n", - "line 44 euna\n", - "line 44 patchericoforthefuture\n", - "line 45 euna\n", - "line 45 punctuationflag\n", - "line 45 euna\n", - "line 45 patchericoforthefuture\n", - "line 46 euna\n", - "line 46 punctuationflag\n", - "line 46 euna\n", - "line 46 patchericoforthefuture\n", - "line 47 euna\n", - "line 47 punctuationflag\n", - "line 47 euna\n", - "line 47 patchericoforthefuture\n", - "line 48 euna\n", - "line 48 punctuationflag\n", - "line 48 euna\n", - "line 48 patchericoforthefuture\n", - "line 49 euna\n", - "line 49 punctuationflag\n", - "line 49 euna\n", - "line 49 patchericoforthefuture\n", - "line 50 euna\n", - "line 50 punctuationflag\n", - "line 50 euna\n", - "line 50 patchericoforthefuture\n", - "line 51 euna\n", - "line 51 punctuationflag\n", - "line 51 euna\n", - "line 51 patchericoforthefuture\n", - "line 52 euna\n", - "line 52 punctuationflag\n", - "line 52 euna\n", - "line 52 patchericoforthefuture\n", - "line 53 euna\n", - "line 53 punctuationflag\n", - "line 53 euna\n", - "line 53 patchericoforthefuture\n", - "line 54 euna\n", - "line 54 punctuationflag\n", - "line 54 euna\n", - "line 54 patchericoforthefuture\n", - "line 55 euna\n", - "line 55 punctuationflag\n", - "line 55 euna\n", - "line 55 patchericoforthefuture\n", - "line 56 euna\n", - "line 56 punctuationflag\n", - "line 56 euna\n", - "line 56 patchericoforthefuture\n", - "line 57 euna\n", - "line 57 punctuationflag\n", - "line 57 euna\n", - "line 57 patchericoforthefuture\n", - "line 58 euna\n", - "line 58 punctuationflag\n", - "line 58 euna\n", - "line 58 patchericoforthefuture\n", - "line 59 euna\n", - "line 59 punctuationflag\n", - "line 59 euna\n", - "line 59 patchericoforthefuture\n", - "line 60 euna\n", - "line 60 punctuationflag\n", - "line 60 euna\n", - "line 60 patchericoforthefuture\n", - "line 61 euna\n", - "line 61 punctuationflag\n", - "line 61 euna\n", - "line 61 patchericoforthefuture\n", - "line 62 euna\n", - "line 62 punctuationflag\n", - "line 62 euna\n", - "line 62 patchericoforthefuture\n", - "line 63 euna\n", - "line 63 punctuationflag\n", - "line 63 euna\n", - "line 63 patchericoforthefuture\n", - "line 64 euna\n", - "line 64 punctuationflag\n", - "line 64 euna\n", - "line 64 patchericoforthefuture\n", - "line 65 euna\n", - "line 65 punctuationflag\n", - "line 65 euna\n", - "line 65 patchericoforthefuture\n", - "line 66 euna\n", - "line 66 punctuationflag\n", - "line 66 euna\n", - "line 66 patchericoforthefuture\n", - "line 67 euna\n", - "line 67 punctuationflag\n", - "line 67 euna\n", - "line 67 patchericoforthefuture\n", - "line 68 euna\n", - "line 68 punctuationflag\n", - "line 68 euna\n", - "line 68 patchericoforthefuture\n", - "line 69 euna\n", - "line 69 punctuationflag\n", - "line 69 euna\n", - "line 69 patchericoforthefuture\n", - "line 70 euna\n", - "line 70 punctuationflag\n", - "line 70 euna\n", - "line 70 patchericoforthefuture\n", - "line 71 euna\n", - "line 71 punctuationflag\n", - "line 71 euna\n", - "line 71 patchericoforthefuture\n", - "line 72 euna\n", - "line 72 punctuationflag\n", - "line 72 euna\n", - "line 72 patchericoforthefuture\n", - "line 73 euna\n", - "line 73 punctuationflag\n", - "line 73 euna\n", - "line 73 patchericoforthefuture\n", - "line 0 Louisa\n", - "line 0 Martin\n", - "line 0 jacopo.otherness.def\n", - "line 0 kendalpatch\n", - "line 1 Louisa\n", - "line 1 Martin\n", - "line 1 jacopo.otherness.def\n", - "line 1 kendalpatch\n", - "line 2 Louisa\n", - "line 2 Martin\n", - "line 2 jacopo.otherness.def\n", - "line 2 kendalpatch\n", - "line 3 Louisa\n", - "line 3 Martin\n", - "line 3 jacopo.otherness.def\n", - "line 3 kendalpatch\n", - "line 4 Louisa\n", - "line 4 Martin\n", - "line 4 jacopo.otherness.def\n", - "line 4 kendalpatch\n", - "line 5 Louisa\n", - "line 5 Martin\n", - "line 5 jacopo.otherness.def\n", - "line 5 kendalpatch\n", - "line 6 Louisa\n", - "line 6 Martin\n", - "line 6 jacopo.otherness.def\n", - "line 6 kendalpatch\n", - "line 7 Louisa\n", - "line 7 Martin\n", - "line 7 jacopo.otherness.def\n", - "line 7 kendalpatch\n", - "line 8 Louisa\n", - "line 8 Martin\n", - "line 8 jacopo.otherness.def\n", - "line 8 kendalpatch\n", - "line 9 Louisa\n", - "line 9 Martin\n", - "line 9 jacopo.otherness.def\n", - "line 9 kendalpatch\n", - "line 10 Louisa\n", - "line 10 Martin\n", - "line 10 jacopo.otherness.def\n", - "line 10 kendalpatch\n", - "line 11 Louisa\n", - "line 11 Martin\n", - "line 11 jacopo.otherness.def\n", - "line 11 kendalpatch\n", - "line 12 Louisa\n", - "line 12 Martin\n", - "line 12 jacopo.otherness.def\n", - "line 12 kendalpatch\n", - "line 13 Louisa\n", - "line 13 Martin\n", - "line 13 jacopo.otherness.def\n", - "line 13 kendalpatch\n", - "line 14 Louisa\n", - "line 14 Martin\n", - "line 14 jacopo.otherness.def\n", - "line 14 kendalpatch\n", - "line 15 Louisa\n", - "line 15 Martin\n", - "line 15 jacopo.otherness.def\n", - "line 15 kendalpatch\n", - "line 16 Louisa\n", - "line 16 Martin\n", - "line 16 jacopo.otherness.def\n", - "line 16 kendalpatch\n", - "line 17 Louisa\n", - "line 17 Martin\n", - "line 17 jacopo.otherness.def\n", - "line 17 kendalpatch\n", - "line 18 Louisa\n", - "line 18 Martin\n", - "line 18 jacopo.otherness.def\n", - "line 18 kendalpatch\n", - "line 19 Louisa\n", - "line 19 Martin\n", - "line 19 jacopo.otherness.def\n", - "line 19 kendalpatch\n", - "line 20 Louisa\n", - "line 20 Martin\n", - "line 20 jacopo.otherness.def\n", - "line 20 kendalpatch\n", - "line 21 Louisa\n", - "line 21 Martin\n", - "line 21 jacopo.otherness.def\n", - "line 21 kendalpatch\n", - "line 22 Louisa\n", - "line 22 Martin\n", - "line 22 jacopo.otherness.def\n", - "line 22 kendalpatch\n", - "line 23 Louisa\n", - "line 23 Martin\n", - "line 23 jacopo.otherness.def\n", - "line 23 kendalpatch\n", - "line 24 Louisa\n", - "line 24 Martin\n", - "line 24 jacopo.otherness.def\n", - "line 24 kendalpatch\n", - "line 25 Louisa\n", - "line 25 Martin\n", - "line 25 jacopo.otherness.def\n", - "line 25 kendalpatch\n", - "line 26 Louisa\n", - "line 26 Martin\n", - "line 26 jacopo.otherness.def\n", - "line 26 kendalpatch\n", - "line 27 Louisa\n", - "line 27 Martin\n", - "line 27 jacopo.otherness.def\n", - "line 27 kendalpatch\n", - "line 28 Louisa\n", - "line 28 Martin\n", - "line 28 jacopo.otherness.def\n", - "line 28 kendalpatch\n", - "line 29 Louisa\n", - "line 29 Martin\n", - "line 29 jacopo.otherness.def\n", - "line 29 kendalpatch\n", - "line 30 Louisa\n", - "line 30 Martin\n", - "line 30 jacopo.otherness.def\n", - "line 30 kendalpatch\n", - "line 31 Louisa\n", - "line 31 Martin\n", - "line 31 jacopo.otherness.def\n", - "line 31 kendalpatch\n", - "line 32 Louisa\n", - "line 32 Martin\n", - "line 32 jacopo.otherness.def\n", - "line 32 kendalpatch\n", - "line 33 Louisa\n", - "line 33 Martin\n", - "line 33 jacopo.otherness.def\n", - "line 33 kendalpatch\n", - "line 34 Louisa\n", - "line 34 Martin\n", - "line 34 jacopo.otherness.def\n", - "line 34 kendalpatch\n", - "line 35 Louisa\n", - "line 35 Martin\n", - "line 35 jacopo.otherness.def\n", - "line 35 kendalpatch\n", - "line 36 Louisa\n", - "line 36 Martin\n", - "line 36 jacopo.otherness.def\n", - "line 36 kendalpatch\n", - "line 37 Louisa\n", - "line 37 Martin\n", - "line 37 jacopo.otherness.def\n", - "line 37 kendalpatch\n", - "line 38 Louisa\n", - "line 38 Martin\n", - "line 38 jacopo.otherness.def\n", - "line 38 kendalpatch\n", - "line 39 Louisa\n", - "line 39 Martin\n", - "line 39 jacopo.otherness.def\n", - "line 39 kendalpatch\n", - "line 40 Louisa\n", - "line 40 Martin\n", - "line 40 jacopo.otherness.def\n", - "line 40 kendalpatch\n", - "line 41 Louisa\n", - "line 41 Martin\n", - "line 41 jacopo.otherness.def\n", - "line 41 kendalpatch\n", - "line 42 Louisa\n", - "line 42 Martin\n", - "line 42 jacopo.otherness.def\n", - "line 42 kendalpatch\n", - "line 43 Louisa\n", - "line 43 Martin\n", - "line 43 jacopo.otherness.def\n", - "line 43 kendalpatch\n", - "line 44 Louisa\n", - "line 44 Martin\n", - "line 44 jacopo.otherness.def\n", - "line 44 kendalpatch\n", - "line 45 Louisa\n", - "line 45 Martin\n", - "line 45 jacopo.otherness.def\n", - "line 45 kendalpatch\n", - "line 46 Louisa\n", - "line 46 Martin\n", - "line 46 jacopo.otherness.def\n", - "line 46 kendalpatch\n", - "line 47 Louisa\n", - "line 47 Martin\n", - "line 47 jacopo.otherness.def\n", - "line 47 kendalpatch\n", - "line 48 Louisa\n", - "line 48 Martin\n", - "line 48 jacopo.otherness.def\n", - "line 48 kendalpatch\n", - "line 49 Louisa\n", - "line 49 Martin\n", - "line 49 jacopo.otherness.def\n", - "line 49 kendalpatch\n", - "line 50 Louisa\n", - "line 50 Martin\n", - "line 50 jacopo.otherness.def\n", - "line 50 kendalpatch\n", - "line 51 Louisa\n", - "line 51 Martin\n", - "line 51 jacopo.otherness.def\n", - "line 51 kendalpatch\n", - "line 52 Louisa\n", - "line 52 Martin\n", - "line 52 jacopo.otherness.def\n", - "line 52 kendalpatch\n", - "line 53 Louisa\n", - "line 53 Martin\n", - "line 53 jacopo.otherness.def\n", - "line 53 kendalpatch\n", - "line 54 Louisa\n", - "line 54 Martin\n", - "line 54 jacopo.otherness.def\n", - "line 54 kendalpatch\n", - "line 55 Louisa\n", - "line 55 Martin\n", - "line 55 jacopo.otherness.def\n", - "line 55 kendalpatch\n", - "line 56 Louisa\n", - "line 56 Martin\n", - "line 56 jacopo.otherness.def\n", - "line 56 kendalpatch\n", - "line 57 Louisa\n", - "line 57 Martin\n", - "line 57 jacopo.otherness.def\n", - "line 57 kendalpatch\n", - "line 58 Louisa\n", - "line 58 Martin\n", - "line 58 jacopo.otherness.def\n", - "line 58 kendalpatch\n", - "line 59 Louisa\n", - "line 59 Martin\n", - "line 59 jacopo.otherness.def\n", - "line 59 kendalpatch\n", - "line 60 Louisa\n", - "line 60 Martin\n", - "line 60 jacopo.otherness.def\n", - "line 60 kendalpatch\n", - "line 61 Louisa\n", - "line 61 Martin\n", - "line 61 jacopo.otherness.def\n", - "line 61 kendalpatch\n", - "line 62 Louisa\n", - "line 62 Martin\n", - "line 62 jacopo.otherness.def\n", - "line 62 kendalpatch\n", - "line 63 Louisa\n", - "line 63 Martin\n", - "line 63 jacopo.otherness.def\n", - "line 63 kendalpatch\n", - "line 64 Louisa\n", - "line 64 Martin\n", - "line 64 jacopo.otherness.def\n", - "line 64 kendalpatch\n", - "line 65 Louisa\n", - "line 65 Martin\n", - "line 65 jacopo.otherness.def\n", - "line 65 kendalpatch\n", - "line 66 Louisa\n", - "line 66 Martin\n", - "line 66 jacopo.otherness.def\n", - "line 66 kendalpatch\n", - "line 67 Louisa\n", - "line 67 Martin\n", - "line 67 jacopo.otherness.def\n", - "line 67 kendalpatch\n", - "line 68 Louisa\n", - "line 68 Martin\n", - "line 68 jacopo.otherness.def\n", - "line 68 kendalpatch\n", - "line 69 Louisa\n", - "line 69 Martin\n", - "line 69 jacopo.otherness.def\n", - "line 69 kendalpatch\n", - "line 70 Louisa\n", - "line 70 Martin\n", - "line 70 jacopo.otherness.def\n", - "line 70 kendalpatch\n", - "line 71 Louisa\n", - "line 71 Martin\n", - "line 71 jacopo.otherness.def\n", - "line 71 kendalpatch\n", - "line 72 Louisa\n", - "line 72 Martin\n", - "line 72 jacopo.otherness.def\n", - "line 72 kendalpatch\n", - "line 73 Louisa\n", - "line 73 Martin\n", - "line 73 jacopo.otherness.def\n", - "line 73 kendalpatch\n" - ] - } - ], - "source": [ - "output = open(\"my-fantastic-quilt\", 'w')\n", - "for row in quilt:\n", - "\n", - " for linenumber in range(74):\n", - " for patch in row:\n", - " print(f\"line {linenumber} {patch}\")\n", - " line = open(f\"patterns/{patch}.txt\").readlines()[linenumber]\n", - " line = line.rstrip(\"\\n\")\n", - " print(line, file=output, end='')\n", - " print(file=output)\n", - "# print(line)" - ] - }, - { - "cell_type": "code", - "execution_count": 45, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import A4,A0\n", - "from reportlab.lib.units import mm\n", - "from reportlab.pdfbase.ttfonts import TTFont, pdfmetrics\n", - "\n", - "pagewidth, pageheight = A0\n", - "\n", - "c = Canvas(\"quilt_WFTF.pdf\", pagesize=(pagewidth, pageheight), bottomup=0) \n", - "\n", - "\n", - "fontpath = \"fonts/mplus-1m-regular.ttf\"\n", - "font = TTFont('1mregular', fontpath)\n", - "pdfmetrics.registerFont(font)\n", - "\n", - "# To set a font in the PDF\n", - "c.setFont('1mregular', 14.4)\n", - "\n", - "start_y = 5*mm\n", - "y = start_y\n", - "lineheight = 4*mm\n", - "lines = open(\"my-fantastic-quilt\").readlines()\n", - "for line in lines:\n", - " c.drawString(2*mm, y, line)\n", - " y += lineheight\n", - "\n", - "c.save()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/quilts/quilt_WFTF.pdf b/quilts/quilt_WFTF.pdf deleted file mode 100644 index ca14889..0000000 Binary files a/quilts/quilt_WFTF.pdf and /dev/null differ diff --git a/quilts/quilt_wftf_1.pdf b/quilts/quilt_wftf_1.pdf deleted file mode 100644 index 6667cde..0000000 Binary files a/quilts/quilt_wftf_1.pdf and /dev/null differ diff --git a/py/read-from-input.py b/read-from-input.py similarity index 100% rename from py/read-from-input.py rename to read-from-input.py diff --git a/reportlab-canvas-A4-bag-of-words.ipynb b/reportlab-canvas-A4-bag-of-words.ipynb deleted file mode 100644 index 286e8fa..0000000 --- a/reportlab-canvas-A4-bag-of-words.ipynb +++ /dev/null @@ -1,298 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Reportlab Canvas (A4) - Bag of Words" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "An example notebook to make PDFs with Reportlab. \n", - "\n", - "This notebook draws 100 words on an A4 PDF." - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import A4\n", - "from reportlab.lib.units import mm\n", - "from reportlab.lib.colors import magenta, lightgrey" - ] - }, - { - "cell_type": "code", - "execution_count": 40, - "metadata": {}, - "outputs": [], - "source": [ - "c = Canvas(\"reportlab-canvas-A4-bag-of-words.pdf\", pagesize=(210*mm, 297*mm), bottomup=0)" - ] - }, - { - "cell_type": "code", - "execution_count": 41, - "metadata": {}, - "outputs": [], - "source": [ - "c.setPageSize(A4)" - ] - }, - { - "cell_type": "code", - "execution_count": 42, - "metadata": {}, - "outputs": [], - "source": [ - "# Draw a background color\n", - "c.setFillColor(lightgrey)\n", - "c.rect(0, 0, A4[0], A4[1], stroke=0, fill=1)" - ] - }, - { - "cell_type": "code", - "execution_count": 43, - "metadata": {}, - "outputs": [], - "source": [ - "# Set a font, change the font color\n", - "from reportlab.pdfbase.ttfonts import TTFont, pdfmetrics\n", - "\n", - "fontpath = \"fonts/OSP-DIN.ttf\"\n", - "font = TTFont('OSP-DIN', fontpath)\n", - "pdfmetrics.registerFont(font)\n", - "\n", - "c.setFont('OSP-DIN', 32)\n", - "c.setFillColor(magenta)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "# First bag-of-words: 100 randomly picked and positioned words, based on the text *Language and Software Studies* (`txt/language.txt`).\n", - "# Use the random module and open the language.txt file \n", - "import random\n", - "\n", - "txt = open('txt/language.txt', 'r').read()\n", - "words = txt.split()\n", - "\n", - "# Draw a random bag-of-words on the canvas\n", - "for n in range(100):\n", - " x = random.randint(0, 190)\n", - " y = random.randint(0, 280)\n", - " word = random.choice(words).strip(',.')\n", - " print(x, y, word)\n", - " c.drawString(x*mm, y*mm, word)\n", - "\n", - "# Add a small caption\n", - "c.setFont('Courier', 10)\n", - "c.setFillColor(blue)\n", - "c.drawCentredString(105*mm, 290*mm, 'Random words from Language and Software Studies, by Florian Cramer (2005)')\n", - "\n", - "# Save the PDF!\n", - "c.save()" - ] - }, - { - "cell_type": "code", - "execution_count": 44, - "metadata": { - "scrolled": true - }, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "84 58 computing\n", - "173 112 programming\n", - "113 255 processing\n", - "102 115 programming\n", - "145 38 nothing\n", - "54 71 programming\n", - "106 139 programming\n", - "107 10 programming\n", - "49 84 programming\n", - "8 188 expressing\n", - "158 63 programming\n", - "124 257 anything\n", - "39 8 understanding\n", - "121 221 programming\n", - "91 127 programming\n", - "12 170 understanding\n", - "71 47 programming\n", - "17 33 nothing\n", - "36 280 programming\n", - "175 112 typing\n", - "173 275 thinking\n", - "69 217 involving\n", - "29 274 meaning\n", - "122 223 meaning\n", - "75 45 meaning\n", - "104 255 programming\n", - "94 172 Turing\n", - "48 181 programming\n", - "29 107 programming\n", - "72 179 speaking\n", - "185 238 programming\n", - "71 214 Nothing\n", - "25 279 programming\n", - "76 255 thinking\n", - "31 152 programming\n", - "26 237 denoting\n", - "161 56 storing\n", - "6 170 transmitting\n", - "70 38 “programming\n", - "5 112 indicating\n", - "156 188 giving\n", - "56 238 passing\n", - "142 37 accepting\n", - "109 92 trading\n", - "163 161 Writing\n", - "1 163 programming\n", - "157 1 phrasing\n", - "93 161 layering\n", - "61 170 nothing\n", - "62 162 processing\n", - "152 19 string\n", - "47 259 computing\n", - "63 69 reshaping\n", - "71 144 data—including\n", - "187 156 writing\n", - "156 227 consisting\n", - "125 119 meaning\n", - "68 45 writing\n", - "123 18 dragging\n", - "72 153 encoding\n", - "53 209 expressing\n", - "31 273 flying\n", - "17 32 programming\n", - "166 140 programming\n", - "167 117 programming\n", - "42 214 programming\n", - "144 271 encoding\n", - "131 255 understanding\n", - "133 2 programming\n", - "7 66 programming\n", - "124 206 involving\n", - "166 46 writing\n", - "158 135 thinking\n", - "104 237 understanding\n", - "18 206 amusing\n", - "11 97 according\n", - "9 169 Designing\n", - "28 199 According\n", - "152 205 writing\n", - "97 274 surprising\n", - "49 92 Reading\n" - ] - } - ], - "source": [ - "# Another bag-of-words: word selections from Words of the Future\n", - "import os\n", - "import random\n", - "\n", - "bag = []\n", - "filenames = []\n", - "\n", - "folder = 'txt/words-for-the-future/'\n", - "for file in os.listdir(folder):\n", - " # print(folder+file)\n", - " txt = open('txt/language.txt', 'r').read()\n", - " words = txt.split()\n", - " bag += words\n", - " filenames.append(file) # We will use this for the caption\n", - "\n", - "# print(bag)\n", - "\n", - "# Select all the words that end on \"ing\" and draw them on the canvas\n", - "for word in words:\n", - " word = word.strip(',/\\\\!?;:\"\\'.') # \"clean up\" the words\n", - " x = random.randint(0, 190)\n", - " y = random.randint(0, 280)\n", - " if word.endswith('ing'):\n", - " print(x, y, word)\n", - " c.drawString(x*mm, y*mm, word)\n", - "\n", - "# Add a small caption\n", - "c.setFont('Courier', 10)\n", - "c.setFillColor(blue)\n", - "filenames_str = ', '.join(filenames)\n", - "c.drawCentredString(105*mm, 290*mm, 'Random words from: {f} (Words for the Future)'.format(f=filenames_str))\n", - "\n", - "# Save the PDF!\n", - "c.save()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/reportlab-cheatsheet.ipynb b/reportlab-cheatsheet.ipynb deleted file mode 100644 index cba6bdc..0000000 --- a/reportlab-cheatsheet.ipynb +++ /dev/null @@ -1,462 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Reportlab Cheatsheet" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import letter, A4\n", - "from reportlab.lib.units import inch, mm" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# ReportLab PDF Library\n", - "\n", - "![](data:image/jpeg;base64,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) ![](data:image/gif;base64,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)\n", - "\n", - "What is the ReportLab PDF Library?\n", - "\n", - "This is a software library that lets you directly create documents in Adobe's Portable Document Format (PDF)using the Python programming language. \n", - "\n", - "*tip*: the Reportlab Userguide, https://www.reportlab.com/docs/reportlab-userguide.pdf" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Canvas" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": { - "scrolled": true - }, - "outputs": [], - "source": [ - "Canvas?" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Make a Canvas object, bottomup=0 will put the 0,0 at the lop-left (instead of bottom-left)\n", - "c = Canvas(\"pdf/reportlab-cheatsheet.pdf\", pagesize=A4, bottomup=0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Add a page\n", - "c.showPage()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Save the PDF\n", - "c.save()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Shapes" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.circle?" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.circle(20*mm, 20*mm, 10*mm, stroke=0, fill=1)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.rect?" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.rect(40*mm, 40*mm, 10*mm, 10*mm, stroke=1, fill=0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.roundRect?" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.roundRect(60*mm, 60*mm, 50*mm, 50*mm, 5*mm, stroke=1, fill=0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.showPage()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Fonts" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Reportlab comes with a set of fonts\n", - "c.getAvailableFonts()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.setFont('Courier', 72)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Or you can import fonts\n", - "from reportlab.pdfbase.ttfonts import TTFont, pdfmetrics\n", - "\n", - "fontpath = \"fonts/OSP-DIN.ttf\"\n", - "font = TTFont('OSP-DIN', fontpath)\n", - "pdfmetrics.registerFont(font)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.setFont('OSP-DIN', 72)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.drawCentredString(105*mm, 50*mm, \"Hello :)!\")" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.showPage()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Colors" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Choose a RGB/CMYK color\n", - "\n", - "# Fill-color\n", - "c.setFillColorRGB(255,0,0)\n", - "c.setFillColorCMYK(0,1,0,0)\n", - "\n", - "# Stroke-color\n", - "c.setStrokeColorRGB(255,255,0)\n", - "c.setStrokeColorCMYK(0,0,1,0)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "# Or choose one of the embedded colors from Reportlab\n", - "from reportlab.lib.colors import pink, magenta, red, blue\n", - "\n", - "c.setFillColor(magenta)\n", - "c.setStrokeColor(red)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.setFont('OSP-DIN', 72)\n", - "c.drawCentredString(105*mm, 50*mm, \"Hello :)!\")\n", - "\n", - "c.rect(105*mm, 150*mm, 50*mm, 50*mm, stroke=1, fill=1)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.showPage()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Lines" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Text" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Images" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/reportlab_tests.ipynb b/reportlab_tests.ipynb deleted file mode 100644 index 4a6bea4..0000000 --- a/reportlab_tests.ipynb +++ /dev/null @@ -1,647 +0,0 @@ -{ - "cells": [ - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "from reportlab.pdfgen.canvas import Canvas\n", - "from reportlab.lib.pagesizes import letter, A4\n", - "from reportlab.lib.units import inch, cm\n", - "import sys\n", - "from reportlab.pdfbase.ttfonts import TTFont, pdfmetrics" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Creating PDF using the Canvas" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "Instructions" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "fontpath = \"fonts/OSP-DIN.ttf\"\n", - "font = TTFont('MyFontName', fontpath)\n", - "pdfmetrics.registerFont(font)\n", - "c = Canvas(\"pageloop.pdf\", pagesize=A4)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "for i in range(1000):\n", - " c.setPageSize(A4)\n", - " print (f\"page {i}\")\n", - " c.setFont('MyFontName', 72)\n", - " # c.drawString(10*cm, 0.5*cm, \"Page {0}\".format(i))\n", - " c.drawCentredString(A4[0]/2, A4[1]/2, \"JUPYTER Page {0}\".format(i))\n", - " c.showPage()\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [ - "c.save()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Creating PDF using Platypus" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - "m\n", - "\n", - "\n", - "\n", - "!!!!!!!!!!new pad for group: https://pad.xpub.nl/p/%3F!-Powers\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "undecidabilitynamiclaralouisakendal\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "! / ?\n", - "\n", - "\n", - "\n", - "Nina Power\n", - "\n", - "https://en.wikipedia.org/wiki/Nina_Power\n", - "\n", - "\n", - "\n", - "Nina Power is a philosopher and activist whose writings span European philosophy, politics, feminism, arts and culture. She is Senior Lecturer in Philosophy in the Department of Humanities\n", - "\n", - "at The University of Roehampton. Power is the author of One- Dimensional Woman (2009) and, with Alberto Toscano, co-editor and translator of Alain Badiou’s On Beckett (2003). This essay “!/?”,\n", - "\n", - "on the politics of punctuation, is part of a larger research project concerning contemporary words, symbols and images. Power lives and works in London.\n", - "\n", - "\n", - "\n", - "Part 1: !\n", - "\n", - "\n", - "\n", - "“[T]he entire thrust[0] of the LTI [[i]The Language of the Third Reich[i]] [1b] was towards visualisation, and if this process of visualizing could be achieved with recourse to Germanic traditions, by means of a runic sign*, then so much the better. And as a jagged[2] character the rune of life** was related to the SS symbol***, and as an ideological symbol also related to the spokes of the wheel of the sun[1]****, the swastika [卍, 卐]***** … Renan’s[3] position: the question mark – the most important of all punctuation marks. A position in direct opposition to National Socialist intransigence[4] and self-confidence … From time to time it is possible to detect, both amongst individuals and groups, a characteristic preference for one particular punctuation mark. (>) Academics love the semicolon (;); their hankering [5]after logic demands a division which is more emphatic than a comma(,), but not quite as absolute a demarcation [8] as a full stop. Renan the sceptic declares that it is impossible to overuse the question mark.” – Victor Klemperer,[6] ‘Punctuation[7]’ from [i]The Language of the Third Reich[I][1A]\n", - "\n", - "\n", - "\n", - "卍Symbols卐:\n", - "\n", - "\n", - "\n", - "*https://en.wikipedia.org/wiki/Runes#/media/File:Venetic_Raetic_Camunic_Lepontic_alphabets.png / https://en.wikipedia.org/wiki/Runic_inscriptions https://www.vikingrune.com/2009/07/norse-runic-third-reich-symbols/\n", - "\n", - "**https://3.bp.blogspot.com/_GxWBIjI3BAw/S7Oq8bjcUvI/AAAAAAAAAZs/fSaKTdpNe6M/s320/Runic_letter_algiz.png\n", - "\n", - "***https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQ2nSDWXKepN554orrf80osPAO5Qx5UW8nM3w&usqp=CAU\n", - "\n", - "****https://w0.pngwave.com/png/673/230/white-nationalism-black-sun-nazism-symbol-symbol-png-clip-art.png\n", - "\n", - "*****https://en.wikipedia.org/wiki/Swastika#/media/File:Four-swastika_collage_(transparent).png\n", - "\n", - "The word swastika comes from Sanskrit: स्वस्तिक, romanized: svástika, meaning 'conducive to well being'.\n", - "\n", - "First use of runic symbols:(?) by proto-norse https://en.wikipedia.org/wiki/Proto-Norse\n", - "\n", - "Appropriation of symbols from other backgrounds/cultures. (Swastika);\n", - "\n", - "\n", - "\n", - "> constant debate about oxford comma - https://www.rd.com/article/oxford-comma-proper-use/\n", - "\n", - "\n", - "\n", - "[0] thrust -> \"\"leitmotiv\"\" // To thrust is to push forward quickly and forcibly, like the way a pirate would plunge or thrust a sword into his enemy.\n", - "\n", - "[1] Alternative names: Sun Cross, Wheel Cross, Solar Cross, Pagan Cross, Woden’s Cross and Odin’s Cross (https://www.ancient-symbols.com/symbols-directory/sun-wheel.html)\n", - "\n", - "[1b] https://en.wikipedia.org/wiki/LTI_%E2%80%93_Lingua_Tertii_Imperii\n", - "\n", - "[2] jagged -\n", - "\n", - "mid-15c., \"having notches,\" from verb jaggen (c. 1400) \"to pierce, slash, cut; to notch or nick; cut or tear unevenly,\" a Scottish and northern English word of unknown origin, related to jag (n.2). Originally of garments with regular \"toothed\" edges; meaning \"with the edge irregularly cut\" is from 1570s.\n", - "\n", - "https://en.wikipedia.org/wiki/File:Sawtooth-td_and_fd.png\n", - "\n", - "Jagged Character --> ? :) a rough character.\n", - "\n", - "[3] https://en.wikipedia.org/wiki/Ernest_Renan Him? also this article in https://www.commonwealmagazine.org/hitler%E2%80%99s-gospel\n", - "\n", - "[4] intransigence [ in-tran-si-juhns] the state or quality of being intransigent, or refusing to compromise or agree; inflexibility: No agreement was reached because of intransigence on both sides.\n", - "\n", - "refusal to change one's views or to agree about something.\n", - "\n", - "[5]to hanker: feel a strong desire for or to do something, can also be described as a hunger for something.\n", - "\n", - "[6] https://en.wikipedia.org/wiki/Victor_Klemperer\n", - "\n", - "[7] Punctuation (or sometimes interpunction) is the use of spacing, conventional signs (called punctuation marks), and certain typographical devices as aids to the understanding and correct reading of written text, whether read silently or aloud.[1] Another description is, \"It is the practice action or system of inserting points or other small marks into texts in order to aid interpretation; division of text into sentences, clauses, etc., by means of such marks.\"[2]\n", - "\n", - "[8] demarcation : the action of fixing the boundary or limits of something\n", - "\n", - "\n", - "\n", - "In the era of emojis[😡😡], we have forgotten about the politics of punctuation. Which mark or sign holds sway[0] over us in the age of Twitter, Facebook, YouTube comments, emails, and text messages? If we take the tweets of Donald Trump as some kind of symptomatic indicator[9], we can see quite well that it is the exclamation mark*** [6] – ! – that dominates. A quick look at his tweets from the last 48 hour period shows that almost all of them end with a single declarative sentence or word followed by a ‘!’: ‘Big trade imbalance!’, ‘No more!’, ‘They’ve gone CRAZY!’, ‘Happy National Anthem Day!’, ‘REST IN PEACE BILLY GRAHAM!’, [1]‘IF YOU DON’T HAVE STEEL, YOU DON’T HAVE A COUNTRY!’, (we shall leave the matter of all caps for another time), ‘$800 Billion Trade Deficit-have no choice!, ‘Jobless claims at a 49 year low!’ and so on … you get the picture. Trump’s exclamation mark is the equivalent of a boss slamming [8] his fist down on the table, an abusive partner shouting at a tentative[3] query[5], an exasperated [2] shock jock[2b] arguing with an imaginary[4] opponent. It is the exclamation mark as the final word, which would not be so frightening if Trump’s final word was not also [1]backed up by nuclear annihilation [7], the US army, the police, court and prison system, vast swathes [11] of the US media and electorate, and multiple people around him too afraid to say ‘no.’ This is the exclamation mark as apocalypse*, not the ‘!’ of surprise, amusement, girlish shyness, humour, or ironic puncture. This is the exclamation** of doom.[10] [How so?]Because it is backed up by [1].\n", - "\n", - "\n", - "\n", - "[😡😡] --> state of mind of Trump https://twitter.com/realDonaldTrump - at your own risk. 😡\n", - "\n", - "https://emojitracker.com/ emojitracker: realtime emoji use on twitter\n", - "\n", - "https://medium.com/better-marketing/a-brief-history-of-the-emoji-ee78ff86e619 - brief history of the emoji\n", - "\n", - "Various ways to generate/predict Trump tweets with Python: https://towardsdatascience.com/generate-fake-donald-trump-tweets-using-python-8d83885fd5c6 because it is quiet systematic\n", - "\n", - "Use of CAPITAL letters added to exclamation mark, how to go futher into the boss slamming expression? - what are you interested in there? thinking about how far can it goes with only textx\n", - "\n", - "Exclamation mark as a way to embody the speech, show invovlment, energy.\n", - "\n", - "* apocalypse: https://www.americamagazine.org/faith/2020/04/30/we-are-living-apocalypse\n", - "\n", - "Different meanings of the punctuation marks, depending on the support you're writing/reading into\n", - "\n", - "Exclamation mark as way to talk to the peaple / Being informal / and create a contrast with very formal usual way of speaking that is used by most politics\n", - "\n", - "** exclamation synonyms: a sudden cry or remark expressing surprise, strong emotion, or pain. (cry, call, shout, yell, shriek, roar)\n", - "\n", - "*** exclamation mark: https://www.theatlantic.com/technology/archive/2018/06/exclamation-point-inflation/563774/, history: https://en.wikipedia.org/wiki/Exclamation_mark\n", - "\n", - "[1] https://en.wikipedia.org/wiki/Billy_Graham - frequently referred to as one of the most influential christian leaders\n", - "\n", - "\n", - "\n", - "[0] holds sway --> what rules what, control/command\n", - "\n", - "[2] exasperated 😡: intensely irritated and frustrated\n", - "\n", - "[2b] Shock jock - a disc jockey on a talk-radio show who expresses opinions in a deliberately offensive or provocative way.\n", - "\n", - "[3] Tentative - of the nature of or made or done as a trial, experiment, or attempt; experimental: a tentative report on her findings. unsure; uncertain; not definite or positive; hesitant: a tentative smile on his face.\n", - "\n", - "[4] imaginary /ɪˈmædʒ.ɪ.nər.i/: Something that is imaginary is created by and exists only in the mind: As a child I had an imaginary friend. / The story is set in an imaginary world. / imaginary fears\n", - "\n", - "[5] Query - question, especially one expressing doubt or requesting information.\n", - "\n", - "[6] exclamation-mark: used to indicate strong feelings or high volume (shouting), or to show emphasis.\n", - "\n", - "[7] extermination\n", - "\n", - "[8] https://tenor.com/search/slamming-door-gifs\n", - "\n", - "[9] symptomatic indicator: If you're symptomatic, you might be sick.\n", - "\n", - "[10] the big goodbye :(\n", - "\n", - "[11] Swathes - a broad strip or area of something\n", - "\n", - "\n", - "\n", - "The writer is making a link between Nazi rhetoric and Trump rhetoric. the sign SS=!>\n", - "\n", - "non-verbal signs and how they are used ideologically\n", - "\n", - "changes of use of symbols / signs in different times\n", - "\n", - "difference between syntax and symbol\n", - "\n", - "\n", - "\n", - "The [i]Sturm and Drang[i] [1] needed an unusually large number of exclamation marks, suggests Klemperer, and, though you might suspect the LTI ([i]Lingua Tertii Imperii[i] [2]– the language of the Third Reich [3] as Klemperer calls it) would adore the exclamation mark, “given its fundamentally rhetorical nature and constant appeal to the emotions,” in actual fact “they are not at all conspicuous[4]” in Nazi writings.[2A] Why did the Nazis not need the exclamation mark? Klemperer states, “[i]t is as if [the LTI] turns everything into a command or proclamation as a matter of course and therefore has no need of a special punctuation mark to highlight the fact – where after all are the sober utterances[5] against which the proclamation would need to stand out?”[3A]\n", - "\n", - "\n", - "\n", - "-> Assertiveness of speech was obvious and did not need to be reinforced by exclamation marks ?! The point of nazis was to come across assertive but controlled. Trump is performing emotional involvement by using this symbol of exclamation.\n", - "\n", - "Why did the Nazis not need the exclamation mark? Due also to the fact that the speechs were mainly oral; while now we use th exclamation marks to draw attention on digital devices.\n", - "\n", - "It seems that in some way, the \"!\" is becoming a !!!sign!!! rather than a symbol with specific purpose. Since Nazi had no oppositions parties, they don't need to stand up with the voice. Anything told by Nazis was supposed to be true; without any kind of discussion.\n", - "\n", - "Not using exclamation mark could be interpretated/experienced by the reader a sign of natural authority; tranquil strengh.\n", - "\n", - "You don't necessarily need an exclamation mark to reach the people and make you understand from the others, as long as you already have the people's attention and respect,\n", - "\n", - "or peaple had just no choice to listen to you or follow your ideas.\n", - "\n", - "yes or as long as opposition is suppressed: \"from rational debate, to well-researched news, to public and open discussion – when these go, the exclamation marks will go too\"\n", - "\n", - "In Javascript the ! before a function gives to that function priority!!!\n", - "\n", - "During Nazi era, radio was the most used media, and radio was also in some streets, so you basicaly had (almost) no choice to listen to it.\n", - "\n", - "\n", - "\n", - "This point alone should herald [5a] a terrible warning. “Sober utterances[5][Expressions]” – from rational debate, to well-researched news, to public and open discussion – when these go, the exclamation marks will go too, because there will be no opposition left to be falsely outraged[9] against. There will be no critical press, no free thought, no social antagonism[6], because anyone who stands against the dominant discourse[7] will disappear, and perhaps social death will suffice, rather than murder, if only because it is easier to do. When Trump and others attack the media[8], it is so that one day their tweets will no longer need the exclamation of opposition. It is so that all statements from above will be a command or proclamation[12] in a frictionless, opposition-less universe.\n", - "\n", - "\n", - "\n", - "-> Exclamation mark as a symbol for screaming into nothing?? So therefore Trump is having a monologue and cancelling opposing statements?\n", - "\n", - "\n", - "\n", - "But we are also tempted by the exclamation mark because it is also a sign, in some contexts, of another kind of disbelief[10]. Not the Trump kind in which he cannot reconcile [10b] the fact that others disagree with him (or even that they exist), but the kind which simply says ‘oh my goodness!’ or ‘that’s great!’ or ‘I’m shocked/surprised/happy stunned!’ But then we use them all the time and *they grow tired and weak…and we use them defensively, [13] when we say: ‘I’m sorry this email is so late!’, ‘I have been so useless lately!’, ‘I’m so tired I can hardly see!’ and so on, ad infinitum[11] … (and what of the ellipses? … another time, another time). [ellipses =...]\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "*they grow tired and weak : by abusing it too often, the value of the exclamation mark has been faded away..\n", - "\n", - ".\n", - "\n", - "- also related https://en.wikipedia.org/wiki/Repetition_compulsion\n", - "\n", - "\n", - "\n", - "(original notes of the author)\n", - "\n", - "1a. Klemperer, Victor. [i]Language of the Third Reich: LTI: Lingua Tertii Imperii[i]. Translated by Martin Brady. New York: Bloomsbury Academic, 2013.\n", - "\n", - "2a. Ibid. 67.\n", - "\n", - "3a. Ibid. 67.\n", - "\n", - "\n", - "\n", - "[1] Sturm and Drang: ( https://fr.wikipedia.org/wiki/Sturm_und_Drang ) :\n", - "\n", - "\"Sturm und Drang [ˈʃtʊɐ̯m ʊnt ˈdʁaŋ]1 (lit. \"Storm and Passion\") is a German political and literary movement of the second half of the 18th century.\n", - "\n", - "It corresponds to a phase of radicalization in the long period of Enlightenment (Aufklärung). \"\n", - "\n", - "[2] translates to \"Language of the Third Reich\"\n", - "\n", - "[3] Third Reich: official Nazi designation for the regime in Germany from January 1933 to May 1945\n", - "\n", - "[4] conspicuous: clearly visible. / attracting notice or attention.\n", - "\n", - "[5]utterance - a statement, therefore a sober utterance is a statement without emotion or intention\n", - "\n", - "[5a] Herald - a person or thing viewed as a sign that something is about to happen.\n", - "\n", - "[6] antagonism - see Chantal Mouffe - on the political: she uses agonism as apposed to antagonism\n", - "\n", - "antagonism is two conflicting parties that have no common ground; enemies\n", - "\n", - "Mouffe:\n", - "\n", - "\"... antagonism is a us / them relationship in which enemies face each other who have no common ground whatsoever,\n", - "\n", - "agonism is a us / them relationship in which the conflicting parties recognize the legitimacy of their opponents, even though they see no rational solution exists. '\n", - "\n", - "They are in conflict, but see each other as participants of the same political community, - a common symbolic space within which the conflict takes place.\n", - "\n", - "According to Mouffe democracy has to convert antagonism into agonism.\n", - "\n", - "[7] Discourse - written or spoken communication or debate.\n", - "\n", - "[8]https://www.thoughtco.com/media-medium-and-mediums-1689581\n", - "\n", - "[9] concept of social media outrage - https://hub.jhu.edu/2019/09/25/molly-crockett-social-media-outrage/\n", - "\n", - "[10]https://en.wikipedia.org/wiki/Acatalepsy\n", - "\n", - "[10b] Reconcile - restore friendly relations between.\n", - "\n", - "[11] ad infinitum - forever\n", - "\n", - "[12] proclamation a public or official announcement dealing with a matter of great importance.\n", - "\n", - "[13] https://slate.com/technology/2018/08/exclamation-points-and-periods-are-causing-anxiety-the-solution-is-full-exclamation-point-amnesty.html\n", - "\n", - "\n", - "\n", - "If you look at the comments to YouTube videos (a sentence to which nothing good is ever likely to be added), you will find a particular use of the exclamation mark. Take, for example, the currently number one trending video: ‘Jennifer Lawrence Explains Her Drunk Alter Ego “Gail”’[1], where the actress talks to Ellen DeGeneres on the latter’s popular programme ‘The Ellen Show’ about how when she’s on holiday and drinks rum she becomes a masculine, adrenalin-junkie, alter-ego ‘Gail’ who jumps into shark-infested waters to amuse her friends, eats live sea creatures, and challenges people to arm-wrestling competitions. Apart from the slight melancholy induced by wondering why Jennifer Lawrence has to split herself into different beings in order to have a break from work, how does the ‘public’ response to the video tell us anything about the various uses of the exclamation mark? While many of the comments suggest that Lawrence is the victim of MKUltra [1b]] mind control, and a victim of child abuse, or that she is fake, some of the comments shed a small, pitiful, grey kind of light on the exclamation mark as a kind of pleading into the void [2]– the mark that will never be registered, because the speaker is speaking primarily to reassure him or herself.\n", - "\n", - "\n", - "\n", - "There is the pleading, compassionate use: “love how she is so open!Ò” says Kailey Bashaw, to which Oliver 2000 responds, “Yeah I love her porn pictures” with no punctuation at all[8]. Lauren Robelto writes: “Everybody commenting about alcoholism makes me so sad. She’s worked very hard and just wants to take a break and have fun and everyone’s criticizes her. Honestly if I were her I wouldn't be able to stop drinking because of all the hate! Lighten up people! JLaw is gonna keep thriving with or without your support!!” A similar kind of plea, the plea of the fan, a plea for understanding combined with a passive-aggressive[6] double use of *the exclamation mark to signify a kind of double-triumph**: the commentator has both convinced themselves and history that leaving negative (or indeed positive) comments [11] on YouTube will in no way affect the reception of whoever they are passionate about.\n", - "\n", - "\n", - "\n", - "There is a footnote in Marx’s [2][Capital, vol. 1 which does something interesting with the relation between the exclamation mark and the question mark, and I want to insert it here as the perfect dialectical [3] extract for moving from the exclamation mark to the question mark. Here Marx is quoting Wilhelm Roscher writing about J. B. Say, the liberal economist famous for arguing that production creates its own demand. All the comments in parentheses[7] are Marx’s own: “‘Ricardo’s school is in the habit of including capital[9] as accumulated labour under the heading of labour. This is unskillful (!), because (!) indeed the owner of capital (!) has after all (!) done more than merely (!?) create (?) and preserve (??) the same (what same?): namely (?!?) the abstention from the enjoyment of it, in return for which he demands, for instance (!!!) interest.’ How very ‘skilful’ is this ‘anatomico-physiological[10] method’ [4]of political economy, which converts a mere ‘demand’ into a source of value!”[4a]\n", - "\n", - "\n", - "\n", - "Marx was famously brutal and scabrous[5] in his take-downs, devoting hundreds of pages to figures that are now barely remembered, or remembered largely because Marx took them down. But here our interest lies in the use of ‘!’ and ‘?’ and ‘!?’ and ‘??’ and ‘?!?’ and ‘!!!’[0]. What is Marx signalling here? Disbelief in idiocy [stupidity], incomprehension, mockery, but also perhaps a curious hope. Hope? Hope in a better analysis, one worthier of the world, one that will explain rather than mystify…[12]\n", - "\n", - "\n", - "\n", - "[0]exclamation Marx haha\n", - "\n", - "[1] https://www.youtube.com/watch?v=mctn16hLzhg\n", - "\n", - "[1b] MK Ultra= CIA funded programme (LSD research-\"mind control experiments 1950s-60s) . Experiments on humans which were intended to identify and develop drugs and procedures to be used in interrogations in order to weaken the individual and force confessions through mind control.\n", - "\n", - "Prince's book on it:nhttps://unglueit-files.s3.amazonaws.com/ebf/22eed392946f4b64a8c22d1ed10d83d8.pdf\n", - "\n", - "[2] void a completely empty space.\n", - "\n", - "[3] Dialectic is defined as the art of determining the truth by the logical exchange of ideas and opinions. A philosophical, logical discussion using questions and answers on ethics or social problems is an example of dialectic.\n", - "\n", - "[5] Scabrous - rough and covered with, or as if with, scabs./ indecent; salacious.\n", - "\n", - "[6] passive-aggressive (People with passive-aggressive behavior express their negative feelings subtly through their actions instead of handling them directly.)\n", - "\n", - "[7] Parentheses - in (brackets)/ to insert an explanation/comment on the text, Marx uses it in a way that comments and also then changes the text\n", - "\n", - "[8] Oliver2000 probably is from 2000, the generational gap brings also to have total differences in writings, on shape and contents so no marks yes porn;\n", - "\n", - "*: ! can be contextualized in many different ways, which can be easily used with a political purpose in communication / ideology / propaganda?\n", - "\n", - "** also the fullstop, in the internet, sounds a bit \"parental\" to... millenials (?)\n", - "\n", - "-> yes, it can be deceptive sometimes...\n", - "\n", - "[9] capital wealth in the form of money or other assets owned by a person or organization or available for a purpose such as starting a company or investing.\n", - "\n", - "[10] anatomico-physiological Relating both to anatomy and to physiology. ->anatomical: relating to the body structure of organisms + physiological: relating to the way in which a living organism or bodily part functions. Haberlandt proposed the 'anatomico-physiological' classification in his classical book 'Physiological Plant Anatomy'. In his classification, function has been taken as the sole criterion while the origin, nature of cells, their topography and other characters were thoroughly ignored.\n", - "\n", - "[11] https://www.newstatesman.com/science-tech/internet/2016/10/why-are-youtube-comments-worst-internet\n", - "\n", - "[12] mystify: make obscure or mysterious.\n", - "\n", - "\n", - "\n", - "-> punctionation changes intonation, changes text, changes meaning\n", - "\n", - "differenct kind (combination?) of punctuation give different kind of tensions and impacts in the reading experience\n", - "\n", - "can serve as an addition or a standalone thing.\n", - "\n", - "comment: is a reaction not a question or discussion. Different way of engaging. different reason.\n", - "\n", - "Comment section: where peaple express themselves for different reasons: making a statement, asking a question, congratuling, criticizing, replying to another comment, etc...\n", - "\n", - "The internet has a lot of places to have discources.\n", - "\n", - "Marx is constantly searching for a nuance when positioning '!' and '?' in between words\n", - "\n", - "How you read an exclamation mark is personal. Maybe different for every person/ culturally? How do you pronounce it? (https://en.wikipedia.org/wiki/!!! )\n", - "\n", - "The meaning or use of an exclamation mark is different in parts of the world(overview on wiki): https://en.wikipedia.org/wiki/Exclamation_mark\n", - "\n", - "Emojis offers the possibility to express a very specific state of mind / statement / mood inside a text\n", - "\n", - "\n", - "\n", - "! !! !!! as levels of intensity. How to you make the sound of intensity? It depends on what is being intensified. -> ambiguity\n", - "\n", - "commenting on YouTube as a way of processing content individually\n", - "\n", - "emphasis on power and how holds it. punctuation as power tools.\n", - "\n", - "\n", - "\n", - "Nienke and Steve note: There is some very useful annotation being done here. There is still room for more discussion about the text. It would be interesting to record more of the sorts of discussions and thoughts the text generated during the reading-annotation process.\n", - "\n", - "\n", - "\n", - "Please try this - METHOD: in a group of 4- two people have a conversation about the text and 2 people take notes about what is being said. After 10 mins – swap places. Repeat.\n", - "\n", - "\n", - "\n", - "Part 2: ?\n", - "\n", - "\n", - "\n", - "Are we today in need of more question marks? Klemperer describes, as above, the question mark as being “in direct opposition to National Socialist intransigence and self-confidence.”[5] The question mark is itself a question, a kind of collapsed exclamation mark. A question mark can be an act of aggression or interruption: ‘oh really?’ But it can also function as a kind of pause, a break in the horrible flow, the babble, the endless lies. The question mark is the person who says ‘hang on, what is being said here?’, ‘what is happening?’, ‘is this okay?’ It is the question of the body that stands against the crowd, head bowed, frightened, but compelled by an inner question of their own – ‘is this the right thing, what they are saying?’ It is the feeling and the admission that one doesn’t know, and the intuition that there might not be a simple answer to the situation. We are surrounded by people who want to give us their solutions, who tell us how things work, what we should think, how we should be, how we should behave. There are too few Socratic beings, and far too many self-promoters, charlatans, snake-oil salesmen, liars, confidence tricksters. We want to be nice, but we end up getting played. Anyone who claims to have ‘the full picture’ is someone who wants an image of the world to dominate you so you shut up or give them something they want. They are not your friends.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "How to understand the question mark as a symbol, then, of trust? There must be room for exploration, of a mutual, tentative openness. A place where it is possible to say ‘I don’t know’ and not feel ashamed or ignorant, or foolish, or unkind. The internet is so often a place where people are shunned and shamed for asking questions, as if ignorance wasn’t a condition for knowledge, and as if we never wanted anyone to go beyond the things everybody already understands. Sometimes ‘ignorance’ is in fact the greatest kind of intelligence, and sometimes it is the most noble political strategy. Philosophy and psychoanalysis tells us that, in any case, we in fact know less than we think we do know. Knowledge and understanding are not transparent processes: we bury and forget, we lose the ability to ask questions of ourselves, and we when we think we understand ourselves this is when we dismiss others. We want to think that we are solely good, that we have the ‘right position,’ and that the others are wrong. But if we give up on our inner question mark, we become rigid, like the exclamation mark of condemnation. We forget that other people think differently and that not everyone must think the same thing. We forget about friendship, flexibility, and forgiveness.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "If we do not give ourselves enough time to think about the politics of punctuation, we run the risk of being swept away on a wave of someone else’s desire. We become passive pawns and stooges. We become victims of the malign desires of others to silence us, to put us down, to make us terrified and confused. Punctuation is not merely linguistic, but imagistic and political through and through. The ! and the ? are signs among other signs, but their relation and their power course through us when we are least aware of it. When we are face to face, we can use our expressions, our body as a whole, to dramatize these marks, with a raised eyebrow, a gesture, a shrug – a complex combination of the two marks can appear in and about us. But we are apart much of the time, and we must rely on markers that do not capture our collective understanding. We must be in a mode of play with the words and the punctuation we use, to keep a certain openness, a certain humour: not the cruelty of online life or the declarations of the powerful, but the delicate humour that includes the recognition that jokes are always aggressive, and that we live permanently on the edge of violence, but that we must be able to play if we are able to understand our drives, and, at the same time, the possibility of living together differently.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "Footnotes\n", - "\n", - "1a. Klemperer, Victor. [i]Language of the Third Reich: LTI: Lingua Tertii Imperii[i]. Translated by Martin Brady. New York: Bloomsbury Academic, 2013.\n", - "\n", - "2a. Ibid. 67.\n", - "\n", - "3a. Ibid. 67.\n", - "\n", - "4a. Marx, Karl. [i]Capital, Volume 1: A Critique of Political Economy.[i] New York: International Publishers, 1977. 82.\n", - "\n", - "5a. Klemperer, Victor. [i]Language of the Third Reich: LTI: Lingua Tertii Imperii[i]. 74.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "Original text: just in case we would mess around to much with it and not be able to read it smoothly anymore:\n", - "\n", - "\n", - "\n", - "“[T]he entire thrust of the LTI [[i]The Langue of the Third Reich[i]] was towards visualisation, and if this process of visualizing could be achieved with recourse to Germanic traditions, by means of a runic sign, then so much the better. And as a jagged character the rune of life was related to the SS symbol, and as an ideological symbol also related to the spokes of the wheel of the sun, the swastika … Renan’s position: the question mark – the most important of all punctuation marks. A position in direct opposition to National Socialist intransigence and self-confidence … From time to time it is possible to detect, both amongst individuals and groups, a characteristic preference for one particular punctuation mark. Academics love the semicolon; their hankering after logic demands a division which is more emphatic than a comma, but not quite as absolute a demarcation as a full stop. Renan the sceptic declares that it is impossible to overuse the question mark.” – Victor Klemperer, ‘Punctuation’ from [i]The Language of the Third Reich[I][1]\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "In the era of emojis, we have forgotten about the politics of punctuation. Which mark or sign holds sway over us in the age of Twitter, Facebook, YouTube comments, emails, and text messages? If we take the tweets of Donald Trump as some kind of symptomatic indicator, we can see quite well that it is the exclamation mark – ! – that dominates. A quick look at his tweets from the last 48 hour period shows that almost all of them end with a single declarative sentence or word followed by a ‘!’: ‘Big trade imbalance!’, ‘No more!’, ‘They’ve gone CRAZY!’, ‘Happy National Anthem Day!’, ‘REST IN PEACE BILLY GRAHAM!’, ‘IF YOU DON’T HAVE STEEL, YOU DON’T HAVE A COUNTRY!’, (we shall leave the matter of all caps for another time), ‘$800 Billion Trade Deficit-have no choice!, ‘Jobless claims at a 49 year low!’ and so on … you get the picture. Trump’s exclamation mark is the equivalent of a boss slamming his fist down on the table, an abusive partner shouting at a tentative query, an exasperated shock jock arguing with an imaginary opponent. It is the exclamation mark as the final word, which would not be so frightening if Trump’s final word was not also backed up by nuclear annihilation, the US army, the police, court and prison system, vast swathes of the US media and electorate, and multiple people around him too afraid to say ‘no.’ This is the exclamation mark as apocalypse, not the ‘!’ of surprise, amusement, girlish shyness, humour, or ironic puncture. This is the exclamation of doom.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "The [i]Sturm and Drang[i] needed an unusually large number of exclamation marks, suggests Klemperer, and, though you might suspect the LTI ([i]Lingua Tertii Imperii[i] – the language of the Third Reich as Klemperer calls it) would adore the exclamation mark, “given its fundamentally rhetorical nature and constant appeal to the emotions,” in actual fact “they are not at all conspicuous” in Nazi writings.[2] Why did the Nazis not need the exclamation mark? Klemperer states, “[i]t is as if [the LTI] turns everything into a command or proclamation as a matter of course and therefore has no need of a special punctuation mark to highlight the fact – where after all are the sober utterances against which the proclamation would need to stand out?”[3]\n", - "\n", - "\n", - "\n", - "This point alone should herald a terrible warning. “Sober utterances” – from rational debate, to well-researched news, to public and open discussion – when these go, the exclamation marks will go too, because there will be no opposition left to be falsely outraged against. There will be no critical press, no free thought, no social antagonism, because anyone who stands against the dominant discourse will disappear, and perhaps social death will suffice, rather than murder, if only because it is easier to do. When Trump and others attack the media, it is so that one day their tweets will no longer need the exclamation of opposition. It is so that all statements from above will be a command or proclamation in a frictionless, opposition-less universe.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "But we are also tempted by the exclamation mark because it is also a sign, in some contexts, of another kind of disbelief. Not the Trump kind in which he cannot reconcile the fact that others disagree with him (or even that they exist), but the kind which simply says ‘oh my goodness!’ or ‘that’s great!’ or ‘I’m shocked/surprised/happy stunned!’ But then we use them all the time and they grow tired and weak…and we use them defensively, when we say: ‘I’m sorry this email is so late!’, ‘I have been so useless lately!’, ‘I’m so tired I can hardly see!’ and so on, ad infinitum … (and what of the ellipses? … another time, another time).\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "If you look at the comments to YouTube videos (a sentence to which nothing good is ever likely to be added), you will find a particular use of the exclamation mark. Take, for example, the currently number one trending video: ‘Jennifer Lawrence Explains Her Drunk Alter Ego “Gail”’, where the actress talks to Ellen DeGeneres on the latter’s popular programme ‘The Ellen Show’ about how when she’s on holiday and drinks rum she becomes a masculine, adrenalin-junkie, alter-ego ‘Gail’ who jumps into shark-infested waters to amuse her friends, eats live sea creatures, and challenges people to arm-wrestling competitions. Apart from the slight melancholy induced by wondering why Jennifer Lawrence has to split herself into different beings in order to have a break from work, how does the ‘public’ response to the video tell us anything about the various uses of the exclamation mark? While many of the comments suggest that Lawrence is the victim of MKUltra mind control, and a victim of child abuse, or that she is fake, some of the comments shed a small, pitiful, grey kind of light on the exclamation mark as a kind of pleading into the void – the mark that will never be registered, because the speaker is speaking primarily to reassure him or herself.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "There is the pleading, compassionate use: “love how she is so open!Ò” says Kailey Bashaw, to which Oliver 2000 responds, “Yeah I love her porn pictures” with no punctuation at all. Lauren Robelto writes: “Everybody commenting about alcoholism makes me so sad. She’s worked very hard and just wants to take a break and have fun and everyone’s criticizes her. Honestly if I were her I wouldn't be able to stop drinking because of all the hate! Lighten up people! JLaw is gonna keep thriving with or without your support!!” A similar kind of plea, the plea of the fan, a plea for understanding combined with a passive-aggressive double use of the exclamation mark to signify a kind of double-triumph: the commentator has both convinced themselves and history that leaving negative (or indeed positive) comments on YouTube will in no way affect the reception of whoever they are passionate about.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "There is a footnote in Marx’s [i]Capital[i], vol. 1 which does something interesting with the relation between the exclamation mark and the question mark, and I want to insert it here as the perfect dialectical extract for moving from the exclamation mark to the question mark. Here Marx is quoting Wilhelm Roscher writing about J. B. Say, the liberal economist famous for arguing that production creates its own demand. All the comments in parentheses are Marx’s own: “‘Ricardo’s school is in the habit of including capital as accumulated labour under the heading of labour. This is unskillful (!), because (!) indeed the owner of capital (!) has after all (!) done more than merely (!?) create (?) and preserve (??) the same (what same?): namely (?!?) the abstention from the enjoyment of it, in return for which he demands, for instance (!!!) interest.’ How very ‘skilful’ is this ‘anatomico-physiological method’ of political economy, which converts a mere ‘demand’ into a source of value!”[4]\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "Marx was famously brutal and scabrous in his take-downs, devoting hundreds of pages to figures that are now barely remembered, or remembered largely because Marx took them down. But here our interest lies in the use of ‘!’ and ‘?’ and ‘!?’ and ‘??’ and ‘?!?’ and ‘!!!’. What is Marx signalling here? Disbelief in idiocy, incomprehension, mockery, but also perhaps a curious hope. Hope? Hope in a better analysis, one worthier of the world, one that will explain rather than mystify…\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "Part 2: ?\n", - "\n", - "\n", - "\n", - "Are we today in need of more question marks? Klemperer describes, as above, the question mark as being “in direct opposition to National Socialist intransigence and self-confidence.”[5] The question mark is itself a question, a kind of collapsed exclamation mark. A question mark can be an act of aggression or interruption: ‘oh really?’ But it can also function as a kind of pause, a break in the horrible flow, the babble, the endless lies. The question mark is the person who says ‘hang on, what is being said here?’, ‘what is happening?’, ‘is this okay?’ It is the question of the body that stands against the crowd, head bowed, frightened, but compelled by an inner question of their own – ‘is this the right thing, what they are saying?’ It is the feeling and the admission that one doesn’t know, and the intuition that there might not be a simple answer to the situation. We are surrounded by people who want to give us their solutions, who tell us how things work, what we should think, how we should be, how we should behave. There are too few Socratic beings, and far too many self-promoters, charlatans, snake-oil salesmen, liars, confidence tricksters. We want to be nice, but we end up getting played. Anyone who claims to have ‘the full picture’ is someone who wants an image of the world to dominate you so you shut up or give them something they want. They are not your friends.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "How to understand the question mark as a symbol, then, of trust? There must be room for exploration, of a mutual, tentative openness. A place where it is possible to say ‘I don’t know’ and not feel ashamed or ignorant, or foolish, or unkind. The internet is so often a place where people are shunned and shamed for asking questions, as if ignorance wasn’t a condition for knowledge, and as if we never wanted anyone to go beyond the things everybody already understands. Sometimes ‘ignorance’ is in fact the greatest kind of intelligence, and sometimes it is the most noble political strategy. Philosophy and psychoanalysis tells us that, in any case, we in fact know less than we think we do know. Knowledge and understanding are not transparent processes: we bury and forget, we lose the ability to ask questions of ourselves, and we when we think we understand ourselves this is when we dismiss others. We want to think that we are solely good, that we have the ‘right position,’ and that the others are wrong. But if we give up on our inner question mark, we become rigid, like the exclamation mark of condemnation. We forget that other people think differently and that not everyone must think the same thing. We forget about friendship, flexibility, and forgiveness.\n", - "\n", - "\n", - "\n", - "\n", - "\n", - "If we do not give ourselves enough time to think about the politics of punctuation, we run the risk of being swept away on a wave of someone else’s desire. We become passive pawns and stooges. We become victims of the malign desires of others to silence us, to put us down, to make us terrified and confused. Punctuation is not merely linguistic, but imagistic and political through and through. The ! and the ? are signs among other signs, but their relation and their power course through us when we are least aware of it. When we are face to face, we can use our expressions, our body as a whole, to dramatize these marks, with a raised eyebrow, a gesture, a shrug – a complex combination of the two marks can appear in and about us. But we are apart much of the time, and we must rely on markers that do not capture our collective understanding. We must be in a mode of play with the words and the punctuation we use, to keep a certain openness, a certain humour: not the cruelty of online life or the declarations of the powerful, but the delicate humour that includes the recognition that jokes are always aggressive, and that we live permanently on the edge of violence, but that we must be able to play if we are able to understand our drives, and, at the same time, the possibility of living together differently.\n", - "\n", - "\n" - ] - } - ], - "source": [ - "from reportlab.lib.pagesizes import A4\n", - "from reportlab.platypus import SimpleDocTemplate, Paragraph, Spacer\n", - "from reportlab.lib.styles import getSampleStyleSheet\n", - "\n", - "doc = SimpleDocTemplate(\"text.pdf\", pagesize=A4,\n", - " rightMargin=72, leftMargin=72,\n", - " topMargin=72, bottomMargin=18)\n", - "\n", - "\n", - "content = []\n", - "styles = getSampleStyleSheet()\n", - "from urllib.request import urlopen\n", - "\n", - "for line in urlopen('https://pad.xpub.nl/p/!%E2%80%93Nina_Power/export/txt'):\n", - " line = line.strip().decode()\n", - " print (type(line))\n", - " print (line)\n", - " if line:\n", - " p = Paragraph(''+line+'', styles[\"Normal\"])\n", - " content.append(p)\n", - " content.append(Spacer(1, 12))\n", - "\n", - "doc.build(content)\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - }, - "nteract": { - "version": "nteract-on-jupyter@2.1.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/weasyprint.ipynb b/weasyprint.ipynb deleted file mode 100644 index 061929d..0000000 --- a/weasyprint.ipynb +++ /dev/null @@ -1,263 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "# Weasyprint\n", - "\n", - "Weasyprint is a python library to layout HTML (and CSS) as print pages, saving to a PDF. In this way, it can be a part of a \"web to print\" workflow." - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "https://weasyprint.readthedocs.io/en/latest/tutorial.html" - ] - }, - { - "cell_type": "code", - "execution_count": 5, - "metadata": {}, - "outputs": [], - "source": [ - "from weasyprint import HTML, CSS\n", - "from weasyprint.fonts import FontConfiguration" - ] - }, - { - "cell_type": "code", - "execution_count": 6, - "metadata": {}, - "outputs": [], - "source": [ - "# If you use @font-face in your stylesheet, you would need Weasyprint's FontConfiguration()\n", - "font_config = FontConfiguration()" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## HTML" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The main class that weasyprint is HTML, it represents an HTML document, and provides functions to save as PDF (or PNG). When creating an HTML object you can specify the HTML either via HTML source as a string (via the *string* option), a file (via the *filename* option), or even an online page (via *url*)." - ] - }, - { - "cell_type": "code", - "execution_count": 7, - "metadata": {}, - "outputs": [], - "source": [ - "html = HTML(string='

hello

')" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "or" - ] - }, - { - "cell_type": "code", - "execution_count": 4, - "metadata": {}, - "outputs": [], - "source": [ - "html = HTML(filename=\"path/to/some.html\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "or" - ] - }, - { - "cell_type": "code", - "execution_count": 2, - "metadata": {}, - "outputs": [], - "source": [ - "html = HTML(url=\"https://pzwiki.wdka.nl/mediadesign/Category:WordsfortheFuture\")" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "The CSS class lets you include an (additional) CSS file. Just as with the HTML class, you can give a string, filename, or URL. If the HTML already has stylesheets, they will be combined. (is this true?)" - ] - }, - { - "cell_type": "code", - "execution_count": 12, - "metadata": {}, - "outputs": [], - "source": [ - "css = CSS(string='''\n", - "@page{\n", - " size: A4;\n", - " margin: 15mm;\n", - " background-color: lightgrey;\n", - " font-family: monospace;\n", - " font-size: 8pt;\n", - " color: red;\n", - " border:1px dotted red;\n", - " \n", - " @top-left{\n", - " content: \"natural\";\n", - " }\n", - " @top-center{\n", - " content: \"language\";\n", - " }\n", - " @top-right{\n", - " content: \"artificial\";\n", - " }\n", - " @top-middle{\n", - " content: \"\"\n", - " }\n", - " @left-top{\n", - " content: \"computer control\";\n", - " }\n", - " @right-top{\n", - " content: \"markup\";\n", - " }\n", - " @bottom-left{\n", - " content: \"formal\";\n", - " }\n", - " @bottom-center{\n", - " content: \"programming\";\n", - " }\n", - " @bottom-right{\n", - " content: \"machine\";\n", - " }\n", - " }\n", - " body{\n", - " font-family: serif;\n", - " font-size: 12pt;\n", - " line-height: 1.4;\n", - " color: magenta;\n", - " }\n", - " h1{\n", - " width: 100%;\n", - " text-align: center;\n", - " font-size: 250%;\n", - " line-height: 1.25;\n", - " color: orange;\n", - " }\n", - " strong{\n", - " color: blue;\n", - " }\n", - " em{\n", - " color: green;\n", - " }\n", - "\n", - "\n", - "''', font_config=font_config)" - ] - }, - { - "cell_type": "code", - "execution_count": 8, - "metadata": {}, - "outputs": [], - "source": [ - "html.write_pdf('mydocument.pdf', font_config=font_config)" - ] - }, - { - "cell_type": "markdown", - "metadata": {}, - "source": [ - "## Using NLTK to automatically markup a (plain) text with POS tags" - ] - }, - { - "cell_type": "code", - "execution_count": 9, - "metadata": {}, - "outputs": [], - "source": [ - "import nltk\n", - "\n", - "txt = open('txt/language.txt').read()\n", - "words = nltk.word_tokenize(txt)\n", - "tagged_words = nltk.pos_tag(words)" - ] - }, - { - "cell_type": "code", - "execution_count": 10, - "metadata": {}, - "outputs": [], - "source": [ - "content = ''\n", - "content += '

Language and Software Studies, by Florian Cramer

'\n", - "\n", - "for word, tag in tagged_words:\n", - " content += f'{ word } '\n", - "\n", - "with open(\"txt/language.html\", \"w\") as f:\n", - " f.write(f\"\"\"\n", - "\n", - "\n", - " \n", - " \n", - " \n", - "\n", - "\n", - "{content}\n", - "\n", - "\"\"\")" - ] - }, - { - "cell_type": "code", - "execution_count": 11, - "metadata": {}, - "outputs": [], - "source": [ - "html = HTML(\"txt/language.html\")\n", - "html.write_pdf('txt/language.pdf', font_config=font_config)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.7.3" - } - }, - "nbformat": 4, - "nbformat_minor": 4 -} diff --git a/working-with-datasets/json-dataset.json b/working-with-datasets/json-dataset.json new file mode 100644 index 0000000..39205e2 --- /dev/null +++ b/working-with-datasets/json-dataset.json @@ -0,0 +1,6 @@ +{ + "are": "VBP", + "extends": "VBZ", + "be": "VB", + "expressed": "VBN" +} \ No newline at end of file diff --git a/json-making-datasets.ipynb b/working-with-datasets/json-making-datasets.ipynb similarity index 100% rename from json-making-datasets.ipynb rename to working-with-datasets/json-making-datasets.ipynb diff --git a/working-with-images/PIL-basics.ipynb b/working-with-images/PIL-basics.ipynb new file mode 100644 index 0000000..d514c8a --- /dev/null +++ b/working-with-images/PIL-basics.ipynb @@ -0,0 +1,693 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# PIL(low) talk\n", + "\n", + "The \"classic\" Python Image Library (or PIL) is described in the (classic) handbook:\n", + "http://www.effbot.org/imagingbook/pil-index.htm\n", + "\n", + "In fact, the current library that people tend to use is called [Pillow](https://pillow.readthedocs.io/en/stable/), but as a \"friendly fork\" it tries to acts just like the old PIL library, so you don't even notice (and your code still uses the name PIL). The Pillow project also maintains it's own documenation at:\n", + "\n", + "https://pillow.readthedocs.io/en/stable/reference/index.html\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from PIL import Image" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "im = Image.open(\"a.jpg\")" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "im" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "im = Image.open(\"cyber.jpg\")" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(500, 488)" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "im.size" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'RGB'" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "im.mode" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "im.thumbnail( (320, 320) )" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(320, 312)" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "im.size" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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nFMZU+5iXA1DUi3j2BM6H2uB1M6bNHqmcP3aofPsfOjHYRiGUobdRbM5PanbOVjq+41sRpPUp95Fq2uO5Jl5m0pVVaASW3/p8n7K4BymtHHO7+yswLksQmM5PLm2nAVmURlTSsOQnr96PUZuq8G5oNuyXC7Ucgj+5ORotbM75DGD1pXvy4jBoYvBxyzmATlUKOSQmdyUliHSumkQeH/v/BNPPu+9y2PPoUIGVWtXy0Gl3lm1m12McRQVgQs7F2L9WD1rhqF/6sknb77nzi5XVw663fMXTKwI7l++sD7d3HnzzbMYuKpefs89r3n5K//lv/m5W++4TVz+9Ee/fP62e544eOqBl96z3N9/7/s+uHf+1sefuLK//+yrXvvQv//373nooVcfd92zTzz6DV//xsePj172ons2+VRtvP9Fd3/uE59x7Xmqc9mujViZW+ewH3d3d9DAICGYYUGmlEYiBuApbpxzAcKcC5ldvHSxlBJD9CFIKT5EmpqohqAqYApgqiGE6bktqogYgi8i0XuRyUnKYJMjHg2AEYkUVss5Amm25awNGHyCmMSldNt8fiFwoJPFjl05HVa7513TuLZyTd2udprluapumzq0TV03dajdcrHyhE2D87pd1PWsolDFLAoTCRnAioKamjKTmk203pzzmBI7V8VIRFklq6hq5RsoNrGtgnMqBUyYEFRNgYBzyiaKYKhnw4BJhpZzGcZxs9mamYpYFjJUURCZZJYAAEi55KLFJoFOFhEbh7xZ9yenm3475kFzku22f/jhR8og29MThwPDyIVqCpbGwI7Z9dttHosDTGUEU68wlDJbLgvgfLnjQpVLQcSrV290Q+nGdHRykpIeHW9OToZr1062XVbkUcwoVtXSLJJv2Fexbnf29kKMofI7u4vlarZczZG0iFT1zLkQQlXFarFczhZt1YZY0XJVz+c1ko+hyUlLkkU79xyGber70TtvAo6ppLy72mFCBeu68eR4qwXTKKnotjtlT/PZgsiZEQNqMcnad6nr0ny+uHD+wrxdztqlKc1nO+uToa6WVWzbZjX0YxlTJJ+GAQABuK3nIDCrK0ApWmbtktmrGSGLaAgxxjpWFU6iZHRVPQuxKWoi6MkFH72vvY+MxD7U7e58vl/FqhvSucX5O3ZufuwTX9aT4z/71tfNltVxnz//xUcC46KpLy5208npK1/1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ExGlDWotKKRzgNLajiB5XxVFNhqOmspnphRBAVLKxCjW5VqbEMJkC1oFb7RFUCiY563IAEAcgjFKJCqNggkwtFtFZh2wzM/NjUdVXVcxxpSiy6zR+XjkvWcAKou2MRkADfrDxgcRmFvYwCJK25jY+yjijUYfm7ztxnXas+v42tGV3FVnnLOpGYX9ew7fecd9//W9H+058vSGHVtvvOXODZ2tS/sOn3flhWOdfvazO553zfOblfXVPftPO3XHN3544wte9oa6ckl6OzbN3/bDGx/affDMC8476eSTtm48DaDZd+R4OT1//wP3vuy1L73v/ocvOffa0voi066Y0cZq28paU71RxeCOL631euvKWa0UxyRWA0jjwyRfFbwPMUxmUDFGpXXjvShUmYsiibn2DaaoJmkCpSODlxRBYoo8aW8DeO85MSCkE7E/SSkljiBMMNGVM62P+nnuqtqPfWUyF2IzHK2HMIxhMAqr672j1Wh5586Tbrvt5tkN8z+95W5bFu/74LuPrx1dmN82HjTbt525a9euM047Z8f28y469+JLLj3/6KHj1zz7yoP7HsucUVoBMGoBkiQiSJElgTBDYplgMjVqDYgsmkhrzSIJ0ScJEZomTb5AWpHWJsuciMzNzWqjB6MBc5ViYAhNaFBhTCnGMJmQNY0/68yzfUyCyodojJOEkihFBNEAavspO5SySrmUIDEGjiF6RKybxqeYt9o+ppBCCI1PKUTfKsvDR/bU42oS2lY0CVYTImgkgKSIUmROQZMWH43SWmmFpLVBQo1IoJ1r90YNqaIoprTO86w9HNagwRa2aBXDuqpScO120lpnmXGZUlqRcTbrdjsskmV5Ky/r0CibWSxKO82MYJRutcjmkVFpi4rzTNfj0bA3WFlaLcpCWTMYDGKIpM0JOBrELC8UKlRBESEaUhlIUWRO4qiw1M6cBdGGtCVjKNfapIQRyryllHK5Nc4JoDUaUABlfm6uLLIUx5nGJJyY89y5PC/KwliHyvqGAd1wFKyxhEiU1TV4z03tQ0yDwSgwqCKrE9YhsDGC0VqdODaBrO4owhir6CulVeMVtUadKTftNv/spzcJLP2fT//zoWP1eTsuWpxq7d23653v/9Usr9/6a6+/7da7BsP4W7/zrh/c/pPNF1981Rvf9OThvW//9dc//uTDM9P6Bc97wSc+/KHzt229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\n", + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "im\n" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "from urllib.request import urlopen" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [], + "source": [ + "f = urlopen(\"https://upload.wikimedia.org/wikipedia/commons/1/10/NOLAPunchCards1938.jpg\")" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "key2 = Image.open(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(600, 458)" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "key2.size" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "key2.convert(\"1\")" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\u001b[0;31mSignature:\u001b[0m \u001b[0mkey2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mconvert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmode\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmatrix\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdither\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpalette\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcolors\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m256\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mDocstring:\u001b[0m\n", + "Returns a converted copy of this image. For the \"P\" mode, this\n", + "method translates pixels through the palette. If mode is\n", + "omitted, a mode is chosen so that all information in the image\n", + "and the palette can be represented without a palette.\n", + "\n", + "The current version supports all possible conversions between\n", + "\"L\", \"RGB\" and \"CMYK.\" The **matrix** argument only supports \"L\"\n", + "and \"RGB\".\n", + "\n", + "When translating a color image to greyscale (mode \"L\"),\n", + "the library uses the ITU-R 601-2 luma transform::\n", + "\n", + " L = R * 299/1000 + G * 587/1000 + B * 114/1000\n", + "\n", + "The default method of converting a greyscale (\"L\") or \"RGB\"\n", + "image into a bilevel (mode \"1\") image uses Floyd-Steinberg\n", + "dither to approximate the original image luminosity levels. If\n", + "dither is NONE, all values larger than 128 are set to 255 (white),\n", + "all other values to 0 (black). To use other thresholds, use the\n", + ":py:meth:`~PIL.Image.Image.point` method.\n", + "\n", + "When converting from \"RGBA\" to \"P\" without a **matrix** argument,\n", + "this passes the operation to :py:meth:`~PIL.Image.Image.quantize`,\n", + "and **dither** and **palette** are ignored.\n", + "\n", + ":param mode: The requested mode. See: :ref:`concept-modes`.\n", + ":param matrix: An optional conversion matrix. If given, this\n", + " should be 4- or 12-tuple containing floating point values.\n", + ":param dither: Dithering method, used when converting from\n", + " mode \"RGB\" to \"P\" or from \"RGB\" or \"L\" to \"1\".\n", + " Available methods are NONE or FLOYDSTEINBERG (default).\n", + " Note that this is not used when **matrix** is supplied.\n", + ":param palette: Palette to use when converting from mode \"RGB\"\n", + " to \"P\". Available palettes are WEB or ADAPTIVE.\n", + ":param colors: Number of colors to use for the ADAPTIVE palette.\n", + " Defaults to 256.\n", + ":rtype: :py:class:`~PIL.Image.Image`\n", + ":returns: An :py:class:`~PIL.Image.Image` object.\n", + "\u001b[0;31mFile:\u001b[0m ~/.local/lib/python3.7/site-packages/PIL/Image.py\n", + "\u001b[0;31mType:\u001b[0m method\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "key2.convert?" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "key2.thumbnail((1024, 1024))" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [], + "source": [ + "key2.save(\"keypunch.png\")" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [], + "source": [ + "key3 = Image.open( urlopen(\"https://upload.wikimedia.org/wikipedia/commons/thumb/4/48/IBM26.jpg/1024px-IBM26.jpg\") )" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1024, 683)" + ] + }, + "execution_count": 37, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "key3.size" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "key3.convert(\"1\", dither=Image.NONE)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [], + "source": [ + "key3" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAABAAAAAKrCAAAAABKfaBIAAEAAElEQVR4nJT9SZMs25YmCH3f2lvVzJvjp7nd65vIyIisyKrMkqREQASBGpXAiCFVA6b8CARhyKDGDJkyAJEaISC0UoIIJVBJkWQmlURERr4XEa+/9932NO5mprr3+hisvVXVzP3cF6kR7x53czXV3azmW+3m3wcEAPEP4Skdp+v9yQUaIcoo5fGHN/8qD5NfHw416ViykQQcFASCBARB/gxDff6P/nMaTaerj81hZkaHJKD9K7gggKgE4v/jBk8ZXglDqtM4TPMwoCplr86UoHL3cPvVB//RN1fD7n+ZxsONYvjU7irLBcvDQFVv06KDAMh5N6i4pUrKYVaYSLlGwqvMfJx9fKjP75//8x+9+k390T2McJAEQEBO1mK5EoSgSpDgMv9lCdvV1gOCAXAYHIAtf68SaGT/irXbTWfPWf6O9jnbv9Y+6++hHIQ8LzspAaTa0wyCFB8CgJOEJAo0A2YCjP0g+pwEsf2rNqk+7z5MSgLXeTiWvxMECklKSG28atvt7f4MSYJSm39aph6z2FxtuRm0tixT/Hp25zr/vhcxoj6oJ+7H+nl7dixdHw/V1rnvV5t3//ZsSYKZb54W9wEo8ynvTEpEJSWs69Xv8/ZzEiABNSW4k2UwF+HsQ4dcAm285b3dDeP05sA62wx4H83l3PSenwEgc6Wptpw0Am0i6+0VJEmdLbcoUNy8kpIZzK5OsQO6qaXWyWVtYBkulzQ0Ak2QJKmCpIGAq8poDsDdJREArryIkMrDKfvJ7r55tb/9+jrPoySmbN/zcpo4jgCL1+r7JhcsXmt388GZaskSjOTgLpjZTANBmzIdz49vb+rzL5/fPkz0QoMjNaYjSbN1w/kECW0vX+hThKh1reIyQdwQUNwaJL5ley4/9IGc/R2dMduHG0Zko/qzax3/wqNxiy1y+GIeXRC00aT21kfs2a4MQcHeAgEDudA7HxPgZvwAtC6I2BVL+2rwpZ54xtmCPL64vOff4rrcXwf6oj35XLMn7kcX+W1rRDX+fu84+3tgFI1W25wdVOwwDTBSc0qjVdSa8sklbHfz/df5uIDc37yRSEbBGAq5DV+akAiDaFSI11W6oonmmCZB1f0x1F75J8HF/lZey1x8VvXiVaylVAnWdnlsDyPBTEsHF0nLkzsc7u5ywf3Grzgept3twI++hPnENAxDTpVDGipqUhWYgyLYKIjAg2Mczb1IMAijNYxDgGZ2q8EOp2GH++ffjPD9A0RyEehQm3l8QWxq5eldjIXubOkgzAmD4H3hbVVHmy93HmbTP6sA6J+v/7b3sGlGBXl2KOLxgFWjahlf12Qb5BKS6dtFWjzEAK3szz7Phe66oOjvTJCaBNjM9lyAxbZvV2+RRhuBGTp4qzm5SqFHQ1/F7Wacf3iCm/ef3xyL9X4GM3v66X3ZU9fe7cOnEUhI5XiTQyCNks7kIuhMKR1P+2GXi8/VhsmpjRb4tqvTQ78vX4IhupHudqZkBE3IQIKbNRHRiG1Z/6aZkgyaHoaaCEKnf5GNTKZbG3IikNrzZi+lOvDWayml+iy5u+smHlaGmkAIQzZSlItJSLJyhf1X73bjcX42n3xUHschAW/GqyHNp1IBWkp2BBAot+2aJTvNSjt3GqUTCXl1IaRi+qV9gjlzf/P6d9cv8Ok4ZjgCk4ANslMbQn+amhbo1+5xOiCL/9Ev79MT3+50rYs/9y052+TlOY3Ym+ALzKIzRlNADDFMjcVEWIbxFPFYNwnO7JIOpB9/oxAMONFhAySStTPjxbJ1k2AVXsu8BIK1j6Mh+A7sudhDvBCJ21Feioc/rCGXccXiLQL4cuTLYm4/0rrBtn6KNpUYOwldIL9liH0PqWYwyxnW5/I8ge4JGQ4OQ9Jc3MpUR4gS3wcuLt6DMwGgs8nJnaieGcZdfCZptmGWyc3oIH1ZfnXgSlGEnGCdrstIJPrxV7skJdZjykMyYqSlZMZbgKMl+6DR5gTJJXwOyGtxzPRaSk0VcAe9KYn5mJ3zIX9+M9xMdZevzAxVuEWZ3JEIgt6EE8nayOVqro6UhlPsBRMhl9whyF0//f539F/94u779Yu/+PHNZ5+9+ZNn15hhtm6kBMiDVv9OGvNbNY6f6c3zrWnE3Xi1/1Vn/+uXIRB32tivaHO/1GHBLOemSBcgf5gxGqRoX7KwiRdRsIx+WZuArIEj1Sy5RZVtbZwzs3KdwJlpifJIdiwi42nFvMKDfwu9v17S4j4B0NYZqwDvE18eHlaPDOeXBJPQsSOMlIlPaWou75Ga2dkcZtubKMmubr+R5Wxm944ynTyXTjZ/YF5+8XtupLa5Q4Ya/oSVyoVqeRYpMzRVGF8L5dDICoAKYPI7gQ7z6XrM1Q3+HFKptdmS4RwyMzrTkHOyHY1mhh/CjCr1OCWbNOAzM7iESoML3CGXmubRPrz99Ytn+1NWLZZzktcq0pyg4Mp9nwJPYT5iP9T5ZAzMP3spLoRXw9yPD9/47h/htDtNV1/+m/pSliphIbUVTp9G2Jcrdr7h239Dh6jZRWcM3RjiKaLuAP1M7SyfX+i7VYU3D1n71YDVTrsYF8Uu9s8m8pQQ6D6AJHDxBH7LlSCoU9lidqxeo8sXraPYIsp+j9gZqnbgsZFr/zYmwPtn+L5LF+PUOdMq4OV2Q7dsvdraTT5JXMf6lADo1BV6PAVxojIkh5bRSxzvXn7FNA6oPoGnWrbK49/uyohFXT4w0KxqsWgoEYI8JTgosz7+DvDQCRygIIfg87WZKjO9OGmZPJHkMCLLvbq0A6BalDS9c3exCQAp2Pl6GsZiOz6jERBmCwHAIdv9yPTh4c303b1ZAVMaUnpHWih1Wnilgyca+MZM0+HA3X1imaqlK6+12Vg0wX9zqwMzNL34wb/yj368m0cipQWBIklPIbdH19ZGDVTYbP/mC1jv45l62vDW4pS9UHpPmgDhNFp8eqsm17lTsI+q3R+MjTXqwFDG759Ye5I1me8ASCxRgwUqBwJQx5VqU159ZE+9Q+0N3HxyPvxGkIvj9O9oArTJaXnkpYZ+/3zPB9tlzftWiAJoulSwyzPa/tIBCY8VSCeGJdQQktHd7WxVDKpIN3dDyeNQ51MZUD2juCjySWTxxLQ2JgDZwUm7gbAWCdgAHEG04PRHkK0hgGUhBM3HK6MXE1FqrQ7O+4Zm7klyIOawwWXgQBAVYfdYLXU2+nTMedbIyoDhu5QgkWncXY91zOM/+02+U90/5CGxnuq1VydpOSwJNoAqAKwEfBi9vPj7f/Irw/Hdkem10eSuSUpQrf/8k5cv8OXbZ1/982c/+tPXx2vjPDOrDG0zkkckZmXwb1/qFOuC2m3/7gvoK3oBJTrDa/373+nSYmqs/2nAw8ELqML1X3WAGe8KDY/HBL76AOJ1BsEXTEvUi/sdIKzzJFEiaqe0ZYQnhqQGkTYTE7ga1Rnd5Oj4iCt4fT/ZLyDh7279ty9erL83Rdnn26XLRqDQGFE/YCtoRADuTQIIHeA/8U70MCooF6FavbkPrHGZERXOYTjRsurkgHOoc2gB8nI/Lq/Fp9L+zeHSbzFNQSUVH8o7S8WTyRGwX9P+qw/uT9fHBOztgNFmS5DMvMVhCwnBqDyNV/j6H+zfPtvfQzN2I0hobvJzRNiFhAtIq2tXLTBupCRyRw6uZMXSybPqzEFzzVcHjA/X9V+9fnk3HTjgxTxNZsYDQCVodiSKqSSIphLgK6UEcML+J8Nu0LDzg4W8Ufr4X7/85urf+Z/97OMflV98c/i6/vRj+9Tz8UYcKIxqXOEkUq5lX4uT1iAemzffWNoO1lDGqmGSK7Xoe9zfgnMghhD1rM2oaApZqdvWLRaf3GnyembTS7LgBqWIasgBkqDLFT5kpk5UW+s1C5JDqYkbVwiDsLEXZ/wqKhbmD6Nw2oJ0EQO0Ae/q74vvUDCes9+Sf4ANrCVZ49ULgrE2huY0jvwDipVh1W2s8eW/3KywAErSAEAu5XMwhWImyUyMdA9v41++v8wghpnlPXEj/Hh9STw4aCfJ29S5xlghGb1oMMoh1PiqPMKlK+apJCUpd8lndS7MY/WcT5WzjLCEunfbCadp99sPhuLTcTiVwcXESPOgVZiKjWWzHwtyUQv7AfCEgoSalzXZOj0u8hREqByGGRPcaVBqgnmjYFIEoYiaRWoaVC0TuVaHluyQ7kgSNgSwJli01aMBNFBkqqCllGFZRBIPyW7u9jf1e6Pl61yOs4NmFvOviOhJRaLkTPQMOuSYhrlc2//2P72acfPyxXVOZDIzvuLnz8vVP//Z3Zf/1cPb9OzFDe7T9dV8CLaV79o45yo6a6XXoMS+cRDAJQcDFgTuTcQyVmnrzGvOIMkFLRuihsDLCugbZOyhofUJTbueacy+fnqkZ7X+HavJgIuL25sRGiLiz32eIYF84wRt+6glLBB5F+uDOr7YXN2EiLsvB/HYhl1NIzYmZ0f9F0N/4ntoiWB2+aKgxzOrvflo3gO8mhM6BO9GTvURyJfPvh26edcA3eppV1qtwj5+JuZ8dNnELJODrHPN+3w8zTbDVEtV9Vq3fsJAfxtf0/uHQiEEwuU9avSn7TTr4c7TPJRqBMw68am7trxlOLmZCfXh+qsyGJVPYnIid8RrCPk/Kx4/NDEg9KhDQBk4TNVYCxmoXm5JVR/trq7NcEOvw04TCIFmRfHc4kyospN5RTYdDXAJz+dTuko3d6e3D+OnU7EJgBnpFdTu+fV38BZ3d8/21VDrya52iAylxS2X3IxCbflfU9PQuS3f6vdqrBGrg4RzaA8GS3SyXDcv7lLPqGii28PXlNrze0JV8MI2SyBsy675zmy9rh2x+fkpKH7x2VMWweb+7egXPbMMqEcJbEkhWr4noPss1sefe0Seel8MyRYRuv3L1jTrg2dbvzVzcXsZCdusX/fRnCkkLLYGvLmY0sUgIyzJ8PSfSSY+acdFnMAeSYvkEjaJJ2oCFwLzsNPRK5K5BtrOyvHdKSWf59lRip87pzrmW8Z//qLl97CT8yqKmg+IBBjQQIJ5Iy0rQ7LjHjWb0bq5KHXooJ7i6ECF7m9TGVJkDGQJSc2WtDamvUIC9ATVTr0Jri0EMULVA3hkq1O9yT5PlV/fDF4Fz8nksJTbBmSzjCqOCVWJemEGOXC4yyjlxz/8v9u1kIuehy8SQ84cjvreV9zd3SScDnc35c397urY3M1tjEgwQs3GkjwvNNZJc7vQXZP0wOxGsmtDOAE/27yFJQjkUIYAEZ4Il5mf7+tKY2cbTXQozbPP//DVowkrUogt7r8nNI1wFh7j9l9C3Hi/lz+cORc3GSQNJXezgdvXLZeWJQ6nu50Ps//p8kvnzoEnHADkGazCuY9mHUjzbS8Cqom6c6TDTQR+AW/LXy9e/PTn3i2Y5T5BLp8rvLgcoCpdV6dyff3u7a9OOZe5lOCNbSr2RZz4vSK1RZTzRpksO87YR0nWd0XmNlaHXJZSIz1iBYNGQs2gkuHhKoe/06dTZoWl1SYhAaaOL5qm6D8vAkAwd2ZPKWdZCeur4m68P92VklPa8XQ6zkwJQrIDgqGyW1Jx2pBchCN8fUjP0oNfc/pjlDK+fDbMXuZSHd88/Hl9zvLpJ/n62Wg2FEu7m1KbpmnqQLEzCmfWYsM2JQNgm8OODtkZvIwnsK5Q2nhTs4LWbPt2xwV8brGgBVnrYm/9kWa8fGNchnPb81vv/xbpsUUVT13NGQhvGawb/uhfXdIdgBCVT+vMJ959ztBnXznLbAKQmgK7vCw44A/Lx8ZQQa+0RaSsL+S53te3TsO4mE5nAw/fkW8y9SKUdV0TvJ7mlKlSaVPJqqfT/ZDzPJeC8N7ZqgjCS/FIADxCfI3bwwRY0JsAsFWurMsjAl7K7i1cVm3I7qbmzLBmAtSIEoAVUNLxeYI8wVOdfXDXui8hU0+N4LtAtOY8IxIZSbgRSBzyWGElVWiecv5uesfd/qSPp1Ox3U7FktHM3qrlvlTQ4TxokEN+FcEG2Od1HN7tbl7u/KCbnUy1SgT9pr7S+BX3d3uzYVenkofmuxekuS1Yj4cHbvdmd3V9oFXjNtMgSFob6Lv8K4DKbXVrn3/D7Y6IXXpbq0ao3jVHMOZjwm2aknb+ukeQnw10PVaa59+zriPadekD8DMS7vuqxbtcG1/jwgRwdNzUVWsTNRvJsL06fXRp0QWTnd1xpvLONHBY7o/ny9UP2aawTZDidmZLTk4relri8vGcPtHlvVqH8cR7G5K5/NwNhOBp+Z0GM7OazWDlmFJ1Jhyur/O7SUn7fKyQ1YuKkhAAeER3jwWADFI3Yc+NSYSLvsUrYkrOsvs6yVhzzkemgv6X2JQSINXMJRlKNZeMHFRkSfS2dbnxSGrmxrHzEFsYIuYT/xjNjAYlx+SYDnZz7RhUqr6eHk6ehwECLRFD2+3bKirLdrvsFdRMWAiX/Qfz58c7n9LOD2/nnbtAs4dX/+haD9OXb4pNZinEp+d94DFFVmt3GMWiEJAPjbWObFGUvnFqWfnNFW8LvFm2qDF8rHQggbW6TAuDLOQC0us2h7vHTbjhl0bNsv7+5X6e3dgs8KcEyJmg6DDjfVdnMOsTWlgzrlat2FXI8r2W2NL5aoGS/b5L42L9yyJwzkb1pAnQHxkmy9NQJdwtS21Gr9V46uXNbFnUJDcCwDzSHhZosMT4eLnx60qsGGHZiECC3JZukJIONVtJyRJhlkzajbWk/W7OVt3ABS9vZx7Vg+v7nroisauZAN0Bukqmi+0X3OqozARXNqddkJCMRrCFVUgvoFcavMxF7urp4UmCpAiTkcwIJ021yPhJRC9/IEDW4qriXO/nPD1cXz2DxvQmDdOL75Zvvj4ccy2yYBAB4OBIdGYfU600jjTRss239tV8/WzHh9NosBtUOmn26pRe3+f7zz/ZcR522U9u2VSPaq7+OTQfRUMrB6Ah8p0AYmwCoO9cbZHcElXAqk1f9+XyRuVHBGIZuyGxhpkk9ZRSwlzckFIDUsHG2zCAKR6e2ri2qq3RXH9/wJNLerggyO4D6Axy6QPopkSKzLXFFNz4ABbDbstPHR71d11m2F0KgMXwiRSUXmd4ltDzFH93gagoYH2CERTe0uXXyNe41Nl9cJvy6fM3Nkloyx5/ey5OOCVBX9NsAUSiGXgWfpNX8GamQ0IVkZOX61yOPqTCHI9oUN3tybd9qwwHAWSnYUPPxCwoj4dyNR8s+ST5cDWVccSb7yvdX50SiqXCDDhk5tUjv9kLMzVrmIcr1Prq+vVV8fkGNh+voaFvw7HNOnLhG42YMcUas3m5aagzzeAZ4OlQHia/4unFP7TjSN+VMl/9D//d/+P//rXnyOZlRe8zICHByxxPz+4VNOO1E89fHetVVuXN7Ld6N+12vB/x+kX6G9tzvBkAq3tggKfaCHdIPimhDM7sRWlOGVEZ6C6Ab5PRJViRQcxdfY+IPMPw97qsKTtXq3FWrWWuLvfavLgt1G+WCO1qYUpUtQFi2h1z8ipLVp1Gr9ZwxwzAzViaJl5iiAJgUYRDhDNXQOQMqLt5AHrlYF4NES0ZmqAOekwmucOMlRSYOJEGBiO0iKdAppmkdbGwGBkE5YhauBAfw0J8gRhKyqqRZQaBS9x/yzCdjpsTMJoYtL/XxjSyRLmQXAbKY5M6OHvsHakwACkBm5JdrfX/274ItAXQE5D3TFMB2lGSLDlpkquGzGmp6IHn3MEMmQmpC+hhGdniAmvWQWxYVhV38imVOvoxX0NgBVOq8zQmq+WQieGhPYGROQRPkrkLSeGum7oNhkAuGy+jg6oZzaXSNU6jHaZjVa0gmFhhLkoZhgGxtHNIQ1mzBCpgBq8WITu4CQafvfo8qZYmQdEzyAJXdwOr58EsUWorgEG1ap5VpqM7Eur+ej5OTisV16/w13/1Ga488DZToxprqzm0+ZS2vLWUa8ynISc+DLfHh2cPuN7dn3aYptuBnz/7wj2Zc7AdsUuyUUw5x+ZZpgVFwZIZJHJuw95JDiPrmCAX5vbeGk6jTgPaI6B7Ai0KHKO9gDdBUr2WUqsA0CC511JqCf0PwVIimNIEWiKRYLREjrGbwViCStvenddS3HEVe1N6GW8CaEa+oZmZEZZFMc9N+M4N4O4hSV4MzOwCRm4zzUj52NjcQIPcSah2xMBu+giZiS29fWuadh6noSLiNOLfJZV14ZTl5/jfZdls0y8+NCZ+Kkd3e6XA7Mvre9iaoWHXZ24sJQqxLiR9wSWdh7tRtV7buZUm8Et/12bcMR7JadktWVYyeEqoyrvswnAzflnnUiON6yzIAobLwxuIeAodba/M7nfq1hoFiLSDrMoqc0JFcre5Dh6GMDNBd5AeCWiUAEvWVIdT0CAZUSSV2VoddKB6kmH7InYdYT6ED8AAwAgXoVJdh6PX2ZGQvd49P02VWTTu/s1f+vEmn2K0G+cSRZCYCFpjM7j7TZ2ubPes3k17fzuXlxNKxXhzl/T7r/y+fOeLSZqr1bdWnVZO116ZTfVDg5CpD2ADBCNDAFiUGYBASnSfd36aU9LVBqaHxo3rgdF8wBvsdECS67r9/doG0ghXVJmYJSNpx1pKmea6cy+1ujK8HIujOyfnuBFk/8GSJeORHPbZ7KGt+CnKaFglVxVeSO4+C0Z3mKWmiyJTE3pjlmJdo2PPrmmnfRhEYstwmMwM3mzOJvRayEwEUCxRqp4APYrHE7DqZqyeGm20TIZvo9kzSG8RrpWhOT/65/IeWXgKADy6WgOcs2hOPL9h+2Yi9YzBNkVkCTBjb+TRtVyvXr2wlFdfDLlq/HOBJggoZC3IuQCoUEVN2WcMPhflcZ9Va6lWrTYPRdc3aOvg4f38g76AzFYX3nwWbfXFKstIdpRneEpTydM8HOgFtDSoSGvmgEGKjTDrc+EelaCQUGtvl8LoPLPZDxpIIylLyQIoNpygWqa5zscJJiY3m/3ubp5SziT9U53qzk41LaIj/r+F11ryBjHRTHKfnuXTeLv//X/2J/8dm9PMh6v69uqT6a/0Rzc/v/v1S/1ElllkO6gWf/jmx9OEhDIdmtCfZW4tP7cJsxYOtMRyf/zw5vrKB5vetQ0M0QzOTX/UVl8RrErODQHMzen5Zds9b46GaoYqS1nM+eqGewlmgCWT0+yosCVm+Twdp5okr1NVldfqrn1TZ/uWuHQd/I9EWkqJD6RZJicwibQZBEWdGuHeApK7RkDuFRDli9+3MwyJSGhkatq3hyPnts+tj4tjoYCFIBuDWMSjY9sf5U08cZ2nAjfzaZNNEB+LsY5PaOKnrrAxznQpgAvvGhcptvj+4+OqJbFj4cRuh20et+HCBEbpGi7+0H4vRi9VqRazYph3Vckn071Kvd7pUBJqdXmPizTR25aQNhsJeY8KvVei5q74Y18Fhty0YzblHYpXT54Sa5rm8T48XOb14C4kqrfcgrkXWONvgNjTKTM39zoYa1MNywY12J9a5REtJQMw9QroWqbpVGqdayLJ5O7Dze7dtDfzUurpdu866K4TbEJrM9iuoS36CIBImORIw+7qe3/80RenD/yLkou9ePFX/+V/ePNrf/vVj/kaaTDB5jKmanhI2TnQd5/IAYknypJ5ncMB38JhUpLcTw+H4frFrdnctl3B5kamCI/aKTQ+pOhK1PoBaCQBl66b8ItGHe5GVbhRda4OoQqWEnRKiWKyXQhOKOV9TmQnvtR8IW+k6tX1TpJL/iDJ1dI7QIxNcD6rFcm8XsGMBEczMxIPFJiN90Yzy+pe3iPZTB93RdKog8QhtnPRoEOj+nCdplR17rTsfucaVZ7p3ED4A9ca7lyuamEE9PcXqLlD/g4iBeg9CzcmQHB346snWDSeOIHJUH1o3/Ym+tmcQRtB1aZ9OZUtwFgvM7PisKHAZlodADIZ/XTKw5WfULPVVmJ0MbD+D9Em8G14qgmAZZkkSnJLp2uv1/Rn05s6wAGxlNHNw2tfDmOgdmQpkt3lqIKsRVjnK4qVqEnzPFp4tbkmfDLoF9bCmEaEcyxqIvRQp2maKyxSeZRQ+Gxfq+WMWku5vj/m2yFUC8nWbXSFWA0i66pJ5utTfbmb6/P/8Ze/vx/nakPxndUf/vf/3v5fPvt1HkarDqdliQl5qhLhBrt3GZw20BnFGN7dJDFwd3B/W++PX1Cm0jKrkJgskRya7b6PKgHCvdQqJdVaSvEZkLzqbUMUJkm11AheJlYyJcupMuqoX1GqLryN/I9wgMkxpTwMYdsnS8adpZTMsGv4d25NiqrXWtz1oFpLrXIvEEt5DUFy7RFuiRuIlpKN3eyzkO170cyM90CL28QCR5Mo9T4Ma7PP2FO7ZCQCveJJcosMS5LzBSR+8trk7HdPi7o/rV3enID2VIHBE1d3Sp9Z4xuffAty9Agg++dJYGKqnbK9sb+v09z8sM6qklxDJY9iD6BgqUrJTdXoToiD5qt6wjDWDGOqpcESRFVDtJ4E1/d1F+P7lyD3OfXvOUiBRh3z/uDf//pNJWv1bLN2oJI7LBmQEsSU5a5I0DBLDHUpCQ/XNBZCgBcRqSVSeGgQBh1FfB2QrGNJwGuZ6xvVUuXIkV8gR716MRxLzjbPVToMd/k0zdOuZV6V7pZpYK7n6Jdwf/J4stHeun79afnkIzLXo9sDXv17/yXK7S8/5MO1C1TlOKlMKMcq1TkyEADAjiZk1ek6AKcawaKCtDTYM5/nain1qsA5DBtMkamYqllKicxmeRhSciZLRswdHEq1zHN1EPC5voXkZSopWz1MTk+Z7sQXoFki9pK8SnvSYGQm4bXWa9V6qlVHdoqmJZIp+q9wR0spj3YTKRY0ryDlEtzdfZJqre6TSimllklhazijWdTYmOyGMZCuifeNmlMwOo+dlJsAXqrQ2r8NcsOibrG3KWjq8z3U2r+78REsvgAKvkYtYat1zT8oULAKgEtk0czqPqRu9TY7F0hlnlKiSvNkdV+Ao+c7bB+0RRhBmJeJB/25cmTKS65kyYaHbMjjdBgxDkMSU8ShQrCKi/vEo/xS1iCI0HPTnr7yJkef4KZsFNOwe6sPDnBDrZVGZJokZ8rjWC3BmdjtYtBSRvUONE8C6ZCZFYD0cNKyksmMSLRkrfM2+ihBzlI5nY7zDAJGDKhmTlZ4vs1va1adTg5xctTxptRm27L5YF1sjNlleCzI6frm1jV/VX6cle6G3+/mmvn5v37zsvzpL76+u31z4DCae8Tx8m4QDW5GMkrZk4l5MPdaRMj3bZ7ZLAK2SjcoHuYMiFkCXDJVL26pNAJLjYFyuD6QaSlbollKxpTAlE2lfghS08MpX13bXGBTsvlwLNiV4vK5dN/vG8khqKYhJwoFBJjwvJkEWSFZs1SLC181J0uPxgw0gsmGJpAHpjGZ0cxSYlQ7Rkqzz3OtmFVqqRUnr3V26V1zsqrNZwCNJMdWbZkQKM8b72zaZgsCzJ2JtY7hPf4DbNqYUNtfgmmMcOdqGeRmqoX6+8PGRXeCLlfLeGzhVi3t1rud3OjreHyYkQxiSslaiy3G84gLU2Xz+NxKzbrPRMstTXeTlpJkgDENebJkw+D3R+T9iHlKlMsbvNkU/0m2rV1gD8q+78puFn5gd5GQSYDTiq78i9v9334+4DTkOtRjev0deC5DdsjSDJ89abLieT/AQYkmJKAqm6bxxWd7g4Z52vvp5jiyIUaDW/Z5V0FUyzWZpMQSHZN9LqfjVBy7WhXIp3BfjpbK1XPO9Fyc6TRb4kzWA49XONkVHvY9WNNgaavCQyRVysfpmepu3D/7oty8+30e9tApjR/c3d0+/PLuo4cRliDQjzsHZuLh2XF/yDYjhHrZzYbZKFoGKBX05Ju+hX5aDHG0vpgGSo4R0n5DWQEVw1afOpV2n5GYB3oxgZaT1TfBWSNpw468giUz43yVT2/L9bOHiuRTsROPX9r9h1PxeS4O1PGb29O7D7+WmDJrtWxF+ys+mBnZfBe0dJJcXnHPBC9zhQHutOwIr4xZjuTsNOS0s2vnaGC2lnBoqu4Ajyplnqt7mar7XOXzKd8MxQ73dT/OD9dVzBkeB0qYdadvAIeUKNFMKowyjFotodQkmkFVKXzbKmYGuZw0Gjk3f7oiFOxRMmq5+2K8pWxYuGxki6YP46n3LikMgZha3oPQmlshmKm2zDQByQjPpWaTWOZa/WC5JssppzTW4301zDnY39LdlfHkVzUmy95uX+6W6XVoecEbDBA+Nfqhyh9s53ih0/5azOYV5vk6T8fK6nNFMsEEdyVS0cfLV18kBItSoZCt7AKmBSAA5IheSzOT9XwgNK1cT0Ue3t+w9bK7nG5Mw1GgmQlXV/tM94m1CJHoC5dUDQD1MKCc6ourU7Ih52xzUnU6ZhkgL835i6SKUub64NFC6GQ5SeR9snqsno9Xrz7Yl+LffFBe220u7+x2OIGnG/mQgN1Trg4RoEeplq73luX2+Uf8Wi81MQPGlGf76vDTNzdzOn+A1cVP1bF0PDCqGp4Qqa2esiG9LpPfq3rYNv1Mm3V54qVOUgUtmpqyedcDXRhJlnFHz9evB4zj1bM0XB++TPvxT/fvzBIlla/+crjafe8beZ2Op8mf/Uv743efvTm+aBB2DMu+tOgNZtIEYW6emeLFoaoJAVeT4NWh0ZkoJkg0o3ZmyUDA0rh/lo0eHHIwKiXVt5mlgPgG7hXgG8mri1Vwr+67Fr/MHgJg3+Y7uIyWkssrWsKowZTcK5hMkR63bPxeceCEUdFCPPhfVAVAOtFRMUDgBJrRcOoBQEC2xCECmvMMsYQXoOW5uOd9Zpmmb+ZiOWMoTIRd7X8wv/ny7WkqV4KLtKuZySUkrnWQAFAF1afDnWeI3essWnPyuteSd6N5FbwKlDsdpC1ZJ0lYe9IjkrtCNpyTbXeN5ghFGgpV3HtKWoCHekRlLGwy1Vr3Dy6ngLR749FsJz/74IZl9rcoXmRDCQUszJkAmQdj9ZPDvQassSrIDTSjmC1RAo7y+XQ6lalZh2YGVdeVSh3Haf7BcJOmWfmD26/y9//ejc/l5vV//dVwvD75yGrZF2+n2v+zsXCryrm9EjQnnu7f7SddVxtIpHzAL8a7L9WNvVgkMc2kIpDYqaY5sVoC1COGbpC2V6N1B/L5gq+fNNclKhanjQggycEK7SNBaGmjbhCi1Dpuz/M7rwInMcPFPKoO81/OOeUhEfjw+OZaKCnnBCHn8avxz75ID6/vVd1BhtccEa0AMAoyS9GxAcbBEiD3G0QuhcvdHVLruDS6C5K+SikR1bPkEdYimLIBOaHArm/2ZjB+YuZVOe3ZqhsiOqF7eXWXHuLp6r6DWgE5bEQEiAJwuG7dJZPndpTJ1OJJD+EMa81n5KmlYESY2wgP7RYanTSpgOTYFVDIV5XIomFTnEtqPNGbeUQvqdHqCbh/Q8tJczkqUbCH8Z2mw8y9jhAt7/KYIctM0ehqw+XthKqn+B+ADDSYQKNXJc6WQdB8vN2zuMurg4jgSgvd9Zzxp8QKL3wB3deQvWXmGOZpxjh2b2AWpCqZUL0iD1Apu4eaIbnZoEKaO0bAzAlaCFs120bTEBpznrMff/vVyzzknIZ0yJmkUW4DRUuWEiW8dS+n01wt1h2jouDu/vbqcNp/+CqRRQIO81vY6+Pd9fDJl/9au8F3Qgnss2RXt2Ug0LrjAsQ+Hama9g/8zv54fzTLkIv7t5/9yf3NNLDdJ4ByGybACV/6PwiAPEWt1ROSO4pA4p0d0n2b4dm9XT2BqbZ3JAdhZlWrh1dAa721bp6AlOD+AoHmDnCrp28mKVok/UX2q+l0fZ+MoOXsv3/+9qTrvJO7Czha4MITIJdrlgtmzJHdQILZ2FqNmZmDxkzAmU2WC+Ry90/MqFo8+jsIE1mdOZ3m2bzk67fvmMY0PUxGyFI6WLgjESm2vCEGM+NPIkOq19kvTqMTvJyOp5IlQu5fM3wObEHlm7bOqeVZWHUmutdATOztcoyCIxq4EGxF4sC0rKmB4StR3x0se9h67KjlacTzTml/VY4pZds5HswgP96/Njgz0zP67IDdJpelVo9hm7iCmfyxz7HRLyCEQ2MIBvcy0JiG3e76Nk2TW/HqrRyg0wPDd8gz76N55EPgPa6Q7LGgKhTMhnFGQD66AzBWos4z/Yqapx2Q4IAjZXdS0PRWxz1LrYBRVV4jOcvnMfIDhzwUmf3eMqXERDPCklUlImVaGhKEWfK5yiwyuF3FbWApeCi7j+4Sf/385VhORQ/PdnjzDZ9x/7Ycpenuxt49OOZx4beFUSKkQEgw7gbVZMjmdvj69tnrsCSF6z+/un39YZV1+B6yYzgRDnju2yK1tK1INXyvV7m7nf6QAOgup+587dKnxbNasZTYjxhbew7GY2czAxIfQnrrNt0P9erqWqoOGL9zmkev9OdldsFP/lP/rKTX6QqxvHdQdZkVEnL3TR6sBHISqkuqCxJpzipnTmIaPNIhHwJB8L6d90CjxJz3U6XX8WY3T9qZ80WtDmgeSLij19Tw91HzyUN0hbaWEYjnjJxp5f2QQ33R4Ko0g7uOktyl+5YQNTXdM1TR6D60jYhMy+oDhExyDmMWGWIys2MT1upByrZzpYUPehPN1EWBRICmT175CXXyuVLVcV9dKKd5h8QKt+KFNl7vqeqpureDYqxncNJMwmVN3SbzsBGT2wAYPIK6aby93ZXTVBSARkhh4HaBdW5nbK44GWnbSzGuDApei9dh3JPJSge6Xq37JmqxBKAeB1k0fUbaTzMIwY91fraDF7kTXt1D4XK+JgS3m4Gn4fmHoqaHQ8XruQAV3BcnmTNoOSf4VUruzFZC41mFmdfTfJd3r16++8XXL/I1Hg427FBSfulvdp+/ra91Olge5jLYcmZcQ0FcTYCIYj83DJaE+ZR1uL/bMfwxrL/6XhlPQ8nsvA/Kme9BtXN9Grs2ysHTCEANaHQ7pFsNW63deBjLQ7rNsol8GQTVWof4Q2+HjdoZsFmxNHqp4K15FeSv9/M1dKjGlCj3z30oJe3vplI5JPqX06m+0PHZG9LgUpLXjjpgtCFiuSo0AIklXBpdMDRBJERRBu0QRY8qJEnjlddJUZsKwTg4KM3vZrofTFc38yyi1kzIPRiLAF6p1lqLbgKvhUAj+bNEMVM79+oCB9CSQS8DqdhNk7OfNAE6Nil6HwUBmppgOITwMFdIstxaclRALXjfIwkCoIrWKh5hTfS8jqVa0ilRHH/03/jwNA/D56djmSZhPD1MpZZyqm6ai5/efu355ma8T0KA86CH3rpDLunJXP3m2IfL5ahGMEn7nFUl3lxxPs2Ch1cvYuAbmmvVCAu06D4AtMKGyysTcME4piFTdQ7AIJEp0T0S7cEkqkzXSC1+hF1pKSA+WXbzudRZ9NqUmVgHyqH5VDETPJop7WjlIRr1HKsbZTmBKRmUZckiUlQJSKS7D7vxOx9Mf/NzfP+HtzxMHEb/5ubF9Tg/2OltwfV+fF1yFXPSUhOxpGIGHBcAmj0vNjp5evNsvPvJ3/7+5V3zYn8632pXsK5NLGmeAU/xSy96b0/XBmRsBUDXHlqhxLfktHcbzNvP/RVsJ+LMgKi1nXaPPPdXFxrTQD4kug3mVzZrTra/Nze4PKdn5fWsjESVCr2quubhiIEgElQBpvBKEySnZkAVc4DOGk4+m5lIWiRWmTBGu5gEry6pZcAJJ4CARY9H93pvEpMqsolDQmmdYScGmmrNU3EEOdJYgVqdHAAS1EtjkanAmMzMDq1W+huXaMk+baZrZcSTa6Q54Fmj9rsGjLMcSERtdZhvzYwQSqvKbH6DzibRLVlQUu0+nLVCDoDikEL/q+nr7+zy7c0txzzkPOw1z86UjocJmE71/uf/vy/yWI4pVGY7LKG1BBVgchrkl7UHXTD25F4h7NDBWB3MmfNpcpUaR4ckNVsyLG8uguyS3i7TGbvPKkOAJfDavXqZ601MUykho1QHaLSURXoJZ4M1BQSHWJ3T/QTRS2HyOrTB0xMg6cpOII9fPhjnw4RkhwMHOLIswaM7boJUkyWVgoxImFWifP/87qNv/uqLt/Un/3iu76a01+nq9h//2W//5vX9u5R2mN/6zXTKSaVlNJ6JuOa4iU3cHdMo6cjv/uoX//CDrypUSYqfXk/Ppny4QYNOwf+wKKMVWrSO3Z3U8rcfW1NBIIEYtHZkeJ8ZUBc34LIrsdvRpyS1DkRo+V1Rj98FhYB9rTJ33yefVVA1zEaduPc6CWS+ny3vyyxLXtzM3o27o25lrYH40RKDQULjDPJI2YukTu68Si6MFFirEkAXdXJmiqpdLpKk3K9CvaGKKaGWWytz2nNyVQzZp2rJK1IWo2V6joJH3yHiYMkIJEtzI9OaI7fTadRcfZSrwkVLmaj1St2p5T4vGk/6nZlcTL0oinJnzqm0aEW2MZmkoWWlmuRy19xCZ3P4NtTKPzm1zc0NAdAhg+uPvv4/H4SUxmrjbhyG3dXNLg+3Vy8efLxJ4Ie/KfPVHY8n0lVKGgmoOdmBOGfCws4+u1rRBLstX1LL25C70zJqnau8ehTMRSdDkk6XAPa8mH51H0Bosk2tRBeQJlqtw9U8z06aDXM1SIlSMZd4uj0NU55u5519/Z3xXeSsF13VU+WM2zlzrruRDxlyWCoz06w81If64W/2x92sDD+U63d22h9v7jENyeVwmM+yBM3VMMrr7UPe4/p+mIsnaM6zD598ko9/8dsyjg9//Mm/+MmXvjuNg9c/+w8f/hdvHdXHcTgeayJAFk+CJVVscQ4JDAXDIX3nOGBiOU7/4Mv/Xf4PytvnPmi6++ru/nc/2d+bhv2UUDjQzfyY0rQvjqHaznuf/3I92yBrKY1oASNhN8vgHKpgchs8Ut6RGyfXVqnk6G6rsPCHRlhsLoCQ/KTDKK+9wUnLlo2w1FasO5PkwDwH1STdHoisCmaAKDsCJxi9yOBzzf4AFlRCFSmlpflNNMFoGaHhUSZ6ZiV7A5MQa2AFZaaaihtcFv3PW9yphoSqQK7cDeWUx9nglm2HxYBZbFx3byZPrKao0ixQ176KBliKoL/FviYkRs2Ym6mKdrI4f7jASBBZCicjJM3uo0vm81I9ObRs8wgFEAMQvgcJTMbbJvE7Z54AqTqaTzzwr7u/w+3VkMtpGjPuvxEw1YSKRBt3LGkcT/XZzanUQSqehiS0tpnN4quIylBvJk8v415T5sOpmsCkmrJp4s7LmL1WysVIKnMgCIEKIgmnd8eXEbloVVzts2B8awlC2Z2q8+k4VBeNFA3V0zjHg5jqu6vJyMnzlHxYM61yRnJ3Jxy1xDmmEFxEyjnTkQ3ynRGWcrpxpef5SpN7Ox1J7tH6j3DiYbKMWnRg9uIu8qMfXX/+m/svn9m7+k/+o7/eHQ9Vyeq7P/mr3/77L/9q0D77w5xuTs3m6OeZbw/AgIRiyXBzdxOCMNd3d//x7c1fjXcHKzfzLv18Zx1pxf+3ziiJzgX2bRx6DNdL89NqPR5b6+oivPokoOWglh6Hteb1v7zOslvXrKD+8EeIowaZbOrcL5Gflj3nuVR8oiDlsd+oOZYWYHXhw5BcHv3HI11iQTzN/lGUPNUgb/P1MNRmdxsTYMz9TW0KNVxQkEcCVy9T7+FBR/XoQ+FS9NDz6mrurTC72PNZ5AKjIu6snbe0GJsnoCXOADSyIDKLrmLVeBUlFygty9wFg4qfXn/9+ZQHzFfXu5TNOCIn0U5Fc1Lxt/l6j6JcDSaDj2JvsQ1xpQe02N3GFFALD6NltIqU0ZwJZqjzXFRbQcrjfTvvVtzJYNu0uK9jPD+TNNT5mFNy0Pgm7zKn0iQE8PbDr48sdnLCS91FtAtAyllJc9j81Vr9cacmurOMeWAeAKZkvJqHclWG0y52CxF8EjxFuEHKKLNLk6d9LuXjD2/f/cWnD74/OP7oR3/7s9uH2Ryar1+VXx7eZF0PmKeaUvc55Gi9s/JRs5ZHcD5d2cPgDs3Hmf7yy7/Qh+92dD7c6rNnSXHA0ULYAMDEOTnoPYEKTXjbevRSN+eax0bGpccUz0/AaR+tPLXBaGfjbfaA0BOP+sPWIpv3Xev960fxKhPWdg8g+5nn/Xt9ZO95bhvrJoW3wZ9mHj2+P8RGdQAqBNVs7XVvDJhkJGlTG3ZngNwkQfIoFK7NUup9E9T+r5BxViTh1dVblqnl8TSNmrtxoJZPwagRCA0otJNyOicJuvVaXcBXDSF80dTATRPbu8Bp9dX19fM3U63X4y75VKVaDdUxPhzzPsuvx5trPyIVi3TQU1u9MRTvUg2aIHdfU4a7E7sfRSYDaZbcjF4dqIepoNaNUnr6ajcE3lg3uH+nU2EGgUxOSDYXVNSeVhBICC+/4O3zvx2ezTaefMplaAEcmdFy9RTNnwMKRjKCRBWlKZlcM5Dg1MDd/f5+5LHJW9LE6nWEShUNJfI76rU/fDl+9OrZ8Ze/nfbjvd/ffO+/q//8R8ODDVD1D7nbffr1fLOfjnMaeNpMmOsBrCttqtD2H3/PigPSXP5FvfHy01e/sjq455+9+y4FNAHQNS2dTNOVx1HXsZLWQqkLobcfG2O0xLEVbDVQcc7oi4y8OHqpb333QGy+U4kz/d2vhFZtt7n3khsbhqCwnhkXdLypcw9krt4T8uzLPbdxg1kuMuaXKfUxLi0MXTSL9tHmS/1eBNHC/ypg2wIuuLdiU9fBzVvaZW0h913hWDgVufJ/+BDkodEVCbgNfscJO6JMIa0DcTTqBZFreOr2AV14E3oKD8EvPESmlJ+e/fCP6Mc5pzHBHQd3eSn1zdu3s+rpNMwzdmMeDyQhV2SWkqXhu37OQyKsbiRy3xlr+x49XsxmSlYFlGleMghlj/Z805ORfQfPFnC7ogKy3D0ROI42FXl9NRfLO1i01BN380//8vDhj46fisYpeu8GYZpk1vwwZOvqZBLETEeaBtRZO9AdpdLq23m6HWfCqBIMQ28uf5ifRg1ptvntlF6+uh0//fTrlA/a77/38icvf8EXb8pu51XXz4bDqDJ9XE4njcnnluijdjLJsiBxxJaBqmZ68zZbSsmQ/vE3+xfz8fSKvJnu9t/8cC8ZmHoKr5oNZXa6nc5XVyG3tvyBwGfoadib+02qsKUstB0uGZD9/CDpvvFtAIu4Dvb1aJj+rcJ+HdFFpheaE/QM9IvnI10+Fs75vxvsZ4X67EKSLXl+8z4CS+Nuozq0bvq/vaEZDZndz93GGZaPWr6BSmNIa0psFWDC6q6AWimA1abu2pFmIQus3deyeFyABXiO8KaEmaFm1STwV3IhmaWmQyaEbdBrOaoAg+y0Lznlve6NZE68AUh4vZ1OUy3T9Lmnkng67lQFI1PgD/R28B1yVFJZK3LtIHJr2okK655imYua9mbL2P8DZBEmwJlpACwnN2Uj5IROSFVELdrd7uphapAXv/n4s3/wN/6f/V//J/MMnO6WsbpluLXkmIihUDKTIEu5FivPr9I43CdLKrU802HWUGtPFSHMWIiJdFhKg42z+7ud8OzDj+zLzz8fbuqUXn348Yg//uUvfvTuHW+oOj97Xm6mn+fv460nVGfuhFHaiQtn2okgB3r93d98ZUGxyFUZGp891Ou3H+5/+Uc2p+S0sqAlJ+WkTUlsanHV5lvFufwQybErE/SNbLx2thF4xI7LWLX8RR2/CFA/Te7iuvQBPGEChEiIZkwbRhWsRZHbH57UEFh5/xLKrGzb0h9BsISDU1pkALuckFkcM6vlCYSHilucX72kKloMo51KD9totL5QJIECNd0vCtECi2iM40KKyBhTeN69+QGiqCi0FSRgbN+rDaBUhRfx1AREBlyoCxoZPRpW317pbQF5PU8ugMmglFTfpMThirp5c1+qn+Zrr4CxnQFJDQ189yrVSKfbnIS1rq9i3kTkYhbQaIeTg0KqOA8h9Wth9ObYWRHXhk7a3gFCRrI488Es5VTqu7wfc5mOV2Gx4lUa/vIHn/+3/9P95ODhxeDdhzQM0eUngo+06pQTZK3FvQLzsEvD+PH+aofqsoevNVx9+bkgmgEiE4M6s+UhydLBjdf5g+fzb3/7TrCJ3//J82n3+vb1r6+fnXR9NWWVK73+6OHz733yt5Xm8N5ogphbQ7EzCnbTNCrtav3wWpH5Mj/nQx2mv9nX1w+Fr669pjwvAlhSNDlKNvezjJan2WqBnnuzEXae1FsfC/2U2bUhTHsI129vPl946ZEJYNrijm+/HvF/lylnqyJu5WQDkXxkApw9dBUABlE9sX3j49hIr67oEY1q0cwMnt3kceSJjW0d1cyIEp72CEcCKs2W7Sm70UBGSA3zcd0UNI2KprsoKASl5K3pZ0uab4YYerlzyCoIHNuhrbetwTSikbMSltoNB6FpyENmwgmwZLQJqiWh7FgdRPnm4cQhXV3NAgivNXpI6gEx0d4zcLE9tgvObnaFcUQRXift3Od5ckSL5s1yfisxnPsAzv9M5ClHxCSbybLDdJC57/tO5t8/+8k3H//l/+jfOVjSxDy1d1rKVgWYmAAz1Tg3PqmW+VTna6v1xDp/dfviZhDxKj/c7K8//+JFdaScODHDaikZloZxsDfIR97e/Ch/8S+/qnmHq92r71yXN+m4/7M//+1/8NsX+Xp3Msk+r3/15kcfvT0NdWZinZr5FFFQQWeNJ+SAzcU8Pb8HwAwbTlfPH9LdizJWDl9+/+1YF3MpFiZKsFsUINxoQkM6TWso5t3IzBV7uvWINWSKlUEixVOtBdN7gdtjiR6m/iMR0H0Af4gCpI3zLX5/lMewFUjbKWABNto+gGjrLYf6mXrdIqjty97WzKnlVJiQoiGVUuusXRq79r76u8i2t2qUyxhFA9xotjikUy087ojWVNHsrKEZxvvXiatzPqYWBuz8NfSj6FpRcWnIqjYc5sYhjKPolXaIx2i/zwLaeRfuNcKIhFTmlH1WGlUmS8Ej1eM8gDi6nYzj2IFAHi2ev2wbQUZGIlFpsJST1yMqXFbbbAB/7AHYmg5tUy+iAOt94WTIO5bKnGuZxr3f+1WuKlngLPMic32g+Wr6Xv0ti9/c71IdrLqpDmV49vqQhkLMbnQYPQEzKgerTPMMv/tqqvX+JCbDr8ubvP/gy/1Jos9Qnu06ncow3rxLN4d3rHW+/fgljr/51dvnuwfd/VC7w7v97pQ+u7p69fsf/Opu+Oz58d1/9N/6/f/qdHz4939eBbbWygFjc1VG5VAaM7cOnNgjY6Ydcy1OoipNM3UAJ3J6dhx8b2VgydWZACaXAfC6v+fxea3tuHZwtjQnnq67r7O3/0aVwRXtoXtwva89aDX4bzHjtYXQZ1er6ooar+RaXW8hSYzyqr1CRS7EjnAyLRC5MW4nhKQ5JXnLJwFSuMlTJ4iTRU+eJpe01DC2jEQZHBk1VSYUZcEYvSggmqpFib0nd4PoLbyldsaRspAMHm3bFwGBOEU2VqVjfYPDarPwTZL1nBZfKV2ooNGKp8Qiq80N2Bu1eTjvGxRrqVxgWk0l9ihrmC7o0r0XXIeAJyDJleAVAD25pwElISSQp1xqjoYhjlCdXjSn3agqwwHgALlRzmQ1Dnih2n71d8BIM5/KLvKoF4iUhGgrGV0JOIt+QjpdWaky1qRwJKZ2xplHLNaiTpqdeOLUgoB9Yf41p28XA/mYmA3lWCwhDZ7H42zZajk2L8qx4TEmk1SjcxdIN9pQoeYM6lTd8lrIBHeq0lldKfE0v+FVPsxJoBE41VzlHMb5u+V32h2v756NfCjlg+uys8nNffLpkKf8j1J6df27l/Nn1zdvP/7Hf3ylB/zR9PthK9IEqTZv6WLrqHl1ABqNR49DqcqCdrdm+cb6biZzivLwVYNTzWl17izrUK1b2peS1pa/nF2PRHcr+lnGsX4eL62IksvG9epx3EqdeT7O4vdB8OFBak64yA33LQLQU+N5NFA2VP2td61328WsL1bhve9bvxDoIwTTaoK0bCoYjTRZWKALUItsG2+2yRPeky3ZNA9P6Hc1WRpfiwQsLahCre9vRcoGB1+cpnFPG47VnYAMtVpiQkqpePERDfPTo2NQGEUqzbDs5yoEByV1239rM6p6O3fcEmtrrazz2KvW3WuOg+5ebHM8mzcXUdA/zzufOQ4pv4VmOm08VZO17toI1R4YLKP6NDZBTifzUJ0gKbJ1fwWrCS0uU3M0uSoCkEqp6RSCXQRprHUCbBrLBx++vX95M073NSV/nmbf+QlwVdVj+Z/f/sd8uDog3U/p3f/h53//NO/+5LO3H7WU0R45D7nXbcIzQlrYUtJafdf2G81PtbhduoweVJJvBEAXm9bftyxsz3B7+iIeESG3uTibBwmL5tp+GGOM2VrvRoyeQ7gx755kqkiRMXPAloOvzuTXVvefS9Unxqkn7E6FbAztv/41Zq7FOv8DPH8hhti7LjRtvRAyAQpuXWCGmFBqJlp0MajqvN+R0WXdbXx5XTotT4/XU3HmkZY/SaioMksOWE1X/P1nNz+8mU8wyFN1GclabDfcz5WAJVKJBcWG5M1bPq8bqrbEJKr3PfXtECUkqNJJd0lmCR4JT71mpLYF6KS85ncuWK7P94K24srDnGwcOdZpLrRxcBjc59JzJWt4TH0kzTVdpbB36WIafW55F9giLLg7i/m838k42L7QkHBzHN2yN/NrqDQOVbb70v8Hf/z/KKdyf9CY00QdSrKa3WxI5j959v/59T/5ivO4n8rLw7/4/BeT7T/68/0lqSrFmhY2NcVFA4TsTRasu/Q+bAkm7RDCVdO3XP/Ry1A36VnGkA6hMzYCgHhqXS8Ibd0Knf2zuTrkXhP4zh7TNAT7McH9kWuYtxkd6n9exgdHTJ6QzBsG7a9tJtTF+IAtkhBa+zn1jL0zGdWz/BSFcujYaxWMRG0/v09QNumzLCybBAj/4TofZz8ULSKHi8BvCIVyr3F2cYPG334t+rIRzRYZbSAPW68/K4O8VEv3t3dev5lePC8gKLkrG7x8yZtXVmt82QQ31dIMUqL1GyDbwSE9y2TdkHVhA8nAq5iyDTkVWfQ+50bfeFgkZ6ze47OP1roj3g1CzAcN+9EPp1JmppzzfTWbS1ETACiIBBcbQLfp1lw9+pgGj64dhJYhZEFek8k0344O7HaRQ11V0lx9F70HYQ7kXOq0v53r2zd+D2HIdboqRSbl2UFnnf/+v/qfvspXXw/6+uX+d3V/+Ns0f5g/vV1KtVbQ+/gobqBpEorW+hIL3UBiy7R6lNoiUhp9zkdbTev+suZO+Rbn29OrfvHBk3c1RlYfKBAn3kBx1huwmI4tlr+ct7HUCiyct17qEXfzNedZZ+9t2v5bnIqL1SReuhXZt2BBDVzv4Pmd/xZXSADD1pmHLtTRXPnR/LvLQQHwUvvZtVs4uM1k3F7e5h0TYPcpIfZhlTzJFZkvqLUojShvr3/6SRmkntwkN+ShaKiUWxZoBi9JUK1iMwHSJsK7jQV123UFUA3uy12EblRrhRhuheZP6Ab3Rfi7P4cXn3TluL0yvTwcyiRDguk0T0iYT279pDZvENndCZ5e5NmNrvDYpNwj1hgCgckaj1jyMhgkJNLdzXYPqQi5Bmyj1dnhdUw/efjnf34v7kf3mnKascdckStUvT7sP00/fPfm+n7cvbl+9db5x//fzz65/+amoAnvptkohyfj0kOvi++IomcUJhC0sordJXttC+DZmgjlOt+cy2OAlEfSw9lCbxX8oyu1mxYJz+0/6xetbehZ0c9WBbV17aHG4Lbm7jkD0OcovXFHbTKvdbTZCMv++4VtiDaeZY0MgrE+khFBjT3Kh9XrzD46tvmh79eT14UJ4E2MNAG3/CVFZoGMcLQulk1sAhBKrRWAzUA38M/W+fL9W+QhitZF2JLi0AbgccTBmOiyPNjpnd99NB9nD2dZ9lqRht1P5ryTivcDRwlYjp471tprxochlpVaSLBFjbDSRSxYK1uGQUw0zhBMYkeMQQzmG+yE1ZV7Fm6OZXrkA5jmU615JEr1WW6ERxPwQPYNKYdy4HGhX4PANDB6NlL9mOzIOohzJg2qZZxRXEBhVWFCZKbCUi0l7YaPgPp5+jDX0STbjw9RZazBEkBLx/9Tyumz/cgPf/3qv/nF609+/C959yueu9IJylweuVJqYZy+wyH3anJ6dItf5bpW38WCDOgApVRLclsTNEI9RHHKFii+J9Nye50LY9mT6VvdmdNZs98U+8oIVsU+iC23f4W4vRvCY19E5L67MomVnTeDE/BElGjBVWcfPf7p7INHcqf/ssKbP3htRW5z1nLrjG3pRU19Rus+SLK2fiX8Txfy9vGQe0a7tveJC6YKxC91JyAqaC5jFOKoGk+/h6U4zgbmzNJEe3aqpVSVIfwHSHBnMjWcoQW8LZF8Ks7FDp9hH19qkk1eiwucXEiDpUgAO1toMaIcjVI6HWy0x7csfq4YhzIxVS/FhpRQazscBBAckDkgZYDg7BZuEaUqWHKzRRCJkJTlIsnqNVrhe1Vxwic77Sa3FkSghqH69au7/Ob//fru6uFGxex6ZzWPXjQkznHgSvkVb3f/5tXhan6TP6rpT65uTtf511fcFOXE27O2ll9bI7adDoPLo65U3NJ1lyXdQl00slcKm/eoA4sLDaiWufaeBb6E5JcweBEwqzo/e1Tz9rOERF7UUi8WmRtUZNegF867yLr02g/sYATIzxKUzmD609MIXcyFEc+FgdCPo13mx4tH94W7WChuHnOGAdr7mmdyFQBqEt4ph8kzIgjYwIUKaRGffwyCtwNfRFZLdWBn+T7dWLsl2aIL6Dj6q85ZZtMhXdcYE2eOnKZpqsWRlE2Mw5RUa9lm7fQj5QIGLGQV5zNgLUNOLc4zVBlgdlumuchrO3tvo/yAbg8Fzwf6uuxHwSbTeekDyKhMuRwyEr1YMqtCVomOZc2rQ0Jz1NpfvU0sqOOgmjBXT3LJU0qIPqUFLqRar/z6MO2/QjrWcT7Z9QmnF1XwuTqSgSy6/v4nD7/79OCvdgMKZ6+jdqynZ8/u8/P02b7o9ji9Klf5s2t/MZy++tHLU/qm/HIYD/f7dJ8IicGgBDDBIFuPk/dWzRXHXcMHRGgqNXupC4jaAE6zzTjDHKDKqzffK0DxljZSAZ2YPIdHtsfNEU27wmXSsojYIH9L5Fg+FwAM7jSDDy4BrrHp2lYtLhKszFYagi5t7zrM9ThPddnQ3CirLN7gJeTbGUmVlqqQksFBVdEWwVYBiSmrBxjbi7qBWQOLm0WJVzidANaIEg/eWMfi7NCmxbgIvvCDbaFo/OStSGbsAQ5CSGB1WGKtO3mNvEOAsIUxHJaMriwkwmOfRXlKqqWL/tbnf7MfF8Zcr9b0JCAOKSdU3cemO3KtRZZtalI5wYVBQrISjaygcYRyUaYr7eoM28tdKdncziqstJIGTU6rRsgtLWzY6adYMjC15nPh84j1JRFHxwOWMSZMyPktUnVLXIy/eJAXkGbe2rxvuo3GIdaIDlBL0HAJHuXYvRRSlAZyTQXZSpC2p7Un2BS5CD+NaioG0XPNCVjKmClyvNKMOrmXaTgcYRWsSDSQV/bRD3e/+dnvb2UpoU4iXJwlvT3N9IHzzFJgp0Qm84KPMeH+g5vTbz84vM3TmXNu0SxqXWXFOKIqAuAEdJYz3/LjF3OGQJwsusFWloInF0mpDrHOTYBlnS7gdd/hhRU6AXvoAHcRtE2KS/87WOsKBW150vbBZzhCAJA2jAtgW/zB9Z+FHs6KQ0LDxW2RMLBiYjbcwwYsWoJje0tLoUek1AKKaMV5+PCM/XxJYHpsdvT5OVumIT2w/jmUbaJK5JI/2PI00A/5bCaR3o/MrJ+ggSYx46hKNZsCVUxqWYJhUkbsxOAOEr2L3GDMrE21EsxF9Fq8zd1NxS315sSPEUkS6d6bji6Rj+Zaa0gE1JxqjfnJ4WsV6FbDv2+u7e9PhwEhtwBNdBo8g2yArwOL9SX0KTUBUciaEk4jJBiqEKnfYvsflOq4qy8JJpwONd/h+K6yjgO8Fv30k9uv/uvfHlFkiSqFCSinWUpHy36/h892rOTVIMLn4koPt8dvPn757o/n03jqKVNnrg+tvt+VkRGW83mYpbnB1HA0Vubud6U8ebaljL7jikYOukSyATn7yrUslI2o3ex8/BiOHXYKXoLwBlAmq2d3a4Vw22ksP7YOLy2FdPHMnhFAS9Zqp0hsODR4JUzTy8QbnXWpJZpLWMt6dEKsHZRcBPwjmvQ4ALDo/cvPSTloHq/TmScPDZYjBEQTQi1/Ik6p7Pc1J8m5NtssXNii1hu8UO04vUhTgyqZFPkECP+ryUFLqDUZo38aWgKXKpJ6yqdUS1EOMcRU3Wne+sw8rgLFQofojo3NKHtrMKmqVhi3cuFsUcNR8ng9N+vBBX5trkzIDUCOoxh689lw5XVXI3q83Kd9CqrwAc6c4ZAnBu8L0e3Ya2EmeMoqc6bSoOk07Or9Oz3L2d9NL//oB+ndP/vZw81+dloYEU66J9bhhNsyQ6Wmoz8bPyqnYwGZ591v/Cb/6f9tvHoYzcdKQbLeJruhnm4KUU5G0maLfmwTQdTyZ5o3UCtk2uxBvq+2IeaKjqvZmwS0le//3QrLNeHGmnmw8JBpCTdrk1DQXtuTX9exLlBf63OBSy5Dz1Ns2QSbP60AQEFQTUOuV3fxYmWG8/JRbnPxgKUT0pkY6lhB2IbPdAGNbGPOP6EQY8GUrHcLu7yRbfA1AhdKC6Dw6mJvsdXce+urLylfSwwp/pMZPRITW3nesrFREhT1TwkpOmfBGrc1cRrY2oWpJe20d8CBNXfniemW6JDaGkU1OiSw+rhkoVwdyaDSGqV0ReN9mXvO6LddTyiGbHTCIy+7q/yW20b2R7bHGut82wqqY5VTdrDBuuZjItzcDXA93NbTu132NPiJU1XFsJve6fkPvzue/uqXXwzP/ZQZZqZXkrScK2aUUiZ31nm8uUm1ehXs+E/GLw/H2//in46H4x4pV6BHicSQXN220jkDnF+h7hYKVdfm3abqmk9pLqxrymxtqv9yAdlWSxcE/b7NaBvXnLXa1PoGIVcHan3ULHbzvkeT+jbkh17lF76noNmtVx0d3KhBmKYwOyxqGfKbvgZx6nHhedpMRI3fQ3/Eo5W7AJebW2NFmtxe1mYjwC/IuEnxWn3roO03vY8jWouQXrqMHXt+FAm1Q0GZWkZGswTYDukyLnItyVt7/7DYC3I/2gCAUFKqtVhkYT4Z/9lCLKxIr0OBmIenKKh2V2+rcJnu8e2XBETDvvMrp3ZOpZtRNG5UUgPzYSM5TZZqsV5o4iKKdlNKdVtdXltbZifseMsCnzWdiDqlm2f1eLLvfPzR/v4v/nq2u9FnJaMXGEUZVQ21VjvIp4Jc6rOb9IU7c5H/9/6Tr4nDzf/mF7dTRvEKBb21jjJwLVSMZgs28Xhe59oT/K1V+6+mRFTkp74lg3s/hwsAokC1bdY5CTbylhag3VE9zzQNgHZQCZvL91zBNcfwuXuHK03gaXJu4ovL/bHZ6n9tnzAK3UGIXDOcllZu6CbIosfjw028eTuornjX9Wnr3xNUNp9jswDdB8A1ReByOq0ANr58jnvaRkHKWs0eEKhxfokWH0AsbedDbDsntb8Q3Z1AMIyZs6CuCIvTlkE4wUQaLcE2ZlCJkv4aJ50KmZldzlJRdSEP4uFWQrUrudErqzW9tbaJDw0RtUjQjKJBtURnKi1p1/15LoLU+0RwW7rHf88tsUXKNs81co/QYiJN4y2kZYmerBlWElWxPyRj9BRqiSlhsiARVsykkyRPw8O0Gxy7649+/PK3/+y3uLpK9Tg8O33zoVEuutFMXism4xF5Uilzur6aH8BMt+G/+P0XV1c/+M4/3Wde/XZsPu/FxAtLXo5HvfMuqcwX5dyAzJYstEpVDQCdS0OKILPI+tjIk8UE4HJTbLO6CF0QdnsFw//gvY/VajUALb9CttTPoocntb7rfFfbf1o+gFufhR7dJ0dSaukuZ2Wj6DUUwtq2J75m7eXNqbY4AdNFlXJ/Y4Owy/ij2HzR6ZuFs7Pf1oG2k0fVUi8ewx0C8mUG7KIH5DafYbV49dRrmp7qj2CN3drOKAnojTxAKXoNM9HIReSWbDSrqkggQZO1EmUwHCbVYajhk3jMgC0JcUEavcS3qSXF8SRijQ7ibIvLM2je1oVPMPi6HGfbslyRHwITRz/67Nptv6SzH2nGlsYimMOqc+fN/6q20kOW3N1zhLAcpzLAla8HK3P+wR8Pv/9Xn/G7PEzl+tX913rV1GQtRvOZdVeTFQxlQPX97fW7VOHVU374v3w0f/Nnz/zq65t8f0XzVtTX08FTrNWi92rzAXjzZCySEjBY9MhbwgDo4m5DQIm0amnDKI5m3J0Lcq7/3Vh5q33CzmAAAKMJMJsfUawARVlIrWt5r1+o386YK1ALNqqIA11Sy0vwvhKLeIkEjkA+UAHOHtp1X3NfKy+GERrDx/fTknhTz0FA80GsbqPl0S0/tM1/yXTquvn8kkCDu+CIPqvnYqNh70ZyroSQmQSjoXrzATQj5r0YOUz3aCVGWpvXMmPWOKJOWZBcShWwBFc7vCx8AEIaMsnZj1mMmF31KksVYSaYipuhDG1dL8dRZQZjWlqpNbwac1SQuNGrZCkDR5E00Zv3sPsAzhxNT1wNkzySD3k8sc6gjccT9g7zqrwbDF/O4zXe1V1EOIyl1pvBd2V69qub4omgqhKQ3HY4jddvcy4TdvtSwZzHAVO5vj7dfcqUoMx5P08v/+w79Zu/eCh31wnPT9Ck3enN8Ore3j5XkU+F1GnCgYYDTzfv6h99eDyc9lbshsfjy4erV1+Pu/tr//z2cOOzGQf3KMGCMNEs0bBgOqyqVQTogtEDgVd2b30EmVY0aCVaoxOZb18ebh5Sw/zx4Ix51JStsjNmT0X1lfsNALK6ilSzBxrmkINwb4gFnQ3a9nk1c62ZOoIltWMYsSIB0peZhtJODe/W9rxVR3TOlBmhh5zpHrk0ollpmr21xGJXJMIybCxWAcnKhPaeiKO3N3Xa6s6rUUHAlZakqtSRTxNZkRZH6+vIBhRkplmWrIKpnTQVDBtD8GR0MVt1mWXIDPLibi0vuJlpefWXh4nQ4jexqi7rgTaCksM7vbTmYupxUbbeVQMrYMM0IY2jcYpsV/k1P3t39/L6c7ZGpsmmOidFkryUanLLlisyQGQxrKypvW+QPA5fio4lBSQjrEYabYJVr2JRNpSIyrhCgJl6ZqoLkHuPGncNtchYAozz5s+CUgSytbDeca6R8y953V3t+DDPNtp4VNRFJnqhYMiJjP47IMDh8LDLqPd7iCNw2KMUr9CVqZRhGHJ1gLW+/vh7H+jXP//tjfJ8SJYmAmO+1ZujD7iXD400DBFSqg/l2Z09TDkZifno5DRPmmf5mOdpTlQlmLoHNjF68mxLUgO58hHSR1e3aJVCWqh/c4PVp6PIXCJqT10Rt8LKnk88AOg7tS3/XEXE9q2d9c9u2yre879tIDm2LLzcTHkL57f8tvPccHUvSupJwtsvt4j52QAejwJAzwvoQPj9qmmIchftcAZq5XjUYwltyHKARTBGxS68Vh+aEyct1sr58PuZeX1vWltwdgG+HMnFMxzX+vMH3ICA61ItqdRd6xhwpXdf3dtNHtCFpktwS30UDRr2Wo/e7DQte8RmNscvscCMI82qt6P9IKhmPHGSUIP2y5Z0gLhFiOsWbS2ksD5ybgbXXMNbkU1+8lp+8u7NvSeVG0heISafBaLkDPWsZZLDkbv8MMtn3z3boRy8TO6WP98TNozpNO5UfD/8NJ3+zefH9Mn1Ls2nMsc5wgBxGFJ2H0tzTPXmkHhIL59rRp0TrB4fnPnI+uXzNFUR7qPLycTuJmVbvh4eWaFvM28bEbWfOsdrXRCd/S5Gq0BdUreesr7O/775/AkJ0Bn/nI/O92eVRVsE0eewlQnhpW/Et+32vZoKi8gXAFMxI2VhJaivzDrQHoGPL+jseT1wGkPqQPspcRhFWQRo/DYJ0BpPrH679jAPiHK+PoyVE+LgFcrjuHopapLDQd3F81kCgTWrIXWM38e8ySdpQeHGimzcGBNOlGSyd+J+SGANdxfnuxcfnkwnLbJbtYpeNvKkJfoDIIaVGPvKR5Oe5oFYEnyiy0I/4QTxV82XC9kDjotkfko+Y8Wwy3oovpWThbslIaIgFZag4/wzlIkDapw2DzhVAenhpnWTCmcRh4xay+0H1w/34jwd4Q4ItttLteBwN7+bdy8+enH65jeflRcf3tUrvCvV5+K1yuXJ97MEU8uy7gB+8JtX47EMB1kaJO3q6Dt7ezXMU3JERmXzAggEKy21JBW2BVvmvliRXby2G7jh+EsS9WE8rfmD77seG3XC+uqn+L9vT9MN5/kJbau2EMCkR01Bm0RYQphhEsSDzyXamfQS0NNZADJQ8Bom7O8LqO/rkm1meiaHGkWdrwAvfuQfQAD9yLT+9A6g3ExBF/2F8eRo4M0lwcoE0VaRuDlw40zCtwF392akMrdRBiLYDF7qJzsBZg2PRPziShwza406ZGE4qSIpNzbWLC8VUAn36RJ9sNV1J0B9nHE2OgDFgRrROk1AjQCHtbMJZYjyYl5s87K5Hej2CMTFZmjFUNv9RM7J6JDHcls+ysfdaPjdVXZ31pk0OpVhllT9/oZVqUbGjFwJs9LVx9+5L9PDsczzHhwqgJFzBXd3Dz58/MHu8Jufe93f3vLr0w6t53gyeqka8jfisaaurZrzbLZXr3R/GgeQZnn3wSnlK8yJmkZCjXB6PwJj5LQv4rJtvpp7qw13eXpfimYGdPrZKELneERvv7HQcwuPdLAgLP6mR4KAT/L/si39qKotyO08dwk5nng8esLN+tCnmWxVzloeLy3ZXpvvN5pomGGtLtu8sAtcrH9/35WW6ZzjpctrbCZA/rZJbC4TWs6BRDCVOLeDHVCnJS3j/Go+9KUfnDeVaAvc6vsbCCCcQ+jTXYqC7pFhg5Qj99CP5SrZdDhmxAGdiXJHOwKOpNyda1SlJRUIadESZt1T0cfTCBcrgBPMLCWeDfb8Wgj9Dyz4xXpkiyZq4UewYbw6TT6DeDXy/jgDGeHurZUpkzwwz+hxZXflq/Fqj/Kbz2tx5PFqRkoopbwebJRj0Effuzt8+quvdiTqnFUPda4IJz2AyoTyA/9Faq6XoDES95989/b+WE83LtRa4ahJdl1ylaV5LkMjgrYcSiRVW0714r8BsJoA20546gCA3eQ4092Ac3x9mfB7fp2dQ9I/W/5RY7DLVlQbQXLhc1j+8yhfaysAFjSz+fMCac5wT3/NKkEaKS228FLa/ETrL549bBU43QTQ+f2Pr4WXvv1qJ+a0/8SqGhQHi4Bn895MONLjSFVEQK5L084x22BZ+1N3BqpxSIPMfUljwpEH2Q8oEbxH2+MBTGnc7Yac3jBZAjSc3h057m6dkrmJRneLIgbKXLU6vAEqsYVVCbZm1EW+0HA/NC+QQZW8Ol1xmqaltAzz6Ss8JAEANtvQ/u0JHct6xG+5HwgdXl33UZpPR9AeUB1DNkhyoqqWbFLNGaDgzXnIu5z08PodCag0cVmr36SUHx6ubj7J888+fY1bUJyPplSRNSnRRdR5zjP3//Dh0/E+8nCQQJmI9OpDvS27UgHUWupb8zTx6uE7uQqKY8iFSFnu2Tbse49Vz/dEITXd0RNjupuAHalf0Gr4AJ40Abjugi4+x6LwQsA9DkN1aNa9zo9MgAtbLehbvvS2a0ENNY3cT8IBzjPBu37ZBBoa1ROotiQkd5jSDfAleYFtddfnbRl6ARZaH7FZhD4/opne741PF4YOLDErdN41ibYJn3bEFfEu95hui2cw3FIQ2MIGymdpMpuxrbPgQi0NCq0c1A20RSdQigBm9emrw4z0Is7ATXu7+zCVqXaBMVNOI0o3KmqtcPpCHG1Iy/HwvQwzbP6l4X8/Ak1NITiNqtrOZPlpAZuLpngMpS7Xv9d45BZWdSfpVXibUiKYUnGq1oiXyjgQXsw95Rzu18ZZdcTrtzOHmdkIclJsi5VTml/+6bM///w3rzWaJoftfT4dMOzkaX+KBq5mXvY/+uxUHf1gj2gjf/Pi+uHtcHUSU5LTbD+nB79+uNvfl+LMjeuJFv8mzVov2sXnv12GMw/JuvPb5dt8FRCfjgL0NLf3Kbe+xU2qPHkXsXYKemqjzo7bABDwbHPDxf1PsZcubtVyq/Wm1L11N1swJGbX4vy8RBQbzKJlfu8nuNpse6cW4PDUNUrwTQLOwgBVMK7zZstDCAaWi4mUl7DgpARA5urHuXCz1QBWZ0KfjRYgtE4CPWUkQkzrzIIRASCxzA9HpC/cK/OQimwYhzHH0XPkC/SQaAggdzm9d/IT57Z2FSQNTGGRoVkni3CqEmDg3OKlHnr60Tp2C2Wp/9/WXpzBphUS9j9JQt6bpaNyyfDq8OOOcIdpl+bqWfIo8XaLPAeV3736Wr6f6KBJjvrlV7s8GTNnDZm7N8dnVxnifL179g+u3/4/a8VgXpXohynnZ6Q0cjZ4NN2tSf9rPXvIbXNnJHcbjj/4/vHT/Xif61XZnX7w8qNb1Yyvv/n7dtq9m18eMKeoYUzNWSJUGBoh9EgOW38fgNFOVTUqTNhiL2sqcTedAgY6UslWqX5+Q1SPGcnjDvMYx2FAvWJlFSJ+rvhpLdXLm8nS89+sigmqObRaBw5BPmRr8tRPyDWLgzZ8SVVG6EmLbJHIntuKmw5qcoTjgWSqbuaqANyHGNxa9BNRMdKd1k/7jv8QasVvknLI6cUFkOQSnVneclG625iIbvXtIAWtRggA1JRURSuMrkwmOUhzUZWwGZGs1JgDknucJkdKSKnYUGzUnKI1WM71oQxxnHMwWF+ILtBi0cLXRbYTiNB8D4jGKXHGoyDlrTElgHRPCfNk6cULd4ei/P3ktZbprdhOEvLdzbN9ZXQrozjgfixDSXWDSES1Y+Vb3wJE3gjYE0rbgZPVPfKQIEy4zlPxLuCso7kI6yK1nKneG2wRbI2kezgz/uPL1ua3dZga4Fu85YK8lFIkaeyrQMIJ8wp6jfJCAqzRgbkF4KTj7no8nEabXv7guf/Fr351R4McqR34sFzh26bJjIKlqiCroSK5z+kHN5OENJ5sP9+ZlZrHq/HZD65/kw67PUuWs0VKugG7kKyC9C4U4MZuxdkfLhToxp1at91o4TrzCW4fcP7r2SdLwgTWQbbXMERNbMTl2HT2w+rUTW2Heiuw9vUQSFwJfxnH6uw+c/rVDezpNN6G9dQMFyQeYfLVO1IjpIg4spLIcZyCN5PzPTjpyWluVPd2FAumMjDyPWKcqjWOBAx3cFFCb3TyBLLqKWK+JEAsy7IMYcE07x+1KPfAaDQjeL3I3fjhbdrlFpoRALg84pTt2jhXBcRRZ/G5sMAMRmWAtxyu0GBpjSZiK0qXwXcp93e6+o3595Y4O+bcYrxkNNEoNXLsSrO8PEEOS1NBqjWhHbIIeBqMmYnV4cSHpZ6wy+Xfu7PT23+anlfQC1MKdLnubByoZT5LXiMF3kWJ9DSe9OHHui/JJXr5zYe/HXAa0zD68OKnXkxeKKHSt83fIhDT7LdgG1vZ2ZeMuPPtvmydhO40dOM8Yr0WZ9FZ/m7nspWxAw8slN/Dc5cL72zNILFkFrWBaIPi4rhFtFoPNG6IN6D7igNqX0yjZUA1udec95seh8WMjBw4iZH/trn5nFRom/LU80v98N2lvCfwztba2s57Mz4Bi5O0Z6nKLr7X2b+hOlmH5nRWmndPbBEN7rkjs/U959ZQPKcft3IeX+3EorP7zx4la1CpNtacAbSkQEDABwIkruHLOMVsKZdrCha9pVT/3DtiaqsRXvYODQVj4lopsC0aagsXy/53FAAr3+Rv7m6nHfZlhgAjplhenwNxdcJQYBqjCsfZUxOWApF3NbwjSDkTdrrnB9//cP+bv777sxvVYigTdlFq2N4uAtZOXSjwcooDkk2KQ5MM+x/tHt7ZAC/j7mEYd6Uknw5ptocHvzm926c17ot2GFVsJi92jOumrrkesdnaaubtFU9wS6f9ytiNVdlbYG1lwLYMllAUjy8Pa8r74mtaBADxKNrQq82EfrK9+iCau2prgZ85MfojeguyGjIL/bTE5f1qvQqW7vrNCwuew4DGKXXx0QubRLO+tjHo0FoA2lkB30aPS4lQTAEtBbnbqut6rovSXEQCBAPcTe2gb6gWG1DYTr0+73gECL1yQf3dMeLtcHrM5PHA29wpqnfzbUuILGDTGAnmUVLchYi6rdmctgmC1CNIy197FEQdmnfZvioGi3akF+uywg98q69lnej59/M3zAU0GyJYybaRcHeR8lbHuDppCgZzq5HpLKenobh5ZcqJ4rt7/86ffvD1X3+RDs8w6aZQXjAwlyBotYBEE1vucBVRc18wohDPvpeOU05yO9QvytcvjkpwGevDO78eBabaGuN6gB/0AXbByqYZcRYfu1iezhvcftRCqT7YybTRRG3EHahuntEjCkArM95QVifnNpKNQIksWWuy6QyP943teQ2X+3cmfeIfk/DU9p+jwkeCBuJ5GX9Pp3yssdHicm4BGtp8QzFqOXWuadZzcfPUtU6zzSME9Hm+ynLrxv+40fHcptkhjMhlvJv3rKvQbHyoGTPbt2xQNDcf9t+b5UC6XNZMlX6kV9/nuZ1OtjgvGp5TizzbQi46W59OMx2xNl8k1Hw4nugqTy4oewbNt6/3uhrb+eVXVymnOheTHM6oR4+cJBqp0hFAlDZVzp5NFv3lJdFtOLjJbEhlqsRPfzx8+fO3fvXw9dX8vW/mZA6RZtVD7XVB0pRkRmJyRhvX8DN4zR/d1VnJq6WPD2l3KNM0pcqd5uPNqT4b7ud96KkeyvXl6JxViTUEgEW/nev7refgkg4gsO7stDkYJMJaoenOGHD7sOWdT4T/QkRvBMoSujw3KbTVr8QZlWitdeiqQuH5wSVFeVNnJmtiN8Jq65MlN7badvRYOkWc65Eu99r4l1XdjlBCNKOElSZ3L2OrjxakLVwvauoM3oIRy/0bgad1PIA7DYAhAUygsrXsqqfbknQfQDTGtHY06fmoQrjHamwEfKzAcuppuBBae25OAQzZawmMRmOr4mtLtB3P0reiSYzuA2hTjtyjHtxWU7ORhOS1nq87sJw30YHm30EE4Az55n+3crqdUGd3uUOzJFf11HIdOwckgslUORcSivwNkPBxME8apKno9uZP8fDlZ4frl1/f3Ow+PT0MqbUKHGbvE+w1HQBpgxKzrOauHt0cH3x3//vTeGOTpenT41gfxslGYPSUKk/j6KjWiQWA5NF2V2sTL8WmadnYFuE5I0muhHamBGPHbd6s5wJaWph8s5xnJkCHmI9TfM8vk5NUHPG8eZo3x+b5+QAdRHYA0pEqWiJvlAFjQwErD0X87JI+CI8ySBp9cZtE+ooesfjq/YzembZJkAhtmhruWrwTIQefSIRqz5HCdawuVNv7hfPUxw1nNLAESJirrYl6Imqme+o98zb72oM063vbObw8k1B9wbUw09loFw1vrTVoKydXRqC5tUvtEgPsz5Wiak+g2CvWL2gIa2bIos2lfgy6A4jWedze3bV5U23vyzw9uy4zWPL1g3YvKmXu7hVK7oKXYrWWWkrtPoBM0Kx6ioanNcUMSCYmDMzz7Pn5D7//yzcP4/f34/jJ/HYqH749jXB3uFtn+u4d9ejq2jtAthgv5IS9epXelucvcaDhYdBweFmnweDg8PrlfJzTzl1ENNhblxkLCG5la27LMjfLdmWQrkmaHn60doomERvoyAV7XjrJthtOAP6I8IULwory5LUZm693thD1wrNLSlzQQtPs8RQGg6sft7AVaM0Zja1k2HgrBUaPi+aPgRZlda5DO6BVaKzob+3rY8T17OSWiQEl9ByX913qOxcvWQSYsAVFTWEuors2gMUaS1DDf+kloajVDz+FATrS8DhoJ5DP5QCFR+6Yy0FnVYGJQ6fmsH8WY40yULYyquvsNWemKlt7dLTF6lKpwbkYanM5GCFsfUtYhNLiNvk7CIB1qnHlt5BXiaUU5lwKbKC0w7u7QapvvjmaO5DMAVS3HQ73L19PHOJUNYF+GJ+9vt/ZCZ/89OaL/9evxqurcshpup3vPzmdcjrmqwP3LLs8TeRsAlM0WZUEO3k2VrhbVH/M4wm3fzR+Mb18mfxK9ZdXZZK9Hne1GkyHq3vP2WqplhLhSrUykxWqgKFnzCnat0m76OIcZrZTqQVlEgnBzMMJwNB8scBmctq7V389747DurQChOxTrj6ccodyq+CVCDN4tzc6edCo3i9gcwjkErJrYrExkNdosxjmX0BrMlpTdWOSLUVGJdpEgwYDFO0ROgIR0A5DRXR79TZiQCiRAg6Tu7zHpQPbAq3JmwCaCoytdYEEg8Grb2jNEHFtA8AacXlfwptSHFt/Hh5Rm8uCj1vNq7pPZiH0RunFEhxMBS5IKPQJXkkhwSUWS6jukQeixQnaXuTW8I67K7qyNDcoSalGi61IKJHQD5hjL7BvIWDbo4ZvrL1G+za+peVYlL97bgGY8ZCRyli8FyB3QR1RNEXNI9nXt60Ps7sLCV4lmNFBJdQeTRdaAlxqLSmqsWrZp27ytJOh2NejK45VF+Vom+OaqltlJCZ5dX8xcq7YXR9kBoDOiONFv3ygQiQN2pkdJ9nxpz/IX/3sq+OYTXMlj/O7+2/u0sicqs/zSK9IKVlqixDth5PMKyssU3K5K5Wx/L1sx53NDnkpLtKMJxFVLsgLk6oh4pSKCZQsIPKTm2Udv7Re0V0+h1e8E50gdQGArswa1Qnh+u77eiFcF495/2Ng86CM1a/vCzQ8B16bB53/uurpSA0LaO2LFKJrtV21+UY4PSyaUrg360etm/H23Y3Cwguh2uGP1vlsL296cTEBFhj0xLg3E1wR0UWo7clpr6nDWhZz/XyZI+DBmga0MNmuuifWupgIF99jX7re++Xi9Q2Ycvvlc1MxHhTAbj0poonj1rFpzb8gm1G3Ikx2l0AMRIuV00yKs/f1f6vqRv+7EfL3LPyZc4t9UhfjfM+yI8eJJe4wg2DpVFw27LJhPhQUJkaQWa07cU5VCXFWSwVUhlSPfv3Bj/31p7992N/lnBMlJKB+8xFBo+VSTbXK4BrUUrD6AhWoKBmri6QnpZvvX92fPqTBUOvO3asXjZaSEfCMlFCUvdZqiSEJa+2nnqTAYWhpVaotdbRnWoWTiv3swJVgWxQbqw+aaY68O2LDRBFw3UBUdswmMRTFQvxYM//+0NU5v7l8FsPkwhjvHXWWmFVoMjb/tG1PCe7/EwBZzzTrDl0CgsfheovYW4llYaR2IOo6CG0VyDYC0jA9sZ1x89M/mu/lJwt7dAB8tjJxGK1wsRg0G1RIwtOSynb+zRKNUIG1Wam2y9oCmy3Hq5+GeSk0m4kiofecFDvj88wHUGkd9HGVrU1WE8sZhgvUX73//Y1RpebtoJ3wGnrzpW0XMIBjF3Htl+797p+fCYSLlQWi3XxgcaBWpOSwlIdkbzAfC73uSwFkHJWGgaLlWQOapKvSi8M9nn/31YuvPv31O7sb5ZWAC1d5NzyMuSQX90dnnOTkze1DixRVVzKAMJUqGxK027/9yc3tL+ymVstCHSQvpWpI2SjilPOY6zHOInAxI4KJzUOytR0hAhWwdiirlq1b7lGT2I1IQHrLLSfAPF3zQiEBknVvPs8JNkRD44KVxlbS3mqoS0brN3eLsb+zNg2z9H5bocSqFxcSi379LbjYRxCqXvLWFscXHChRZqQ1FfUUBojnnuU9rI/GAn/6Omm9p738Sf5/9J4NQrpg4x4vASDUDEW2CAGzITlMbugNeM6H3eE20L3yNFy+O/bEW8BuAX3cPAdLig46oJQ22nXLVTTVngjUGXMNU6773WS4N/C5+ox0FlbuCS7JzhNJmiTT4uBeAwuNAttJHou1/cQmIPIY3EGeiFok5TwMnN6dnO6AUbWKlnaDcxwoIE2eAZSUTCa+xvWHd/riV7+qvNlnr6llhB2GguO8f0tXGk9zGc2Sz0g1mGRxwe7E5HI3S7v9LmHYP/tkP/O2TD7YfHiYSWaTH1O0LJelOWmegZ4BpCrIWtXClsHEkOwhu7UESxfl2KBVX+eID6G7xGnpdNO+stF4NWUCVrGIm06fzbhZ+CsYZZENMapLqHeOmXvQ54KoNoJDHUWuBCWgud7VNAgWdliQArfTbyNuEqu5UyueCiWzMYY2Y8FZnDP6KazrpHOkamaLDCWWXoqbpy3TbyPdLvfmp3U12+cEgAlEoQ1hGpyLaqDlKfhZcGPrK13ui2q+Hu17xP8NHhG+JtSHjd9253LdtidR8ezzxRUiQnrElk0GLpqgAZeUjCsyWR+9IhkQelTzhKjUeL83NhdGPYmRNFga63xCLV6MWQCLkLKNu1LDdWI21QzS4NVhKX/0MT7/1acP10PCqV7desoGFx6yzN/svx6sgrXSagEA1uYgjchGZFY7qLthvNoP2SZ8Lw2/H4ZThc/H08wWDUGtEe5yR0rGg1mYBCoOmHnXnH1B0HWvIr9s4aoeFWuEvDgBG11r8V5bnhZQu2hzyUEtTgN0UbMIgMaU3gh5JexzwvfNOPsGdkGllRJ6MY/6yUCXICD+j+00tsrUo0btjovGHasCQmup0cVJQwuPxnWWOg9o/Qba4mxNAHUTYJWY2jLUo4H0a03DOzcBliyutubRpz/8jqqykkzu3aQ842yu69iSpAg4YdsXqAVABgmSt7byPbh0NkKCbMVIbOW0a6bWqrGjTeFmHc1b8Sx6BLljogVCnHn3RUW0Ypv4ZxdiuFPxBjmFtmvyk+BmeO8Px2bmwbxWH7t1ON9PzGmYFWrRsu1ygR+LSs3EyFM1AQnVNVztfphf/+zn0833H2BM2eaaI9div6vj/PpGKRXQ893163tlhkN4S0DTRBt2O9zurocwaK7y4eEaMLNaPGX3Ul3a1zieUYScjMMIjZihlUS7o2UhaPagUUC3jSaOUFPzGaJZ2+GNXUyANLflPTcB1k9CHTe6V1PUhJbzdBZrDN0QWB6zEsjyDjanT9vCkCT9alqm5wUsU2wgIKYbnZ3EFTOvy7F6j7GwZaQMOwCP40ofjasJycXr7wbqorXKmsWzkZSbeUqb1NxG+peCppFwQzCb5d5MgksUveGO1oE/C/U89Xd9deyslhdUM1uzLKIWhJJq42Nf+LOPKC5rgk3ryi6kBqw+gChq1JI4EcICPTd4kXNa5fiZT6K9Y/Or15Y1R2wyHduN7RkCvWn/lcKXKbTkqCdNvHw97gbNUy2R/+P3FQP9MO9Jyck82lV6OFWvcXyw0A9MRBqevbr79KvffJM+qF8OSCmlweY8ZAPxQDGdPh6ZzWfsX77UCYOKzEwuKUstzmnD/u4uH/fXnKcq7etHn195mgRMp0KXx5EsVUrmdAwGyBPgcqL0VKrGdqstGittISmX/uloNnXTDrTFB0C1CvSu9snePmZ7LXShTqxd56nvZHNBcos1hZ4jun3MVnMsWxaWThMppe1hB/uLRNnwmtjiyWpFKjSWdkc3i3o77o4NlnhTfMroO/NUKtkGlCB0CYXHy3LxwQZqdPt7c+Mj4Ls0g70sOmqsG2XQjNJhtDw+gkwSk7wMrd5+82QqlKLJwkFLEEXgVgD0oMpE0micya3PBZ1nI10K6ucf1ybe4/DOddwpyqkX5Uwo+heDENRP0ei+A3Xb4pIeWoMTVLk3I16Q+6Umf2SqtAFvDhjhBqQ9FgAvjnP2hyndA/LqXkGVqiFBNHrx6zzdz+DI6k7T+Hr/+sYGLxhefDB88+vPxmscZ+4pGwc6hp1xxJRwfV9HvN3bu+HqOH7yg9Nch6oEmBeO9bBLqH4qFR+8us1pGJ+5z9Vr8Vc5Fd3d7yfPJK0AKXutBamb1w3VVgJgy0BThnu2ZeHZyoXUimm48I7gdGs4cq3Htqhi19Cd8GXA/q05aGSrdacEH+dxmFgYHhI5GxqTAHjrk2JBre5KiFpstn+1lMyQZsbZImieEK3kWLyHlySZUTJjJIF2zbP4FWiYW/5CSeYw1m7ybkDEQsadCBupykEWwAweEUd31WgSa3FqgLuVDmgk0RJbnIKAOyz6EHRCFCK+W2ElDtaAQXKL9/RkgQbHzhKgmlhajCYiHmzNdFK8MNa1RzRCJarG6e2C4KkioSIheNNK9zeJlnwuV6F8mapkBpUBxWkaFCFhi41aBERlJA30c3kyIpaek6Esh0GscXZnggRLikYnY9kJqVguFa3PAoOIrVPDeglKVKANn0H6bOIgZ86a5DSLeKB6pye5kdUVBZtk7alv3hNUIrMFHYB4t2UaJM7HZ+M8P3t48xCSkEcSMnIGCRrSw9Etm70Ds4l8c717hw/LW/3wO/Xrr7/4+s44VIeolA3kw92tTEk/nkuq05DmZHX38fPy29OOx9OwK7bXVDXsy+lU09XwybDPRkLlMAngLn34DXZINZsX5VQa5PUF0W5l3yLYlhBAs4EC0rU20eGSb7pOENCyGrT1Ucfpi50IA5I3n/6C1rq/a1WCXNXq+dguMoY3jNhseoKIPki0JWsPLfoTYKLBiaU39MU72P8RYBYaMJqrLgks63sf9YTbQlxz6UJRS9toZxuBPLW1qM3rqA2aANbuutxsz3mAMKhy2Y2L9em/nbsCV59Jz29oCE7nK7wF0ttUX0FGFDFvBenihAtpI6AXq6yPvXC8LVc7ukXr3eeOwBD6PUrU1qQHDR4DoO3U0fVJBwgICMhVNK5iw3VJe/05vZzo/LKOXOUwQbkOez9Oh/tUq6o7Ci0kRYNT0+Q5u5RhiVW8PmGnw9c/+WD+3eev6/hBIVMuUkJOSSDvPjpMrukf/s109XDIplEn7KdfvDl63u9cVo6oNV+9EfL1ze3VTfXqqkWnoxulu/H2F7ud8jymefJkPUX1fHsX4u8MiGjI0pwdapCMbOGdli+tNZfeGyS0tuUMtBCLRNAhM1XzFc6pkcNZLOeJ/VtvP2O4tgGtjf1SRddMD/Tgfw9XoPkvwn1h3aRZ6ZHscgJk9KhutfmrwDuniK5fNyOKKkKDFUhbfookFKzkwq5wwoDtMZfL7sENgi4Jrn2NIgDBzeDVp4zz72uN6G0euo46liZ8NWfr3iVKID/DItDiWVSVrQJAy173nWSz/rk1wm155Pk429El3uFJd6T2v/d25xeSdklUOxv39uqSbRmkIplG3jfft6FpnYn1zWOa5r+8Ag2tX8l6fdTh3TQ45zJV1/+fsH/rtWVL0gShz2wMd59zrtu+nWtcMqIyMvJSWUV1Ft1NUg1N0y2BUEug7ndeEKjFGxLioX4FLzzxgAS8QCOEhGhQo6YRtFBVdZFVqs6qrIysuEecONe999prrTmnuw+zjwcbw93XOieKqYi991lrzunuYwwz+8zsM7MuEJa0KauW+zSe0uVlMRG6vnne31789a++9/kvP2OvUDcVhVMlJXFgn5C06OGDn8+XOiIBNJmnqVO3nApknIYEYNxfXh36rO/coZznWVIPgx52t5ZSSUV9nERcnSRIbQCWjx9mXTdpkrMJzbSVqDmgqgDiLC+gQAAukwakhfOESD5Llav6DSuMwG9R5NUR/WZgAIAx7EVNwkWIfFD1IFZKwWouBXCoNp++BR1lPVyBNWpJj7FNHfra1j+6X6m6g87KHqQ/DjI9LhP2tY4WJOC6zTZuaizwCJtt1CXbc6328qkAt117bLcIwSbIFuGZpmL56I3rxTcxFQCE1gai7f3LeHBs0Eojgz1iX31zCk3MKyF7Exb8hldDACtueZzlWJHh8rBkjBHy9gWIZjcEINayVmsUo8HNJxduCHCjBNdLQF0hAua5HDmX3H/qbtRcOfF1EQXop2k++0HyNEmXUr55ix/8u3/0v/l/nZGS+nzqPYJbUgFVvrcO7G/evT47UbJBd0Lvpyse70a9KdoNNPeP95cHKVM5pyxuDnb7PDPvDsMnl4PmNGCeqZw7kHC2xVgsSNuxFUNGul++jh5X5m8DpwHHIBJR32YhnBBpIqlE8tLZuprLZZpdC1TRzPC//LU1ZiLafGRmABTVGQwZrZYzoEbggC2keAJ0+egPEMkjpo8nAz+avX1y9Ej6N3Y6QwuN1CxjdY/qDAWyRjjXw7J+6zY3Jlg+A9nevG/h2+YbHlngb0AAAi7cwseiuiiYzWOu4DyZU1U2NQzSkkZLKu7ri7C97uNXXc+NCXn8rkpSWX7hXA7gbwPt63NQNmCTAtG02ANpJ+O3KZzl+vJ1SnNb9/UGMnW8s0HPk5Oi0chBJJo1RtR0Ll2Sd9fnM3Le5e4P/uij+//tf5Zsf/8r/eh6NCAxx405Rfflrh8K/C9+w4J86hWp91k6+lmeHx+m1KXTiTfPbgSnUpx9zj4Z5ZDVp3l3tfPT+4Ks+Twzayshfpzjb+K/rGbEOWXdA9keqOZ8LcBHNmvZ9sO1xW7X5uzJ54HLOY03x/Fr0QYyEocr1KoHeLE8X9trERFRjQ7qShdgk+XbKmrWMiapiLf9uppcNji0ZEBFxXsrFLqlhZ2zfB2ILf8gzq2zPVZo1MWSq0T+DxWiNCEJ1bT8ubX8m5VfqCc16B1mp8UCmjDw6we0ea7tSRsxp70vLXu2ZsGW69ddacikQt0avackoaf1QmjsL9Hl9PAR/kfb+K9b7Ooc6AbSb4FPu+7idno9LU9dgKfno+byY7cdamQUw7CaHrRQV3zYVttQv29VRd9c2tgYgjUGkMajYZzOScRhJtLEq2r3UQeRVE7Zctb++Ytvvaf/yV++O3Tp/NZsnl0dklIFANCkmVY4vfvq/hLsH25ijivn/fn03g+Pf3UUmydePb9i8eLIWdTmsWjKnFmkO+S316pGT2UWIVMhFt5E2/rt4rGZ9LDpq27YIk4KU40cF6lGu7lX9dvnrMuSCYISqm419hJ2uy5+1MPWTXiKAGQ5NvH2p0ashr/a56VEXkhyk4pweZDI2p8X0NYWfIsBuIDraoRFJEnMiN2cqhXyPg5ShcaoeCT8gccMPT4mEWnIi7Ye+rIoqLj0VkTq6QEexW5WaNZ4AU/uqL5rEUCCMWFoI/8Nt6AG8B4d8QU1VFDs0IUMVCRJU4J1j51UDaK7eMN1CbK9XCvXfXz9eGgSqtZcsvjOx6riURZG2k8eKZSn56N1Xmn3WcVZq5WQFXNs0AsfSUULP1f48Pj1WF0AGW+m5/2bMcr7ReqDmUYzcFJ25Xjsd7tjPhz6y299p/znP52e+bNxeDcpPhtfFboiBhwKRdPpKrl0Nt7xumg6P7PMgg4z8+V773+Z5JS6yxfP5QzJWTSplVI8dd1UoF3aDbj7eO7o4FSEhXkERLQmX7/hyDQnjpXLs9HDde1i2ePAtL53bD+XpgCKui7yr83yRrYANVrVOvK1Hfzt0dyqMLb58+32kEgt3yCRBmzHrnabBqQ264yGBZbad6xAgAvWJQBRagJHM8lLn4TH/JKt+mySIRJlYLH36wcCmazMUlmeqT2907H0eXyEBAQxrrwepkdrUNHVkrR5SuBprmvk+9dvbe9zEcDJRJDy9SDXer8VZNQvKDmr+QI+EEnKBu5qLoMxkQibrX3q320F2gG15b3N9GzfJ6sXIOrt/P1LPYDl6hUpLLYHS60w16Z6j4zj4+d/3GmqvZahoDUGIP+VBDvOJnVYfSNBSD8Z6KkrPh3PKaVn+5cfHe4/v/vNsysxSUKbJnSZ+tV935WoD0opaw9JSei/VHK4G//gC+8/+Y68HvLEXsfTfHz/2zdiVA9BYDFzTYpSbPfFR+9f/+zqEpNnldtjSsUq9bJh5BqQwyZfHOaHAtWka7CoGqDaJartECSp0CgSddJRTqziTHTk7HNLYzG5X/5o/zsPGQUZZTlq6ilPc++VYdDyw3XxliX3mgPK9bYTHAKFtEBbtWK5nhZXoVMUswU3upqr6Lu/Hq3HTY6qk06w9JCBlo9shjCi0K2lm1TFFwlzWYgmcUpEzMIIppp8r8slE5alBtDacpMtz1/jnQtV+elxTCm1blwAa3nzeokVMi9IKiBfW7/2htZHvw3S86ruG2Rbkc5qIus3B1jJiYUpTxXRqRkktWLcVa22z1m9/jqtN9apxUta1WX7vUuqHJ9g9iSD0qA4Zu/6czTO3fRk03iblIZYYsYR1SvMnIwwl1wKte9SNvMV4KMR3OLR3ZfzIGgLFzEmYfBVlDH3oCSlUVPTSznRZgusVzFrFI46kdToTnT5cOg/vLopv/nkmD8+DHC63ad+6Dq1cTfT3HwPUU2q2Vzg51ONXVDvP7v80YcvZpdyN2N3/fv9gOK0GJtYm1K7UUo+Xe8Ok8JA0M1Id0pCcFCc8miDQg+0eBM3uHH7Yp3/t8goLMagNqzA7fZ+TWOqRwuelYGKqEx43Hwy/v84rdVei4KoclsRfQv7x/ALAOJKp3qZi9CpdfQZDNGFq7Tr18NqG1eHIJK6F5tTdbkrusDXXrWjkDzFh7UV/YJbfY1IPlrXJAFSKiLY2OgNYgW260AAKFCtucrl59/UuSeaR68hn2W/F1y3QuiaxMBj7+VJYCFIlFo/6G2PwmwspvRRFiOuJ9gmTvj419uHkwYauXKi6C6EtFmm61J/EyT/plcgT6qzdS/67e/dvrw+cJTHizRbESlyMtGgWKnTWcp5LogKvSpJAhCzAaLuY0rD4eWz3bN3P/38qNc3s4wE3HKXVXAap9lLyslNFKoiVlzUx5NA6Ir5km9zb3q/v3+XXnzw6kLnySigMaodsogIzZOk4/sX3ZedGCm0c4m2YU21tfScNEle9jcUABZcz6qZKwJchD0+6LVg1tfaqjj1Iv4orU/As/vjYx27uQLfzQGtMrVOboh72dSXB0FJ9RGXvgE9wkn4phwgbqY8keNmebbQO3bYXcrsjQex4gRuNJssR7T+Q1b1FVBrIwrcxDKrNLYcXhwmgYhV1sHTPPj2W0BIhoAObl2Zr4XbYjCEgrVGcaMudPOxELEITDYEsOm0tLylLYFTU+3JVPuEPPLr2zl4HDJ74kK1vv1PnY5lFQWsJfvSllykNnCpI0EXJmS7gGwvhUeRFKcIXMUiBCheN+7rqP5xRWEzg1InWdXkGIUUB5kjfblQirPNU9l6CxHjpjDRZkKvL64vLnfJ//ntnb68wJy8uKSUXaXM08NJvEy5T7MrVFMSQsyLMbmSmufzB4fPv/v6dfnN8J1vf7w/PZxLoYBWnFwZa4B0nncX0/2lOkVoowXCXGxBaICawodw7Q/P6t7Gmq9VOfU0RD/3ljdqgyXqEaFwtSlPFIB4/+Aat7g4w+FvSCXzcm0FxUfnf30t57i9oRIKWLUaWpQiApOVmJRW31ng9HVCU9VIj1s7CeZok7+cIVkOwmPrXG1nlb8l2dwQUbx/ozFXgYufmUAWOl5NowpXxbSRqkc3nCt20s2PtxK3vj9GF7b8YuPY5/oc2u5RahYg9nVVW7J5zHUrK2endkqSECgR0YXNi2+Kz28QQFvQJyK4BFsWvKIR+Vc0XbBuxOazVW+1DwmehFJrxU1Uqsjjo/no+k8MojYXoCUn633rks5aZxYAQJ6mmRCWtD4tCREoZtO+f3Fx1fu7t3df7d/fazlPe8l0KyJWxtlm19QVms8dgttO9TLNk9NFpRd0zz7+8rPRr779wcc3dnc3FpBWChMBTUGEp7iXdLxKw1vP0T8pav+aol7tZYOej+MyVf6XZNa6wnFUmlEgamts1qUjUEdL1LzWqggp8P6dPUUADGPQAuTLB1we+RTV+QCDmrshE0dxutQ43cLwiygsYXQJKBC7lyDgo3hOvN/WsygAYGpUArbEKWOldNGFWN+8Yvd2TupEnkdFKY8v2b62pQE20b0t1eXpq0X1J4hI2v582Zl1F4WyOjfE9mBvJ/7UpRKEVcPWAfj661GIvH0nzRnMerQYUgueL8+0Sed+7aHWfwYEYWWW1nFyrVy4BVzWsP360cfiD6yMcABwV3EnUnS08I1X9OReGgxav1UAeEz9XiWnzvIzVdLXncjj7Nx4wOLVqToN3bDfXwyH8tXD5D5/0Mtpkv5y1pTm87nsOEZdsKQeImpOt5TExMtsmt1F0SuHT/bdb/5mx9+X8snJUhrBUkzURTQlbdO9dOx5tfPxIEI4zKSKrFQGa61xXy1c26AqKFhixgsHZomsS0UCsbLxrKnhvkBmEUXYtrqkiHfmdGil7LdfkALPDNi3CEHojE133zWdtGSkQbTmn23f26FQjyCNqEq0HIjz7vh6VWETja21E8DdC1okot1vrgrBm52pomcSj4J6fmo4bDmjjo3eZY1fSU0HRpHTxmKuBu7pEa3x20ZKWeMxcdebSzSzvixPu976+/ba8CalHoZVcT223LLQWwSgSKkMGyciTFYfun3Xo+/ZxAC2aH0b62nPz819tF0JJ2p7+Dbna3OjVRHoI3VTQwq11Z20BOpTVdcQwGKIagyg7WWlDIZ2r4vqm/kUeY5efLmdm1CHKikPw+GQaeP9HfYXeZxgOWEcypQo5JHTxAQ31w4q/cRSZlUpoEhWmQE3mSex4eXNH+8f7myi9ONDIgqTJg/PRpalKLvd5bvpWVGQXubaBd1qVHU55U8RAJdQdOzAZjhmaI/YWbaQV5t3HDSXKsMNEzw5vZ7Nv3awY0bzEhbcHphvgmlt41nRv7cK3ap0F3J6OALMnoQCLWDbsi2uiW8jFtdH6ulbCGKr1olnCCFfoHqTPIvUsufQOxAPNdj0q1ew06B3uAbbg16P05pj4eYcPl0DZhB0MmHJJDYy9pP3Lkro0W/bf3hNfFTpqfNeNk05gU3IDYBTs7hDlU5VV1EE5zMFcTqCQbp85XLPjzhB4fXo8svNbiy/CcUcXLGW5W1dYgmAuj4SF37Jqlu24R6NrhTRvEQ0lboBX8c63wxSHsmJoIkRtMZCVgNBOiSpiQNR3umiml513bDLp/svunzo1e41ixVPen93Sh3MHS6axYxIXpCGmPIlMEqGW1dQRhvLh7+7l5sfZz/32QrQmUfX6J0AaINTxT2Xi3zxieUJoNNcI9JulaBbUx7xxFUsWC1qfdA4vK0bDoAm/S0VUA+oiAprgb3KRsAfryQBJDLFRMZ1EsYa8QnZk+WAsIabH71qnXubM05XVdCpmywAGE5/i16wpqUFwNCKb5/st9f3pfp3JWNkb6quxQEbE6+aClaz7wKBG7WqQPNon6oBZES5xb9sSyxFRKDCmC7MLRmvxjLaAVw+SqDW2yfBWmkbt/e19arrU1XERsHG/xzR+r3ZtTb7cHMbTyAxoeJeE/8qkfVF7L1bqnf+ONv/Dd/D7V9PovoEUt24luivcxq03TqXIWKPtvHR2m1/oGEb64dUsURnnryeqIQWA1DSRaI+XNaLMplLErfW3FT+2npDSeF2MRf0F3stFwd9uJtc9jJykLMSoln1YTaWyXTNDzMlMUt0UfHClLyg6yaxEVcfvXo+z+PD3YSOkVLrCQVTNogo3dXpgDuGVy/wkw9noVM4jVlIN2OujlQr+M5NsyYUJpZW9ooEpi4FtRbBbUMNngnqlIAwGMvRVbA2ehZJlRdgIlFkreaX7z59+erIZKIWjB1ycBpuPruwNbK+MX6Ex9dusGNoeotgosxt3VoCXQTY1ODYbAKH+jKnoFqUukkR6VjyCjVuITKv6bP4HlEljV3VKe1+WtsYrvwKiYg+kmpVSPG+SKDX+4izFvXoxvDJZYvE4v3ehRmUluf2lDSQGSEV8/kG7VZYxlT3rTbnxFxpBloRTGKI7xxZtdpME8jGJIW51DXRWBL2VbHPoqoAO3cI3Pu4XKQl4d6rKkRk1CiwcVGB011hkqIFwQKnIUhm0ROOzuDl1evWdZUGPqs8j5aGXNWt13uvXpmoiFgFXb0T8FIGCNSMJk46pLfJ+kP2Uyi5jYtJFWnKPUq6apJDBJCWNalIoMk46nFYgte5WUxJYiNzfrM7dEmK9uf72dFnKZ785MipyyijnYrT57XWKiyke1J1oySdS3ch59u+yKuPXsj0Zp6mArU5BFfVJcFFe3d3Kza4C+Cuqbv856+mXEj4XDhKAJat7yQULtz0EIBH6m9jsVpNT/u3PHlTE0JWOCu+cdoDkdOp4VFUy0YgmiwSaSkGb45j60OvoG0Fo10wYQOwURFMbN+j5Lh7Bd+1SWk1oY2mhabvlvusRmmo378Iuggq3WTNoaFh6/XGUhX02op6uY/416qZgri1hrLzxpVvZz+Yk/EqVQja7EENE1cZEL4xSuHwG1qXu/bEeOTxlo2PVf+Udp+E1LHhjGCsrAuaNaXmmrdR2s0hlKZAqUgVbNcHFo0gR5jwKnxhKhSku1QbXd/OJwBC0rpVDaw6GXMbpCHFJbkvaO53Akm3hidEPUJANaPPtuubzG4FxOvGLmv4Da+nIdPc5EHdHCnlV93QiaRUCCWm8/CA636UywdNKOfTVIyy7VBeKMiSxZKKe8rsaPcuub/cX/XnMtPHUQcdvYJvFU2EYKIDSOJGFXfru5vx7oMHB0XLXNQlDN3KtHsCk55ipljQmkCSFhqoGaNILWwURniOm7VgzWe3ZVQjPaUSdKrl9IkJtYQCaF7Ais0YUfdt2SmWmNyaCwgBrxC+Bb7qy8wEHn0PfUkWBu++nu1N5BMNgNRvXomhca6q9ZY1nYbt7+Mt4QMT4KblFNfhQu2WVwhKSKmObsKSQxSpnpIArVB+STeEdG7X+8mNMJIdssp/CHd9YyWnc5WDjfwjqt9iDxZ2wPIdrZsGA5KTAaNaV2kG9oiEWxaJiXVJBEIm1oOiwf4wELBCie7xm7b+LS4SF18xHdtzSnvfk3NbMWmz2xRWZUgEBwBwW76KS8zLdRuxeJKyeNxzkc2HakZj+X0mEOPMpjkfdmoXpeigPn7a9V2iaV8g41Fzb+dpnErM8W2BGgJSh3oVz6IUcdg0d9eX3WEob6duPycaydKBgKqkykicSVXVVOgCNx+uL//y5cPw0Imm2ahdhK/i1jenWmtWoP7yyVqG97wUra6CSPHlwCybxCUAGLu8YGiJFaTqhNW3IwRiykzvxlS/ti37cqF69FYFDUbTbakAEEtevbKzmnRhOZBsZ59aU6H1dluqaHkMtAZi82Kj4qXVNagy97XgUWCjpkuaHV0xygplH3+INdgyaytQeXQIFwOjtclJVLKHjDXXx6FrK7AAHsHBX5HdspRN5bQw8FJcXH/mtWwhNHRz6Vb5RwBk1mq60KaVxdF2QkBQg4SlUkFVEqG4izQXMmnAMZKiFIBOR5sVJOsF17OwWbokEF9dUCnb7E5E5UgPiARJUsKQqMb2l4ZqGvc5FstbkUw9VY+CH49fG1nZqorcvJgZu37XJ7gOexlHu8rZC7s89jKfDad+Pp6nVn3BpWMR9lOBKFxpObkXTqV/cdmj3N9CM4/zADdByRCJRt6gGbWjk0YmAF6Y9u8fv/rrn/YlA2ZWE0IbK98ee3mFDX7EBwjNHgcpzuIjCxYfW92hICu6gnBleE1cCIIUcc1nLoeJ9bld3LtjWiS9dmKuN2cxlYObm8LSoU2e3MzyxY9srSw2cMn/R9pysb9sAtAaW9T6oc0KRa/EIJK00WLYrKGuhlmENTu60SBxLLahjPgzMipgqr0SrQGpzTNJrKOsjpNEMGorEZv7kc331wesQVVZJi0FlU9hbclk4480J2qZfRK8ChDoJeTW26fqMVHVxZjGR4Nd71UByPbeICIaX9SZEVLVlTfXA6zVnUsqoWUFplif+AOtkUfbqaXKWgDCYhNqaoy13JEEoxgMDUzW/4mgjjwAGE28Nusqixavfy9LtWUk5lZv7RdX2dHtRDOO79ifVWBGyRdauOv8rc+lcmCJFiEWoDhAdGksJJ06dlcXO/VCY+5lPItqciKbqiZVMQ+uQfKqTQmap/3V4V/sLT9kEysjYI5vOC2oXPYwA/pEAbQlavCpWjdtJ7ilVb5+Ahtobf8JwJnccvJao7HR6S5m2Ro4YXUldXlH8LZ0+/0S1ORlciOxRLHlkZrDIkiPLWv1ZZq9JStxpRlwsGN0TVmq5iK+V238mp1YJTquG06Ci1fsLJt7wNPljTdEBVXgYrauuOvta0XxKz4VhksQ0fHGc6r3WZt7NHeHYeQbQlnOdG3sXnOIbCl6UtfpLu165DqSLUibgdVb9wYSNQQIIdoc1HDRqj0Xa61Q4+IxDkIqshKlo2b5ZaO/1u0NzUq0hWqwbeF/dLF1nrnsNkEgOc3rCK16mkSkzhVYLsVqetZHfmzX2820VNBj27mND+T27Ff7QwfkND8UnUag83TzbDjdz7kIyniqh8sVeFQlckqJxzT0I2nF+v3hcJB51v5C1cZR9qBpEslMqgInDeKQNIXRFHPQMVw9f/Pw/La/vz53Ps4qxSNqvoE3K8xCW+UnT9z8uVVCIu7fwnshd4sxFgW0DhitAZ4NpZTJLGsN9dK1+dpCmA2ty3jtlbMGAUVqz+rlpVXIw99QNlz6yGpursvFxlfVEK5HFXZrCqb51rGbzQVeBasdoMdf35wJBCOxIe4Fzvhig+sdbNRQHDku3yNAq4arDheWm2JzmdqJl8ZL/4ZXSErsQNh21K0XqRo85hbVobzLxbH4L1UQBes817jTUp/WUkILxxFASuLuIqYQQsRr98dIo4m4wGoIVigiLnQREXow87SGaF1WE7K9cPPjItbPhgCWLsep+p9SL+GCqAatXxOwLEFVkdJK1XYRiXAia5/LcGoiU8HH5dXNPV1/0hDNskg5jhzxzEt/1c3j23s+fx/35+evj901T68T5xK9cmL2To2KamkPMqTTfTlczgYW9lfvn0/eX3Xi8zjNgOzOs2ZQDiJgKS4OhWgqBOFmmQKiO1z/F93ubZJuSnRmKUmga5vOlQawxgA2z7b9R+M+VbiXniQBJO5btJZKhP2qEwJFpKXBnCLGShwIGyqAU4XRRJubCy6bvliINehWHb2Yhrxuj7e+L0/0tj9RAEFd1vW+pP5ikfwQvRKnbXnQhascz7vUMjQNqQs/AAAZlihqLhvIqAU/6+eaR8K23lK1UcihSLgqQVSKmGn9rmq2It0n0b+8LQ8cJLuGWZdDioYIAKA2q/V2wKvMh4pi5S4AGmW8m9MQOCh8bveVthD8h4U4JtbSgBXxZ1+qhwLaB46XQghpNhAQqLQpkLLRwEIEg4/NgkuFnrIUWrN2PG/VZkXhTtDohKQ2hwQiClXVSBcJYrJWQwRPiUF8+q8ngLeqVaxBQPmh6QQ7XV/0h47n+9O73WGXu767NXIapUNGoaKI0wjIXLenfUF33s0yv3lONe5fPhtycc3q5d6LQ5NGR32yc2+VsE6BeCezCf18/WU+nL/zw9NPDv0o5VDm2a1IJhHWl5poklp4uQlCLp5gkk0riK3Kdqi9H2MqvWBSjaVThZM4hGtZX8GZBtrgCTTcRA4zmOaf/vDw5WDZRWK+caJqCszqEUxSBd2xK8ak9JJUlGa9QZOYNZ5C2wlbxSd0f4Px9X3n6ArOzl0UNK38g0cOAeJEOqQ2iYwlcCRd3xLfmYpDdWN6Vd28nUdAi0F1bZW1KLJmRDa4S0SgKjRvw/ZqDnUNgKO6QGiMuE5ro2I6oVXwZc1De5zyUB8BCgEQVhsdN2jcUnjLwa1LFtWIEtkXsEKh6LPsG40Y8xvIJDEEt3cH6L6k+KpmFAIquvTOqy4Ke2mmsl7fTVTclNh2Rlhonv3sWRzpXVf6VPbzKpgLBg0FUfksUYHnnt1E3M0EQnG+Oo46iHsRgE6kaONaFXqdR9CGiOkGJWv0keoaka4axLYeUvFl1hFl6MbTe33nd29uz1ewmYTlnZ2wg2uETfxRkng9whAU9t3dUS6fX13u1SfNirEUp8YtE6LakKdL5Z6E/QfNS59teHH4ie48dbRcQKgqw5SLMHp3tGv2FVoiaYIgRV4WkiBQFXEnGplMBUiaJGyyQjeBbq36tR6yFT+3asIIwWhxQJQi5kgiGGqyQGNwOkvAEb7TmIueSTPthjlcVeUKBuu5rVtX5VZrYPuRC7AIOeEKR5st9/jF7V/ByolBGQCYGIaxDTFt36oskMytT46oimOFC9vvXXGDtGwfH8lB9TLZiIbtudh4d/SFIrPiNjxOUy2+6vo07c8Nznp0Q2gJwRSeG6ZqZsNx/3q4sSGKGkghG3AB231tODbLfmmLEJQKYTYEmtYqonl1IGL4KVGtni/X2NxPixUuy8xFfbClBYjM2ZFT6pKISB1VIoSpaGyz4GvwsT1r9WeVkGgF97Uk0PLKY3c4nocXzzoeH96d5aITm9yL3nSn83Q52Ohu0UxkHXjYNg4ATIW+f+Xf7ndJOU6Dqk2juQaN0RNrg60lvxWHxQhz0jl1Pn/4onz+Qk7oYL0QGaKEgwJJrsqClNFsGivlBAkJEtqlTkoRFXWHZhWni4DstfaC0KYo4luknvbq2KMN82xHLQLrmmevmUt37RSe61Gy2gy5N5ck4t/1MhtVXeBzmdUkCR11UEfT+5C5rl7EDFoYr7oEsTzVm6snxJXfkFXe4PuA2vXIevPxW7A0kgSbKJm5JnVv0ZBZhObSOkUtlb6b+vvlamFdommZLNdvt1/XsnoLgXVr8oqCSpBnO7aPT+56QLe+VftjyexxSx2OLE+bgNMR0Qy5+Xt8cgkA4bQbw4t23253CCkrYcsrYSdWvyrllpiKbZGFQIamHVFPlhAo7pQ6/Y7clJlJu2S9Ta7fKuK6Bpfi0NINQIQgCRGj1Ckuj7M0m1dNyoTraE0zbS6//e98c/vQffj8dDrbeZzSvh9hFKo8dJ4RTcLr5ZYNf/QqXS6ny+/tBgGh/cHL+TxXiCkU6cgImgRvZIlOTwoQomnWqftw/4u8n469dx0huauhmnABRV3Xia7VtQzPKuBF1HaDoppkb0ZRkTr1z6EKehBvnMK0wO8KFCsS8KaZl33xBEo2SdVbDIpIzIQLbo4IuaMTSruf59lJR3/otIxMnSrFMVft32IPq5cbr7ZBK/KoB6w964b/9eTFNQS2MIZCeWw2yZJiU4YPB+h0tuCdqriZtqTEInXtkq1RjKJ5sHDysYllCPzi16AhzHquW1CvHZ/lluuZZKjoGtlYv7X+unF+VqAR/ylb0dPFxNQouSzvqRdhLf0gVJfLVZ2GBfB403LLfQgg9fk20KeowqnJCdYin/qAgSpHUlNMIyDdfSOAjxYOhiAzNP1at7YEacamaQ7/rEZKpUpGQ1xPX1H0FdU+XEKw6+sJkEJWvdzl6e6dEznb9HBB0hV+O+xv/PTgXYR+5DH1cbM9SmH/wXCLnOjGeTzOkpJIJa9VH5ctfBRNwASwiF/p6Pb+R9MvXu3u+osuD29cu07MNSC8z4x0zXLDLbpcGRKpjkxIBCQlTQBVRGZoUnGlClxjKKMTUuoa9ItNqYmlAAAxsUcojJ3NpW6iqgpdWy9PZA8LZMWDCk238eHuqPlw0Nmz9PteWUvBRWStcq9SscrLU2Fa1pfL7snm98vfrEyH+peLAMFcI9DKqAsZHQ/qyzTRWrtvoIZDuGipuKNVASyKqUkiG+ugxQ9ZnYyQx4pIAoq02HfEB2txyuYsxg0sCdv1saS5ItVeNmT8yKwTssZupsjVY5Z1QbnRhVWXBu6J7vdVVClgDb9LzAKUxVURzDUVYXX7lpgCokzNQaU3TM9mlukQF3U63XU71LOCwcaUrBu96rW2thJ7QwAulTCGUHTbIOrTFymUTdRb8NvsR7zyy3R1/NlpfzObQ4lIe7voQCs2WYIzSmEAeQxG6xeYJ9F03pmXcp7IYqlPsIi8iVhkDsRqVBR1gHoyEuZItP13L386Z5frPTsv1KRUZDOIuiSKKpDrgM2lk0GN07APH1pqwk5mD+VAEU2N39LQRDuRrGc1zrP8lvUhiDQ7QCRjyjCP4hQCUFIgSpOk8FJuzw+ncTzPN6d3Xaf7/VRgWaFrMC2+09u5rj+oia/FBZDlhpc2cAsU/trfTTTZNPvS828pXK3u40YQBKCmVuRgtuSoIwC2WohHi+IVuz9arNAAgZXrE0WVmURz0QigVQSwxSHrqxGGtnAASyhiqeZuFu/RtZf0a1uKqs+wdaEerVdECBxSg9MNXzU1TNQAe/hO6x2irI5IvUFfPLn1CrJo7jA4LO6M5pfL55ruj+8TDz5LHbRUvSSy8+IuXe56U1h4AEsQY0GSTxL88bPgpayNf762ZVuDkn/3H/xsetdhyjRTGXqKCl2kEz8WDGoQJWvzzs0TLwfKfTgfz4WT0SamUbqcYa61JwoYU1ILgGhsEhKU3RPcBNQX3z79+hnYX6jlN5ogjOptaLTuSwRSm/EXoIJMSqfWdIuoOn05jqHSG4sSzWf1IHQLllMLslH/GlZaBBERV5icjH74LqIoXW1DWVMUUBWfxvP0TtPVs2E/vHuYuizdzkVyTqCxDhwKsIG+nuQWA8ACQatnvFQ2Cxai8Dd5es0CV2ianFTZtuYK+5fCn10UgIKSRTRXmYkYcWQeuIUf65Fe/iPWKORsEbzm1reQfQ0+1jMeoW5W52Qjvwuoa5TigIpPQWaFvEBNBG8IDXHBZgk7Rqi6q/fMJy5A3FzteUBNVuMvS8inwRzWYq56P7qgrG0+pJZvS+0mtR4otDVIggjrx5DFBT2z+egtQRH9papr1MAVqiqjU3KAp7AO4hJGqFn2p0fjkWmhBx7auE5bawQA+c2XD5mGdJSUaEbVRKfo2+ueksuxC3snbNa0vpoyL9ql823pzsgy+YhdHfUVZZXO7GxOEMGYrk4CpVAUIpT87Prnn/1+3vnuLN2UEd2Q2z0WKmkCq1hVaz4+pTrDiLUBa5XnBKjQPYmqesRYPHrBEpGDRhSkrvg5CF1tE0IQa6WIFCMoCU7XVMu0RFWqk+4QnR/e3U/28sOr5JpejXI5lBFdKRSBD17MAUxVwEp1YYyLmXpkq5ZIQN1ffuM2r7vJ5uyCoDQ55CKI6i5UrtN16blLxFDf07uLsJQwVKs73GyZNMP0W7VQ/EaX9QsIP5FANIWK+wzFvUba6590daEzsR3okPt1DdYbegzVArm1JqNjdQsbs3C9xubdJBndAWtr6KZiG7cdSBEclKY/WJ8x8XFyISDEZtIQ1gASQBjASDxVF3h908K/EmwYpDUNiKr0ZtUs4tYb4XV6LCh0VaGv1OCnr5YHdg36c7Nz37h5APJ/yoTOCjshHVkSZ0jKmkvqdOauKEmhqQiNlFQ3emnWaOYX/RcfwCZ3uehnISUpkjNS/gJ3aC7K4gofOxg6TDDCSxqOF/p76c++0+2Y2Z+/2hW1gpQTi3WdG1UVnlRL0hDsrKSydO5CdPtZILlTjoasSF0x1yz0zukKmyR1XmZKFythlOjz2fIozR9gJYu2rrpgdk12eDscvtwPZ3ERWFDUQbrkh4uLh7kTTKf721N/9b3U+SnLKfPV5dmuoOp33y5m6eFGzt3d272dXxTcH8Zc9ud8RkEqJ5Fp92Y3jdfltA+S0Xx8ftunu5dfDnL/6lQAteGMfupLbfFgoiruniKUXfsYeExoUkd01IzAKCjwCIWK1T7xc+q6JODc1I8ogKTq5pDqY7IiF5IJUTqTVOmeknh8sxqyFGYDYSJitUeRR+cFqkZhyxw1NAtLsAlx2thTQgSzZDGkGQKBy5olaYf4sVAvqCZMqqAF/+ihagQg1NWZEuZ5qNk/jW6MFccpppirjrVYS7dco6bcQjF7G3hClIgaKLZMcbC6UMIkHgVI554mpZ8qWwCUAKNR9YdZ1CEsKRSpOAU2sy9wIufUeXTHLgjWZfRFQMt6hYdeaoc7j4yXCJkQvHcjUbuNLd4ngBqXAXJvIL20+QTBplGRrLBiHiwUsqnlhrwWIgcEoE3nY/EwrdWNtbAANRXq0ppVZlC90BDN7875+Hsf/gvZCwmaETobUhJLoM10qkpMHIsMrtLMoSLm7nSrdqyOEK69nur20UjJKGYRqqw+6sqWA5p7TGythjQCGymccmoNO8Omxhtsh7fj5eHhy/78+vTso2tNtKTMZT8Mu7zPhXf7F2Ua+6u5zyqd3F68PKbn46tznqVn8h7+PKucniXY3eW9Cd18ZD4XPeqbwbrDu/NVfshqqoRDoUwQF5jVyZphnZyAoDhoxW0IvMwiTQ6a9xFef69pjeqDqO8Darq29UqM4ltwqofmFI6UeBtdFtpC+hbSrwFqr2jXappsr8FVbAZjHaRROZhhIKF1+nBz0JaaBrTYxNdfNSYJth7iK8Je3hF2PiLYzicRLDaXsh2a1VA+RRHNH2n/UbtZbzOa1aBEjo81K6EqAlevuVjmNZYgsc4hoVpZr0ahty4hIEdLyadpfrQeVeF9U6ZTqwJgC6wIF8Lnxj9YPplrCKhCmcosc9hAo1NEfTEmjx5329+c5fxQKKkCUDZ/QQWohX1ujfRlwbEtSkNCSen3D/98OMA1Yh0Cau7cC0XhJXgskrQxoFSsoNPkFYJVsNuCfRuoJTSHJp9KdOlpLlqcmo1f3HzXzblo9Q6qO9Okc+lRq9lbDzpPncJv3+xuvyyvvn3tyDN6mXO5HHyXkeinjy6sHOXizYXzfCnnD26OuPz8+nZ46LpO5sN47lGGi+4ElBe7rDBgnnQ8Z9v9euhv95ycV/fdqHL2KbcNFKFGgZWokAYhY9owSKg1qyrR+64xn+psRN2tChItcSgQFEBV19BZZVyyr0vW130Yq0GYHR6ZnPDxK8LCrp60UUQAlRKD9xbBr8HcRea0WlQyMsS1xdnmdK2Rh+2r6eSK3dtDRW+/sFRLuYUB6inOQzWSGv5N++A2JN+u285Rc7BCXy1zGapIeeMBL59h/YNA1JAgqhRZu8PV5HaTo8qQrB+jRq2x1IAIDYKtzVLKpgjptyL75T5aR5nluapH1lyFbAZoSoLqIzMwBEoSTcIWQahHT5aFbxpdRSA+n/sIoXF5/BZ9iMVyOhyAcUInjjy7W+oS7Xe///O3v5PpquF9adas4MTco0SjUUHBRU2J5EjKg9FdpKldl6p82XiPInQXhRWTtTfiGm+RtrloXG62RNaylYRcwdVKy8qvKjTNeshf3Y757fyt7+/GcaDn/TyJDjIlO+7Fz30xV+hNp/7jF+fD87w79ZfpINezvXwYr+9sN03pPX044gWuEmdJXTnx2VSSdL29unzju+n0qrtXeYimy6S7uFPgJfquOzUIl+IKgajOAWAkQQCv45Ujws2UkqZ6HKxaq8VnlJZjDsuVN0KAxZqAewSP4MaDEFSNlUx1Lcfa9jyAgGsnSdLKuV9kq3XjaHiLAkJb8JDr+VqYc5tjHd/CKnYk1qqm5X3xpaxEUo2ZyQpvRmr1Kcjl++VriQrZ/B8bxmY0W23MvfUtawupFu6OM5NrKJq1ercJZgttBJuXjddUoTyYyGJMy/ppdUWAJXb16GUVAeS6HDUKuDnayzoRALMzyHTx+CK9O0WSuIqKm7eMmS1ZyScbQVGll1w7ErfyYqmIvIHpgIc08ehn6QKF0XZ/q//Pr156ZlQKY0YSd9Dps09GFyShe0mqdFIlkxrN80WaRxLadWnRUn9HUEpxiIQmpkT4r+JnqeuDRf43VFVGqlavkosz6dJteNEB52KnKf3o8off6e/LxXlOu1xooIt22jluLsro2JWbY2dvn99+Z3d+Np325er+xduH69Ozm+Hycrobrovep9/72U2285T1+Pb2h9Pt7vzdHU78Trofv3M8HvJ8Pbib0Wkm0+zKmB+GSAmTDlOBUTTWv1ZdIECYxH+JaMpq4RaISWj0loKPujOGhQnnFgKgLBY5emOEYhB0UXBYHRCR1jih1CBgUKElODKbaPwaNGs2J06yR4IWT/PbS8u6jUA+Fsxw31penTVsV8/3klJZIuxrR40mBWSdMCIb72HF9bJ5+9MkeLP09ffbb202hGTLBtfkCAVc5hxUT81rVoZOESsxG1XigD/i4HvFO96M9dM7avctzbR97Y5b6BkgkBNEnfP5Asv9uUTvDgXcGrqJrP5m79YVkGCT0iTrggC0ojqpkk/SnbSc6O40IHU2mXz87V//8l/Z3wvg5gKfNGkhIT6xlMgGCOmlGurgZsLVHYKYXxt1XFJjFLIsPUDOtWNGU34CEYXAFgBQMc3XMSYpKmpQ5pxKfbCWCT9flXfzfD6Xj/9aumdXpvFqKDPGQ7Fdzl2aysuuJB36s479Hchn3aj9w+HYp/2vp/vTy1067G0nyjxd7c56I8US9TjqlzKMb49//f2f99pNQ/n0Kp9v9qbmEJiXeUISLw6x4sTsJKKE3Dzoi3Svsx5kIVCKQ1RV1Op51XrgmxVJENXomw8Jokm1M5Ev21n0xKkBF96pUKKxj1CAXRW0Vrc+1broWQVuq+CXBWlrTbEFXKQCS6MgWV3MJn5fSz/X012Fow5bk1UBLC5AzBOu3aWllX+z5WUrr6k6A/JUxJtH3yIpi+IJYXlU4lzPV+ibqk28OpPuDsKjOwCX9GXVFKToZhJDZXJpAuc+K3xeiEQlah6kYEnAPHq1GEBDF+2Ab3VTc2AIICslGWy6iCtL5EfNe7rVYSfahuYt3IKN9xEdS9ws8im+rFXwRSNm7jWqLEBRFApKVyjwfPGH9k+unpdEOGcDLaxQKSniNqLwoiBNARfNHoUQKcr/JGqU4V6jszXnjqjbhpuxUifq1knYvRBnWcR/cQGar0Bp0yQUnjBxPYeheXOZT/d39tc/0vuym25xd5EfJrXDbNlLHufTd1x737M7e/rierrp2T30hd10kd++eK2DKyfI3FHt6jPupR+KaCmDf/kR3vt5/k//e5/cp5df/vP/+sPH6fRqKF4cCrOHlAypS6PqPBZJPhd0mW7mZJnnBJDudDZdH9yLBM1Jl64aaI+rCzVOmtaDSBRdNZtJQIq7AkRX48GS4ci145BAPOq+WGcZci/VV4suEBjrebFqpcPP9VBCQlBhkGoJuTlfT0/4+grmXj2FbTKTs44Wry4AXKIqk14bTDSbvdbYL3u6dXra/crmv6o0BZKsgrseoUe0Q6m+TWrZTwK1k9ATeFEJNqG3qKwBVYpolBq6bxCUol3xUajka6+mSSvMWC7Zmp62u8ikisqyI2gdrZzR9smgHuOCFj/6a3tCN5uyGEDb1WuF70AxxGG0ChamDs4O1s2zml+8+t7tj7/fvxsMbubC0hmko7unLk0o1rkHUdNBT5IMpGiCa4wWsSAXBdm1sUsI0E0UVmo7kLUpQD1em7hK+0XVvg1AAAKFSHKinHtZzAuExOX09uF8ax98R09FjP04Uqd5z+5oSmjpjzcPooXcnXeXD89Pz73o7Xu70/7d+315+cmrfYGWtOPleDG8/OTyufWcmS68MF0fP7770/8PTv9G/5P0X+7Og3qf/NIKQSsHn45n9Pvcpfk0p3zvprt9ppEq5XRusyQK4FaKoWoDk5S0njlhVJdAakspFZRIyzCKrqJvjpNI1Y0QqqQWFIrzZ3TaoXoICeoQiEWlvZxUEHMmIhh4udieVlca02FVkuYkMicvriwawcAlXt/Kz1sf+429Bbg0jV183BZ7WrE8Iw6PKE5s2Ylc7WGUD69JgPa5NVtRb1rQEo0Ag5cCkrleq2mBBQFXQdGwUp4QbUHmxgCskhQ5isiu1GyWmDlzZU70yedJVVs9cSU8LWPen7689T5qq8JFZvl48WJ1cgKgHWlZzBVUtxiXklVp5henWUSiOg+iHCt1vGvfpCwYtOyJLNCgotOZWhgEAjUnC0gDOFNkJO97n8tu/t0P/9fd75wfnr3euc9M7lSxmejOM1QTDBrhExCp08gm0lEZAmaZquKuzF2imouoOKGUlJLNpauP29FdVHQOmwNncIxbu+5IVrbqCYEkUjqZQHaD+dBUuk6mQkn+1Wn8ovzgh366eH4/526PfBa15Odnh9MD9N23Zp3ypXXO/d3bl3cvDtNXuB/27Ie3B7//IQfM8KJvPvpRPn7135lMR1y/2ZXv/P18eTrsvrz85d/84Iu3/93y8+Hin/zue199eHr2FXU6HH/zw9v7/u233l7y8k7lLN2Lt+chp3Q8ZN71z77a6fm6nK7fqZfEufBEhZW0+xxs/QMhUjsKMcb1kTXCQ7KAEE1S3KFJMCUloVpb0EZaGCqM4Y1dqZbuLIhuxp2SwnknAnfDrlbdec3ZCQLez12CSpnur4ZikmyY2SdAHazpOhKiModLUxVGFH+LKFyjm10RoUgSzujUgzaiypLcoOKeFGah8CKPjOgtwOpCBpCMrudxLiC19yCqwgIoSB4SEHFFEYrQoCk6PhkTVmwFAHOCi3jRKSdK9hKktUY7DXPklZdA1NFsoKoYk4JMqhAtmjr32rgAKlPV4FavluojFKxsiKqApAI6rTCw8QOwAQ+SlYjRCRCFphoVjnY8Qkl1AAbbeJzqxGzRR3haEGqqnWsEaiFY9ApJWa+qEpEhc08DPvrdH5/eE1wcxehLakVI5GKlYaKIFYd6VBGRJI3y2nw2Bus2KD5uxk6UU/FmOFBdw5YtkKYV/YkStWoj08xOXYJv5Os03pmgZGE5TkW/8zuCXXZ4SSUPTsx7T1I8oWivyOIZRfTNMOV9ebCLHWZNfJenQYuxuIjseT4cr6HDu7Q7k4cuv/f2va++ffzuT//xv/PRT/7q1Ve7OT+b5MHLkFy64/276Trvr+xCer9L6Xzdd6XfJc3q6Pb+bDhdX5eLnSIXN77ur73YkG8/jbOwbluLfy6dhjRJEsHUDla1Z0P0cYtJMhRUbmsNsqrUCA9yNTLnopQcRezrSWkHFgtU7kbu83ycDn1yspSI0kUER6lsrkaqWDfq8UXbYRolGPa5IPmEnEFzp3YgHW5L1WcAuZY/X8xgTUBUZl6T3OYFrMZyMZXNq25Zxko9KYyhM+DiUtYPhIuQTEHCpOmSxeVk+0wN1m8M9eKKRrSCy83VbI1smxc0l6buav3cxqH97S8BcrAsKr8jHkCrLoQG+635TRHRlKa+loO0PA0dUausoUGbAgj/sD5W3JMoQdEfvP9/9ffGsj9mY8tsRji/hxsRaQ02uhUBcS6tmIGYcRcR04iPpkBa9CxlKpraQpmgEWMgEATxYu38WI+FRNc2oZ5VNKwSa5iYBGAJhuTT/fh2evndyyIDinjZj/3uTD2+PyeZkTh2e/HefWdzJ58dzvs0TUh0WudfDqeDipeZynl/enj/y/dG60vPr/o7m+4//vxv/bPv/vM/uPtv5a++/8nvfPHydPXymM966nejyjiM8wu9zLtDZxenpLevLKW0V82loNv96uXw7sXlmEV0b9OEz19c3sm1ffI6WswB0tAx0YxR/C/Jwu8XQe1CjLCIKu04Ee6kiy/p86pX0Tof9UqXlDCHIxEdexCc6XpeAQIdUo/zlIYEqLojeviIiOjS2SZwrABrC6+u0uuvBTSHYGLmZAmZQtEo30clNcdwnQri49iyCp2sPQ0Wftsqo0/SjkJ45Y66suJ2r8GGVk3yWNhqqJ2sidUaplhNb/yzZUhYXYB61/VuIEyVH7xK278kKrKV7P8/P27uQ3aHEzTTWhABJygxaw5k8BI0prW11lQbTcct6PA636UNDoncC+nVq1zWG56nfsLHv/fFL2+6e+mTjjSJD4azrSl5dKtZZBNAswRurda5xk7Q6E6W49MRAFwfOUplgiJJLMGUII4+Wt6KUpPG10Uv3wYAIB2dnB/e2nH4/rPjwdI4pVQcg54k+f6rIVOzn191VvY2Ujz565cPz6B91kl24zC+/fD4jEJCtfh8d7765MVD2V90t++ev744v/526fp++ODXP7z+D1/+65/e/uDL5xlaeMxgN949M8t+sJ5ife6m21dnqA7QTrok9sUFxv1QujKkTrt0/zCM3UX3q58cn5VtMm6NH7fQaABkVoRHxvALKsSpLbkDAsaK5kTAGgJMWIuoBniBIwhKEPXQ50j16DYizdjt9P6YLmhROE9BAmMkoaBmC9bNQxcTu6BgqwiVlER0cOqhTKfAaVoiRcxa7NOIqy2KXwWVi139uqhs7dT6o9AgELgIo4s/BCI9mnHgI1pgM9uliFMUtmEe1IBDpQSEYDib6IdSQUXzClpDqQQkxSLykSxvnmPDaX3EnvqG56xpXUFQx0P4q7UnTFUTzKlR+ry93jclH2cVFXfPIiCNGQEOIwaN1QUgQCgTE9P33/t/Ti+NXdmdab7kPgFgdknwmM9QYaOIqhrCmaK0jJNEw48kQne6ip0t97nMRfJ2WjcWFlRFhfUY1AWqAK/6hJABwJ5T0KAkupi3/bXx6G8ufvclOqCcy0U/TTrM06CdzhedpjSXg86mQMnID+dOLrOpJEJy//kstvcJ1CQOvAFk/wD25/NB/cO/6uzT/+VPv5V/8t+8+sX599/+xnd33z8my/nBJuZ3d6+O++yHU55K6frhdhpPXdrtIyTavznOlvedkh0n26fXYzrflL/65TwcWR0ftjMSrJSKjCRKJZPUDjI1ay6CbA5zs33TAQFfpa0Go0gLpdrOWYPvkaU6buFtMS2aOl6l89NROrBEd0FzJdg6CDVLx3qtasClDdQA5mgYrGOPOQ12nLLSq0sYUe3Q81IhdW6of9UAjxwiXcSziftGup7+HR2QRJNI5S5F662tYQwIUnvgLSNbUY1+xQbLe9HYhuTS/qLqAt/4bi3guKnuqwK7cQMCkq8Jj/aSx2Ib78nhBiUhoVSpY4ljsRQehc2o3PA1M7T5mjCcUxKNgSnhFloLI688BgJgbDPgavnj37v/6X5/6vYTJ7qjDnEFIJjr7cfQyOjwIyoQgSaNlp9wMIpiIjQAgEOW2Z2EzUzqtuSTw7WXZspWwsh2gyN7KwCo6mkIS7IJ8IrPIjKfz3zzN374Fi9ed5MLUjr1+STq+5ldThmuO1Idaqr6VfJu79O9DHl6uNAv+6J7qsJZxvP+7uLhINLvprv8fLx+9vO/+un97uMvu7/6yf/04u7Z/c9u5v7FaQ/qnEpK5+LzR/uSSaW6dHf7sbzSbn9Wikzp7dDdPsNYZihm6+yLbNdvf/WbcshzMNREy5PK0Fyj56kqwDZYo5VOz5FCTa0cPN5WGQYL+G0xbWDOIkno4SmmpQsuEAgyVxHa4zjlIZXsMQ2ahMGkAbMgBiF8XkUYR6rIHMF37CQ6gJEiKPdvk3apEFaPpzQrIYvzUsWsAv6G0bdSjdUpWDTA6lvXFvBhAQmIZoVYeKTy2xCAqoCtCIELs7FejSuXoUIxq+qvAmtvLPd2Y7aEsNZXRdaLULc8wxMc8wgG1CeNGICosKQA/WFQCYE7VdMcgRPXFiCp2cDVcjLEiyZJgvfNIDrQndTID683Gx/U83C8+oNXf376VkmgPGgodqk1a8v91aIpURFZ2oQL6J4kkR5114SkoMJj8GKqWYpF+HFVAPJoBZo7I09cgHB4BGrMOlc+x6aljjoSx+N5/OgjWDZHScklza620/P1OXdJYNx1zDJLRlF8sRv77mxw67IlfnlZhsE1SymkjO9ent93Ks4y9Hb4s/+H7objQ3n26kd/9z/4r/70g1335bP9iH7mbndOGBV8pV6MWdLx1L/5YPTrfpZZU5dGf3up5WYuVnpH4jjdvj/e/ezL7mqehhE16xeb0OYKSMvmaI21dws2VhGhzyoCUbXK8JO14TfXY1TnflVmn7RKmWYgQz9QNCwtCelPs/apemJeYXT04hBAWJYZLhWbanhiDT7PKjQn+qI7f/vZlxdIwWcIK+WIiu2IDEFgNZygrbFG/aImjaEdHot9O4MrPqywCQSRpHZbdq1u0VYugjXE5dXOfoMBjlryXH8eZbNSrTlrkVKt6F94Oys8eQrCWZ/vt3EDn/60BkuQPUau27ww65cD4t6esLoAtRlhhXaba4tIFhiruoOIlor6fU3pBpOvLqkNb/N381+km+Nwtnz3YqqOQguURHpDdRZBJalJMF+Frm4t9qBxbxLdf0R9HE2zsBhaUWk8cF2FBgHYIhJPVsYY/Rl2IzOPlnMYucp4BfJM8el0Pv6bz7+81tu9c0ijqhfhrpTuvksCGgblYA/SYxbePZ93WnZpUj3k2e9enffdNDJL0m7/+uF7r1/SJuGlneD/0St+Zb8r5fXbj07/8X/7w09/8/3Pfug4D+fUd2fhlOapG82yEDjed7e/+6kPQyknudHhlE6Hkm/OYy9ZbOB5Pl+e/2HeJTPMuaH65USEQLd9HME6xabFnAG4eafq5r6OaX5iex7lxwO+O1Ltsaps5H6INJQdOzBP7Pmg++iiG3PD2+2JxHjzFapEvt3Fo3GOkFZZ+zzqdfny53fPDB20tfSkURUObVkd1CJ/qUqqBQXYuIjVn2k4YMsIpFTkWgWHQKVSA7XfhdXhyVuvQigkzZTQNtehrmwNTDQWJgAUFVgQ1lsSP45pQy31TlI9jd3m/ppi2BxmWRvbfPNL6ufy4ejq0g/jcx0HmfduBk3uJkAxOlxUHd0MkUSPuQUoyOHiCcN2iA8JEBbUYEupcFFnCwiJdhQigHThw+99/A9f//HcsSvz7nzq9jaVqqADh2hG0mGemRMsOZMmwLTLaqbayUxRH7MKoFo6pUHd4VPKyuI1/NxCXMvCtFCvo9MwGBVtNhxLJklzlkly50UQ+JiAwIlyKZ/clbs/HeTGvDsPu4dBR52e3yUZL7rxpfamcnoxnJBm91Ku/6p7/usfegey0I8f/P1Duv/+ybvdg3N4+O6fX5XBhr1ke7Bn/g/+dvfr5/lXrz/+4EcfDz/5R//2Z9e+e/E2T9Meo58VP/no9d+Ys5butPNzfv7Vx3fHP5Fjvs8dT7uL1+ff+eryrCip7HPx4ZcXv/l0J3Akj3LS6KC0SCtDyMKCM0o2k1RnWwCRBMKRUIlpItpZMZBkqlHSOLjprAH347hTshlUrBwITahpxDjTkgQceyE7KYzmkZpIICuHOm+hI01EZaqW0KpxqFkFTDsUV7G7l6+nX/z8X7lOKLPkcvKChIIck4TMUjUUvdVud05CRMOViNiOAKommaX192g9eKSy/tbpyh7RZmaBGQh17VBcLXzfFRA7KGIzs7iwoIe5i9ZyFa3AWKRoWO2eEaZOkZ1y9goo575YMVFhrWsQiCAJTFqdId1cTAWCmLQNSGIb0KbNdUVFIBXLlKo6cg0qgDFhwiGJ0johBUkTImRiDe8rH9n/bTSiKn2QASm/bl9ro3UX5Hev/sbDrw7WC2oIkpWCsVDNIr8qifHvir7ag6ApU0BiWIeKITuhSVk8+EL1Dh/7vfHEVxfjW15MqE7f8gtBtYO1GUIc3OBYK7OVh/l0963LnRpU/OHq5Vu9GE8fdpOenp2zAsqi6Tx6BxG5lLk/7QWZGUqm6TTMB6Fz8jTfd+W+nzpx5PPvfPL6xcNP/uf66u/+X/7o7/wffu9f+8m4u/31OzvXGCdYRO867zp1imAu/X1/t7d9FtWc+uTAQ0fsxuFQTvniNGl3+vyyD6O7bsMyZ7rW4zd70NbTl/URrBMF2xYzckYkXSsqhEKhmnLyYi1b0jzXKAVqSrf+imTM6CGBFFRhqXLThng2yL4MOvF2W/W1RykQ0Zeff+/v//pf14v7tLvCfOrPi5pBi7cBgFTCfz2dayjIq6FylwJnm6aM5pnzkZ1eqcEtm+oOg9cm7Ov5Wt2X+nNfcZXEx+onXDQrOFd4VBDU15ySqkbv2cdFeHGZNrqk/Tzupr5RCK/p8CdRAERqjV4VA3Xp3Dd7ZEc1KSg19qZJQYrCtTY0qeuJbUZS2s56S5jT6aUYtTVtXe7DGDRJnP/a7/3i1696FagmlEoD0aAQqyYQKSdI6rJCUi08rvZgzeEmASGqiSYKyWbULDZHJUDLeaP5aAGgSJa7z28P37qZ6zYG1mILWWpkFKx2dYdoTiqAqOv4MJ/xvb2Wqbjj8sFzev3wqiNs2k37pMg+5z5l1WHo+u70cDg/lyLUPpvp3f3+fAMrVkTleHH/sBv3WVK/v7PL4eHT/9Xhf7H7g+n4H/wizR8MP/3NeD5mt5kwJPbd6wOHzHl22jxm4m4/Px9URLqcOtjtznnTwXFz+a67xC8+0TTW2Mca52gmSjSlpG2KeHAtYoXDQWL0s65CUz9KWnQ4a/mEQPsKV1WUsra+C/a4VEyLxRtOSRXR8oKEiBkhpNWqeFjjGdUg2ILOuXwrQSBZgbjzy2c/G//Wezhlzue7N/fzoiSay1JvvbaFrDvqrTlgC7jT3d0rb6293JuruPlphLSk1scIafNc2yfFz9iiKIsOIMlii+pDzfoH30LobmVOmlRTTnRfUlx06Zpb3Pah3YYGDwJVrwG1ZR+rR+Y1ks/f8mp5OV3CDrMniHgNOVRfRFOdmVeTHZqc7jVeVJF1PVBOwo1mbu7OuSy665HfWMwhKaXp2R89/DPcHEL92xx8BxU3EqpJAE1JBSl3SVXNIaopJ9XogFET/zm6ggqLUVPuy+yaYDOBOv21rk/7f5WGh9MXP7l9/nJiNG01Z7RwBlYtQ5oFEV5Ti31McvbRvvUieTGSvMK9zL/ktzHm85BkSEmS29AN+z4PHbS8PQ32QgodWZ365thPVygFKZN68RkHOwxdVtwOz8//34//yf/+f/cL2n/2b/+b/6Pnv5abu0935zyNp+KeMnby+uA7LdM8zzMx5TNkftGFq0blfLcbeQlJZjlfj7/40e2QmkSulkJERFUhKef8aGiYNM7JEiBph2vRAO6l1maEQiS6SEwXeDFokqZkFuqUoI3gABBsEa+xQpGYgmVVW0jQPUGKpKQCKzOq7IdeWHp3cpyZMxwH/OOXP/h0d+h3aTrbYm2kqTpnlWw2MQ/RJuM38TY6VQJIbqpJFwHC9kXQ3arCqMcs4Ios4bolw8D2ReZLg2oivB7VOvzMitHcrMzThNifRJrNxSGsvdoev2IbW8CmZkaazpNlzzYCv34ykEPV9lkj5aFqFEaz7s0HRFoiJT5JGqujXPHHwiihJzqkDcKIjH6ppXnbGwAghP3R7/z5rz/OqztaWyJoWyKIBAM94jYVFECTxv3Wj6XgjVdmhtAcSdy8C6OmNXMqiKhMXRzibr9/+FkZEpt7X1fPkUQkxj0tzfOxaSelD+Wd/kCESCmb3t2MemfXScrl2+s5S0pA4SEXcRezlB+ccohYrqjoV4Du4CLZTn4hvzyI5Ow+l/yQXt796o//Tz/4xdv++H88/Jrn9H5+s/funB0pIaF7ePfe+UKLiwkkH7uvLk/cldHdOqP6cd6NHUoazg969eWf/Uovp9v9BnwtJ3hph7GxVDn2dPNmwddjx/XTAu1kBRMA2FlxXYbzkooYB9OWdgl2mRkWn060E0SQrIHmtR26EGxNM2WjWQAQJioUTf4Pf/DDL9TGc8eCbj71zY2L9y//rKc2Qo2b7p6LayKKtYlQu+OaKuEKwmtTyG0w1aG1U1z7wjWyWDOOjDEyzQEHF1RcVOGSk9U5DkaQEpMNIRqjDEXU1qCeAECLJwD0aEsUbRIbBS9caX5tB+XJ3zlUniY1V0OyWg7R0EbTLktoLhABWOO7bXuE7oqgAgOAxAFwH57EATrE0I2rP8aP0ntzSSIAawthROcUr1X+QEwhVpIpZ7gBfa3jEFJAqlR+q2Z3iJ8DkFITKIoaPKnci3bDJJC81+kXl5eyHA5pUcDWuZhM4TMTtQEJwL4cT+MHL28Bijh5Frk5XptoJ3449oYML+lSx56ewa6f9+depIfCqWK3l+NBgA5uBTd3X7w37cSIKU+njn/n/3Zxuj93b97/j8p/PDy7szx88UE/qpulkihvRuGVzklnT9I97O5vbvc4nbNTWbK9S93dK7uc3wzvn376l5/Kfsj3usl2A4iAVkXT2B5kMsrzluKJFjuJBHcIkaioGaSF9OPAhskKAGrdirWkpreIiG/V61NqfWE1HqFGWqkuaqC+QB4Rl+reLePYk7IgYf7z/o/87mo+vne6O0s2r3reV/Qfn6zRjDXuIUKliFf14EJnDEltWbl6cyF3iwKoTdYW37J2FljMDDbZxHYHIS1c3HkuXxzOJrhAatCN6pJjlp2CvvQE3wQjxKWOna9YXVaOgjTFhY1C31gyodBrURCyQERdUsw4kpQ8eu3HrbtQkhevyV/3pWFLMOs2txQ+Rbv6SnvCAhjqAsZ3/853fvzle50VqATfMEKcqEpHC6LHM8iUYKbB+wFAN6uF1QSKG0UUJWOSjjOp8OIqbQacNOplO8/xyb6YZE7HQ/OaGkKIYoA2E3LR57UgQcptuXv+u2MCAYdLf9od7z4+v7rbnRKYIBlWhgPKkKiQbjxejh/QFeKjJJuP7z+8YEq7ebaM3a/K1e0rFCYZx0v/+fvfG3afp4eXdr64/OrN+1fvTLuuZIpx6oFb1bzz0qczk2s3zbvP38c0xf2K33bJX/humi7lk3/8+f7mAYfOauR0GywiUAkqq0GKCaRcGtgvdJlmMRtmDzKGilUCSYloulT3/1EUHSLqScQdm774aRPN9YiCg7Wfg0BUPQ54y93EnegSgarkGaEnvX+9+1fPn+76F/Ldn7zVhHQz1m5b7SFqPmNDi1n+JYDo9jsDL9ZDEhE0tkkti/ysmCH+F5JUGxLVO5YtaSgsaapiKrV6j7V4PRWTLkXxAgHsGP62QpVOmENVHs0VqCezgpONvqm9AtsTVlv95FWtXeP85vhvVS0QQEVJ0cVtI1nzAQ4KvZhGTcP6hZsAO8mYk8S6Iik9vXzUBKjIty/+anox7aYJYDEXrU3RZkQMdJKGNaKhFWuUygXuXjn7hFiUkMk5wTVhYgT/EtyZUJnlj7KhFdzs7c4OOu7rsmzfsiYNuRS5hFoiT7dqH37vN9chNUmsv/inv/r3f1msf5stZaXCPQ2TAXQrfHv/4vxM3JKUUXqO8+XbAzV1bj54vu+GcqkmKZdxun724/nzZ9+73717uMAXtr886vW7lOYuyqlET33qspdezJPb8BZqF3mmkPQsdhwUVw8nfuB/7y/keTHzcv+ycGPCUZtwEsiqm8NDKCPbWf3zOlvusRMgItpyMnMVcFX1QtFRwytq6SVTBWSNMbQTM4uoeLG+6noX1Tg3jVMQzKGEKE9uI7uqRloy4pOIZLn75b9B+fDqpjvx7v5qdzdpFYvtPcdfzVmOo7MgV6mbH1Gn0B4kUKKlNR4tXnsOaXzRYMi1vyqmWZsUP3KoiNXXrDXAIuKz7a8uMHfuxdxpoMawFCA4kpJU3Db9EMLdiJa9qze3iGFoHkdQZ54oDsSo7aVFCXIP0aPngum8o5lRM81EdxPFynAwKwYNTrNol6foki4h5hGtFAiomEhpTQTRNN1gBTl6sJIEVEvePeTv/O2fffps3M0PXTnYOQ1nTTDt1KQYVcxoachefB4GtdlrN3xNzGlyqM5089Rnp0fxX/GUvDi77MUFxugMUNEmWhVgTWfa7jjlzvygEqXFQYEFmLsMd+ZgyWqpn+9mJnXHiLev3p/2Yz9r9oTzzWeX493bZ+OYpqs89afr0818/oNpHk568XA495+9Bx26u/389luONP7y+tSl/QiZh7Ph+Bfvz8PlPHYcu/mQ01/+0W9+Pl9CrvjOXyT5+MtZXrzbHZN3Bp2+/OJ97qX0Ze7SYDy+606H6zHdSPFpV1J5+1/69JVMeebf+/nO0ZUBeBYOpAhmFRhE1QpSErZxNFGiJiKgx+TZ2OAk4k7VlodXTSqgTUAnLE5RiSalhSSRGRVjVgNSucpHbj6aiBs0eVIhVZXB2u28aMrgtBzQGMNaVNxc2mRpVwIqKlPKUkw6vvhKL//RJ3+ax/7gn6Lv3w3+pt+XWvBfh6IKOhPlLDnFgVXDknEEQNMKElIMm0tWFU6uub2uOtq1vwCjrUh07hEBfEYsLEmoytyyKQ6hu8ZMTVU3l6SLIMt4OU07jp3uS+oVuyl1PSmC2TGeiwCFqmp5Ip3SeUOiqAEShZOunuBo0wkhtdkqNMb4bVw8xA1bRdlR5QpmSOUdCilCURoketxTkpTiRkkxrTsAAdeU2iN8sbhBW4NLJMCixUFwzgvM7eJP+r94+N3hIe8sexGWkNGY6BOFeDHZpyrpyA2K0DKq6hMVFxaVaJ3UMk0xjSn8ItRQwcZDE6tBAM1UYc5NfbasqjV8sX0sCkrMOLCHIz964X1JBndRma/9OxiHh37mcB6K+sB5SAA1uU2X/rDnJUy1v0ba3ffnS7+gQ9l5Z4nH6/lSRUaeunKf5e796Xj3Bfa9UwfuXeR6cJqKqkxXX6Td+VXxgI9Umw7lIjs0inP1bW+ls2538VevxcQqHm0QvxmBmiBPtW9DNYgic3PiQh7EasPv4GKQKiwaUzUIiFavvhX7NH5BtBhrNZbVnLeoo3qZtaZxCxhxbHezpGitwCq4lRSxMCnLQYrzmWwGVCV/su/+8vwDtXm2JLuLIjmpF+sWqxcRw2ggV6WOtVEG1iR2BTkSip61f/zCFtu8pxaTbA58+56FR0aPS3EJW1T6DpxhKpWipJv7WYbkfX827tNUsrlJcajMjqnUlp+AmDvg8oiQsRIOZHMbTTXUh2/7jcefbNOP6+GQ7Mmic5u6JSHEXZKYU90lySwLAIuGpHXW0abRNjYXbZUXqwCdCaHkbq7LRO84870/+eIv8pVNGZJtUs4dQlrZfB6IJlVBMwFo8ApmFFUI1J2mC2gEY/5kZJkqoWQLBuM/CYG6RO+TrFZtgdeDjOozt8819GCdmqmdz6fDx5fvcoKArtD7y9cX77+7eHhxTMPt5TxwsOnQGZnUOX7wxfGKL1CS+kWR4R7z/vTSC7Wkks/7++nmp9926UzUM+XLd+/3/85f/njWccLLzi4mSzfDRIqmxPniX/T9/fUsWV1ApPn87Kv3UgehJqHqZ1eFe7rKP7sf5sQlgFEtQRUvh5C1SocAZhE4RKL7q9T/SQvneG2sIUoXSAqmWWXIte/fav1wmTTAbss4hXgI6WVf04IVXIfL4c7U3tgk150iSwPs6Ishgr7MTBmzIL359YvfcUE5p855b0BKkjzaF2DpsC2EtiI1qeidy+ndSE1EtepknzVS0NzDqEPQCuJbEU9j7QprvVxXA8hJIqbQvp5BbtUiFHdimFOeqKMg9TLNWQUOF2Mxzl5bI6HxM6gW44QWKagPEAd2QbnLgyx33yjNtdHPkkXx+umMBBOlanLL4mjMKCYUqpS9mjHmcAqgtMWXepJieOxnx8KydtjRdSUsZ3l38cfdfzF/a7Qs5yGNc2+lr73MAkLBDZqiq1w1GbUxgijNWjtaLOUUdV3gzIySwtWLr/+oDxzJ2uyeIt7na70aBURKzetsC1e55AqmdL4v/vHVJHY4uqqLqtvtXDjm4e2eSaDsj+VlKgToqXRfajdewJSmU5ovP1Utl2aKKQns8i8v1J8BCZJmubj8afdOPjrOb8fx4nBQXL4TvRIQKWed8ny/n/vhnNvtjVM3XboIKKpI/ub90l3ATr953ashVZ8UVQ82/5QiNIqem+moCoDQOB4KusKTtN6ybKF40ZTqeHSBSLQTRPQICY766vu2+N0mmKK0yB66szYTNYhpUnGzWua7MEFLMSSFp5prbF2OZyQmlrF/77N/sf+QKO6utOnBbLbOha0MYQkmiAhUvJ7Xhkhay+MmKq0MMVUFoFwepaZAFmXRnH22kGGs62Yeb0XcJIPO6qjpTaooKEn16qgy7fSNHjqdPHcFABIh6kbRSEYQAk2iDi1oAZs118CNxC/GTrYI4emLrYa+YUNkZjGBi6iXvXiyGA6aW6Yy7IDXNJiwVF/HsCKl+OpI0LQeUKwsyr0VCibr2u33cxr/4E9+9V88e3Wb9MxEcxAoQUwXFxUhXaNNPVJAUc00M8mJtEiTGhGBAdbpsmEk1KrtksZWXEDahrooop1KWKq2MHHwdpqeVFtFTLcTR9L54Tx8P58v3slkqklVr9HfykfThYwvx31JomJySRGhpU7Gzy9UElxcC/Lp5Sd79rtRk5SyK5p+/v7x+mYqxY/z8XSjv3n59tV0/VF+2+dhJ8PuXb+7mGeFKnx+/tV0/fDSCLiLqs+nNMtQanoRcjcOx0PP/Zt/3Pcu2iCgN+XH9bzTJJq0cu20QzjqyGyDsPRYMjbVO1JVOPPiUdX/0Z3RHCfKa5q/IXF4qkwISZs9ZyMb/RZAmzunjbre5hHQRaFKLZWmqcEFEWYxF0e+/9X4vauHfjZIVkXpMavMkipmrAMJwaQ0pCa8kc6o9IAWIhdwmfm3OgZ1warLQElooo6I1NMrcw6EuEYDncAdAQCwTFqKFBcB9CA19WnXdcT18Yv7i4tpypkGF1CYhYa1DgqsLTs2R3Kbg0SQDDbp0no/zUV4bKTbtyxVmcjSiXdO1VRMxBJj+LDGVB3tipmReEIqln+5C1BhIwiYO7PqwvNQn6eLP3z+9x6+p9C5PJfZ1KHurim6IGtKLjGA1x1J4E5RtdCMDopmIWlIkmRiu3ZzepxVOW/Tz3UxBEYk0D1LBrcaoILk/CRxEpPZhR2QZD6d5g/em9PhNJbAZjpMz85+OOs57cb9edBs1u+LKsiUutuH93wgyJTnPom9/g5vNEMEhfP+zbsf3F9asZKPDuL29cf26tD3u5tpPHV6M8/9RSquArph+Bny8WakqLmSOJ0u7g9aBDCK0D7vcPqIvPjxpx+XuZd5SZetu1MjIhCa57peASFErPbxbxzxANwtyB0qxOmSq2x7o4EQEp1VpZ2BJjkB8aVJeikmMTUXEJmlFSNYQeqyRBpyaeycUyXdgOLWglxAUhqGrte/ePj+c/YYSrEJnC/63sB38q4eyxhsF/QGCk0r0abetWgzClVxBf5vRjVWCc1LYDMRFQ+JwINiEr6OALVbRQSowIjLNPwUXKEaPqQjaYchS+Lrz6yAkjDW+AQgLUkfhNRiVHO2IchYTPxy7BcFsKR0ZJXBrYQSWEi+y0i2LEkJcRWliVASXFQBuCrntJ+rbx4YjAzy+CYhs3z911wAAOBZAWonbdJ9Pqn98A9/85cXVw/Z9TCU0ZNJDseymqCIOgvdYxiyQ1OFUzERV1uXU1BYg64VqLkbFG4Bbb0JeLVIKwOLtTODVvbmWlqxCXEAS8aHVPWHY7n8AWTPy7dKoYvozMPNu9nxcMkkIjnP3HXjvlCgsvs8DXevvKP3DvHLr2RXXoxSKExmL//p/nD7/gnK/TtJO7zJ8/UzSze7cTo+3OnN59bfdIVZQdHOH4R9/2BQKmh6HD/89NvSbJLLF1c+31DHX170I7tzfdwWFV62HoQq3cd6PFbLRwhUCwWS4PXQhl6VWCDNUQEIEqZa2/kvSbVl2xdfu1l6AVNwtOdantvQcjgDNaCole4CADX7LR3EvUSZnmgSFXMBp0/ffvDhxP15n2h2OvoZu9Knh25o82G9bi2dufNJqzDXhidtBFgMSW2Ts2SZ7ruB0PVQSMyJqKRlUBJBTd4sS23HLk/ApoY1ZyahMa1RSDfzse9f/2Z6b4im4J2F3mzr5YGfWAi6EQtro8q3NJ7VVjFgXf8nArnqgPpnixBlpLrokQVAclcVN5DJjB1FLKhPQsKZTEC24MzT719vZ7l80uKzeG6ByfGZ/LVv/ye//v7udX++upmkQEvKU+g7F4Iu7jaIMEaBxcXdY90jMUCXCl6DnubCEAQJ5rRbrkCPNYzfsgFRzKjR2g1klqU5QyiSOJtLPXhXd9NE0nwa+eq7R+3PV1+mmPeqReT6eOq60/uls0xNhV0qqnOCsDsNMu8hdD0L/MWP9910eJ0nV++MF7++Ftx4x3MaxZOfbvy9q2Pa7R9u05767PPu8PwwppRVU6fF4Hu4RXce68ZyOF1oo5Z5fviIflHSF5+8ry56PlSzoIye0FXfEYAkFEvrc3ExjZJ1AiAqLttoeBx8SXnIZ4bEew2TKx3uRO2z37zL6jHH3QmBrph02SbXiCC0PL/3Q6L5LJA2tocgULIySIei0BaVdzGU0tnx7s+/9ep8O8i5aMoo43jFNJbU7YpH2W1vYc27UrTfzXNjBYXC8oXeU6PWcEGY82ZIqkHlggilVcTEyRcJGkR91tq9OGJldXxMrGgWQJkimeYJAumSlrNJX9K3PjyQCuRihCs9A5FcX7x0LPK2kbKmPttjVL6DLHJH+UYNgKbwakUXchn25wDcA28vBnMRFoi6iiPb270XFxHOmt0M4R+ogDWumCqvploSNs+qKfIOJqBjDnquy3uff/vfevMP3/v41vksT/kLwHoxMQilm+akKQGiUHFXFUs01xw+RFLkybMU56yEZE5gypiYOpoogYLE2lvU0bUybqnBLsgcfAJdiCGMfieqADSlHKHS0hmVpl1BaPEirng4Dn9jOjjz25wI2SnR33Wnb993Z3lx28/7DM54fnYz4dXJr372qgy7k0imZOsffvbhm5svByY6ix5+fPd7X6UpjdJ/IX3Zf/gPNe1HK8/uds9v5cvnX5yfHa6nMlu367Tg7em90h/fPBNjSjaa7O9vDueMc3Ihd5+Ww9tXvP3D//fh/nr3cLwq0RBXvHKYEHwbAWAFLWbawtrORICcuAeVZyJLioEuGtXas6Yuq3lyZxJaziiWspwqoI4IKkxcOinRYUxEW5Mp3lPVJ3cB3KEqxagpaYr202ueqabLICaSCa1FPxAnkyacpRxuu1d/130cj6dSvBzTu1cq4jtOOENShtPnGvaYpOPxnAbs38huAsCo1FeFB53WpVOf1SnBHUWW4oignnvHqF/KkFYjSwDYCQsJpGqFUpW2IgooHckkz9YRohR3IPkoOSXz3A1AHrt8e7t7rpOIFUgREbp2UgwwJHNjnxNdYITQUqJRkjXgFLFuV0CSkNYK1qrcpSg/2BjpkMvWyETrW7MG8m4xs8j7QsREIaLa6qibaVc20mJ7YAgULaq6QKfNhQNBBi1JcH/1p92fjc9Kkr7TGD/ftDPcXQN41t5QZK4tCutX1bLOGjIWrGNea+1ChX1aAxIB8VDn1S9B0EfaURrmqrHpuKMlYBJPlTVND+fy3kEpYtbCLmAveZyG0jtEiaSUnBNUeb/DrQ33g0nHpMkTT0xpl1FmB/bqZ+38psNsZS6pH27n6/kmn8aRu4Ix60MvFxd7S2lQUvq36B5e3VOFFHg5v+vGvai6SKJwftgbBrt491rkbJ3MGv5ObeBNtoZa3tzghtRqvMbCCsBFMkhG81XURSYyabNkLcVJZbBOWdzQvOD4oqWOAkA0fjDrdSwkjTDPdeGzQlQFFlSksKCC2sYT1HpgJeZhJw11duZhHD7dHf8HfyThI77dn97+hzJmr4wEXx5ONLJHcGXxchp0KtJ56HMpxTUnK6LZraCaboJGJnQaJy3LHCZNvZKAPYAKziIU1aRldqQ1ahc5JNFKrpF2LyrqKVpKqIqQQypnZqVrbb0eAMPc20BNuLfSDYqqiKNJdIjSN1n49uLXjvk3vysUABSVGu5PybtGqZSQ6uCICKpgbV8t69rm07cr15sWiwInzW9//09P/0iu5pxSp9M5vhVg3VDPKuZs2BYpRJNNEtuQMkEEW7gErbypqei6Ehzs1RcLDbct8Gv3vThUGiiwoSuKxqmKX3bv7s749qEwYyzQmEOCOXs+zd28n6HJmYUpdYWa7Hg5fIpues+R58Q0q36ZJXVKQpOqytsdeHOy0TghdRc/Ob8YD35x+/nVwbrzZXd3ZZdqWbrOPWv/ttN5/0XOCoe4+fnVu+elMKuoSTq9vRzlMD//9MsrOaWuWJIK4YPjVX1KqViIAY2khm0lJuyoQGZNafU3BYuvLKrRojomOhgAEZ9rskpagMUJk9pCTUTZdW6Y7+yKjFAZQl9kFxE3y61wJwzN0oKkKSozGIurUnLmWFzvcv75v/eDL6BJBOj213evreum6ou3FpqUcNoVFLqVq3tPtk+eSdKEvbqKM005Z2Pu7lRVk4CldtWJ9rfSykVzNTBJVEXAvnr8EzVnXbn6mQTRRtc1SoUCqkpSYqqSQHa4fZBBo3tqNbx0dTcHgGxgTjWWyGh6XUeQAGuIBZSFB/DoYFcP4kmgDosKaa9MEzXNqI9d3WZIRpAJY3OaAkDMMJOVXJYJbvqUfy0FuZYnaARA0g+f/73PX+y9T6riEyExO1mjy6NDYEZNGtRUBDWomv0oBKzBYanHrIZCg/9nEtkDROehdeB6RTaoNcHLKlSnJTmhuUs1XdFaO4WmJekJ5wcevq2UVKYpqQnpgjl7ZtL55SSSXDJtSCm5kKm8/OzC0s3J3R2iHD6/sC6LE5ozRb+4OUmay7mIad7dfNpNWe2ZvU5y3nW787vv+rWPqspCVX39ouyk7DTR50SdbPfVvnhSd6Xk6e5bx7yz/a/n5JaFuangcNQ00j61r85i/tEIP0AOFEQBTeq+kr5WBWnu+jZQCxF0TeK+oZsHiIv/DP2gLlOaxe/v98ENTEtafY5k7hJus8Upl3aACRKjQ9xFZ9SRn+/68fbl37l32AwCfMD/+c7fH1NN7AXzju3sizpFvUzD90/H8SzHk4omUX1IWck85Jgl5TuFw+gZkmW2kqUTuHuOUcv1PuM0uHvA3kAqKpRlEJGiRpNUsThAIuJ0gFF16AYZZLo/Xw10XQ2VI3KxCIwAXbISDaAvAddV3EMWvmbqIwf6WyDARkIzHakgOZMWc20V015ZM7IcpNrc12Jax9c0i1afMvERi3K1pvUftx/9yVf/WK+HkhNjxndUSImkltN3M5VMN0PKNKOmVIMWpFMVJFwotVHc0mNFakaEjiUfaoHEYMt4SOKJsmwqSiTJRi+QovTWKdU5T1N6eTV6r/O5dLE24ZDoMNpwP0BdMNsgLqZFL2e+ffGwy4WzUCybvP3wvO+KlQLrRO32o7c35eJ8LgCkT/dX4wepS/2g0zjs8y8e7PIydYTTJfWn0/70bBx6EbEx5XRnkyu6gWJCBAjJNn96UM/ZMbRhkil0prZ0Zvj+RFqWIJ55iOA4e5KQNj5FlnFdgJsn1XNo+GhfCbOuOYd11y16VcXBc5G56M4ecH2ONFkbO4WJknPuxCo4WSY4RS6sdhIKNaxI3ajihS589+qz1/+zwVIgbUH68T95PvcW3I+anZRoSSdLMZLos/9hN9797DnezefT/f15Pk7m0/l8nmb0napZEpcuSXHRnEQKTZZWdeQyQg0AomxaVBNw4WUu0i+8GQ96GbXS1bWOX452elHMZhAdpvuT7LqphSMrt4IJhKqKmQnd5yBaiADC6Igalsm5lbJ69W+Q9qc/8ie/yjTNI7Qg5amUvAivh0To2hzRK/sJj+S/xQAWSCArLo8DGLJUe73Y+Mff+bNfXu2zKATT5ArVIP4I6hJ5jJEiIZqmGFJZmzmjMj098JfFilCikRBATyJOEa1lC83IVF6YqLfFWsU/YgRV+TQkEyqh1U1DOn2YbfgIRcXn0iK17lnEtLvrc7mgqvikO85Cug7jG9t99WoquQwluaS70p16t+IEMR++RM+dT+Nckqj6F9PF6XnuHRcZ/bDn6/34iiWbuaauz59nLVe3+46189R4OA7B3UYS4i7Deuu+en1BdPA2m5YLF4UV/QXK84oIWrVj3W9AkhsBammBU7oGF7UUH/qUGeSJJDSDORcbtCzcRsMKdlPOt6chcrjVfxQBO/NC15gwDgmFRMAIstbph2UkReBZWGaDAD/78t/6V/mml4gPzDd/MfFySo3kWuk64SZKkugUk/BPf/G+Di8+Sl1FtOfXdylPd6fu7btS7h/mSco4O8rlXAqAdEGji8opFGAMpIGgCCAqunMHZ/op9zm7eFvHEueTXY1paO0Dko1QjS1wJJXTvR86MKckdNLjyEs7egBE1esElogmoD1Y3dsmb5Wm8UgDLAnY3/ZaYjGuiWTRnMWsxV6i7TEYw3abj4zFkn+9+3gjbVfktvze29Vibot/52+9/Wd8tmd2qE+tdso9qRJQTaECk0G0pTJUGM2epA0/dmjQpYSV3WKAAtE8wVmZX2xTmoOpGVNO+Mhd0pW8BlVpRJFKSlhmkIri7eyH71hWn+eInQdV1vTM7vixWJ5VtZR84DQAScrVT3vK1Tn1PoyS7eJHfen7Mpc44td/cTP12W7PD+wFkJ9353zdCcve8lV/cf/Ve7gYrRN6HvrML25GzcebRHPk7JO/ePMc4qaq/WzlzWFmPx9+dXwxiRbVSQSNJUGCC9U/8JtCq2MXxStgRJcbT38ZwIBsweQOBp25MJx3UZqhFnoCC7OsxWSaIh1Knt/6cOq09W4LR0xJLwW8rNyjasEhaB6ciCiQYCpgCc3pnuf5v/bfPz3/vCfgRlyefvJMi0vXImOLIkpJ4r68MOUXPx8w5YfShhYcDsPVtRba3Xm/Q8Gd3X9xP03jw2RuY+GJgFmxXbSfY18fLNeTdSjFSMdZ5sMulyK1c0BC9fkrSy/oEmHNVForG+1knLudWLg1ArGodQJIb8utqnW5RDNZT5zEIMbqurKu9lNMXqMqv10BxLYjq6QUrrPGTKKqAESC5NkLgJjxFpl0dYJBTQKwjQE08W/5UADAHAEKSJXNP/idP//pxeVQskFpJWg8jJpeQlIWUiSpRU107VBNa50m0OpCoulQnFqgjqKBq8MMkupVK0cdCOpHu61N2/caCFNISikto4M2ialYDr8v2L93n2GjqdZEBVmQZ832anQlVMxTDxNB5vT+l33pLt7mfkwTd8fd57txn0m3Mkt++ezdzalHG2JZ9m8uHq73uXBG2R0Mb774a6dLmzu4I2eUd+8fdz5DWBxdHqfzMF5ih37S1KVS7t8vSCW/Le4ZNuSHQ6wrqCo086i/d3h4pmhc4arwJNp0UOpopiizcKJHnMCSutyhOMxEpcw5o3hKHSpOV7ZQ0eNjdx678Xh5/UCQRpH4PmLyGOTqzeuqCCAHeQ9d7dCnWpJacVpxFfr0+m//Ty4/++WHRyCiYz//2WE/Pp9GwaYEBHBNwRMXI5E0/+gPu9uXlmYxEQKvS3q4m9IuP8wCcXmu19dTl6YjUyoPx/HYDakc78//lCJS40sRpAwMPJpRM3Bzfz9eXuVk9akbY21zwAASVvt4CoQUTWIcenc95tymcgaVnUEW9OJwM6tZxhbA5TK2vMrVhgpQt239x8phWF9Pvfc8HGWf5l1vJjoZp73QU7K5j0ldMqckIvBCSSJMJTqX16ILaQk8iJskFY4iay9YiOS4GZn7eX/qy/Cnb3/Mi5QUBOZT2U1dQpnRZzg4SyLcjZDOS0kDZikcerFcJKu6a0kyu3bOrOYu3plBaK7RsyS5snhSp8BExEsLnUbyghZmfRn2WaRCXUlZWJhCGcTEkVn2xpRZ0OHObP+HM+53AhNBckOWMqfd7c7e7qcvXp12Pl6wXHjPc1LOL6fj9375He+cF/d7mS7uvvq94/M0M81Jzpevfn783he5++rZW93dPjt16U2XvyXn3amX8mz3xYtffv9tTuerVG6HNF12v5EOL6fr80132/Fu/PZvYIodr97J8fDG97/UzP388vbnz+acsPNyXYxISs5dcqqm/TxLTm6MPvQyFXQZxEztkhHdNEmXac5a1mbaJ5t9VOOeZ3/uTP2uk4eE09txePbu5JK8uERrS+7mWTop817PHaaOLqXrvfT93L3T4Tjszw8DffcwpZxYiqsmoRGSwlrDHCpuAk0DwWRIKJ69y25ISUbHSJk/f/9/PP9UX7yWGp2+/rNh9+7FkeKpEysyD73MRRNP2YFzX6bufPfezRfvTT/6o2d2cSpdB6Omu10vVExf5p6jm51AZlp6LgI8A6aOz7rjh//3P+sFopg7Z+qklFwkd8lmyx0MOU96c3fasR9V6dRkIglw19ETZFCdS1KRFK3lVNmfyg1m3B29S0BKEvVCc9A2ZTbpEqA09omuEkT4aKQT/lUGKv9XiGQuolCXBt6bYghR9zAEj4LeXNEasiSVZJDw/iVNSQDJwTOIlEd1JcOZ15DPynPaapgAJG0IY6CewGUkmFzOesbfev7LX+aXF5yTosyQ4PMC1DriL1ItXYfqxZq5u0JcJSG6qToYYcUADbLkRJx19KC2niysSa/1Lhsy2cTBW6I1Yq81T1JzKzVoIDg/TPpyAC50LMx9ZwSLG9Lcjbu7q0lA005mTeoUcUv6lY5DPs/RXyP1v8qThMn3eZy6+yzlMKWxkL2zu5+dL5OcUj/x2B/sC/FXlznnW7qnOd92nnGeB53m4uh9Hk678HgUCbjvfLwaEr+6SBE78y56OjGLU8Rm7/d2KqmvAWa5LK4olJtpttmQkqRo+xCsUGSBGdNwTiiGYfdSFPSZqp4vep53ZXYvpaQo3uKJklISLYmifa81cop55+/sopu/urrkNBymwW2EpK7AJTLyBAReKnqYqqdcokzT1QpJepnmPfxwj39vOD9L8/OZbmbGuzfTIIVTtNGG7HG21Pt46PNs/fWzi09PfTeN+ukLzuR5vKQZUkoHMWqnMmsSUUlpGouq4E3XZSE4g7fmn/8DuoCqvRM0IZCJ0ghxYOkpnXXl02cjU+JcElFERGXQZMezXWSFwKeGmN0zrRvkAUOXhBrDdMN7QXSziHyfuoDuykqPx8bzR5tT8Uj6vjHtLyvQW3+2xA+JrEkkFxeNeLrOqiQ1zRRANS3DQT3yKyqkt7ltmzt4EoJkReu1nRdFkU/7dx/8Cf7FFx89o4krTydmqdz/UJuIVkmacvKojZDZALhH43l3hyZYA+Ygauoe9cZE6Ui6Br22UZWt4Ds2yWswFIBC2zz7eKLa8UiF06kcvr0jUpkmahIjhU7pxlzS+dtjglgaOGoSKx1mXKRPutPg99iBkCT5V5fWD1MpwnmcLX+xL7h8pwWUYeLul+Bwc59O/TAP83z99va98lHHkzvIXOT1znc4lStMbiV3p/OL000SpVIkCV/v83S92315euE0iLj3ohSKau1H3nGSoS9TCvtOo8Ap+aG4Spe7hxqA05qSkgSYp+6kAtHdMxWh7g67TxT9BY73SICqc67fR4GdCwXd1CfrpxcMfqXoqRwG6j6x09TthHSklBLoSDn3NKcX71TBhdhM5gj4qpk54GZ9MeL42d/8175Anx4uMtyoCW++gnbWnzvpkhFay1b9ne5AunXTMQ0+7/DyRjLZjRDlNM4fzcWSTXOPqDwEpEuJfqmKaZztgqmUw1/9IsxAQi0rTpazujepouPcp/f+G996+/btUXj3UCY3d0IckjVd6tSnU8ltTHWQ1F27491+3wNaDWbr5EOYWYxoj2Ci15jfgrSXo78ROVlE8UkgoCmAbdRr9bgIxHBQyWIgJaubakruRRdnoqnoJBIDappR/Rr7IERtM24alTMUDyAd3X//g1/9St/LDzicdC61eNPdIYlmLklTtOxxRJkIClJWM0auACIarRJqlWD0tautiAmIuEO10iCjc+qi9ELwN4pA2oIEnlgJAwvdMIpDlO6zHj7sDD7PyGozjJ0QntzSpPuHXunobLzMMAdt2PuXl/PhwXqJOSz2xbe4z3eTZTfXXfnsxf2gRZhd5WEYfr639/1Bi+71irn/5TjI89nPnalI7358Xi7VUjdOQlPclYt3NzkL8qRQOd19rN0u7349dBMJUWKuCjpgmGaZLffaOFJOUMWp2mWoz7P3NQBqEfJ1QlMqmJVMHTCbl4Lu2N8koO9Pt3OZZ7Ni+xoU9sjOyrFLCmc5q9FFFOPd/vn40L36/P5lenf0BHThUrq7piRE7lLimAJCZzAGzMCjNRUDFJZuuO/55eHfnX/58iuVzzsCkCxvbnNO805FhWUmpm7INrE/ibq4HcvduO8gevHB4UFV+jFldVqZDYr5dH4vwkc4ieaMgk4h0oMO6XP36bhPFRfWHpWjaq9eLOqwIShy8o/+9j1u530+TXKeHu5u70/z/Xie53GcD5KpQGoTl5TaTWLvrN9JEaFspmcHNI88tjOsbG15ucT+45RTvGVIKjDYxj8eKwAuf67yv+TpmClEhiWj5mRzTlIJIQog0htSc7c1KiYqTkYGatsPoN5b3I804OLVkpZc0v2Lv11+dPv80gEqfPYuEQo6NQHRAo7unhQuNeFP7Xsx9yRBCUqV25uF7kwpOFtRAhwx5MgL1NZUSL9lYR4tUsQUo6/jAqVYM4egSinnOV9doGR1l6xkmsk0ncdrjMPdtbNHIjD7oYv6L9W78f27dNdLUtJ9f3fO8wA7O83l8OLdu+9+9v6I2Zjc7CDv3rv/cO4fkBS99PxEbT+c0pDuFEhyz27smLOepk5EcNyJ7onkcAX0zoZ3O8n8ydVZI2XRtkGY4TToQ9/7A/v9qZ6ATKn9fTU5kCwOG1UABTSZa4J7x9J14+1Xe0k5nR9KVmC3x/jSi5nVNtEEptra/UV/hM1qc69UId913Xvfwjm9ddY6UhWJPI2TondGSeK+T9GoJIkmFdGTCuDFRcCRqS9jnrv787//N38jZzMdzYvDBZ+cLjmPg4zqMs+ShnnuZPT989nONmi665RMbpbKfe6T0oqb7q6OqkrmXREA7vh11ymceO6zQbt09cDkn/1k3hMKJi2RlFS1M3uV6FPhoiZJTref3+Upie72/Vgrmt6VaTq//eyrr24f0iHNY3MBOoMmP7/Z7/t5FmXtsILKoI7FdKkzEEWfzteLmHV167mR6a2UP34/sMHqNU/fqE2SKY5O50zXpF5UHC7p/8fYny3LsiRZYthSVTN3j4g9neHem1NVZWcPhW5KCwBBCx7wRKFAKPwT/ho/g0LhU5OACClAoaqrurKzcrjjGfYQ4e5mprr4YO57n3Mzs8DI4ZyzI3aEh7ubmurSpWvJZqzL4KZ32GUfNs7SRrjkJx+5C5/vlMmdEth5tgKLpvx3f/Xrr+VOYqqLdbFQqiCcmoPhkQSttY4PxaakqGbdNEzIoCSJoKALpgPi2omuuumne2/eSXrpRsinp/DTv8l+4BCo9lFX3bhPsmc6QhGJ9aFev5VA8lac3TKYUdY16Lp+uZjVrIiajwYjoazvclKU0UxD4MN/yZVW2EKby+nt3ybzQ5FaMFbPN/emcu03s4+GNujl8Y3/JJHZm4mE/WGISJ6Sl1VdTdfbeaJQW8Dg6V3Gcpdu7h++epx6LWmyGS2YISKEB5AGcRWFQtAoJgqeYSYyjo/R23zjRuwdl9oMKlohvHw3H2Q4HgfEe1DTkNJvxdRMddzO5IkUidY0DTRF0kwXYdy84XjKvP/D6ZDr4eqctiGlQbtkx9twD+/DFbrzNUDUYVD42ky8FBrSecqXx5//X34ot+9f+dMRYcEAv0kJLkVrwGBqN++fWmabvebVUFlTzJicXpvmgyaaNBFLUDAwTL5R2P4iiRemvLKWhpyvI1r80/uJlITQJFub/aaUwiGl1imxaJDhGG1cTZe5wJKYkBFXpKZ4eix/9//9bp1eeBKiYVae2s2oCBFU6au0T9gQhCYLdiKg75TsT6H+vgR1y/T2Ena/uX8cA/p6/TxR3ygFFHQGqCSrRopIwBCE7pwEQEL7/A+wq6lEcHdK+azw/zwAiXQKbU8kSCu2vvoP8z+er97AxzVSLSESPgg9qMnZhfwBiOqu/R8uQo9Qc3Ql4oTeg+bzpIVoELDq0M1HiS5pL+JfIJTPHzvHnVsZ0GufPWuWTZugx1+Bl0Vvf+qAXNamKgEPEY+UWVPF6aOhDgaPQ46qKATah1Npq6v2CQP/7W2M9rgIo9U83H59V44aCAl1Ho//eYyb9GQQhDrj4/yX736KqHIvAxLTt6dCmxEl4M2SlDcfb31oVsIym/4w1Xy00/8rIaGr73ZXTkKi0aGIcW16sFp6UaaoIaopeKCw1TUfPdSk9VtOIA4ThGho0nqeS+b6aGaKwsTQ6dDN4iUEIipyzOOYLen7lMGkzS1aCOWhnsv9nN//xaBlTa0kQKEmVQWg6IOammYtnSTQbzEwVCOgg2htNVB9SIXnL//H/ENWwF0unU3Bhwnh4zp2gj29mC5uWC9yhMAbZWlZHOX+RsNsGdSmiCgm0lvzEEH3A6CIMOccknK6qDi+i5NrsghK7jck1bKIZR3WmRnehlqZ16erZRJyFF5UTFX0jNY0y/FfvD3+xz9gfPZbCQ3R83IcpVFJqyLy7OUN0ENExfsqYGz8rG217bXCpyudfeVtC/2PA4BAX37zpQTYs/cEhZiKpoCQYn3JhGvP3GUvQXqFTCLY0fr9kz8NLdzUYeUF0NHOZQrz4/L2X//979fXr9aztFFahXXfji6ssSU1iVSFtw5yRoDRgpoqVUIYfaff2H7oeOSWtwPqvRgIlSq9h9E2mPH5Amx/pu3k7Yeuasrn2ZfnqLG9IhrH2zcF5Op2GFFaQdaQw9HbdLHcpnAKAhOqpCg0w3y3ruzegkrO3/9SD+lxmYTuZsOHn69HWsVUUsiUv5X4EvParOYkFg/FHk8tqp0PAxPSw+sVWhnULJ4Uq9QjVRNg5sHHuzpa879N8+DaffSaaZAilYGcGB/zILXouFF55arBpLRgGocotLk1y+p13Cq7RbO5B5mylqbHnAdpLWIoFM6sP6jKrtuqqvJhOiRIzilVIrQKoyGJTJdyvFxev/mCfhiajqtaMhUZO+dIjirhXXJZTBguKiKi9LXoYRgtgopW1uk+6r/7P//nm8d4U9vBVQLOiLOV8GkWNDg8ZLm6emqD1esYFqar/NGZDzrj4WuYXQ91DNg4JjUbh1EYebvEAcl9GjW5t0qfOPP7ix4lWzSGeesBRlISElMNmpVCYrrNBSlb04z1mhF0kTZOpayIf/jFf/vuw5qedf3bSLLEjbTOD9rotXsF3eXsSWh0Mcz9PnzZ5/trf4QBoKeyf2qr+7RQ33+00WMBpibqNPGiLqen5bqYShQbL8k6qbspWrKZ7Gqbmzp6J+5sI3zdVaER0pvvIoIi3cTTN/rQenuu/8fyj0/D3VJGJitzSfCwEK/M5mDAVPXisEqKq3mE0g9DjRSXg7RoTDKukr1Iyt5im8/2FiJVMhmSV1HRzJY2nRMjW6eWQwTR0vP0Wj83TTUoJtm61boO0sJ0ow4aLgdrSHyI+Kt0Ph5l1SwNkmWRpQwmqyEOsh51TGuSsNNco4WWtgbtuk7l7nBpiVe/u9LlKylMF0qe//r/c07zK9ZLnol0/0t794v6BlPTEZf12uqvv/rhTh6uHu+P17rw7rv15jd/5aKHNls1kf/8+pLq1PKiuV7s+u8ef/Xd9fH63f3pcmB4pzp4gGw8NZG4pGH2atFsvJ5rStFYzKDZ2uLzIgq+LpWMPK2ioKtEl02wGMLbeXmNZR1N0/hoWjklU0Ojct1vYps/igCw820k/NTGFiOoUs9r0VO8PTACtkpSuOuYL327710bIxEwFqSaVCKgc8h4yOF18VSXSLZ8OPzyv/na5sSZDIbokurx23enCXhIpY5SbLL6hCnP7yxXeSpSEsIhTVKo5YxwWUEsPWlRVcWVqJmZCFQtm6wiaK360C7D8m1ISA09eTyKKkRtbN0DxK8OFyf4mEbOJf7hq0VFWkqdkYqYourIxuPXp//w9d/eoHvNA1dL6PkhnRQtAHjnvMdWnHuosIqilWTipaLnKQEag0m8s9B1l+ik9CEX6/tvQHY1EewY93PPD8AzUakrYBFIMXjkDCFUVKJuAacT4/svCCASokZAnM+9s+2VPdHulETKMw/guVPRD2NYl39x+/uH5YtBAkJvu4BAEGqKCEePGeiaSQIi3BmttU1UmFTbmor7mD+aSVBMu3IhGMnQQn481dwrgj8xLmEifdoawKYXAwEQnUWLo0WSusb41REKXmQLxzMhKpwduHx5nxXqSds4LPCWUmtX36UmzWO0RQYd7EOKMZamIqDdxbuTq7TinhqL8HciZqFuCS2hpMe78+s6l/NZdYLFh1vPSXQcOQRG13Y8p2FKVoOZzT9mx8Dh9yIpilpmuKetm1EbkoJ+tbY0wX0uIQrDVNeLDMO41ZXxwZmUCBMwGGBoyvTqTdHS0YqZklEJMYKuAt1olh36lT5wHXJxGy7HLaMPPV4drKXTSvTOFgPCtYSmbsC6b0rWrawGVQoRQ/W1SqtX1SVa8zlPr//1K9Se4BBBIxR1lBaRkt0213bfMCwl5THc05CBsiR3SYo4bv0o2zNbAUCXH7au1SAQFRXrvDFZ6Mu7MmQDG+A8gqAHjfBA0Zu1yRUf6gn0KtNtF/8tknp9rYtINKqltQ2vh5WbPwBYRjzInVT4Bnj0I7HoKleb8BU2IudLHsr9P/L5iv7jGz1+VPJ//vyPRmFSOaIdszsgohJl7Dd4dM3T3S6PoqJAbB7Hn5UgfaXvziV7bb2192nbDFp6tP/69m/e8/UYTkNbfS/ga6hCwp0pm0PEBOEEA95VaEU6aE1q7oIJ3Ry4f3KXCACcBjrUgvu8en9CINvhYK+0PrHK6us/9bOucMbWhdwCRPXMp4fl+MtjS6Zn2XO1QYhkhYnl5sNRae3Y1rtcc2sDVxweUjMnRj2fso/rh1PccmGiwvOX9evraja71qh1ncbf38WY12gHMMaQ5fLT9ec15go0DGN88/Y85iaHtAyLDmvw8P71mCWaJ2DVb05Njzr9TiX71kXtcMY+U4VWr5J0+qWJOInKZORaepiIPgbVmRgQFY2ozGCgZF05MIYMKqtvKo37JtOxZMEmc0Ecl8GOLXXONjiNOmh43YZpZPOdcdtppH2P6IYiBrF+veXUKkWaTxbmhyZLnl79u6u1Tj0VBUII8cdV0iDipRSdUqTB3QHxmpy0pGPevLU2KE12E05F7xDnbXOYt2/ULeIVxFB/fZ6kMXpfHgwPp2YNJHGGHIalcbUMlMvc1aRF2p5eGtrqwxhxyXfTkroGD8Rd69PVbe0As2zFf8ebqCK+iQuji7Q+w2wkwZ0V8M88ZINRf/yily7Avgi2ADC/RpUUrQ98RBu3poSSYiow7xcygYzw+HE5EVuJzY3Rs/MANqeY5/oE9a/+1eXb8+traYFkbd3mINhczJS72DWlk9dVVUJEFR6kaEDCRbR5BKx7BwmA3CW9tNswtZqku1a9fN/+5yceDZ890cctzDZMSvZayrChHgWDX2YMX+XFTJZNkoHDUKtjmut4ORw+JKE1jTKoqEPm8trvjxSIkesVKh/qaT6i5aEJQl9dHn623mhwaCLAjX3/k8dX6SOZihja9Otk9nYxZsWYh6l8+MU3r6QhsaVIGB9Haccc7gWpSIn3v/LxlPB7hdWB4ZAstV+Rvo8YyEl9aAABAABJREFU22JTrG6ZqogA5jTkWFa3jbc9eieDbtu5TK3VMB0gk88lVQpDM9f9ZkSAaLsFCJ4n/TDFq3G6yKaeqYk+i/b7qis3QkTEYDuZrP9XNmSKBGAirTaomTYHbBz0F+L2hrUHNwLJRYLlXcesm5sJiKiSUptd1BHhHPISBEVhjL4jAdsnPWvryU6iIQPGxhbg6ldPv1nzJQeEKujScMaWEFBl9SxP9xeUnFUBnZOrEBh6AJDWWaq6cJ5hLfVEWKQM9TEdJYy2iyEBL5IAxMasFJUNe9/2sW0s+X8vAux595977Ot0f0VaxYLJYtAWRPf9EBFYRMeLA4oQmPvz7v/jBET4LOG0M+uejyAkAIJL/jfjPz3Fl6k1EZW1bdO60UK0C4+IwCu7/DzVNr+vCicF2uXk0bZYE9vEodJFRNECahH1yAZFNHk5FfK84PcU4BP9hN6G1V3STeQZjN4DRRouq4+vrtQzmg/oNAHVRglx0csbHMKVgorE5Mwo6atzSwKG1EIJxuOUZ20+oGrYcPxW8zx4c42DaT7eP/5kPfESB1ny2CL95q4dhwdFeBxU7R3TcmIkqa60dvz99SWlDh0JmJ54NR+P+em9UuLgLWDJuAW8Gq6SsjZjuEsUVel1WvVoNpZtyYMMS6KddgccNbUISxzHS2sq2hrG5DBRaj9PILvBBgW7AhO9YbzKcx36KKk5IlKG7bbaEIWLpS6c99Kg6TA8Kdst6uEhAiQGBaZv6lPhXC2CwRBBAI54vNJadMipTWhUrEkFKmaeMmpbUyNBpTAIidhmklXaNl/jL6ELJCiSLEcwLSnm1NWEGdEVkURwjljbYmwhqZzdstIrjlduSUnvN6kQrMEsSWpuT0+B7W4V+NX9+dXVhY276ly/JZ3ooPc+e6TaAe29SiBln9H8E3Icn63xfz5H+PyRGofkdlgAEtrZoBBAFP0SkKIhup0E+jNb4dNP3Lrq0uf/+bzb7ik30N5+9fAP7XgXBQnCQtVuSRWREKEBVevTUrINE4ABMbK7fzHYBxYBgN51WtBHp7pIqYKEtu4lsIu07ZIqfI4Dn5cAIYCobYou7DhK361EhFBLcX6Kq79IEPDs+7uI4gBFk+avy7CKxhjtMKg0tdCbN//bZMPqNPgIHuNyqslLzSWyTzfDdyfotJYWJWnL4zdH6LGgHkpLVlK5/6v2lahgDUs187tTzcciYzSjAnH+4uMRkAFoMdbT747j45XlP5QjqCugYK1bxSiJEo1sI2vYEKVTuaJlh0Uzmzb6iUo4KbYpKMic1BilWY6VZskRKsHN/gJiQWVQ1+cA0hNWrUmlJvHolyA0D6q0baSi+w9QaC/w0T7ESwqYgxCSg2iICtScEJHaHJfk6l1XAt4GhEp1NQodC8x1hGprOlo0icbmJgmAikl4APQt8+bOFZNhu5O9QxasAOgeWek8UmfRlEQ5d5BDqou3lnJbahoP0VaA87tv5SqNWdWkdnm/rvTJaIJYLk025Rio6BrX+ZwdKgqBb8PCm9LVPrsDUen19pbRi3fgfr+f/9yC3rmfn67N/vNPfvJJiEjekq7DtGzz143bBXEBCEvuBlHt9ABxivShAHl5432M+/OP4c6174/hl+njt/aFNM+5sZ5FNUKA6moaoLMHmW3flq3LAN2VEMMpwhbW67HniaPo25B0pqAFhNGRkj5nvpEkt2mL5zHl59qgj4JY66yCLiLGFz8BV1nuz+P1z0o25aX7kAJIqAOqx7iert5BktbbglcTNEbUwy3eX3FYQocrjE1uLvc3l2vUOpScytXb9P2p2PAUCJSxnYbv3/gxP145lozg+H2KuDsL6jzd5Jrku9vz9fBoY/UUg0+zDJefZ+k2KWk9/HCSuA79rSk4rKJCevf0Izhoro4IaIiIqomHsC2BnMO95j7gIapEBKI7gKosVBGlN1vPaUIeqIYaWq2H4W37tu06iHfNJiS/O+hl0Bpqii6ZxXVP9CECqBKNmyKv7c9saowiEKVz2aZgS9deDAXsfOSzIxwocEFdbNKI1q4ljDPjYAp6UOoiAkYRiCApo0/adJPajW4kYNsiZUIXm89gOASrYy5Wj04nTVH6jcnElFGphXAfGE0Vy/enOKZhyEn1amsqNJgi3Pl43gn8AIF8aQd4t7QVbJK/WxHQsbYNJ1Vtm7/lFjp3at2fpLV8srz/2exgV/N7XpeptSQlWYiib/Dbci6mChuGxYMClVVEJFobNqGDT49i72VCIDsPoG3dg+2DZPppu6ynWyc1RdTlsJGXg0AEk0tvzWD/lhs5f99JjF2OeqtBYiNQUoUIRCQhGZJCNByiz5x/eTnG59Ti81MiZrbL5m+eaIBuGECYrZXH17f3aoKWnk9deQLK6Pl8nRlpcI5FrwZCuNTrab7/6UUpebq5DIvk9fHt/VEZEslwuLGHu6ecXIFs4zrqh58+3MjyZsZ6E02GD6eS5WPispzuchrt8SdPr6SMNrch8jq9H6RNozQaxbxMH29DjlXemYAZALpsr4iQWMaUs7DNp6ksLY8FAUviOYRBzYWkiGppYkZR3xjCB3emBDzGMptUGXWwpTA/wTpa6N34OvcMotvFC8T9+hDLtTeoWTAQbvQ0Nnaqm1A0w71qUpDPuhIb7RoOqEEcDLKJUBIgEbRm87B5iAhpZhoRdUioTXTgygFFpsdpiNXzVCSPaTnf3woE0leTRMTwvIb2UrhvCSEgwxnoNPxQtFXm4brVtgK8xjajENS2gPU4rvOCelK2CBsvqRgoELWcsknO45ip1j6eh7TPmahqfodjlaELkG8ajSDQ/XDxPL0mG9Syb6qyH/TnUNYf3839ZP5RBvDyfEfPngPA8P5fSZ+0tdow1TCJGuIGwlCbTUkGlqruVBETUiRBqkBJ+vNg/TbItSXvu60T69BOpd589x+m8pt8Z7oOhvR0HnKrkpKEgYGAi4rUQoFqb+x70Ksls2gNOTeKJQ0fagiK5CoCF1U3aZp8DpiUVccCgYFUyGbT1iiqfR47um2MyGYH3p9PJp14DIi5kQ6FdSk2qTf6Q534Kwx+3T5IsuYwiWbT//KT/+H7J/rlr7/HobWcH9u1ZMS8hkMfDnW+eT9FEa+h+PuBg66XOx/5eHNz/Ds7Pv7sOx7fhzAON1/HeP7Lcvh21LSeao3fH24oY5urS1rwxf+qEXdPV3auKcqU9YyP05fT2aZVh/TD8O77//of36T54Yeblup5cu8oJqHG1rD03FLPkq9kvZwaNCvkuDSZcllOCwesNWeNVkXlVFachvkh5SSd2Lsc7nOM1x9t+v56PicUF+kFl5ONZgiKnaI4RGSZsnw7jPcJKKYmVFASFmxVYpOQPenDhv50AglFVHNVFW9tcyfHVvRSvBYkPN3NcSrp4ZRnW1O7/W1uzSGi1hQhAziMmNvAew6pLTzeskn2iqMVVj/2iRGVfn92kHTrl0bfjFy6vmRaTg/1YA8XTWbh/BA2JOSxzU+Xw01br7AsLlHjQLOwZmrWDVlR6wyYc7y6Hk1KTWuDJ4QY4GeOyaJJR/m3cpfOgaIq7hLS/QgSQ91TN3+nhwipXbC1B86+AQZFseuVSTe5AdinY3vl8Fm88G2R2ta9TWieqw5doVU93DYJ446VUuiIDoBSIYiedPdhBb6k1J9FoE8eKUWz/O4Xvxh/+2F4PcxCslVXknQyZLNVfWmUhmxkZEiyTh3vU2yb4kzXWO6JnHa6W4R1hT7sgildNFQI3S9wj3m6lfp7cwW6aXRHEyqiKw91sBGiIpMtpeSf3S5hbZk9QxSApuRvXgEc1pEtvOkygNMAq+VwuR34tflhcZehGe1Y2qkMymxuikHt++mck1YZoiTJ9pDLOIXn3GKUJKsf55ukvqyWgoKPk2F4z2mQoC3i7e5y44+mlzLYub39zaH41Uf7PipbdDkTVZxVQeQc7FvXBLZZhuNK+KIifTZHdB5QMHGuAFRNljSVJ9VDJ5BGDVeapJSGr+RQ6qnBUk7EWKen64e8Lu4NNgwrTRjVh6OskNg0YvlMyNjrUt0ux96i3TcM9AANAyLc3V52OhGSWdkuU3v3KknzAx6PJT2NKy4HTYjWyrDZbvliY6brIIBBohWGgtXXSKaxDdkonz91uzl+DG01RlAPw4ImaklnqkVbLhOSRKM9JMsjmiC21vf+DlvqykQuaGPokM0SfEs6ugWNiktPUzvUp9Sui90VsrBZDf+JzT72kIXPd/eQ7YbfHiT+VLqLl+c7LplkrYeK0YKAsUVNCZ17v30EPWJTOAZ2O9dOV8CfmD/68RErtI1S/93N/H5+feM+hqCtLYmomMbL8gaEJA2BEDUn+kRqEKaKjc0H790tBqyHb6fBQ0M6aPpHX3SnMHeo69m4YqdmEmpqiuwuqrFfp16EQATtYV1e/TxfUubaJDdIlzB+fPvW6fnhmkXdgdTy3ZUOFYfLccT3t/XmAs2nSyrD4eHyk/lGfTQqdJjw3e1yVFTNjVkO8v04H8dSk3rwSQ7f8/r7u9D2MN9OwWn97iZyYtixLE3LaY7b7/9SNOUA22q3X7+t05uHm9+KW4NFdLuuwZQeusvNs5lmCV+TRQtaahGNIIIC1dBhWwctZ1mg2cNFFGwCCNN0d5/j7bx6gphKotEO45XlV97WWusiEFXV0CueifIMb9szHNxPt26597Pa3XYjG3adGuzufjvjRYDwtQgf314vC9dkJz9wYPZ0edIE29wc+k3U5KArdWxOAVuroYMKpVbJQkuCroq8EZh2z9/n22F7uLa1NTUlw5vKqbYaIVw1wUNtZHNPyZbuQrVHj2fNORjaXFq7VHptBlK7WqilbnpDBVS6HHIfNQaITumDQJ89cPY33Ir3DYGOH4H9oc8b3rbA/zxSKHvEI5CkrSNi6N4XFJQBDO7d7l6lxNYewGZa8LyuIJ/KDH++8PY/1xRx/sWvnu7n4x3rMLiyVZhTLWnIio3U0wUQNQOEqDoYscF3ZqAoZQua6FLZIQIJNigaUxMhkqayfW4vp55pKj3m6+cnFCCgus3vdvxpf0US9DBZzqFXX1QoykpFU0Qg6/rD4bjS8/LT6gZNzE1PQ9U8qbVXJfKS34dmO18tyX5YxqcD28CqkfX6cb3+cFMbCFeTqX78cnnL6oLgKpi+PiS7WvJybocDefvu6avLjR/aOIY3pqt/SsCrYVxiamfG1fzh5+vNYPhuEGuaiCAdHFRJRnRmPeCFaUBZ7uhwkS7FJcphlUnXGAeQ4RFaw67ozSLUDEHqIn48WVjcOsWEAhG4Lod2tQ7UcUJdyxotaGYtt4vISsWmA47nkEqAsF4svoDIxLN+XQfpQGCjZfTfIqL5MOfh8XIYDx+evlzfL3fnNx/f/ub6XWsME029xhdQGcUg3ggQEZqoUFFtywqltM0BZ79H+el6+GTPVFmWqHAVFXqNFFQVkbVLmYi2VuEKxhZL0LlUspXB3d16jqdVa2k9WyUDmpLuTlzcSn0A0p2RYz8vOw3gc6iNhO5tbL7cxc9r8hNk7jmC/njx79944xQl4XxCxDYLL/I8nrP9QojtsmCIbtYJBrEzqv4cILF/tq5TlPLfHN59u7y6LuVKwFYl5TNAuDf0hr90WxaRzAiFwPpgbycfkOE9GJEi3skgnTCZAg4HVBAiPy5I9o3o5bGrF3N7NlRVQTQROp8t3va7g+OycnpzuzL8Mruu3T9WdP74pTZN5HGFqqXa2iAM+lTHMnw3sJbHbKkFqO1DUs2LS22Kgxz+Lrtef6hDrm2ApPfVeFpD3MXWVz6+/+oywlE8TSn05m9tfP8XZRBjqy7H8ePV4/UpEWzN6Xe/adPjV09pfjqFArQupswGtZyaQ7qC/rAsawzJWjjBVk/WT6Fpz7zOogoxRSuWJVrWEFVKrrGS4+l8up3Pj3EKICczyZ44xNSkllA9jFd1qdUrByXGVKTbke5OQM+ncwP7X67InugGBJsrToeh922ZhLjXy/vh8Dd/sEnn9lfMOn0YHsenR3+VVYWgW2tq4jUlf5KJRUy7r/wARZi2uBRL9GK5O3l/cgB7WchPIHTqUnNiyyImmbzPQ7YoRSME4vHeclZffNgYlDsK/nyfNZVEltZ7mUI1RKMMSffsu5+RfarneWn2b93lrz7t+Pej67P5e4768qz8aDGKCP/08tz6vOgd2ASdkSLGdVPlRUdhXySIbFfFihARE1AC2C3M/2ya8RwAVGX96t+c+cjrXAyusSxIMIoC3kx1M6bf2L0drg9B75IEQXdyN7oQY3RomTtJMwLCLO7caQJ4wQD2GnRP1OKTzAACUNQUBNVAqO3HvuniS7pclrs3hpRKbaaxmbRxjQA1t2m4N7VBrOmYLOs61tz82+S5QtKhZcnpfL7xCQtZ6WZD+83xMdnMwUJyneTbKdJhaSrNNIr+cLan18y1ak7gGN9d1zRdhL5cmshpLad3P1GZB3koV/bx5nc30+P1evwDRanqsTFM+yOaSdApAj14u5htyuks1qVT6sRFRi7RwRLJ2mJBOhghwvBx9ZZ0mpbbKnSpIKMoOZa7j1+9vytXmsPd3dKU21rqyWKajBKIzTzn5SbcagGRl5jw/AKFbHpe3LLRLUTTgahFpuu7SzuHZ/yXJYXiH6LiHx4e7kSN7hwBEsGU20JJPdHotGY6pDnQZHQZUpbN8GhbBp/W0y93s9vShgOqMpposgNaVSOty9a4bSUlqRJt9/fpIFxvX4bZhvM5ECoSHkJTiWcPdD4j/r3R1117KXsGIPi8qH9ewM+H/cmC/6PlLvwzLcOeAPR8IUVakJ2He1EPkVTcrRtJPXcd+sg3EdvuR4BI/fuK/+jN9wPeP9kzgv/9zbcfl6vr6kNIqueLctl0u58p5NxquNbFFiMkHOIRIowgvFO3RYGGnXYmYjQ4rQtIhv5xRSKIT7R94hn827+faJcoTkLpAzTPJAKIqKz3ha++jEhDhJuyOxREbRPda/IrW45gLrmMN0mSJ8R6c/nwxTzUTA5urnz/9BeP120ReHJpp/t3P3v39nyxkGxSp/j2xsf8eJkOtZjMN78xr9fK+cxMz4ePl68e70IXYylMGP6QxvYaFQB1GqN8e2v5qPg2UWDaxTGJyAxvDET3XbJlGJIV96NZULKeB41uBElCNBn2vpNZhKXWM8FAa+3g48jr+2PVtGof6cFiT+l73OffjsdxiIiF0GyDX5GDbmJOjH1m6wUGeCb+cGvmb4uwL0bl8pJGbxNgTgn3yyBIY0sV0+UotqJgPl70Zg0moXKGCGkpXA4UmcBGASJJBJX14OUeSVvuRNNNKOaTLgA/LwFcW2ktK6MFpenR14KsnTcdoq9Li6DmApVobjub93nj6/aGSoloRM2y0XvYAknqhnkLsI399JOym+x2Q075bAF3VL8T1P53yIBbYfHPlAAb3iIpUmMixp5pQ1tr/dOlAzbcIjmfcxwCZO+o/YkI8+MAsB7D5d9L/br8/OaDHz0lWefc5mNXXutG3f3DSYJt81YoGg1Ag2o0fxmHdkHAttCoZs3QqOYuHvwkKdoxAHlO6zrBL+G59oOKQFW7AplTk7DPbQsxbqZY66L5iy+qONFWyEZLIX2Ee7F2JeUK1DZFGqKxnlY5f3ku4/evC1aJamtqHy/p/RsvE5go9fihHN8dH5djjUlbA++/uBy1XeSEJet4+3gTGOCXsyOYxu9j+vCLkiKJh2jgfVY9Yh2XsLTa6ePHO1c9nO8zLZLWgRQgsAoiNKdiCUazsa46XEULk3BJ45OY0BScY9Six3WDmC5VDoeoM7vaqrbqSMj2/k3NT/fTYZXxMI2q65vf/PJ/+tXvrt6zAWJpqh6BlMYICQK5i0fLvv63bX+PBNvYAfaNWBp6ItxUNkeIflcIGOIR00lLPSLSDD3eJyR5uq75Q56EVSTZ/TBIaB6/1zywIKd1ZbLw0Z1m9Ozn+SyTPA5jErF9mGyfBPij9SQW68yJRdREBJd8vE661KTiAdHFJUtp/Z57NjZ8XnrIYIQm077rkAxSJSGiJRWN7peFLgoe8E4M6FnRM3D9xw/fFJ3+6LEbv+3/JP7MO/T9f08oUqyCiKzTCmOYiyNqTmU0i+ZquqU001wpQY0AoGDDC+ABbCguX1BI2wYXTpds//Ltf3y8HL+QfOWZy/vlxHa3GC8wxGLJJLeaVcLdFGQNJ60F6RDxtpnY9zMToO6WBBTR1H1kYlo9azgyO4Ny73PG3r7o3jdKdJMqbVS6WMqJtNRFqAkpOUVjzqv2C/fQyt0X+HCy9eN3N9VTzdZcVXMZ42zy4d/+0+3lePfw+skGU3JcrL7i33/18XCpLed7tY+37Q9fPQ3TH46nBx3i4Pybt8V6/6rlh3b4/RHlpwtudAmJSR7fX9+fONuaVerT6fCdHDwtl9RkZS6v+e7Ld6cpz+fTrOn48fV/4Zvvrr98fP8weU2Q69VDkggiWVTqSNSmg9QYx2VNLEMlTFp9+7AkUtvpCAXYmgpSqvMpKA6RRIJisqb50A53yL/7q4d3/+qRp2LX15IGa7/S/wFftPHwuy///iffns4yDD5Tmwolo0lv3PTZEAbGXtIKIAxR6XbfRI4+ZNJ3YXAE6WJWthLXgRoqYqFVl2PY6JizN2MutpjamL3Ulu5USBv0q6cFyYgVAyCWWohEjFe0Os6/vrp7/Mn9X/7u59+OOl0Osp6WKTynIcJaWIpAasN5ekwtzY/tamgHJjQb2sWKU5Ppg1oah2QP3W9FhnnUVSUom5tRl0ZkU1CUVZsNK9ZDAcUkJ6coq8B2HLDv7EhB0XAqLcOpUgIBC1BE4bHlqxgiwF2jq6fnAWF0Fx1ilxHZGWtKdI/Erd7Y4+7WG0dS8WKl5W0UH6pi7NS4vovSkymrIEULUSr72NQeT/aIAzy/KdAVSyhAG6z+d+/l2/HuykarxOrJ+dKvX7VnO61aFLdmJBldn/5PBOeNHNU7N52h3PeY6Bwu7FnK5unFHU3uuf0zHs19sEqlzz7bVo9lcSjYVAkY4rzq21NMiukx1np88iQeKji3jPA4IY/pdCi6Hm/eHufHdZJBL3WUs6WrNOYhxuaP149XTTWI8DJdMAofDAkNOqTDr4cHnS4DwRClnYusP4NeanMma+3d4T7l98m1lgjJHyh+jOZCRkl5/P5G7GquD+OA0Oa13wbkoac885LUJLzBXmDfgFoJzWS0xakIcIxSdNTcgmKWUrcgDOBJdfny9TfVBuEDxp/NHNAiJqgqIL/ihF/wEIXFBMNICKMhKkRMtKvL9cxO+yUgqDuKBdaI4FZy7eCs7ERjBAsoivCcEkCi9QQ5uRBkhJw9H4a6iHTfuBOzCdp66kgxRUyiFU4U4eLrzGrvh8fKZSlS6sr7N7/+5a/ffHztTBpQQWhklbXbJ8YotWE8TSsjBILXZS1k5aHURh3yBS1QyqltCiN9tkS59ztXh4h465ZqsjFYRZ7vzK7P2Yeq9lG9zdpXPtlkN5KMbKXKny0ANrt32SNwvBim8Rnw3BcsiATx+bQsU+pIjEqEmIrKrv5PQq156x3T7gz2J5KL2AjWu4tqR+9FOF6+/De/O7+/fTXWQav5uaY11LdST7Tv8x3a73Ps7JU7IL1N+mIAtsWcfsaopnRldw+P6FrKvkEhu7DCy0PwPBAAQqIP/qVkWx669YU79loTSIHXS73+y+syOfAuZnI2MqjengznJuVngTJfHu7HciRubbi68JAfal3vWjglW51ilsPjl9WMUAnm7+q0Yjkk88aUQt+9+v7naRXzpYiW668dfEPMjZSU9PzDX3w8ymox1FUc8o1Ku3LEIOq1HIffflXl1bl8RwCM2oexQIi7mNQiBBiQ1pSAGMQiKNb28lMAqGjTbFAguUcfSdluv/OQ5le3/6tGLPo06IdIlvJ4uKSkQsDb3flffHi7fF/XRhkMonR0luZzgbiN4AhB2+GvLflesWejPdr3/lPvXgYjVkUXgLchApQMRHiEKgRkXE4HP5c8qQha9fghJeZxbMtG45BtvRkR4q0u3s6Xx5o1+2QxtfZx/Lg8HC9CTaCm7xPGlpvAz800PHIKluoZpmRQLNfaTNeAwes6JTqWD6/doWb7EEn31pSePrtrVjglqbyY6HUwfisDQGIbdyO2P7cVwN5e7GuuF7Tdxh2f39v7ut4+/4XY1Bfxj4uGvduQAC6vbZVh7nsma8nc0NhuriwMQAOApp56/BkAgp8dSD98JC//hzp/I8M0r9MQ6elSsiC5ELIJsQGiUgRi2vm4n73l/hW22+a5t0FC1UO7gLp04oOob1G0n7xPTxTl+WtjH7OE5GSgdmDrBUMQZUQY67nqzc+Gh5s6vH86+jhn0F2jlVrOSzqW1+/vyznSPNF/k9N4e/UXepp4NRTJdc3jKMshf3utGFfVEBNV/qH6owxCkhGuH9er33+51JyillFpPxzi+rg2Rco55PBdTeWLJ2No8RQoPwzEVRc+9RVXT/f/dk13D/U+nLQuWwVApEaImukIBDXb01aJd23ncFPWSIn77ENFMoJdBqF7p4mKYIXJ8VTWQ7l/GIo/TAq2UHNTjRCxliKJ8nW7zEVMQ1UDKhRRBb1tOJtuCEDay1x0Acbeve9p2w4MgNKn4rz5Jl1lFO0SrUIBY/dtlyvOepjK5cDeRrpNsS5JamzNPnUP2jAlRqghnUSrXsSL4axI/BCX+If2+zaLaoTm0JpmznofjxBRNDOtfftHEPJhGtLSNBVNGaWhDeFjfWqJ1G5Hyg3mFJAIQ5QCVYdYTu623YP70Is/QyMkqcZAkKroLm77kn+ZYJfPVzw//+dzvmvbeE4fCttmLj7ZEffwkAK6pBQ+aEcytNXYPJW1Mw8Q1Sw7PVS9YcPif4z+77nKp5FGRMTe/fSvf/j4w3STzyXr5Jc1RMW6qQIhfcHHJvLdZwu2E0TgE6rxJmX+/P33mS5SVXrdKpvB6v7ZWwW6HxP7J+3gYCc/97tkn80GXJToHm8QqecYX13DVdPXmnz44c0TW0Dqhf6wvNL54+/O7klPo5CIpd7/Tf7iL2gjl1OS4SQf2OS728ec7s0CQcP87jYebw5skKTw/I0Fbj+qpVDLQ6zv35Q37jVpzroO9vtpSccPB2+tmUHny00bxpBUgnVl+52N98dky5rUISZD6yFSadpVdRlKAUyl26axQRStu9yKuIqQHpOXntLuQ1hb1F0S/Q7fJx3WmmUoOoyjki0i2Fz0yKZnLiHpqAOyLSEQVbGXDIwiAtvGMDZzze2aMHaktnO+Pk3ZyAj3LmmrO6Qjq4hoTqy91rUWyKpQd8lippZcA+Rxwxl117ra4x+TTJ4kUYOYBfnj6dvDRQUq7ppaLodzvujgdUxGZGm1pWOegYg+qCLZhIfqTmp6BCVjfroGGRQMvfDcp8/pjBYRNGoaOlOP7JN/WxLQX2sRXYe6d6gMfRa/X4SXddW1rSDP5qM/WnJ/7rH73v/Ra5PQ1sipDdq319yCCmjsEAWEDlPf6Jvsqn3Pb/T5dv0CAu5Pre3fH99/41e3OiNKWp4g3geB+9r03nlj1yUn9/vAPoEYe8HI50/bU8ZOpaIoSOdeRr6cfnzSpdj2GHBPwHoOkUESoft53CwXu+qFoZ15fGstw+rHUYUlHOGC6pA1WM6/rrDBDD6ncVAKvmiPv55trX+xWr2SSRrL/JMf7nJDIxss5nJoTCqAhMHyu/F8bMvkrREMuV+O5XRukAQTXy/fHB+vbL7yWFpSGZ58mL80hAgUmuTXx8t88yF+WA/CCMbmbCbiyt3lIYnXqlv81+iZXWVWV1YTcSLakaaM1s2woxNCGOSq8LE9army1I6TLxg1JUtIBiOksRoPbboXMRdWBnwjiytF1LbKs9M2VPbysaNfvmniSFePBncCS58Vcfeuka8WG09eGari3TWTaus0xsWHgQVm1Py9mQ0WfTvrxDYVNqomQ2shYeLhKm0kciTBMSYf6OHm7uEtonkE16ZwhNIGRcMgdKHZ1eWih6EsKaj01rrowcM//VtLQoHZfof2vBRUTXlaXRXafRyf6yJu1a0AAmN4R8OgDigiVLYBJQi5qfNtaOmnmbZ8nt7321hcOhdzWyv62S8BW/ABk7ZhWWyMrH1l5yUAQrvVU28ImtFDLdzEoqMVf1QEyI/Lki07Wf/qXy33H8a7IXDgPD5ckjdhSfvLn7nPHmISsXuo9RW5D4k/lx2y1QE9Xe82gCIkPLqZgXIvePq018uBbsAhnsFBQPMIU++xux9P6oabrV+ick43X9IPLX5YD9RymJsATg8faywYz1faIM3aLdnUQBlas2sbv7FkF/nJ7Qc5n45ygClFVw42Gy6HK6hJDUljm6/rV++jIhpZxX4Ajed2U7I0mfjD5e7+NYcmqUSuph+hy03XwEfYZL+/e5LrH25/gAsJOmxLGl1Joa/XxVURkaILeVA78TJEe6alDGiS6jpqLW3ohJWuJtjn4gKDMsaLx0niOFp4ANdmEIMcWp5ZuxKxQ2j9IvQNR59dGqUBJqqy3fK7CWD0KvOFmNUfKoEI9yDZXzsmoahwaI2Al4xoDNir8wc7puXDaSXNkQ/NRWpzJbDl5BBRlZTQPHjtNXsKLTW7CmyJcZ3KGIOHmYe00DV5ilgjNVG0ZIOt63w03WxpIQCDlgesNbKFQOo3Px2npJpz2UZ/vSdBEPHqOjjJqlmsK97guUTfN+bUPEwlorve606i8J0MwA3e7SSYH+f8L+twG8qV50xhg7a2QLNnDrsqWrKipYyZW5IE3R1J1ehUhTNZikqz5tBUNdjz9T8OAZ8WGdufLP/66uFdy3ceGOuil3LNNXndnCsgXU60s1VEwmXDSFz2nfqz2gfyvFNoz/43xMO3mkv78u5nabvJtzC7SYgBiD73AE2ZZtz4pwKCQ21I6i5KINp6uLpDTBf/ni5pvb4vhuZRagyNc7qdQ0J0uJIWjmQafrDwmNObQnz32+svfjY9XmeTkkVMGHZ6svXp1SlChDVSfnDTL789na8hKUC515JKW19fBql6Wj5SI/GqDsM5pKR4gNQj0LSRS0P88Kv19OqfUpkcqjmoWwIlArU01HXy2hdUr0vFk7IxWfbwpjkJo4maoHodkMdVQFhKS7+easwtxuP7rPezTfPHt+FqahIMAYVLHco0D8XZKi0LhSoazKCoqK4AVERD1Uyxm9xtsjKMYSsN/BkZ6xfO2VH83mhnZBOBSHhrSTVcGE4XedQDWkt3TSBs4XZu46RDivAgA4O3SGkcPUl1DOptkXX0NDJVb3OkHGPNrl7DJYLStKZmkQUCHVBYBJb1PmcJku/TwVA5iHuRkFyophPq/3K6mVI+TqOadSUp7bIUdfn4oIM0sqmoVdFnsHzb04i9Ct1Ifn1vZiiwa90g0He26AyhP7P80UsKChOE7NPDfXjjTyxXQpCSteHjX78Hbx7qqcIl13JqJUVtIgqnmXikgd5k6GUXKMIV7PWIbFPJ3dAg8m4g6qbMvNi/yvPv/Jen+pSWlR8u0+oWaVDP6JKsGyusp54Uk46DZhV6h4JE2WFJBRiGhizhzgx3eZrGqCJUaEgXPSfUtPTakhtYDACi2m3OCFASHdncPMS2QxCBNskMJ4bHm6fafjcNv7j+cPDDw+/ursqFZyRrJUzBdhySlRR6TKaCaXWx5C73kYb5ELMluZ7K7763JA+342kd5rH5rX387dui48Op8rbkYb6+f8Ul54TzePU4Hy5vv/vJw8/nfL3E1cNhWvG9e3390Y+sMQby+vEvvrk5LRxjmadcD//v082v/7LcfPjmi0pho4GNktR9UMi6jq8eV8UlHWQJyV4xoIJAraOFJg9VTdnpwgF0kXBVEXi4iSiXi1Qer219/JW/v1r+02FERERSe5z8er5q06zv5JvTEzmvzClq9pDkZIWaakQChHDXbNy3J3RFLri706zR0Pacr6Qk3prqvAaCSs+okmLSi6EMbcinMS6ctEhqKEWvx+baZpuipNt44rXBg6wMO47liWNbB3NK1MIcdcAUgwwMmzUuhppQBVwGU3gJVW25mktYwLwMQG06md7QqfCq49DObTou8AaRZoAibGofPo6jiBxsGMYh6WDHq1RrFj/902+/+Oqbdo2WLSgQadVGZd/51MPQ0jA3es/eXEQlvEpyZh88AEHYvme/oICi3LysPsnv+yTShq11OmIn1vbE5Xn160YWT2SwNYGYkb1xwa1z0itihopsEjxkgGB47I7mHa6FbJ15bmA8Ydlbkur/3dvLb3g1PqY85LQszojAJ20M24CG7eBpW2AspqCYFvRaKnn0GkVhokDqo+YargS97tB/zyy3xHJj+28BUHdUoUO0QVWVgKq8gJo9WaBIJD34xez6dUleh/dJgwAjooGlrLfjlEVFNuYF1kbx8CatW6WoGkInRVS/PL0fXh1kGh2Xd21KK8a7+1hr8JjL6Ndk0pv5/qlN6V2S01VLE5fBqYfC0+WQD4vIA5Lj+AHUV2JtDbWPpegHCaR5+FofR/QqMdcazVTaaCGKkkRJjSZo0EnU9/5PRxHU2c+7WzLW0o4ijACTgBRN68E0Lw/xs//t2vP1/DqlIedsNqaSOK9LGdME83VL6NShcFEzQhCyIdmClCQCYNpyMgbUVNvOx9hvb1OFGKz07R+JAtEhniaZrJk0qYEAHUoi2dX907Weh59+U1JuH/OhW32Hj4Y6r5I0NAel9GRadxY+Cs1MxEKCCPcWomKmteMQ0jwg4quYGhEQGAQSKWaZ6E+jKHcsmiHMm0HvO/QK+Uqn69M4jvdr9ruToHKwrIzRAQu0vfZX0CDbiOE2ty66iSr3iEn0TID7Ct+SWHkemP0TQz/P0OELgPb589uySypEa5mWUg2ohiIcfa6ZAI3eXyRKIqJ3Fxjb1I7EVvPIxj18Buiy+8A2/vX02/+ib4+tDAiJmcc+Q4D6+YFs8J9sMJxIlo4aZWwi36JQUzlvxU1QnEFXhoJed3HLfvod+9WJbeyBG+e6n6k+ba1mmtnp/bYdvEEoBritWj9gePt6zhHz94OQQm/Rgmxht8PQzUS7yyScKhHupsn66WC0SIO5O7nM92YPt3bEPw7pcQ7/IOM6WuMPy/X8ymEa8KMf9dfZD1qAmiiadHl68/HtWpeQSaWFfRcpv54Dnoiapb37WT29XY7vb30HPEQtNid1VaW7JVq2dvDSLKNupqk9Bd02BQE5Mhpp2zAUYXBSRcsghzuPr9bvLB9TXA4UkTA1Qk+jW/HydMkyLv1kp2pKp5gGupjzdhOaCmXL8CGAeUARe5uv36gEyGCfDNz48XS6ihzGllh4vjJptMSVIkEd4sDQCY9HkxYBVm7+w0kjoFpWTciTJzSjSm8VqQpFyIiWwpl0A7CNuolBsgXUGJ5NNcB92pjNmUapVTpM2mvtDppGFeJIBCN4bgFQrXmuhoe1YKB1tp9K8tBtdTr7kSACtrmCiliv/UWeeQUv/bt4XjV9CT8z5j577B2ETcOy//6WRW/RARBIMgtpbXQkK05AVNztRY5E+mZPpQZ9g5gVwm3YaLt8z33NDaCgtyZp5k9ezV/PtzduxbyktVjZ4tMzFtq/36bmIMKuP6SNDIOKBR3dTlqEzlF6/d8E2s1Hd+FQ7rMV5CayuofBrdbaDnVjAwVFk4pFcB/F2F8vIkJd9fGdHb9SN56+fho0yPDGFhKcDseUEbGxEtgNRoIwsSQharLp0C793qCUS30/HHK9Pn+Pu/H9AYuh2AfXOLWkcUk5XZjPt3alIbnZymFo98vp4StiPPjqYZTz67OfVotL8lVT/qev/+UPI+sPvx1pG22rwjKitaHB4EgLIjwjkOie4IaNBbmVWiAVQko0hyWb+2yGOIJgaxBenb7xX54P85urx19+M+RxSKKC4BotJJBEqq8CEYRIUsGm1NRNQLdrHNoxwU4hF5gEPFr0jUOep7BE6DTdJ9m2/ix99hqGfBBFMKube4iozkfMemgf30jzcWxn8wZLgtZEs7TF3FLYtBogDkl9L1GYbFo8LfqG41SCoV1wlhVJIdaHxDW6c44IasooYVOlQBCRtjEVJwMgXFTUEg4Eo7aABI7+w/1AA4NSyOh+nT1T7rQ/NronE5CKoCq8K5gjPusCYv8HFX1YI9hr8R9v8ftC3wPE/vxza3G7LknUta4paAbv3Qt323jBe7ssdCPfbWtEFL7xGO2ZFrj9/9ZfQI0hLjf/4ouv/zAdjx8PonRvMuzWOvZyoNuv9UCglF0cRCyZVneKClrvC7VjeMdDCYjQsxMeG0F576oAUDwPXeK57Nw6UEJICFNKigV9ZLlsNdMe+SxFW8vV9U9Lbunwvk2ICG+uiHA9vpINrZT99QgnkjVlUFQGDxlMhMkYoRp5Ql3eq5YP7Wa6TlXXUBkPI8XKKHL01lbh5eA5TL3GZRzzuRwfeLW0YXi6m+uptOUmjW9WW2fPcXp4/fHNcT5eMB8yi8YmIiNEEHmNg1Wdmgi9WOs5q+ZtJ+CwRcwtg9PZ0oDwukXRzmuHlxxxbO/8dJ+Xh+rDlMxMRWQgaM08GikcUNnHP3IETDZR6U+aRQ0aYi/MPKp48S0129krBEUJUYuIEBFCs1Gy1S1OYyvE2rBGiKKmiyMVvasrp1SrZMuidFenOsKvNUkwYpG+360dahRVwAbrDlIeTIwdg1SS0lQiaMmjMSsj9YpSNGstPliDiLCD9hAFrd90awf55N5yUohcRQuslx5JnOpJw6Fatx3ZEN0Ky9mbpNhMQfDJSv2s6fbcsPr/9/HPvjoFXdf5FGIJhFBNvA2yBZ2+xUefn46IjUS/bauE8IWS0Ml1+yEnl9Ti7hf5nz7cvb1a0+qipaGNO7qw/ZJv32gDQHslGSqpnwfPqtDU9dYVHuK9ADxrUATNIoQtEB19oPQaABIIsEfCbZfZzkRvpUR/2w0c6S1DiMA7bMAKOy8pX999PFxk+UgF6bWFMpoMU64bVRM9bIlGBDUlUwQsoUVYTowx9R7qOxkpuQ66lIP8483tJFerWvDYRm+ZKjV4HB9X6oBjqjWng5U1ruz1sZrWc1uZ14+PwzxwgT8O4fj2l1X/0yX9/SlkLgd09NXoAUnZusqCWHM1ytDCzDc3DGi3PmNAoIKgqHVXLKZNoFFUIB4uLR8Wf314+Hj9tLz5rRZKmKpIDDh4Dn+cz7qkXCim0W1VAfoUlK4cuaWnDH8WAhRBM4S7GrsvjOzethVskPDaQjT2DYd+mtqE1taTSAqKmmoAHukgVUcux9VO7Qd/tVhOGpWShI7xUJXIhuTYtvytmZaUjcooDlOa7Ky5VbY+HYMQjYjt3toYY1adabCexIpIQKEq0rpUUkzbFxbt9fIjRMCUTNxJIA1at/r+uRlIoTeHdpdydIc6QdAQGyj3PCmoW190xwCI58Xz2ePF3O7z9b/v/fuzCYC0chVmues1duZ1HzkkqCKMljpAubkBb6Fpz2Kenfe2HH7r5FisV3/xk2//fhi+wKsmVDwtshuev4hFPoOA/T260lCghQOIGNnVEg8Qy2lEYspSXU6MBilpDhFvne3WI0CvJnZTdG6DzLqBOzuEQoqaIUaADO8+l1vyQhDa8sPjePhSIMm+8UQwvDlqqzjeHZykEKIuELXeTVdLmhRhCb5qSglk1CZgK9c1X3wI1WlN/O7d6UtJzdL94/FyN8+2HqtPS9LH8SDyeCjLKt6+Kzin9/Y/navxaUn5xmoujX/DZrya10W/zdOZjzZPoybdAluPo2Y+siHLEhUTXYYULupU29qsVXt62YsstezNKapNtzgsHfIMvR5+GH5WlnF4w9PT9dFSNlOFx8xLLmM7WfpufpqCafRQipGQtGlxbKOrfA77nagsIoEQVdi2+8eWDEbAJVBio2SR8IDIJcKGIafu/ogh+iiYes4a0uaribXlRLIFKImUlJnkaYQecyQl0Nx3QzKKBqI5A5bgkmtfeEwAGMGEUNOosBRRIbULxiibq6VNfBeymZkLGiSEwmVr85kgxDSmija3ev+Vdgh+Y9fERrTa9hC6UxQBrdprXYgwNpWWTxMA4QvFclvQn3UB/nihf7bfPme4+9+TqPTRJbOuuicdrdV9r1QgQNH+bVXp/f0+qa9FVLz3G4kubMKg1vbqJ1f/+P1f5auPd+1uZV381M3lRJ6HhsadGSYAghy2M7JtDf1to0UJhyVT0cOVtQZjkGzVoSrsPj7oqAziE4hk3+r6d9mjBDqUIYwq0ifWNnxqQE8hTotd5le3P13Ek/3QeUvhIaV5Ot3pZauQBOwRwFVMzcQBVXNPeTA6dYoQ9bUMDrPJ5ekWHKfl/smv5sMXZ8qSlnngYRR+KPLh6sHb7284h07rD8ttG81/7zoMBz34LH5V8/H+tqDkFOVXT0+DDTi9pyNp54lIVTOBsJ3wxCPOxyLWqqdUYkyCVGSDSwAxAp3BI3iylOGtVjURqPhGxZN8io86/lBP3/wCj8ejqalqUsVQck6OGvOEY7oENKdAS/AW1hN5faagdk6MbSOJIpK9UZRuWxXVKw8iZ1IyfWMki4ZAUm6TzkuJsUlFgqdcYc2b5PE7vIr3+cv3Y/l4/Bnfv23LXGQY0hKHoT4so1ES54HsyrKb1iOaiKmJJyhKYRvURUBm0MNbjC0k27JaGry0LiNPAskYsXCTp+kcIwVoJoCCh33jNG2MWsZi4WpuW0sNjS4pWufqCwZxmrn3ASDqtr43Iu5zdf3pXBVEtlkNAr7DJz8KAFuc7/AK/3zdkGR4HKaHX3gqb77TFuY6eomhdMc9YHBoQspNoMm9ormaRNsKBNTu5SF7/t96QGT+9otV/83P+OvD+qt2XNpZyqPY0k06d0gSkHX7kqkr/KBILwt7+w/wro1kTPQ2Q1I8fpwyHA0p1sIYtDWzfUZA4TR1mAsiYKkHg86q3AMFJQI6TlZ1oiFgCPfoNUGRMbO0p+E3q0xvX320mh/r8sUDo3m4r9Fev33/E6WIEZSUFWZRyGTiLlPDYK1GRKikBGk0Vh5iKKp+lOtCKzWussjID673d+/b4Q+Px5vlshISfnifuLZb+vcxrLpe30+DH/23X1ANFlpxd8ExP9b85ZJuCD20uzbDmmuGI50n6uDF8tN0tRLFBj4wiQ9HhAdqYNQS1owBMdPVA2Z0iBcxjV6ikcFJ7w/fDzxevb/8vP4g5a0OqvUAmIFqox94ZDrnqk+xuE+DuklNEqKIFna0KrnJoCHWZgvNqh28kvBQlwPXwvOQ0UJ8Auih1lIeGsvsUIYCbuGcPT3d3NU2qHni3bLcPgxzs6O5Pg6p6R1mfrz+6fJB29NwmpaFVQTnJZ2uSxmvR2a3itGcjS5ZoCmamlCHRSDpSGBEVBcTwuC1vT+MZT0m3CBCSFx5izzGCg3A2LTaVVqKaPVxkNpObaUF6AkuSTyagrTTbOKny/2bL4U6DG0el5ayaL7omKNQq4JAnVvveJSsVEsRTVUgzGSopNZ2baXYbHRdhQ1Q2xb6JrbQa7eXLVCepQM2PE823s4QHhSTBFF6LVhpmcngILoEZw8rhWJgk7wPBuw6bxuuqD1UfaYPQArbDfH2+vq3D/l2ijVapOV+HmTNWx9ItwCwsYqlbG2AzdBA995G12JVWaWbrkEl1qZCl3Dv8z2fenm+/A2EPIsEcivW+zESIpaS9Q4jEYikAYFTTbm4DHgK3Aw3nDSVx6f6NHplUJLcy5v8almuc07wAE2pKrlATA1GE3FHShINvdlQW+viJdJnrMWpqbvQaxzn4eZpOd64ToOIoMihXYYDsinFRC63l+V2frjb0nLelTqMcm6DJROSSdwp8C5WBR/MG8JFtK4t25QYsNTtkwPAga1Q2FXA4V7FREAm65aUPTUN5CaCZUX6vuS6PPhqA6sMuQg1whyipnQfmotYsoUpaWCcytrCBl1NlnpUjBINIV0+QER66SFJGNWbJQWYEzBviUlqIeru+y7hAg1GnCoOw6UMq7WHWst40VxqsPyiXs6rHY/XKuuCQdcL03AFnlptZMR1ZTXLumShjOEqfTo/N4h5XYOwIQuXEBkQvFiSoA6DCpYy3a6QlFnbknNrYenJhGIQv7G55OQmpi5peMwjWlgScSe0q31EyACaoZVsCKFkv7L13PJ4ChYvoRnsg9PSb3RsSX8VUWCTLf/jDP/lLv8TPxLuKjgvL9gkyvYaEQ4xIpBEE70uwzLkw9nUQYC+j3AAQROwi3ASIqFKxjak11v2n3GTezEeaKdZf/al/d18+2ZYVhVBneuoDZ8FgA68CwS5f6C4CkHRZYtoWwYght2NgF40JYp4deo+P7C38bbvTOlz/b5lJkw9AGzz5rL5gfW8v3dTOqXHVKCuGO/5+ObNL6Jl9Se5Hde2LiUCH+uvfvn+mn/1IQ3G5p5Ah8dW0Ww8cNds7iGIqKPUKqZQsw5GdPL9hjWKesJDvQUthbtzrMf2kK8eh0gUEbQ0lbrEwbdq2lpkfXpiMlMAQuPaFBRRAozR2CiWa27N4IMENCV/KTjTUo6sW8LLyKJgMHLvoLxcR4Ti4lHbw1R+81FbMovAsAk0wyW5obmJWgKLmyWBDjV0EoZfpjTYIDV7wGsa1QwB1RAhqbpK0kb3qVaqMrJuEFOpQ2rN+5cDOjMxeF/zzaBpPGfWKPeH5ZQrTet3x+vb5VIfThIuaireJApj6eRSkF6Qk6Xkq0zqKtK7XUkVOuVaCwhGNyX1ZjlHKwTrcFWXkKmUmvOYVxWNoKhJPON2KmQaM0KT7lVLBEWzzn31iDlU3BEqjNBU3T0PitJcLalpo2V65Z7cswuC6ssENUKep1xf2nncd7l9h3tu7bFPU/U7e/cp6JmAduk1QFz7sSZIAtp6NVse79MmH+TxPGK0teU2ytbOoaN0IsDWvfs0Dm2EgIjy5u2X3/0u31211VP2soSpDFsAArfhhj2OrBv0FFsJYBvHYBRw04wiCemriE0N8BAlGCHPPIfnAAB2jyUBdqlQ2R8IiKSkwDZ+TIQRId2mLKvW1i7v3w2v7x6N0dbhEFcrwoPx6oc7u3r98fEqZUOQRrLPj8HgMAvQxAaAVCBMQR1TmIhAKEEPqoR1jI3rIX6Yb/KcRNhKIKe22KDZtEtNn5bT8G36oggoVGLWMZ3vcQ10yyaa17bRFIF+ckSQ1gw5xsW7FYpo65wVrkfJ17VsfQ/plsrdqUaBPlYNFbiLabG8ZKXN5ZTSkNyGFGYmooqogIELCCNLTBMiZzRnktZa8h6LIszauuVzJBMCkkQSBDY4a3OS4Ch0CiJBFNWf0asd8MpHf8AhnUMHTVgVRanEMMOVlnSmmZLxME3iTdNZLCcVPomJROEtI1C745QptCaNNU7HRdGcApVgMDiYUsQjPHTKZbkSOGAqc5Mk63qjKpAQ+8jToVZppgpEvbtccBii5d3fk6piRHFDXXh0KqGiWiNNSPmwrNwMv8ZhrWt0SQoRQBURtmUA23VVf9a12gMAX3pu2+2NfREI0DaUbiMS9aiwZVWfvk8SJBeUQYnRu6yRsQ+VCABYp/ZbbLsluFHrN0YBt6W16wNsfXGmRb+6O/7P7eqYHCbBx0fI0uNG35P7V2vbsftGOujoxzZKBcJVhPs8d780auo+iHjbkcPeSuj/2wetNwxERQW7VahsYVUBGwbbzwiEMoQzwGihXsNMRvvFzaviyS8Pa6zz7Kt7RHy0f3N1dZTHgypgKlVM4c1Hp7BBpbkM1LRA1ShM6jKMCGE0iAjCqcbWz5MijR+ebq+biUCTisnweLlO7Wj9aHwgC6dpSUDvBY25rDpOS+/6bSeyezZDhCX5ZhgHMWGTnJpTrEJMESQsTbbkzABU5UJCLelZrHefn3cUOEpObCXfHZb1ZjTNabIhmamoRItgEBXe4C04jhef7HKYlyq04/Fj1eBwpWGmsIN3SAfqIcnIV/PTquPRHmQABNKUFUZPWVKtsTtT0fp4p3AAKqFltjScXKfZsy4cDvU+dBxEk0BbCRXQq9iBQA33MeecJOgFB7SmJKGGYHO2FkVAuuZ8EZCSp+KBBG0m9eN4sPiQR/G28kSkQVJakmLXUBY1yeI1p157a5/Ata7A1vc5p6Cc4+oQVBNBSprP5+uvVlUGgylsHIp7mCqDkBBVhPuzMn/nr+4t7E8CAASbF4nsZrY7oo5d/wBbKi87V27HZK3vp5KE5sYiWtMkwlRFJTyMO4U2SAiZGeERPVsWxr7r//EQcP+B1tNXd/e/H8chWkILXFbTiiE+6Wl8EpQ2Se69xyHbbCJRtJ8AgxDQPal3F8auPt1/c8MongOAAhtE8dIOwRZGIHkcE7ecXUTQgmIq0sZUV7+9+6/OD1/4W//S6VdvRdbvlqfHx4en5fxf/Vs8xOHtGK02Bw9BjTUweCgN1h0vBSYdpU3BISWXDgf0HUiTN6K32m15HF7X+UYYsGTasPrAOhhAtuB69fHxbng6+IaXGC+zH3Ozjd2skARQm4FQUg20qK61+lktahJhqMqWwFlrOENFQoKkHPtgR19lm4IqI5ASqq+nCNP1fMg6ZNE0JCRLIqbUAUCp1bwuYXQxCTJaRhK6WFCyaNYqrdGGLBAkotu9QNBgSUwItZ6/WVAHFIzmrb0o5+t2Uy/lcO0LTyypUtyvSyQutJlDSmzzoK1maH5da+jgdQOYkJNGSypzG0adK1wQofRx5eEqLpcxJW29YxFOSI7ohIjpsPqa4EY0F6tyUPpw+qAS4RK45fw4jX5gtJQsHtKVwGVosCROsYg+1OY52tyGoYUqHeNCEu1y31wRYhEpKanc3dQpaojucN+Dem9uf77d7yvtZfm9wFvbc53ZEnsGsMUH3XKBjUogSV0oPkdaeMpwAyF0TzuvzkMgDFeIKBDiRB8X6Ee0O3u+LOp+gd2uDzd/83h9d4w6MHBpICzcdwxg27Q3CIFli18dPRHVLW8ZRCIIlG7Iow46hMagQ+FbQPokBdgzgR7s96yHz7kHBCLMOWELkgqDrCJqBgpCknL925/85W09z5On0Fuj/csWNNL/cP0Vvhg/Pv37oDenvKuNrTR4ozBglWArYkcyIgZKzaah2TuzBJ4sLGnHJCDSnvSKLdHcnXDB2Q8ReQtNhC1nnYBxgVBIal3WZGi5Z3XKFkZnEtEG0pMJcyC1ZljyFN7tU2Jo7hAyNfJJ2ZQEJTCoOiNidHxqCIVIsdZqITq1S70dCYmIwDKASguDSiTCJYmKl2P4ENFsDksRoo8ypHzAU5UIyzksQkw8kCTqIvpwOI7O6pmEasRgVB0Bz9ocm9A2yNCeH54crc4s16vVh6HJKlnCVA7hdJsOj7mWZBjPTh2ScGWXA6gqiJBQw6LUKKNFERMINNMBQM1bS4AivE0irVYP9XTwUmRCi9CczqxCT8NRvAYRSSBkNNekKUlAs7hDAiomNGl9fM4cKq1FpcArrfm6Dtd8/7bVVivMXOHFlSmlHn+pik6Dh/SMWPiccD8n77Jx3l7igTyv/B3zwidcTNn7lnxZpASY+m+VNqyac219ODdefAkDYgjGKh2W6ETXl8/dhuGeI8BOxi3HUaZfM14dLkVUhu9castc8rZUt9kd2Rie6KhYMG0ZgG9reVEFun/g5u6trF2ixJXP+gHPdKLnQKRK58aZ6vv+p9mKQCRCepwUEQ4QYak+nTEe2nz/zf/pr9cjrsPHtQzrOv3QXNQQ1+0/8vJmmX5IQ8452RCUYZSkrTMUZzWfZxkkvNaARkWONeUCSpA8J3WoDF12F6h+O53z7ZmthipDHqabBVcRffqJt/+JXzbe0LarrdBRiJFbR70UVyGs+ytEtO5ybqsc+SBjLAiqRWR4QImBhkpUkW6J+LFbI3IsTlK0bhhATayN1qZHHE450T2xqWplQEN58iIQs7ONdK/za/IQjWMptXqcriVxrkerPiTkSYqEGwRhg63nWbJDvTDloVRJVoOMJhpLVvEQ1N28takqGSHJP8jRai1XKEj2LqXSKE7NES1EzFRZuI4j1zPs1qs3kgcbAPF6I+VeDsYyJg+koUKWc9M8m5lE8wxJia3OKuGhOb+bp8E5sgOLy0/OVZN7oFvJqz341Vhn18M4DNrKjVfRFC1FtFpDrxldBriZCbwVHbSG5nKLx2rWHjwQNkw1BK3UUEu2c/aFnWb2sqGyKybxRwn3n2AAsq+GvVz/BATklnRu7bEtJqQquTjb5e2lTIen24tRDqjNmvQll9yhAK7WpvCQ8NAgU+lmvJTYa9BejFRJyVeMfDX97G8/ptN4n05zzg8fgqqttecjdRcT97QxsCmUiAhtEIblqqZ9MDWwq5kA0YnaKqQ7WBRWK5Qe9hxIoAzC2HqRtEVOFQiCGFqYuKZThgJm7ghC1BgBPcjFDnw6nMq71/jY2vRwXGSU07XciEpEdfLG3XPU8tTH2UVFRZBFRSEYQZGr7TyDCHfHVdJChjuZomKYUlscSQXxNApvGGMSNiHjcRw5tVVbEo+w/Icr4aAR6O7FUkKy9XS/IUsUryGKVYEctBSUuEjiELPk9jCq2xiLW2kUE4+HwZqkfFwrNEo6SnhAIuYObVcnUoK3ETZ9OCAwulvHCSylxFNXGZd5TevtOqxCrEPicCW8IHGGSGiK+9Co6w+jckghFzlc0sAVaSQdAyjHFBhZ1yvJ8JnJWeU6+WH52XpJ5+VUuzpE8hC2nOvjlE+8pNdfv7GHw/FDnZY6jaV5/FS/vtzIh7un8XrWwzz4kpJI/mCCaVwfUnNVofzwOh2wxO2p+DTMpQxBkh537qrNl5hSWzSPY+F0eHhqlq5yZkiLCGgav8vqzQThkkDm5QazT4cn4fnwy/zdOaY6x8T5ekSNLLHY6DWGvOQ6Lpcbij+4DdbmNZu0JQBEsF4GtWWeW8mq3iyJZ01Rwzaf8C6Z0cdwAaFoBLpBn0Fg6ntasIF2faOQ3WEIGtFpAnuDYPtLEAJVJELNxWcyJAuNREd3nouO3tGsEPY6jyHBztD6ZNfd8fykLBhYIV9c/z9G/hwqMC2XKhJO2IskUT+crdZn64W8ekDJ6Eapz40p6XrK3GBu9FIGAXSldXCDxOAvvZFnkHL7Z0AgpSslaN16ENFRtNhmCXQsJU15+fA6J50XG7uejkKhIpBE2P7GESQcjPDgvLUpmvS5coqIim2EBpXcqy7eqTdIXe7CwfDQ3nbxSDRh+EGNbXUZmtMj4MNxNLpbZU+iJYl2UKdbGmjqoIhsM8AgjN4yRCW8mGowmVYk6yIQ3jwcB6EFNz7TCzMbo0cUBMNKrdmdHiqqNozZUk7IKSWIajVI80ttZFOjFjP1GsUIS8a4Px1vBMvlGk5DWxlC0KG1NYfgxteabq6G79hrTHMMutZxnZfLAinP3GGGuwXrQQqkfrx5sOP48eGrKohSMNzriEOy1/cqOZPDOJcYc1tfnc9RpuH14bKOV4e2sIoDuOjg72MawsblMd/Fx2ltM+x4dYEeorVgQ0g6tMLKEBVrkbKUi0pidHQdXkKnJtYuMDf/bh4wxaW6Nbv7eBhU0mBnoSSyyqgjZDo5U5KochXemI5pFVV3xkeb0pa8R5ft6AyRz3J7ISoEuylwR7REhPFpBvCnuQJd4uOPpwUJIgQpYKmiPVFcJvPU52p6NbhlESIMKckakq6qG3ebewtdnqe8CTBZa5ZifXv1q4//9PpwooImy8dmGk6zvVtAgI5NuWRbiQAgISTDQadsRgukSOxFEElxpZLUoHQHkeAndcjOIecnJU+PgSqoogy11HUNsIWhLmeCgA+IMF/W/+fb/2CnD18vCWamJgrLw5BthBECeNfXJiEJAnxFRETQo9Z19RBhkMQgphvTw0QEkURFJI0dk+NbABrOVD0YrTWK1LVBwyPcfUytNKiZMzRiG84QsW7qwgoKyLBe5MECydAaKaL0lhQNKnFdl4XDYXxUMcjmn42o6LSOPhVHdFs4HXVFLe06AtvmT+/OD4xwiCuGdlhzSXNEk4CJAE6IeNDAyFGyBbIXYkRUEVE6PdXFJSnOdOfFpbZQTYE0Va8UplYaUwrZIwDD3SNSlmopWmsyRzqKDZCGNOjTmuUJ9mVc3pmm6UMatboNS5uOuqzx4Tj5N3J1o1VyGMsqYy7lUvRmOCg9vlbTLjhTDqk5Q70AKpagG2XBBGJ0eoPJFdV8LmzVsrV8aifD9VBqjXwtxdXSwCZiDEIlGocBc1XT4kpP472ISLgumhAerKFstNxLaVKpQn/pxlTZkHJuDYFn2XvIzqJ7Wf9/KgZsigV/FADYiVebB+lCa5ysDl3og2HPCKMIwGhZQI3IIQjpaAWAZ3zy+aNbmDSMX3xx93/P8dPVENQ4Pyo84pMKpm2ch82olUP0561vr31FRxcJJJ5D4lbexK74HRHbQuTLOu/NwefDInoaBaFqqBJiKZmS6P1OCGlbf7OqcKlz/r/+y79s4008MVora4uj1+aEhOZxGnOa1HQw02BEaxG/Q1cYNx1OOSdr4a01jzPhUTshkSAnFYolewR62wgdB69BwCQNAWULHdwJNteo8+LQB1jqPr8KD6gQYqx1a5Khd6c7t18kqSPEDB7KhiHqfZ6m1ubFRExFZK3BJOyq4Hu7XdiLLLFUxQums2ggaTIZVE0Fph03YQwyltwsNYDuZmhllWEko4UJDuEU2pVL80BLA0GR6G49mrQNA6Od1xsnLDHiYB/bQf3kRa1x97PZNAHdR5amqnoxu8RpbJ3FgHhbZJBCW6bMoZzrmgaJIKbMirB0UseI+p6XPJRk57uPeqNx+Mn6cL59zff1PB1H+OyHWqCFo5s0JrjmPqSLIcXK8Wr1WlxCZ1ra2tcCy3ZKtaXpVNac1VuJLMFo1fqGpLIS5dKkWokxRUO1pEL3Pi+nJFtdZ5duUd2ZJV7bp/1Y9qT+JbXdFDQh4b4z/j7Nxj997GDqn04PgCQeDGXxtMaY5iwC1T6txG1z3/AmFTLoEYwG6h6HOgbPDW5HFDu08/AaP/vwd6+Gn8xVQ2Q9l1PzALztB+yd97A1MolgFzgLdtm+gAgkEPryJTYoc/sHNsLD7qja4UffTsMWM7mnAF0efvOTEd1ZF70ruFOGRVBVVNf79UupT/dNH8JsOA5Zr6LURkiJVtdzC+lToHJjeRyHQX7KaK21WH15KKX5ydI4Dge9AkTV5JEMJ3mO8BbQREQEObCTZDWCZqbnkGRUnSNERYGUT7Fc1qvenCJVA07xoLZoLUdAxFD7lxBXjSaqKdy7Ao4Y1B1GEYGySUd2SVPdXZc3XaANW/ZoajXWpC5iFIlojRiieZSUk4mqu3sEOZWoUjxVRAt4KpKiNbWwIXvxdlDW4kE0EzBCQ4mghIOwUSmgG1BnjNKa6dNFfC7Dyw2sMKGntabc2nT9yCmWdqiEkLVlREmj4F1Qp5zGU50tD5d7yayRpIhkZfMYxilrGvNgrSW0i6Z4fHA73pKljz2isZhcBqGIqIMNItt9SU5rDCJkcWQNaNYoOvhjOeZ4Px/iNrVzG6Z2mYsKWQ+gh2iiodZhrFFTHvV8HrkGLafmsmmBeFvXpqO+9ObC/Xm9Dj3p7ZstP/HJ+HR9/zMxYOML/VEA6PQeSLKgUFnXxJqGcwigKvTcu4Wyo/US/R4lsNma9hxCdjx/y1SimTXPr/IX/7PFLcMtFI+PFEQIwp/HgJ/BgI58FpIQlQiCLuHSzz63lbwJREtsI3ixmSrtfIHtTDwXs753GfAcp7Yki01U0bRX9YyuyFoAUVWJiCHHx8f/27/8H63Sv3vaKFTXIpaGwSaxfJVUWtDDiXnDAG40T+OQ0mkrXd97XR9KbdcQsWQ6iGhSldcUQyXORLgDD4xgC0prNaBijqyAjl3aCg0pjflYLt5qg5l38Qh4ENF0nEn2IUehKATWxUHHQHWCgzCpMo0sNfLp8BAQRshR45mMpeQz9TagYgpwwTK1OvbIGH3eIiIowiYiZaWHm6hIighz6KDONg+jSQPD2EIRq7mYYTqLbObyQTbExyGpGbvajgn1nO/0+/W2rQF3s/ZcX+4t8DSNl6qOtNbroXVFTUaTWJHYTtL8UVXUvGGYrOYMZl/PNwOWkg9nltZa8HKAMz99e7o93T8NV4YIiCiaWnK0s1CUxZsyKsZB11Z1QJ0HR7KoMVanmGhTiTRq5WynMH/SKQpMa/boLpCgN6oOrGvNY1XOZVKiiAAeNfrEjQyaNUrsszEUsdTwTF3rNWq8LPxNJFAUWw702fr/U/v8HzUKtp/2rmDqyyCW+RplGmT7ebS+6nuTH10CSDSQW8fhU5dr+HTtbX8zNB+ub19d/v6Vvy5rYkh7eEolsNtNAgCSEyoRug/99DxUOg9DtfWKBz3b7y00dAGGbcCx3xkbt39nQO46AHz5oniJT0EBI3LejN5BImhEdNVlQijhvJzb1el1aVdyv/bEQR6hEBVpImom/z/G/qxXti07E8O+b4w5VxMRuznd7fJmn0wmk6xGRRFiNbKrXCXLMCz7QW+G/DP86F9iv9iAAb/YMGDDlgqqsspVhFii2KhIFpNdknkzb3u63USz1ppzjOGHuWKfc28mAQdwsc/dbcSKNUf7NewgWZPIZaO98wTf33tEFs0pCZ81RSd+4bWUZfa6uhCNVYYUrSoIqHwQAYTbKcpcLORQAuGOY9NhISOk63LqA1YMTQh2HUEuRbv71rGt1nsrNCjCqpAOFSyexCLvcz9EPR37CI2AhMCswa4o4a5rC4BwSQR87uqmuC4ukrVLV+x7uuYkTWrEqp6GwrLMjAgmuAs8gr7QIYKYat5IPYhpp57UHRCF1OoCs5yTkG5LQq0pCTWmJBm1z3cl6WqdS6qHGVQ8uRXJnETdMk5UcQ9NHWBWHYV9XsrpxWbol9n6UeqxwPvLq9Or7uJqPo3JfHTL+245dE8ej6ncpW/vDs895bTGN2depm04bal0qgY81A0hxAJFNXRhRRpygb1CtpsXL4Z0ue0/ykJd6vSUpFfojKCEFQnORTszibvDphdqErivZWfAGVyJ0w3GjTPstT0qsFYALR8THu3Wii913n9TC9BUUCg//5X1HBICCZ8XRGUSeMPi2vkvnueAMCQ40+Tt7mrb/1YBxPnpBCCJS+13w9Offvz94REsI1BPc54FMKe+eY5OnE0BzvN9OGhgk0hcWwoh2mjKAxQamwmcAxINEb1O89uqv7ZYgvTwdx6GAQEDMkDNWTMiwt1TNB243s09gt5rWe7i6p2LdH/aLM+7sIgIjOvV1canxOkc8CgiAsmSsw7KmfRlYRwoqiq8FFVBRLJa5lLtsEwQNPGQ0KTS3n7vMOzChamYoFgURF2MMqWMCIF0GWWZKxBUwsPdRLSHUAnzsoK+a0jSKNWzgJqwTNZ5MA109+qhlSIUafVT0hIQaTdYAIyumgXDB88x7JkPYMq5y4WqYg4ohAI+PuEOBxy5ZAckRVkQxjzUyZhFTupIfT0xTJRl6r1CVSlmoRL1AjZH0jQFa2XW6WL+WXfZT9zyZlY5dOu8S9xrJVi1nIYxy9Wn89XhlfVVYAtyd4Nuk5iynWBz92i7wJBwP42Wt3J6zWfJy2tNrDItQ536jkPvx2qjZ33+k/5qScmWKoowyTlKrcxEyredJLO5XClsSd2ugjFz3N2KipISi2Y75Msjr8fjadw8mYqIYbyDprCU3CX1WGYPjdCu3F9eZks257la5D7falJEhIT7NLU2OiLCpRkivHVGSQRq20K96W1b4vC3T/Yvyv+y7ue/OgU8z/hT7ZY07Gt3853Dab74BAIwddU1IhwOSSQJG9yL0JauLMbOC8+2PasEkAnpIdK/enzv6evx7v/t2/e/uuxz2g/x2WHr4R7UpjF+btIJhBgkTLqCpmHuQgZ9EmdmDc21hjRv5XUUAhFGeBZS6yxo2ugN6+zIBoWd1f0aKyqoMJFwaOLClN1SmFNEo3adnRZIZYLXYvn1xdWf3k/X9e+8DsXrP/Z33ulOS94UAo2m3DB6Gs39NggvUDmifSEBbVwmq/iMqKiq9uPlZVaRk5Vlnordmc1mEVgRa72FCFNy0RCV6EXCQ7SukfH+6JvDsx/85HbbT1OdjryPi/G5ipjAC6R3ii0hvYeopErH6POMTaqGjtUV5tJpGbAgY2F1JNZ5U0sVgS4iZINaARBWebmJGGfXTqES7BKRUwoVDxU7JF75de2POFIXibvtxTwnxf3KE+6K6/GoOUzzFOxUkpc5jQsG+iKdq6SQutDy5ajz0e7l0idRqa8Lhimfq/9Q18wYT1O+XmYuSz6cUpIyHK3vzWuuXmmU254n0iRV5Bz99aSo/RM/vc5Jyly0v9MLXVTaqqJDEa8x6JSORcdtXRgQuOwWd+/6+V7CnJq6wauZT9Nw8M5Ph0OXe6kFOalPkXI9DrKgvEjF+qHusc0dpug515p0KRhO5dG8XC02LgtRgrMozUoMrUPgIsk9IjS7S/V+Tr2XYNO+D1CjvSUaDRRo7u2QYNXJWA9+kOEg7bw6X29Uh6z6Ye2xrD3V+gEJbGy/2cUl6xkLGvYmNQMBLNSmayapZeN1Cdg4A2/CynE87m4/OP3Sj7S+O57SDPg84+zavaoSRKBtJ9EOFITZ3WUNDW96CqA0GiwTEBbBNstimEQgau3W0nV9EmENgt3wBY1FCAnH6s8ewlBJpLuJ0qrCQ3NjwklOAeWhVMZTtSJ2a6effP742a7eDmCESFO5EzCiST+5SDA8FOsFA91LwFbeUW4hS05U0ZT0WlPur5Js3apZxFzm02ma603DhqddgEyquV2BaEA4weNlv9Tb8p/+wbtPc6m1fHz5/NPPl2998XI7umd1QwQzU/EIFzOpvbMv2R3CxmdTuJUcISRSQgWE0khWcrZ5wLn6PMacSpXQLIAxTdUSJGnHBAq1Sa+5a+7dSjVY847OYVZBXGUmlKiPj7P1UosHQVUgXCCMheHMkoV281ITiqu4WTyL/ibuk+vD/Ls9w82iTERlEy5gSRqeYJvRbsqIV+94leVATRCRWutWyuGOObFYd4F5vtuOtrfcHbTJ7mYKw+pctRefPDZWawHZZRFWyEAvoZC9pi7qUkVyR3WtwRQ460yE++ISUaQf/D49kameQD+EvLO/L7uxHAbQvZ6WDKpQGEIiDBYtU3gjqIoqPKKNvn5h13728mqnm060VuKtOqGl4y8/zu3v+ZEbmODh21oFLMJT6Vy6HGsEMGvaBG911ERYqalpsQXjAS7c2Arr8bbtkReP5Pq3+nhX7y9PU7a7I8WF557i3NMIEVSjEEKkaiuJ51xXMAhGVSHW1mHFBJGr8p+Hrat8nnlOYd4aC6O0JosigMdZZJQukpPCnAKEIyqCROWDttLL01Hi67rM4/yZa7k93F3vcllPewsjDGMDlFur8MH2FoWi7Sbzurc5Vw6jWa1F+KIN64A8jOOYddfvkISh07IcTyX2VmbzCHqkLoVDVUJEnm/ydvzsd57i+MI9dfgPDn/78H/54f/6f7dc9XMlS9vrijq8mXvOsqCbBSY5ZmQrTEksWEPFoW0XQDFIOELbqCXChUBQipZHLrkkSRLh1q2w6WNKoEpE08XTql21UgpOc4oSqUnHCY9IEAGXGlZT4uxQCqpXF2kyrq5UukpOynCCHd2/kJFX98PSlr0Ba/dEHaJoKFWFXkPTvudcFaXuNXfUzf3CvmMa52BUi/isH7fdqdTrsONt2l7fpzrLEFNQwyO4D+YEsywMN497EkmS6nKaPY9XR7oFGIoSAckmNCojnKFtEhUgYxct0/AuNoMVSpFOK9Knm+3+5Wa7cZrloQNbUj2L5rl6uMWq40Iq17wnAv9FAYDBN8N2hLsIyfC3h4P//zwS4nz+gwCSBywosUw9kbuTNtcmb2JtZ63WNr51t0YToIJhHiDLGl3OQ4gu8uGb9t6nLy+6zSyWlr7s5+7B4KB9n0Q0Jh/ZnFyiipkrz9POJgvfJCoEFhQjIXG2lgskEUE8aH8+VABwrPDCxqc/B6dwb/r3ASZFc6pw6WvU1bO6sbiZ0n4uFxfvMbx7/dxSVw+fvHz6WDUJQKzTV6w7Nog7SXBBG8pWNmH8Fd+w4rqEc9vb1wt4wAJjLNNzM6/U3OcsGd122HV5IdxrNdZ5WebJ7ymiEtzcKbbyyR89ufliYa/x768+qvdP/uJPNgrSwwUIN/O8xkilTmjCDsnasD2c6GhO1shuHmGrkd9ZLRGBCGkuNFG6SVlkzTtjTklEpFeJCPJkdKhbdROyTsPkGSYNV51UD2FVNcnrnOIo48bMXVEDxSTRPEXAS4UB2mebr5ZpDiIKlklsLvk8YSICcJ+LAMjcS9OcFFCthPeLdHHwUTtqsB5Hq0sw6fY0b4Yt9cVuOxzmo8Wxeid12gpDRDS7G1Pf63xE1rCsCrOKk6YRPp+qwEF6b25BFVGbIotTSFW3pjftfhHhEUSdojsdsTVHDWUqJ8flGMfO51n6Xmqsw6lodgMUZzg8B8yDDPcm+qZsIIG/IQKcpS9aenlD3vqbzn+sh+789Ydp9zobS00p0b3u38me+31q1COPRvN5kCVxECIZc9vgnpl1D6oEXAUnOqvdRh/9t0hPte7uk8o8Bf3hifpb40qCjYUeaBl6/WNtmigg4UnQlt9riYPVYzqxSQU9vMzzM2kUaqS2shKHA0KuMCRv9hThntRLdDmZN1PDRgh167VWXnywCyZ5fRczkCRevb7OQ1ZGdK1lwYMpGkDqOoEXslKbBRkhJDlTCJEESlIUnkhSyHsKmRS9GUrxMEeKSm5TP/RZJNKgIEWW01Tnw1RPO9bLm3/96+PQwWrV6cZuv/9neeeTdM7kQpqHSbQ6sYqTOnarRqOoBs1EtTgiwgB9o8cWWAHV7T6RiIjJapEybagppZxyUhURdiTDAlv6Yksp7pY0RRlFMgtAhLuRw2osQlUzk4Z5QVRGo+OmaNzuCy9LyYLTUjxllW/cfyR3G8tYG0xRj6CbirIaswJUSmhlkhK9XfJgXdxdjTTvyik1BiEe5VndQ/u6z5tNKcFByqG7tlpD1C3BrRRRWUqjhK8YJSJEY3aqBCXsqKmHVesSS6iEI4wSXigUROybk4nWR3a/DP0y53pAp3U3x5Ddsmg9zsvJKqgUconmiD4DoAg93MwbLgUkpG3Cf8GjRYA1NUJbupKHg/03zvm//LAz3Wg9tyl5gDmK3HxtqLF53q76WuCv54pnsAybIpKty8mzLsi6gQthoPL0Tbyz/7Trn4RsX0iux5Jpec3Q9DV2NfGzCFVUMMKZoBJsOj6GdVAdCeEClY6NI5ogwlXwws2/0jGt8vKrUlmsH+hCD66bgtQxHBFmFqbtpSCqtiKipvvjSccPWNGVT5cQ9xCrNfplSEQ0DD4bh7B1/BBdPyGksbYamhCq0BgA1RkBlVUF2QOb9e+e2joUrcdx+RSgpiRDyoIQSR79uLny+rK82j/avfidZ+8NS9H+8mWfX5SPt5dTFQlH207GGkLJ2i3EJFNiWChwYNfpQtEMIJ2ZBN6WAW+5RhJBca96HC3opKqqpg5OZzgKRMOhymCp3sDLIGbkjChzbrGEc0ogrG6woM8oCHeoiGvLMOZtfToPnR5PSe8gXd8lErXvtnOazzmmXWRzSBSjDC0BBipzcvanUxg5bL8Yk2svdugSPWqZ01aWxfVimU/o+k3MkZKQsIIkblPScKOUPMBmVanFJWdJ02nSnPKS6GgISxdVzM5EBUzCTMIczYxpSoqgaMTQz3OVlH3xgO3R2WHaPDrRK9qJ8TbLitWvIlaXE5gFJUsFwi0r3X4eug/nmy6g3eJ+Xt2ccyB/vmzAw8D9zf+3ku6cMhPWckJuONxgQxcERWDa1uotzwGBlc0TTRXN2mlGbmQ9rsplsLR5157+fuTtuDD6JMe9jyvdPM5/MJzqQSI8Nd6TBbWJwzcDR1cRp8AlkNh662ALAKQjpOl/nwee60V5UxM1KHCbZQJNRiRcJHLOgoCERQLK2ihAohEVWV8dp4vN++aR7z92T4ylROons1lBdBRVEUbDI0DcKYzQNQCkdTpqQVKFAwUQkQSEa9JTE5KWaX03Om8jWotwr8BTm0uZ4SftcxbyoskAYDtsrp7vI3R6pUvthx9/42a6ev3718xwKEoXjgDFV/RmbG67mC6mRJ9FGbCSpLVexuwF3rpObZG+AbQEzTORVnF81wMxtHhcmNuuPBKoMElTgiiB6nBbkEuK2WE1GtyBUxdUIcItUieoDAtQTMUa4CIoDnk9dAGWeQevs4OfTwfkuUytlQEdERCp7kR4cYiGGZgZswqW3d5HP06XF2HhxatICnN38dPsedu/7DeY5onXZZ4GznfX0kEYzBQmgJE0LALbKUwwe0juwyfvPAxC9G4FmrSYkICoolgQXbTOvSOYSOPr7tnw8phHsHdGisPLNPbl09wHkoJpLb37lWqfIjyapJw3g1qstLE30fjtRyO2tCSGtRn48ne2FGS/4Ge/EhDOzRWAQPJwZ7ilA5KjP2t1ounwUeqKNipIqhE8CVPb2ENcPMjVIG8tJulPh677aMhbLD5v07KcIpVIsdKHukC4MyScpDcHNCWtzeyolEYtltb0A6JKt7Y0IBuoQUQa9OXsUriGtjcB0VeATIMNeZumg2LMKk6IR1JYDSE9yNGsOoSDnRzb3dNbgIdXCYdqVNgSVgQOJtGUk7TtKAENUGBVQFKEeR08ZAdpylmEQtWTZkI09W1jyS7gQrJ4M2yUCDpDTswD4ZGKV59Py1/2A0P67u5iHo+fXz0JP2SRw/3l8xSvn2/22qGmEcewoDthDbGNyNFLPHKDW+po7xwL3B2NeCnh7RJJv1px5tY9sVlzwpZDf7ugdh7uRnOlmAlwDO1oTBLwsFoSzcqCxOyT9YpoY5gYFWaJ9CTTYekTBWEU9xB4IJKbh0PePe6529jJ4ebadxN398OxO3dzdGkwCLHQTrRE7mMxSXOqkw5+2m+GGlu/fXL0xCpb77SGiBSRPqXl5mq512GYJ7vCVLVjlYzwQF+mECEeldk1wT839kOqi5PF2OWje2WnMlPU6+TbWknJWZNHFZFczWsQXTVo1LqL1zeXu91eCjNn9uXy6jAXDUsRXqboQGlmS21/VNBGaS0aUi08GsQM54H2zwWAVgNwTbdCeLiuWZ6rc8dXA8C6739YBBAOD4+09gBpXWtz3t3zcU0X951UC+3qqF41s1ub25DwpgZiS3SxiMbcqLdUoVtkMtWarLw3/+B/MH//0ZyXWERe3mzKNBcFAJInCEWBIjkQZA+HeSCg4UGpPYpBnEz0SEOlwAoZlR2W0MgJpYSWXpfCTjw8SKE1KmwUEfjDmoZqK3MywR0SVrc5TBMFNrdxdpuBVWdnhR2mF/fd8N2lm9H/SWHJqRg7idndRaz66h+wCVKSSggpqp0RZpA0Q0RgVktFzooQIUCmughJZGnv8joKYAjpEBF6yzh1CXotAynd+EiSw91qtZ/KI9pHT5dvlFfXcd+96C4Pz17c9aXkwffAuCzoklUhhskfyycv0p11t5t7kS484h7qDonCbihHdA7pkk/zKSUv0W2PbT0VJmU41YvbemXYLViSu2u3HXJShZC91QL4tD2kaVuyn4Ip+sMhLZIHVrvweUISlwpRpm7acxigudSQqIHcxqdJvXapROx91LgLOXQ5WVTmfEgleXqo6xYkO+mAJGJTfzGX0ml4FWbxmq+9HFOvi+wlm44wuzXtM9AljTrHNkPiVGVYDrIbqiWWWXLvVXbHurN9eplSMtcERdkLTFIEpZyGTqbDYbMb3Qw95Ub65NVYBRBlPW7HuaQUr1KngKQ5XZbDocs3Qy4edT8Ai2eNfXLrOx32OUWJlOCumWVZtUOjAykQ0QUJgZq1GqXJtpPeyr94kNEH1+0IYMDZn6iN7YCmgstVEKxVeA1Qzbq2xtaOxUNESCt+lDHNo1dN7g1a1yqV1c2Exl5EGXSJkPBok2J5oAVDglZIL48fXxz+ktuLOYRF5aP78MXQ9MYfUnSAjpQZnBrXSUQISgNFtnTdXhWzwoems1cRlAZG0NXGVVbrqa/0TGtr8GZI2i6PEOPQaeO/UNdqqK0ePZRis9+Wen31SE6I+9vkUrQL0stlQ15FssbVPK6lkpJoyT8REUgiqgLMQNQTuGtvgBzYauMDRUXI1BDGxLo1SEE0jHkKCMXwgGhUIjC/tzwvvR42P9v4R1ebLwavm3q3SSqCaIN8RHVXgWq1eklKqYflos6LN2FwQEVuQzpRaq71IMIesJCwk3nbQBNpgZx8GjLDPUvKWRWeVQRJxZFUVjnGsiyzhkRDtMGBWu+T9C7ErImoS2ybDILJ2gKuGY/ibm0g5Iwa1KiERLFCNT/r1wOeY6qCOXmVtIuDeBSBpkqAXiqlq68LuBUGHe7aKa2aNvdNvB63PHoabvue97P0Q5aw6j5tidNSu0EZ4eZGCXOhBSMlyL2k7sLmz7br/TpAEE63Y0hOhnyUQaa51yS2RNdF0t6cvIpaJef+KENndV5oy4Qq1szkw7NaVMpYAEDOqyfKmofxN8EAfu6TsSLl11N6vtPblupNKbwChSK10uznaosk4RAKZT5dnawfVwSQLNV0DQBAEEXb7j+VEFjoQj+PItofc6J2ueC94b2/fHl5fXHqc1pSeeHbTOnUY2XorwCiPHtzVsTaEwkhoCQaKMrKhv9NkhBBUdDDkcgo5inVJmWzcv7fFE1nKMEaGd9sH6J5DidhE72k4KHYErJUMIs7jp6271zPkvSnr2UWUkIUeW56ILIKcESTI3UUNJJDc3Fzb/4OKsiZFpSjCNmwAgYAGW4U8rAOE5UCUFpAOJNtmVDQJIRqIwV5WkrWmq/0J/NlfY2BdhqPLy6cbg140IyK1Jt8S8nGrDNw1zBUZXC3iIir4qoAT4TQEUN1Saw1r9dJoXPKt3L7GCbhKeW+E01tghJcKVTmKSKF29y3VjYi3EnH0t4vzaKCYMyEIas1hYZYIR6kI9y8LSrhIRpOZdjkral8gIKniOhkLlmcXRzRKW2pyKSmMF+6lMah614IBaSNOdFrClZj0nCbap/GethIYLPz8iq1EH0TTJIkLUaIBFxSBJLObOj2K3idkC4rlXCPCtEQSV6MYWnrJzORiI7hYNiyWlpPCE3iJdeTIvJY0uyiRI7mlrqI1OIpSXi0pb97aDO/CZKCaL4DD/fzw139Cx8N5veg/3/+gTeIgbU/f/vgvz1iTI2VL+yWY6+RNvB2Y7qZNppuW2+VABgeGZGiri7OK2gHAGFJNEm9fKr6Fxf5KqzT3uNlbJIbiXQ+/w/tDDox6cWrBxBKAEJRb+j6hqV1E2kEobYfVZVG7FVzc4oCq1jmWy9wpVWt5II3V4ptI4gzxABAgwoTJHIIRGKZl4vNN7aHkOFjo6ALC+1zLKIIqB50JUY3CyasJA7nslQK2GRBml1QQEREVTVrA0KtoVn4sAxd8y6FTTakExURlbyWiLBqHgF9HY/weX2yvHP3uq+vnswz9rdkEXOoAG2ZJTK35ah7kZ5hOmlW8boCOsxyqrU44KoSAKs5KW2wEwEI9JTS3J90Nm22d4EAZhGqhUgDrUCy9Z7RzdE01aqHUEWoXqsQm/AAE4+ZFpkNlbG+9Sv6FO5gdWlS2kDDdjUlkzgLuFoBBMyHnGvxrp/6TO1I8wDCarZCkbJcASSDByEConSnAbE9TWXUKIRjHH0ZKfCK0JNrn5aDAiJEKEISREbCrHhw6DHP5olCiEUXgbqY9qmX5dTlGJcDNlpyNQ60ZShOFZGAaGbVPM1CDH0TnqNLBBRmkTqU0ijs67jWISrt5hBqW8280dhclS6+GgAIAuKwr6T0WH2EeA4A69i/soFYHF/aHSA1Or8o5BAK9NreJKGv/Qfab1FpxgvrrI3a1HjW89+EjTvM5YPLxz99eTFsT4iT+fJC0zqbwjq+aBUDK1UCqV88oERIE7QSBJQkuxUikFVhDjYkVtIzk0oDaBKHPxcT1xnnSq5aH9IapLQZMsB1tH5m0IHoJGqF8G5/fP/iwzzcqXzczeMSTNJ3YaO0hd8mAnD3Kk1mUJuXkhsFmuRhP+t1MQhRRURExVokYIe2HTgDinzt27x1CICoUESzpKQkeqECwelRmeVyeiWXy2fTEC/1/uLFfB2iIJTiLo0+l1mCubNsIogaj6zWoKQTIAnus2oUqGSrs2uXj2AUBMra0rTlide+n0ERj0JPWVmTELAobEFtCVfL3s0PVSWxqhAZxW2OCIhQleY16tls1tZtlTYDd29rSJFF6OFEP1e2FdE6A5hBzppzcbHZtovYvGiXJKBZx5jdoYKgO+AefYSoSEya4QbGZqy15n4aZT7NgtRGwXWsqpQcXSteXOcQwsqopFVq3N/2m+18ilaxRoHmTkIqu6Hezzc5A168EgIHs1aKROVVXZYTNIX02U93+16mmhm1UTM9aEUkmbcRcus/RXXN4RTC3uICvnmcM/xb+1oAhK6Z5HwO3qTYv+mx6j6cA4AHIxy6pLtZ1XNXGxZktdNZdcdaz0q6tJMq3rxonKFEAGqpoJ+W7bcvr38bdqXccKn5VBLc8cZOHUAT/mBGNcDNodLsfvAwAQgit4zILjVLqUmchJwn+q4eAbg1aOOXXu+qnoAziXK9YKRZ7ofcNEdaewPaGg8tM1wo90vaPd3MNurLm2SpyrjJSbxsAIAq962V036dwrblmNm9SJ+V5ygWsztSIkCBW6GtwIFMEVUl2GiEaSU5GUREpEmkEaBoSkIOAUkpSe6nfXdZ5uHz+Xp/NxIRe6Y91k4mCISH1a6dtqhsL22OiBURKBJwTSpcNUgiGhTWAlpaFYKKIj7xcN0de4f6kBhUzZKyCsmEgJlJYc2TVnbBCCKUiDDBrCIite5FlVa9a/t+PYuzrm9QmLnDgdECHoEqEu5kVwIia5oiMNaALY6Lw9L3yvrkyWU9udfPPbgoeczJl8g5HCmRcgshvVhKGWaQCmoWty1cegmrAUnMFjLwyF4NlIDAqyeFx50kVlOh1eXUdePi4QDlyC7lLLqc9nM/sMQpXfqxdvPQ15OP29uqEtMUxSOqi6eQgFqNZBAhbAXyYZlamms4ojYPUVlvWZBu3viubx3oX3Se481X3nyVD1OvePOVIEBdZwBn3YfzIxkJJ6Tm49x36HLUFllW2Ox5vGZwE3hI4hJtu9GIsd5yuw2LS9Vvfav75FV3Mcwcbah+J4KQAJM/7HXawkLUq3RYOoEmcZdGgmlMDVBVhJCkWYWUJJmVIgw5Rhug+hkE8JDJH1564AzSe+t6gXBPG8Kt0YobV+rcllRoqEY5zY/Gb7PamD51S+zybiuyfXLxk1rNvUTfqOMNP+Te5AWXMp+fKS1An5fXVA0XbkToFiEt0eCunTP0bQ2A3NbLYhCqaAM50T0ooiLMgZSzynismgsehZz665vlch4XdkfLFYxYldrFo/Uk8FqFhcw4SlKE2dgUJzGHmqHUQTSznpZL0qVBrVvxHLW3We+eWtncs+NIyTkn7SWRKgLCzD0g7kuqbOtY0qPNp0ubC+t55OsmghL5QeCiCRBFaaPraF4zAolKqlsNIRziZ8xLjhJJGlAhw36Wry8vxZZf8TLPi8Ur+lymA7bFVCC6kaZssPeyZiaTMU+T7qdhl4pdwK1ahJnzoDTXBEK1IJSusnfJovT99gmn+ZiyNGTlrjpO1bljneaxS9UcqTOdmbIuXFS6LUVQI3dSDUCZtOu9pJpEQGOYM6QzCxFgNhrbr2588GbzQaxy4m+y2S9uAZyBNyadayz4hUCg+HKI+GoL4Eo6IZFOddev49V4y110hSfY+cfF4dkjVn9AWzuZKnDB+K2n+s8F7/sM+DgfbyqB8NpyPNDECEmRGY7Nddz3FmR47ckQUYE0VBtFEdQs7ZhKgkmnsLyEqRDFqqs24xjijTXZ+Uq1Vv+tISAQHtoLScmJ9+2w+epYhY3QENNhf3hPP0xaa/pU/BIJm7zw0a999/V0fzieTsvBajUzzwg3aSWx23T4BsPMVS5qBZdy1H7MdBCapN3l6/4WqwBVOAKBKiqkigMQUWYLyeKmoIgolwAFDI5kLzjYd/Z/+Wtf+7gcL+42w912vE+KgOiCEIF7Fy4mSVzFnbAntVSnZreAarIjkDqps1qVJH0q7f1YAZjuI2p/Kmn2uXCRcTVsMm4a5UsOayWwaBGPqiseVAoUhFCVxbXrEO4UyakESpE+r29NISLCwxuOKopBGYFcnInVF1eaU1dFJxxGnGyQ5X7bLXNKkXHcly77nJKO26Q/mOZQO016PJVlMh4SrHIcttWZBX4cdDnNuo2cexZ9dJsV0JztHmk7dIeqEtXVQyju1N1sqY8aV3agbhhzQ3SjLhUI0c8ud2WZEqNbXndbnFLE5mq6eb0LQLqU5tNSFcHmhUoftNAKmTwMVFkgiOqRWsnL2pZBrQJY67i3A8BXbus3/x9EeEMXvlXo4rw94dr9r5A/nmcAsdKRHgIAQFDFc91+9k4pl09/dDWLalU3ZDsvyKAaNTpl1LkghflJczQ79YYkQ7dcTfPjb379//nZ7pQjFcPBbyKHwqXD6m++cndIDDWGQbvt8Frf3+2n/nizJKpPpyIDJsl9KR0hwxRZLOVyex2lZ2yneWJWs1Q4xuK5rUIDbHIhHo2gE2rnLUO7OP1sKRnJrHAr8wC07O1uAU15EiubfHh93b2z5SnH60+uXsVFvVpks9zf3nbBCwL6yq0e98dyHJbbQipn7Y+v8D0PUCkya+3ldj8/Jo2SxEWimqTwVX8ngiklrdWoqLVmnzD4oa4hXITUjiYANWURFTooPjXgAF7r1z+VkeOrfHlCHKoNdhj7V6PNuw8/NZ/gRbWkY2dLlwtOEtovS1eDqEGMCKuAFlGaM1sxprSyKqgatb/VxWN3yPsxapdEJYKyTzlpWGxEzAwaNddxwszq05PbWrpG6gidPKkduYNmlMKIMOlgTOoWmiLMk06HTRhEhIlmgmXSTo7YKofZqOF2djsdXLdTuOWoyEnMVDEkpy+FgcBPNYlIvpTrpELhvdf5dDiWuakJRy/RyTLysNlgdsxIJbb1FEUk6VLHZa5dmmbJI2fvYup22Y9zHjHXPrlLA02pRlLA6zKqKIqM+013qnPuTOPw4sjNrOXWPeBDb5VJDqE5TtoJ5zSw80W0D6+lE4atb3bAwaWoghoBjQKmQ6So4hoPbHaAjcW3zvwRVFlEwgGqm0NUatMwJtGMThv+jWwsV4a0ZcDbqvxrBcCwtV2eUkYeWemhjDB3X6mJgeg86AgXajAokKYEslIUkG6Gpcev/0ef/LSfnuS96qw67afMNt8UAHgY7SIQ7rVMS7wq2znLdiNLHodc9z/txm1IqAFOad6hEW4jQtQLLaTB1dcOX9eAwgi4m3ckXOLnpoOL0zlseqBt3cZw9xqR3EQVUR0On+7np+kHY03W/cxl2w+6m1WGKz19XqxLQjmFpEeP5vkFX59mTey3x9MLfKja1AUl1W05HPfbYAS8sncnaJa8iZlJeMAtVAMIyemERzofMaxx2yrTdCMbBBrgMaUkkrSuSMOlZM+sZQtf0qXebU7T8EiwS5v7u89Og1jbAlgSj/BAUaNCtMkntHWlkEyEu8Mlp2BAQYR5xCBIc53F1pn9QVTFwrTJBkqmpKZqVavpiD2pVIkwYwQiJxDBbOFA9dbxUWUxkAwTm4t20UUAUcMFhAWlVCZWi6mY0JznujdXLyWlbGs5ivb5aBIOiEx4jUWKqpKUrJvrnEj3Upal+mdXhnmPZSy3qjLfPhUNZy80O1WTEui60P7i5eKJh+jKwYdhDL9foDBmiEStS2zaGEk7myN3ccr3skn75ao/7jWP4KYUzVpL29tG6Roy3hm1mrn3bhaiqQYBocSZ/tsaP4hQRHn2t+FXEjUc63y2jb4tVll6Q6Pmnr/vQR5rLRqkDd6xwv+/Wli0wYk3hYt7pMqdLH2JrsLdzM+TQKC5WULsLHnO9rTIYNCZDhtMT//2d/+bn2zn97QMnId8Oq4tR1PSwbmtaz+pucv0GLbYLzzFVDvRWpfNOFqpcAGY1cBAuNVcqqYSdUGDzMyt/GkRioRJy5mtOf+51wmjhIxj8rZ0ywVoxmHmVHGDCHJaDhePxq/P0cN+GnLdXw4ns37z+PHww1KjTiW4lDn5fr+d0WnPRXT3k9tvPjsymrJuTf3pfuIjY6MIWUA01SLWWIkN3UxAxA3Coehos23y+pal6mKdyXENCCG6TgsIoZCTZk11qcfN7Br78VG9L+zHZdCum31JQjSyeJs5eHMBRWkj5ralaHdeQMgq4hYPHR8LTRbaZbWmv5RVk3ZDlqQqoMxea6LVHUS9LiYIpQSszWY9K8JCNKIRRkQYBSrmTlUGvVRDSgVo9k4pNXJ7RcbCPFvE6mjZtgYG94joxMMM4dYijfKstA6PgGdVOSNNASBTVHfC93evbuODC5dpcrXD8fniqJo8qVKTQFxYp9PJLW/AopeHSVmn+YmRyxJrj25xEiUpmsKpYjU2qNjhtPVSJTO0CYGKhFHELbsH3OvGLRqqD45oxPN1ZMP1ZKTcmHEkyDYNPx/lt5fba+wj22A+2vjL2sz5Dd0WgfP/xLqke4OT+fn1QKMDA8wW+6KwTZ52FXSBuwe8KfeQvor4FEo7Q2905ACHy1i3z3/9vc9/dBx3lxMRwWUfGzGeg0C8KQEQ8NCk4l6GTjConKCZXg25Y6iIJUTqtQia8IEv0QEiSyQHSPNGavb2W9kMzEQKzjniy6AnJlbmZNpkZmSmCIUoAlp4uDIln6er7sPdDfv88nnPi82YZoTu3nv/YoRonUtMy4wkp8P9z+qoOXQ65bur7x3GJluMmHbz8Yh3H9+igb8T2rT0DBi0BnOQYONyTpmn+3n7aF7v5tDwPBxvU4MFoNU/vq6BiOzBLgdO/uz65H5tmy/+6FUiniCePWP0RiYD1dp6jSHNaaWCGq1Savqqvgq+OBscD6QKYeooUi+Lt5mUk45mvoAQ8to8wolbgGAXCyIBVdjWcW5ABOnaQGotwLiouEchYKqJXpoeURtvADDvaTWgzX6k/XAAwBIpZfHS3HaxtsdNmfgMg2kC7W0Xtl2xnac2m8SS/vjPlvESj7rNZrN92v/9e7d7pOOpi9OpHPd9wXZIx/048IQuLR+nsQM21weXnEamKSoQFG8jN51U6cbkfZzY2ZF6ETaJTnksJ8v92Qa9GXLTI5i7xCiQFGFVIyLgLREQ9KYdF60oRgNUPQjavcnYK0wTZz0fkmdW/5du9HUhtA4CVpBJsB29X6AzkJqCVkj2qIduZtocRc1Dz0L/Da3K5MGoDc/RbLQiIM2igwgyH4/Xv/74dz7a2gcxZUaHu70OJcW6cn/zUtbn6XVeyuIisyTaUlM9xDJttp3V3Mm9ODURFKEAMJNkLijNgSBslUPQtQLoRKJaMLFVT/WMYXjrz2rSdpCc6MGG4WEKM80mCLt/eXhUfiVt3P2z/aYO21SvU1w9e3w97vPQddmR6uJdb9NPPz5SLY9L+pl8Z5gobgG4p+2rO9u8p09rdQqRxJcKTcoGbQqwjffcmWj1eOGH5fI6lTU8lhDx/SkGEX2gOja0nQcCxTxOVJ3j/Ry19Pvb2817T+q0nw53r09jP5s0/hwlJVmrO4r0EU3zD02e2Ak3Bzt3Zrid32xJmByz15V53g6WeyYMESyqBLtB6zzXUFm4jIFgpjfLsnAkFW8aK4yTKiEiLuLFRElVr42FJm0zSZFqSydz9CgQYSsrzyxNdRGRCqpSxJI2EPe66NHwgDt0nW4tbPvUq2gE/4v+YlTcL5/kZEt0/W65uNDLi3rV5S21nupSk8yqdirWX13oZ9st7iaVXTUK3S9rMTb1I/NwlIAiPPqb2Oi95dpn82jWdo1LLW5tIAQRNwukThEuIjBvHpZcQVFN4xeUiMaCFfWmW8Evb+txvhEgEU5Sgo363jId38iIx1kbpz18xV39TSzBxBDQAuIht98oOa5eOMWpLcC04gVsOvuERPi6Onc0n44IMBgLD//xd7o/PDzm46mOrmm+X/qonYPwdZ3YWnWsjDES4RqletRFymBmsSS1QxlV1C1JtH61zTOV5jHXpodoqwbZuvMnHQhKwFfFwvMle7gQVbTrkjAaDlDXALAkAtCuJIfd38tu9/UDkvBn0eWxVxHmy0ejlb7rtVaTLPCCery5LZeJqH188p1vvN5OnbWZyFW931++tz0mEUkqqAKmLD6HU1RwZm+JR5M8mOaye6J7WYNzV1J+9VKfJTRdEV0F+SW8+ReCsAr1qU7O03y9z7+0mfzq2XB744FJgFU9RXJGiDXBqdQkXhSr1iOBlYUQJiEIAdzbvXVKKuFs5OpBVKXrc0oNdrmQXl0EOug8Hapw2UCpCgt3a3WDRtN2FkQC2tw7Jzo19QGzEtLBmv+chyRKHJiE2WoD1D4UABgM7pJAQMIc5tb4LOcN+XpXptXrJUVEmOHQKgA5+IQdEeruJHBXj8+NXA45D9tdz+vci1y808urkyyvXvRbLQGpxxrUJEAtBUlBJ1OiSCmOHvMURPGkyDG7jDAtRQZxjwgzMgoRhIRbo8wleAAiNZrXtTUAaqO4NmFpkqIlzsh+Bs7u9nhwusIaWNdvQZsqy5sAcC6zVy0FsRUOcAbw/XwAoIg34pG+/LaYXGEBPVmz/W1TGnG28ToD1QMaTlvvWCcYEpX10a/sPvqRxON8Slw0TnMvSwtkRCOBg3SuEYCiieE1JIfn4di8gFmr76t2yLOLIhRwOgl3N882N4/AqFgFAHz9A+18RZRYLRO/UgHQ2fVJkgOCoBSKNAgICaAaQ/1Qdptv7G7Z9fev+ry77FKOI8erkdWhZMo5IqdxPPlf7i+uAD8Mf33xzfFOBiGcHnb1o1N99sMXMkuSLOED5pBOawS0aQV5rBmRDKaLl8fNZUwh58JR680NtiMIRDA6bwJdqVXuSEH1OfTa3sVytdT9i/E69v31x4FhK11NFSoWrAzCVhb7eZK7tqABwihYhe2i8E3JWKI7XKTOvWU9TKpJqFhSSiKUS4SpebxMKfWa6wGuQcccEYZgVQlDWGg4AOs9AFhtSlxwrU4HsERgBZt5AUKKORckF3HnWeERK07PPQfoxcWtzdC1ZaZGIZcmGItWi1JJDK1S9UHmExFdMUMW9ycsJrYMH86zHe+cc1ZzGfv+mB7nu6XbRXf97m7s9uLL8TSVzCQpliW7iyqpHm6inV3EIXbYI8yzRs2lAoLQqMYEm5O6BwNhtcX6piVja+Lz8xlt9eD57Rf3OMN3v4Jjaf81QFlrGc7p9+1vbKvvCK5SL2tr9BZd6CsBwJxwi+jC5daqbTYoKt55RNNgAAGn5AiGwUdHK1l8LeXRjGm8P/zqtfzRR0+WK7MhatQJmzr3K1q4mU+uka2VAVbo0xyiVhaooLJYVDUv5mabBZoItWhWBbUS7Gw1I29Pi4hYdZEpHgzUmsmg/3zJo86UHyAOlIpwhEciKWHllNmXybb1nW5bvHyyjHp1ge7xhZ+urne9RB60kJKX6qj3X9iYde66lP/01961p188WqIRefqPA0+/d3O1MQ/YXMbl5mR1Oe4gmpQtE4nKKTfH9v41r7d3/ni/Xp7Y3Xzh33oynZ8/hSJ0r+uuWEp10ZBlt33xetPl7qZMzHj9dDr2F3NpnB03Vji9zLyEe7jVvpZqACpXhBHgFsGNJLNGIqJQJTQXpR/zCq7y5m8sjjADOAU0q/jXpsP9AtXUyN35JASgMolaqbQmTRRRzZMqwqurwK1WZoXh1IgcAYEXp27nEzh3w9y642hC+YgpktDnWaEdSFFVx1l9BYA2Vajm4dlu81g19UiQDteuFkCTuYnc97NtRYZpxqjVU+Phe7F6vE2Jh1eL5WEYOl49urx6Z0gwDzu+3nspXouZK+wow5An39kBw6nrLWoEstokKdEqUo6AaEQIpHoEpKlEh0PDyTB7S0WaFNH6UON9ldnaHrIGjEX4Bjaw+nR+lUHIN/9oiaVFCX65OVgDgAgMGW79vZb9cEzsu6J6klynro8ca6atrgkTO6uRxENrUyWOWJGEufI/uD78fx/H17svnpjm7WvvrCojw0LDWiASTRZUlAJRlFrdyvEUViYZujmI0DFSypI1Byhe+jCoW9QoOpT7KCEULdUAOleIaQspHgi1ddHQLAZhIgx3YjM7Ukp51qipQ93WuYZQluyWej8OvTj2N7+UfnCfupq/uLh5d+yzbdOjR7/+6grGYZPmEoZb7ReWj07Hrx8vfRlvXn5vONRH3vthd/Ly9Lbq9b/+vUF3Q5/SOA7f3PTT62Ma/jKk51KwTDX3mhNsrAVl2H/8t55Nu00Zc1mylMCp3vzS5V3fW1Nmy27AqhgTQVgXAU06vR/41iJ2+uKb/Y/fcc5J51K7fReJXl07JytHcipq4DInTTVSnhIN9KVcSkkx292qcAZFdQnTOufLj4CqGhDa1fL5kyfXhwsqUl+tK0ve86arLunKpsM+sk55upxIocfiV+UEVTC7exhZKWVi34U3taAZDEG4iqBA9JhokDgt3cYXq4vNRjS1Eo8A1MOsG7pDikOkJLXUYGiu63oJqo3m1LJi46i+BYjtl/tu1m7W9S4eKmROPatGqYRVAh7anXRDICT3Abt7TQ939ttx3Lz3tLv6UJY+xA6nu3Rjs9dF53rMuzrlTvYFj3cfoeSr4ym96vOA5S7IGomx1K4id6gP+v7Z4S45H9v0PlJNuRdGqrIcddCo6NIa/SNWkdwIJHMJp3aNQIy+hkr1kDXjN/Q0mijtukSJs4du6xiaFNk6gvAGp40EnAlqSaqNKF1vXLXlzqUDQSgZ2q9CRNWQwgE4W3tPcPrWGH98c5U2NhyGOtRakRna7KZ9jWtmaKb0KZpJrZSmyJ9snV52pYqGJXiIhGvrkyyQRcpSCkHS/VwyP0S0aC8k8JAH2uc9hALhFF2nMS+aGKhejN1GEK6nuNDJtrS8n++v5WtDoqX7+TYPu811qnt/NlwNFTn7dJj7YQoCdZqx3XQL8eSPfvmDeu/g4qn0y/jsj7e36dLubjQC1JxiezF248VmRNpkQIa5hM0ldnur2EL+6MMr4ybnknIvLpTbn757NXSQpt4jLdF56NrUrBQS05jqke6sl/v3nr06eTmNRWWTi7t01EUCZFjKJF0IoWisLusBjiyLQIfjKonsRo9wjGUvZXFkp+Ze42fCKZXOxq4uLlE950siEPOxho67W3Ul4F2rrlAdgEuzcmv3rkcs5isZeIjGgMtwcwO0qcBJWHULLw0gAASi0axCIsxsZAm3s45ptMTHc3e7Vr2tUGawyUUjsGKN1926gE2yLEzg6+L23KW2/GgOJWMVpCjLJ5YyulGn1L97xc2VfvPiNG9GuRt5f5TDZ+Zd9tvpnaUeNTbX4wHVo8u5SX0OiKZLELmN51AjCHfv2lOit2VRkNSka/v6xmpj/fimI4i1tllL4YeUvjp2/xyE8E0ofLs0WGcJIBPXy01km06P69TvXipN7UwDOpemRGUXxSEPi712tcMZJONvD/o7i1zlRfbJRjMLoJZenEBzhBW4Ic7uYyEMR1P9ZXIqwfBN1DwI1CqyFuZzQvdBvZoVkgI3y4Ev1T2+NjsPTN83nCAAgGnusjT9Rg/HoqRbrVcgIqhaU3l5//3ue6PDNp9Py/b6h5sh/upWPkiXuthGWRaHFggxH06ll4tXkfxP/+l4212Y1Km707tny0djff/bRU/5cCzTYcLp9rV7EGS/2w1dvmK/GbuLvDtc+sk//fizf7w5eB/iRTtElrh9+Q8vUrdIK7nbhXYzjYAjQkCEhV8Olutmkc/ze398uZ9lPMRFkZKm6qpgDRWDeJwsJCA6+bpWWNWTkxeXYGds41xro4E44vVOOiLBwhdf5nSFLra8u05IWkBOWsT6GoTVxekQB0PgCAgKGuva2/3etg5w71Z686l1bw0Im9vqi8GIWpEyw9nIJbHip2tILcE6RIho1DZEdzvffecIEOsBe/sRaKIDDWO/kg+avu0DLIZoDhWy7s8tmi5FjVCJUt+fjV7uJV92r784vj5Zv82n4SJd8p3L0neXwzcu7mJ+qeXVcy8LjldWHYiqDI+AZLadeT0/I7ZtQN/UxFc1qDbkE0VtEOg3av9vH1yuC3+u3w+8kQBbyT/8qkEA3xyBL10cWZWw0nlaFiF1uhefrnZfaNQEivlbnj810ZCEBq4OtG03JatvrH343c3+r8b6WCiDCKXfUb1E0MUVXiw0sVa0CQgb6dDblDsCucsCgXdVdStGd6rWkOpB+tkLGKYUwuznsD7Bphr0ZuQFnAet4U6mLklOMkeASKlnhIV0+z5O0secE+QFrzdfTyUk3dV+ePKb6fbFVB49s7RMTkJy+KmKCJf9tPT1svf3f5u/PB9SPuDC8kZ3v/rjOl1/62u38rVSkMv9Cd0yHU/TVG/tdPy83QC5H3cj/BuXsj0dPnjnOE6KKs4UIX7/+skHMudQ0qqziWmHuYQHIrztkcOvh1M/9WH7b1506hd9uY3LO5klsia4eRHCovnIe5viQsK8TcrAEpHzbPU8mRFQIPTQZTffF3SkMoLXFflY5jQiRJFS0ehLrjBlKqfTPDqjunBpfaaUJHBjE/MM0Ngk4xYKiIA6IULMgSRKJ9xhWE8CIlzOIJdYN3skIvYqmqRauwwtZ69kj/UFrOPldeVt7X4XdwcB8bOJfMQ6hAKEjTLZQsla7zZ4nbi7iaY0m6uaXPwwd9711v3OZy+eDtPU/9S77nRw6X/t7262/e1ffsdEpEI8JIdNNgSEsfhVGIVvbOsFANgs5tYnT4Bi7tWBFvSJJqT/JYrbKn25DnVXItzD6z9b7j3Eiq+GQqzB8vyZIMBAevgTFPhdyBKbdQHb8EZn5E7N6la61IZRDHtg2zohEce/P1z/i+XR+Oi4qZeW5i8sEmXkDDOhsJAN8SAajQvTVs9uonCLLgmZmnpC7ueyYOXMNkcP6djieSboZmE8R/716ZM8j5XPtUEgWr1CYdEuCRAJRkDkjnCHqCoMVLc84/VFun7ibjLdT+Pl9TN0rw9yPdxwCk2wSPTJRYXLYamZm+70wf/+2996Pmy09AutP15e/W6x7z++P9wNzr6vc2g/XCECnMt8KqXa0ZbT8fBCHt9/fFx2WP6L7v7RfUp3uznnKnb3s/k3LzySBikSIjCLQAq4B8M9WW1YmVqkVi+ffevP6yz5Vm+tryOIlFmbyVRYITuGIdx7d3qUMq6+u4ag0Mpyxoq0dzOS5mFSzVWEXiH3J77/CZbtKUUa83C57ZGy1BLugXzpR1ep7RiHNHRKrBz6doei6V2t4tHr1AsQd4vqvg0KHBIJ8JPH8MA/bdVsCmXVBG8S0A251DioPI/R16PVQlCrcBrbsyX782S8fauHt+fT1qHtVH1p8BaIQIabRVJIMeXj7y7/aj/WefyVX3v0e1ljkV//Rlcv9Wb6b/+7H323P7x4LZuaU+i4Z3N8jSb6H1a9zZnX5q22Fya1RQFvYVEUVouLmLdNxhqMviT7DTZDlEAgspN+7qzXwNJERn4B3G9NkfGmPIY3Yo6/MdHNpt2xdKWOqcnyMvzBjqhlCDNkR1RnhLQ5LSyadNeT3/hi+bcDnqn1sSny6jlFKFlL1NlF3SJENdwpfCM0AoSbhDsU4RIqBs+iUYp0cEHLGID3FohSQgC4NRL626+zoalixYHh4aOLECo8Sd/R57gsBobHoAnuJJfo7KCbU5zu5nflw2GBped3d9sNXvRbn3aPDDoNXb/UGYSzU8Z0mMujR086ufnkf/MBrzA93fli/f79+DQ/+lq53Q6lSzyVqrxXJZmk64YdBeZ0M7q/foq7orH73p9bHpk7QHPqD3efv/t9hEAr2AjP1vbebg7CTZpulC9zRD3i1H3t9lt7TcYy5pDkjFKNiN6WpOY6CZ0Krw1TkRp7H8wohedSMwBridH0aMdDiJoISxXt8/aX6nbuOpmnsn/9ck5pN14N3THcIoA+VM1l9cxYpS7byW8JmYwaEUMwSPK4tgBdq2NjcQicUVNqXeJD8G4HxgPVGDHGspTU3Ny46jEBD90xmwrsWus3HgzZhEKi2SHiDYWeKy2tyUY12szDlpxkQErTNGfJErHY8JP4/vXd/PrP33u2OZVuvP72Z//+i93V9Tv/xb/+g0/jePHYO7GyTyKEB1UbrVdysWi/r2XsJt9IiaXtzoKQJiJHBFMypzQ1K64p+q3zf25ZziVAPJzON6X+6hTyc43AuSx+MxNojUc6f2ekiu5wSl3p+4qEkMZ6P+OKkwXpNYMMFyK1Jq3BFiLsn14//+9PT/rHx6p66ub9GBGUWsLLVElLaEJH2iSsoplZtAY3HCI0lyTJljrkMnkdElxhCIi6V61Un0rjuJyHn2+PAdazv/Kn1+vEc4PD1HVJICFhKlEjkjcZ3xqoS7bO7bN81X+vLjD9/LS/qvcfXX34OvL1nFLkzhDu6pE7NTvt5+5r33/WPfo/xH/+3Wfz/WvF3Ce/+Hv/x1ff+TbvYvFSB3G57uI+DJqkWdqJhQvzpmd9Ouik+7t3o4xTZnSFmmRz92n8YLdga75eXQ9KauNgo9AMYEiE3dex+r47zK+nuJPgxXJRzdU3cA6pLtev5qE7zrIIkFLEQoFIh8VJIERSLCFimVipgBHCQOx5qDotEdpLn/KLfrOQV3N5fDkNw/62P55evvxpxHeZBL7MfTDcM89gT334V2suQ+EO6ty4qE1PP8KbhZpwNioLtEa0kfF6RFs2D49grUhehHQDCIevcNjWLbeK1Jsl0ls3/Tp1NHO0viLQgGhrAor1DwXanqg51UqrULg0Dka4UsRc//3wt/D825/9f37yt1DC0zv3f3T/9fmLn043Hzx5vd1uXr0eEauSW9gq6SCkVKegbf3Q1s4BYTz03jVJToBHRIjCHoC8Z97cerBXbKSfI56fW4c3AeKt6CBvXYWHz39pZvYwBDwHBxNzmeY+Tyk7lCvM7/xT1Dky3azJiyisueusAQD+T0/db71bt/mUfXvY7I1u6DTKpU+cgZQQ5kLp53nFOJLCWFGuVGU4IMmLdf19SSYaITB3CGHFi6qXGB4GSF95Qe1ue1NYtPujwdwjyLFPROpTqaYSbs0rL6fbkSfrO9se+HIcN1+7W9Tkzmp3ujuN95+Fbg+DGuKkIuFW+hxhy7xcfOP7O7zzZxf/4/x+Z6W79yM+5Q///aF/cjc8fXFMwyglbeOwLbOHCExVRGOZo1rSlDRNZdwNv3rsdrcbTv1QNgly/GT7PcsYlyXXGoCZqbb0j+YtBSrFrb6eZZZpe9SfLJv+6t7iZrufNrks4Smlef+NW9MxjBu4MerUgVHXZSwCCM2uYmVgtGk4QRHwdLx8tpN9vTlNXucau92jGx6evLzYnD7bvm/7ze6dZ/l5Pf5lysPY5e5YxWqIzK3Ub9Dch710g4oHUz6JCMKa5xMCpgiHSuLqfO1tijCsFb2ToEeoU0QVr4acg1zPftAe7uuvbgEYPO+BHFA3hzccM0AYRSOsHfgG1m9b5LWhlADCIzbVoBqhfopc0/bXbue/+FMfOqcPcrSt6w9/5V7m3/6Tv3P9PC3e308pdRUy50xvqEtKi+CMZhbb3DUBONz785BTRNUb34PwsmqhPeRxrpHuTene1pzexiMPAcDP6zqcf/L8DvCtT7w5MQ9DQC2hcBc/bnHCdLnHkO80Tammfk67lckCnDpxZBzGWqCoEWcpWueS9fP/5Ycv/tXNo/Ku1U1Xh+MknYNC18qUaiOKMRCoOgaC8NAuUZOpCkHCnCmLHfI2XqMrqUxjp66MQPU87EXLSfNpTKxlcclmZ2UgEbplPiQFEkQNCMINKo4cZduFZUwpj9UrcioWeRDEZeUO1fNy86of5x/o8fH99eefvn6M6fC8N8cHPF1N3zx4d5osEPl68lRul+EH/0na3eH/+r9K9dhjxIU+tkfbT/7d1753GvROrsU6EgYR6ZRRgDkPcciXn3tIzEjF+0j5x0//fLNsqgOUNCJ+VP/D9+7zxc0GuUOYW2vlXZMUV1u4OQZUIP0XmXq85mFYtlg+Z089LrvbLcuhDMVP0x8xl9sqTATD03aw6mA4EAuBWheNI/vNjapXFxG6drV2/U0qLy539q6ZlyW0O+rX06Tf3X8x/PL8k3jnFV7pxdds/8H+5e19GgfqVnUTMVSnO9PSHB5d3BubWYiw+ZRhRqpWhjmIHBVE9SIK6QLiENTmohARMVhtAz0J6fzEJ7WgT6Va6pbaDEzP9/tKBGrA4ryOD8+A5yQL6DpL6xK9O0vSYV0pruQ6AB5BLk1BPioEUYlcNYpOv//0G/vPum03jbdhRbw/3vzjT37vO7+x//PpZkg4jH7azra1+4tDvbqaD0UXV6t5m24ieU6VNUQFkMYakyKSItyHLGGC8FxLn5o5hrbuJc7zFFBAXY0j0FQ/hXBoKwSa0+4KFpIGNNSVLZHWCuK8CDhn39q2aecZAAFFSNm/Q4neNeRtOMVZXztCmJrL8WpwRh6HY2+nx/9gfPkHX7t773ISuISF9u4Aw1VK5yRMpYGG1ufShWSFiGoSNi1EJmUkIei2BBrp2aVdEWRgoPdJQMiqBxCx+tpSW/G/guVbKAiiYZ2jBoY+MyJiD2pWwY2khGUuF6BAImYeeDF8uIwn5Lv7uyfLRl7nrw8mi7IPieISFtLfF/RiNvzDq9OPX4b87enmACbVJftx+1/e/Ho2hCiEBo0FIirKWmGaYlk8PbHqgainba2bP/xef1d1iMUzctjlZzf+rQHQbU8C7m5REcYEziKaOsgMJGHw0BPxEv3diYCjzlbvFytL33dx8P5qrnYMgzaHUaXPs465LNaUlnQSKhElN0NGdXioORZef3DYv5YvkDLNZS55dufcbXGoY+6XeZHlxTx/96K/vr+7e56+8cGLu82wFthr2iXkvJQmWm19hqGfezc1RJCS0FQwzdrtXCVU3syfzqaZ4iH0KuP97snBRtqCtoY636K5UdS5uh6yrPfvXEAJt97NwAhf8QO2KvKcZ5XBsxDhuZFov/qUUkjc3376+bOdTFmtRI2MPKZ5tD/eff1r8uzlbdb7d3Y7CejFtLGbw+Vu78Hc1bAUAYaVBVBXykxQVFqgicYGzGRYUBPLdC5sHg7/m8y/IjIfFqBvf/nh0bCB8lYFEG8nftj60tZDwhRcsbwpkKYbpvCLiEgg9FyBEDzTEmRxD1Ck+ZAE1DTGL/7Bb+5+74tvHt5NrqBYja631uxRsqSQqG25i5XGGepMbDGEbHLKlFV3MMItgigKuLLIwApdfPBjTisxuQE9W5vvpPqb0ueh/AyCYpF9YTeOffMZjEAt7qPbRKY0hyjcveI+7Z58/ZCWTfl4mZOScThSd7Wz0ZJPFm5Iahm+fzG/f/nn+/vL35kf/eEXtn3kw1CG5fTsX+3+1lKM1KDM6FGiqy6E15CUrRgnhihBWqqJH//n5UPTPN9bb13tHv/+7XvfT9uKbfOLd3cvsNrMUN2BMgVFqdV9PuoWs0RY0EMj4TgL9n0/0BdoMQu34BghmqGLURBUpBQ1qF0EU9RFGtsbKRqJ6nA/bwa/ISRvs1lYRyulYmSdPKV9mjhkS1efSeLFUOrzR5fP5z7OAtGxLhVEouncthm8PCxszq0b2arZs1SSG4Jt2YkgYSCt0XDNIShOlpqHOW28jpgvoiFnVzWbiGgeGb6mfq699HiM2ZKMh6CqMAwBD49NeGOzPrQGATT41VmKY91CWpHOT3h0fPRr9//99ruLDqjVPp/3v/z1u88//uizD7YLO5lVcpml07laOeWecFf4glohdM8AzEQULX2uQCWWbgVvh6dOrJzrGv/KwW29/ANo6Tzy+vlHRJAi9Rw43hz4cwDGA9FinQG0kYsGM2+Rq1+qqzrZnNj55gcRq6gNmj0xPLC72R4u8j96evtvn9w9eXKPjqLu7IVBJVClecd0AMIs8nkL4FB6K1gayTgYXqsHLAGECKKKBLyoSzUUH1B7AazJfrU5cQXCqNB2A6/SKIFzfIyqnUTaSiMli3jT9Lu0YpQsS1s3yTIfL+U7w+uhv/7JR2mQTdVrOSyXV9Et22kQtQhSFRvcvfhCv/3q3w2Pn/yJ7KrFizgscRWvx8sfv9usDt2MCWQX6mtn2XUM6VXuVTsVka5y/OuLH/7JM6HXxwHx05PLv1h+48OXm7luS2hEuEeMXksxB8TmQC2QlEiv24I4dfmk0vajCCthJYotCpyOShWFxRIRoirR5Th4ShLVqy+Sq0lGKWklYW2g0CDq4bMnTy+hPdKQrIYngSh8UsuuNotwmQoTaxGwG9LyybGzuTutNkwKBERWBai1N13ngm8iM2Cr9B3XdZ80ZAeBs14JgaAstOrqLfVVl+VwcnpEJagKyEqKqdF451xPRhtuRfjca5KTJ4jAas0UyQIsASBsNZE+J8SGbMW6agMbGsaKdHebv/vun//4u//xn3706ePt5Ntr/Zf/fPOdi1/58F9+klM3zdvwapKkX3KuJ+0YpVaHLotRk2nPcHMRRNPl0lXwSzTRI8yXkhLPu/o2yzj/q12Yh9EAz3f4L2YNEOdr+KVPffWfLWAyNeaFeEhVyYfSG3b9sWvvQZypSeclSrALq9XOCGPABd2LX/mP9N+8eP/uWRSIJkSIOoOyIg+kLQ7CRENWDLSuASAoaFYQkGZdFFaafxxaIeTh4RVu4QFGMwUPUEA2EbR2J7WW8a1r9vAcA3mEV0sImgdSJyy6oc9T7eFOUSwva6+/MmVEvLzrc5+k62DydDhuiiBsxIlZlEI/3fHxeyfj8uIPr+Jn5Wp4rzvJLTH8Yf32VI2aPCJ6Gjeo4ZDISRDFUpagiDLcc03+3/1nvzwf+uV2lulmKPrO6796/M8u73b9fHXyBoULiFk195jVNUBbUlbWiMef5nyzXCQrdHoAk+20ssvL0TXRTQFJ6tP6bqeafbHUJW9klLEYO7GywgJQJIioHC/js7IxDjWWGpT7RNc+eR9MbuiGHNOSw0SUXov1Lxbv6f3py3fcedC+pqk4f7q1gAGUoEoryRUI6BojyAZY9IdheJvTp0BSmvfLsUvhqbzVo5LAGA4gVse41YYpAA0cMNbBAKhmX8IqIiAP3nzASi1qA7tzl4xAoySlcdnL5hu/Mf/Xyz+5/Jf7uz4Fu37fv+c3f/rxv/zf/qP/ql8QvQ5dlY0s+wse8Aj3m6xeIWl2iABalFTVdDhPJ1qCZ8pZRb3ttd0ZINu+/80otQXIdbRNoC0vf2EH0E4A3lYLfruhAVaLvsir2FcKwinNV9rSdHi6Z7+9U0M0j4KHzcoqG3UC3EEWts77fpw2z//jb77+f1/dfHBx6E9IWhYDGE1KBiw15CxMcB5NMKR17w0HEY3/wfDQCPMopl6oDJOI5iNXSTNVp3uItPVDRGgTKBQ7Y8fac21/hxGaJIyp23TNiiB7QJU8qtNr0BgGhR2fp/Hph4et7f25HJjrLk/a9VcWY0LymqJ6hJRt1MNx89hfjCiffab/j+/wavl0uHv0w93Xyu9sP5RbaE4GPSaakKEMBjVZMebUduGIQNXh4xf/yTu/uSVeT7j74mXlu7//+vvfmsax6zZStOmuxAxJCPcET3VBYs4MlHj6s9vrAUhW4eqOnnVKM/Ok4ksR0GaXrE0yyiMwHSWlOCaP1Ek0E/tAWnUkMYsJyuKbr0n5IpehMyfZ9T08bKlcigsq5PXAk/fiJ0lZksZRUlG1VhYC64rOKet0vQkOrbIV643Ycm0DabaEt4KR4HRpRmpLm+E4telPVg+kvla1ksQ85/W+fIAytnFQ6Pr7Vw3BKDrezTJxMYMmXS1pibM55xk8Izjz1FeZq0CAQV3MDLsPvvFnf3z9Py+/9WLavT8drJtfXvyjTh7/u//m//S/6PNUJUvSGoyic50YPtUmoOAU1agedDIiLK0wCV0PZkUYmk+soCw4l0Q8tyDnY9yur68zlIaB+psqgAh/axH4pW/lCpRamYGRggAknEYWXW4+sJx2pos2CGqbiaybBHpgad5asqzD1+VqOnznH8m//fGT+Z3uuIOrnmbTNmh1twwCwja1XT+en2W0MBPRHK2F3iYmFgHziE7gWitkCccSOpesi8QqCNeGCRLn0Wg7+oIzzFvACITSXPu+S8Gei6eIiGKmPoczdVRWKHw6XG++O+xTjfuP02mzDJ2mweZL17Qc+zaUqqI5B+dX+qSLy7vd7X38i3+DHYdx+Y1LeTb/7LJfNtAEo+YWZPXsiENopxZqQVKVNtiff+M3sCmMzU7f+yWxV7f/Dr+sZTd418k0tAKAEgF6td7Cp+gUWd2Wov33f3x7wdu0zsHBzTIlj2JDB3itmV6QJZKIAB5eqyCFRdAWmkVSMaNUrHNjVnotWCSXMk+1gLTohwmSs+bUqUQkYZYQp+TeIyqIAZMxXKWxfeitrl/3sfGQibxZnpxbWTRyU4SuS8i2nwdramw1ae60DooE4a4+10HCNEcNVFn3mQ8HKXBW2QIJpLVR3nz49brYR9jPp2may3IHUnMSngcRWMGAX0UDrhUAxE4+vvPBH93+hz/40e9bxwOPkkSX4L/6y3/yLN69mG8Gn15+SzKXKl03xTbmGCY3QXhdrapFA2BU24Y3+dj1ApE0B6t7M7BuExms5dObJN/Gl3gDD2px8xfEACdAfeuFfClUnBFR57FAeugKPLFmP6qL9Ka20hDPBQB9LcovgVpquAgc4ehj+OQ//fbxtzg9G7qTSQWsRjSZEgDZXanS/CNJ6toQJgtZqQYkVYygQKMy3FpGp2i4zZZoDswqi6c2Cn2o/ltZJHBL6xqgbUkeWCJhRHg/DLUEqcQdkwrCU1LUZQ506kEvFtv+w0Ivm5vn0m2PlxFXu5/e9CliOfZdLrmXyjxMfVdeXjx772n8xdOffv6+l/ken8B/uP/idaSvDfXSgeIuFwU9lugsgEpIiI5RPeWAqiaZ9e4v/um7H8/b4yIRF4+SnP7qd+XvPr3bdR6pl241HcoegbqUMOqQRimZdcnu5R+/9//6Ik7PzquPWbXoBoVxtDQELCmCVs7aeVVge6bkRLXqLsPAaqJobDQgKmiOW+/YR02iimUBcgXqhFR7WVxi2VYZxNNYReG1+vbmRsfZtreMiHgY//OcSPkwcz4ntAaBp3sYA2pmQW3pAdAS4RbmHSIEjcoXEZa7eqyhUrqh1u4hE2KNr62UaRUHCKxcgEDp0G9317uA12U6zodlf3d/XOrqLamktGTbIsrPHagpZWPPw4++fvz4ax8U0d96rdu5Sve5yKufXpX0SqU/8vFRKfOSho+uuyN32G/Mqqj43BBkWsGsrDY3IWA2xA8wdNkDEUsVqlP8rVf1dpPfHPGc55D6N1UAjABFH/Qw/CsyQGeZ7zVCRHIhYWEZzMPx8Utmr8+2r4boavTzclFJmJHJa6QclUl8qbmjWwQVYvvr/9nFv/nR+3fvPrsh83Zzfxh1obrDRdRqVaGbrQC0M5tBNCK0jToEUbsG9WbXfFswLlPxHobZQuAoPojnbh6Ok2NZBS5BcWndUOttGsAzECs7UCKddv760bPjdQjnqLXXXsvS7byckLfiDvPUn05fSOq+06Hw+o/8n1yn337Vv3+5/eJbnK/3x+ym0fmiuz56W3726OI4P33+9Jf/78vfTff7yDebn2yX5X4vX5t+9uGjdMj6upuf3eo0CC2a/p2pIm2MIflut7vb5vH3l2fP/9CuLJld+P7Jx/vrT5790uur7rW9g+OlmCEpopLh1czohU/vXr/LuH32ybF7/Plv7n/nRTBtX9YnJEvqTjc3gg2Aum/nmUbVCG+ukO6OgnbSmMpxyTkDL3st0e86CTELrRWzFE2zU1W3AkspKwIlFg9nX8RuqPG8eRkDn8/ae1uRalRqhSOosZJfaG0mFX1ERHgMVkNEwqitMAm0blARFrAO7iIRpc0OxRwJYJed23LS4dKtU2UpVEZlOieqABzUZGvkn5vfvHCizXvMAdF0+UiQDJX63A/+Uz+VF1hif7wcTiVd+txv7tQ1kk+jednxdbqsFy99d/+DRT/+a+t22/Sffe9fXC70ceLr/9F7z0ogFix1OHa7/aHb+n64Tbu0l+3EZGaqWiSCPGXEHG0F6DaDIAOiQa8kw7MxSV0qQA+KWgQgwtoGgqgitNUyJMDkK6nOG6HBCNC5Wt2ZrUhh4YMEXTwYeQKxsg8Zkc78cAuRpDZPwxR9Mm1sPbi2UR6NSq8iE1XHOt9s10Ypm//Dbx5/97B5vJmWcSxSCgjquoohRMG26Q+HNBNrygpFBMuZxNR6ASXhHuBsAS/htYrAAp5ZKQ3r8KCWts5rz/OgtdsEYo1wESgwbAbpm76gdtmWKJ68MgGFYKIJo9gWP7w6qiFe87vD0/6/Pu3oMxHmTBpVkTokDfTPX370P/ne9s+eaPntp4f56pFI37+gXfX39TW/KzGVQcr99SF3KqX2hFdScmiv1cBjdwUZ6ub5jW5uqhwjzZIO019P2/+q/Nqz5z16T6FMGpKSUuFh5mEMJ94vcbzrbg49b95fHv+9+U8+3SITNWIQq+bwE86AqKb0kVZg9D0bG+u42pAnxHyqtfalLrZMSVKX1BuVtWnAt1mVSUraDvHZskYl0xa4h0cs27TEkDw8PAzuq+0pzgv1ON9wAVCi6Vmev3CWIw9UaetgOy/+2wR4HQYSCxWM8OlV3vTbjQbAuoQcm+jp+Rlaao19DC1pCpthOwQRZY6QkO3h+OQ9CfnhfQwXz8t0LK++SHb46YefPu9TmoEsy7LN6XX//vEVb3ZWKv/eu8vhcLx/8elf3Gg3eTz/8L/8P39/+OSYn54wDIBukl4kRhZlLEuUHRuwaG5HMdYZnjgcHkFZ6cAj4AifGeueanUiOnMiz26+0tzD+WBm91AHvJXpf4HiD9Zz4XiziGkhpRUGiSsmODyY0nK6vzj62J8IgKQ7ZK3Ymn8ZL9yDid2q8Qe97f/Z13//322WDy5m9ql2ZSGsBZtm4dFaVGl9OgmPEEqs5eC5dIMKTFzYDCtQIKgeMatKwCPGmCUh1whoBKSZzK1IETyQw2KtAVbaLCJV7oboySCVgoYgDBF186AlIVn2xw/GH8os9+8tL979Nj5Y5HSt9zVpuOnQmRGStc/u9rPX23/44R9e9vnV76TD9U1nLow4yc2nX9Tua9tXr8fsl48D79TTpCMFNZjyCaoiHps5b+a0Xcafvdy9W55sj9GdZHhdru/ld/md5W5Hj7keaqKIpKQKkp3IRGVgGF/Nm/6nh/v95tnSfXN48cVu4zUDUhTaBWBr6egtIWBZA+GIcFsQ3QryvhUVgWSvcHhZjt3Qp6g2rjyevA5tqripkGcjFpfm7LtBhJmF5uxLDe9rgfDN9olrgF8x5xIrLsDb9Pa80eL5O9OZtt1GCTx3dKS7CzglClWQX35hkcd+J8OmS7m7ZFgN8Kiqmsi6Br4FBFUV5gaYS+t0uGxsX4fpr1/Nz371NL788fd02rzXv7r6Ik97LPHZS7PTzdJX/6txqC9PQ3cr1vW/91fvd93Xtn2dOKeypOXf/0/xxz8OyvuPPl/MLXo1pjSX3hU1GOUULSS1YxxoRnBsRIZmmRABKhkOWKUro809KNHwFA89QLxV8p+X+OvA8u3y/hce/nVY4CsS4zyEbUYdEWmV6WXAXRTl9l36OB7Ob17VRkxeEUHhS9L5VHO3tnTRLX/379Tfev5svxvvsyyeTpVh7me/01WPJVaVUlpEcKUxkm3IJSuBRBHVRLO7gxQ0PzNt272hRE6uJSC6cjzBtjskmpPpw2tuH1o8TZOMuQ5s7ZFFpKRmIQwqPMLCGacbXLz//p7Q6995/c/ybvjrw8VWPhuSKJG6jChwzUmJw8enX/4WXv3gi+s/iMfyiXrFcGT313N9WR5fjI9vqu4/1ne2n9a6k2TJvDrgmZJImo/w7Hpx/Py42d5s0uvXu7yT3dO4nV/vnr2+rzNRbVmgAjClQpGkiRmpgxvriHr5rT/sfunxHQ77P5svE7wUNQ9JzRApzqHPz3uRQMSp5WUcQVKE3oZMrXzycBSbuKJ4SLK0XlLMxV2U5ZzMIyAzorRhc/SnJesBQ0cPgp7XCRZXLr+Gn0fsLVO5v+Fsr7cvsboLB+JcGcb6WM2PwbCQTPQ1d3G88SVSpyHa95vN5uKi27HVKAnhHhHagAS+WKQ+NeOMgKMb5iltT59f/vq/6t//E9v/7q995/nHT5YvHj+/em+cX319Y9Xul3T3Ouz5Z/74UC7kxga7+1GGyTh225fH7djd/wV/9R8cKvbjn3+SUcW8ukV4eM0wpKhzhEjUqpaIaAm9nd91chUUIGUiQAmpaDbNJmy0SpzX4FjtHNYB1zpUeVh3rytFWeefP++J037C11X5WxEaACKtaD9quIGCW82hF59ZRMNnZWl9u7eGq87jMMSpWhMSiCibf/rOX/8bn667ULW5W46LmjNsFV6wVvtEI4VEs0uAI7Xn3jBBJNRcFAanJI/qCXCHSs4pTFSks9RrFW9jpocp5rowbVvgh9eFRv4gSbr0iX2BMixCQ5LCjNVFCE9uFDsdruXru9tUvoHfs1+/+zD+h/J+nn66rfMuQiWcTVrDXPcvpw9e6O6j/vIP7nbPTA0Zd3UZ58vBf/XZnf7gm/3n99tdXG6PVi4f3ZaimYjV5c+mi6kOpW7/fO95/6fX9tk/Pw2bq/p4s1k+kcdRUQlnU+gJWD21shsp+oFVh0jz6+Dx+79yGo/3n959/ZFZjWDVVX9H2+mBwqMRYcHwiLKWk+v0GcJoHjdt0xBDNE7moSGH2W4AZUBEVGVd6yO5wxGYVgyXzRwlfKlmTnHTr9xib923a232duH6ZvBWKKBQClYBiPjSA6ObJfVycajI26121VHniluE1RC9TP242Wy7TlLqssprEO4enbsVawFARKjHuY99993ff/H3040Pv/ln8/1RPnjxB7+cf1tuf+2d+S/Enl6Mnf7S5mC3p8fzbX97vF+Wl9Wn+1Mpvuhgdwn43R+9A4yy+cnhkVXB8bLnHIkurUnFGCGCaneG8Hg4mI13dJ6MBlt71ZpWmr3Z3tnDN2FtqfzhkvKta/dz5/3nH+fd+Nouf/mR2rAVpLiDIvfLMPHxQ/lmflYlchcgfINF+lyKtxstXv7y3yt/8NlY3sslUDnenVxNkq9JyAN4EA9dIyARbU/LhnhvIO62MlYHmABjBIWqmmjUpL1Hp+peIUqI1IaIgK2/RN+qlyICvvrxuEnf576rDfEbQ7FZzCjhIYJIhcppsuv4gLqU93788Ydf+8v+rz/qv7G/eXWx116pmIuIAbBw/Oyz8Z072Ph+9971/OPNK0POdTCkx5iurw+bbx2fl6sPlt3m7nY5zEtPhqAWQVRVYNhGDOKnjzle4Pnh8Lde/rXWYd+nS95f9afdlVtdnOIijOYeSyLigNyLBweTSV+Wq3f/uvanL6bOjsdC+CQhCo+H/c/q5kwBQAn067qtupuVCCHcmdPkyAlgBdh0VVvvquGxqr3J6k0QAcDNdVW5QgRiSXGjnb/q1/uxrDOARudF2LrMyuubI9HWdL6uup3nm5wrSK6FjDeVTIsio8EjbHmkezPphv8fYX8aa9mWnIlhX0SstfY+wx1zznxDvVf1qshicWazW+yG2LJIoduGDcESpG61bMh/bUOABf9rSDYs+4cBG7bRMATBMGy0DbUMAzJkyLJsS61Wu8mmOBTJYpE1V715yMybdzjD3nutFRH+sfa5ma9Itg8KVZWZN2/eM6xYEV98w6VxjMHp3Fpa+TjdVHWmJGmx6JMchS5FCRyCgpuhfaOckxVm2/1zn/0Hv7783n/74svPHlx8Y+MvVs/3/xT9g3/2+R+9Fpfj89Pj3/bp4T3Zr69s+ZN9LePopVi+up6m/VYpWLx8z2iRy4nI6FgUCW6g1pkyUzJ3Y4KYt6H2Zes9N+UOt0oWhQymlVqMfBMCObnNVJ8DOVBsFkjPhKkD72I+0P7nYQCHEeAAj738g9aTh/nncYAdxLwf+oxz5hYgcXBUI3ZqmaNthobMs7bxr6w++o0+npx4ZY6KsUZS+DQ7+BjPA5/M53+eCWf3khnsIUdh9uKUglbngGqOIMwEIZJF4HRdE4OzQhg2U6rR0ENyJ5knJprXAIenTJ6OuhisNYCBQFBzESEmAge4xLoZQrj/1kg5jt+pP6Np+P3NaycffjRu2c/71PGUI7kzs+Pqvet3ImNcb67/+l/Y/Ug311cfP73SH7w7vq/jd+jy8WuO8clfJuL/9ORN903UalZy6aDFzKpc03pK/K19v1120tPu5vj0ZtmX/EnHd5djup5UJ2IlIhZquQXEzBp1zyJ+ac5he/z7T/JlsWePlpfDQGq275UCm0uZwbtZHjpvRwh74pD6LpA3SuU1WR5LpeBesnJojEo0brgDQrP6o6VWkJupA2TVAhl4ltV7gtWqllkazHrgoDsRvVQINFYTz50qH26lw24YjRdg1kIk3Ql6GFHmz/3Y4lf5T+KiR9leryoROXw048Bmx41HTjsbdmbuFlKKKYVzTt1i0YcAeC2qKWLiRb549y8eb95a/+e/+Lsa9Mnbn9Bilb5dlvdf9I/lZHjBj/YPwneGt79xec7x4vpInpQgKfbBi1Zj3WwyjR9XucjQsonTcjwbwKIWVQEo887dwUFYmE1nGi25C7wJ1Ofnxg38JGIhm40ZjEAy6+1svucJ7o3w0sA0zOXhcLv/ExqAtnVr2MotBoC5eoQDe7bFfBKV8USwFjk4E0szLOHMAoNIXiwwTreEJH/8V8pHf3hnPKNKSYDJOVB1GrsDMaeJdVxmI9M5GIMCHO0z17DlsRMtliKPaiRABYfI5BZcYp8QivbuqAbmxqPwWcbNDCMcCkCjARzcoxxcu1VkL+ruDhY1DuQc9xLM1eEmXLYT4+23n0o8fvbH/sbV8fAtSvjkR2kjqB6TmAZXDxLgl5vu0bPje6erO588e7i9I+B0czPsLndX159tLt7d/t6y3vPVR/HuOx+erBZPXjuClzxOdWfTNlu1mxd31puj7ocUs1ns1x/ql1/7sBsH3vR/xA+uLz/MLN4lDe4s5BqsuhOx9lJ40VPCBaV65//yn7xeH/QfPVzm2MWcu13IxmaGQi1wPtzeOO16Fa3DnoTBEmIK/CQGqIJzznkYLEyqBgmciYiEoLPOMjRQrfG0W7nF7O4FgpNtKPnIx9vE7kw4YACHAX/2M28uAa1mzFhUAxEOd1hmAgmTzjguzzeWzl+4WXaszqkTTMqL4HByVe+rhSRa98QUHLjXckTcrU5bJ/oOi4SUwnFarhaBUdQXw9Wdr7741s/e+eTXvv6H9nBdz79Yn4/qX/yP/rWP2fdbOTuL4dn4hYmXF0ePrvhZfvKt9/8CNp+8SI/ubZdiPZ3epWUdTqbP7l3adtd/oBc3oyzTnhem6lrae+eS4oaZzNzD4eS5O8PdVYhZIhGxBOoqz+7MMCJiBJtdDOGAM0wNt7yA+aJ7dQL48zGAmQqIW5bjbaNMAII1lDpMZGBBncDmXafB2D2hGplSoNoytWCiE1Ms7uh9L/Ti17/0B3/AJT600ttNCDdZDAvgKJbqQgJRVSOhMFVhN27RcW7a6JicKcDhlDwjAlMM4tY+bk5EpBJiJK3TeMdUj14QXEEoBoKDZxZHjM1p2DA7rbjNt4yMcZ1Syosbv7OcRq+LhQ1FqMuTB1ZN0XQTP/py/06pPe0+HVb3/M7zHx7dK/bCK68nTqlMVsIYqQR7+t77905Or2/u6lPqL8zhMtjxXXGq3XD/6v/8g297HYdPv6XS9cuQTo4fdus79+6fL1z79fA0L96ta6x/+d95ttzRvW8v3zm7stUF7ZdS71L5ldfS7u3NdsxXJotGiQRJQJmqL2sMmVeRkvHlvr7xj/fhe8Mby5+62u6dSllhcKrMk924b8IqKlVJpfTkTe05pegWfKT1pYRxoRIgnVlaYXm3c7UcfNwPw5RUjcA0tboBI04pCsGNAxNKJEJw90DVYKULZBap9sOj6SZNFmEmUYBqjEydOycvldSJmd3A7NoSUq26pIqqIVnxwEXZPSchBFSYG8E9BOS6jNvzMhGUo6sjoJYouxAl3CQJ9cZF0lSjmHoiOChymz9bKrLlbfmMiCSmGNKyizJK/zqeCb66O1lM96dv+2tTfHD3n/nPf/WiPJoWw26R7533y1hP14vjxUc/eeeL/8mnX/ntJ7+0/903N9/85f537jx8/+Oj+OhZ2U2ni8UDeS3tfu8D8hyqDmhyGEQfLdT9uDtiNazMW+7pKOIVIZq7Qhi9eIU5SxfLZN6yEd3IQMTu3kS5gDaZFWbeEgqjJbc2rij77QjQ3NDmQ+/BnJh0Thx1p1k/NfdnHma40QQEgsjNZ6ehHC2eH7fswaptimzZogR4M2Zlj1NdX/Snf/lT+60jvhfKQqrEPGDe8lRt/JMCCKFlz3sDpW4rFs1VxV9ZbSq3u+WoFX4nFxE13gVC8ElntQa9UvwO3cx83zlA8yzsDuoXfQoScB7qRelX1SZASAMxhFkqkeXNsjt/WHob0/PLt08/Pfpdw+nuGl3Uq0suN9monLAXsv1nH9V+cdyNw6qqA6rJSzGBrU03tMH69WksDqJrN91fPU//iFhS34Uv8dG909XZ+ae/enJ297M/fPdOV3yx/9Y5fKe5Wo5+QV9e3RwXj2bjUMaSjYMQ6qAGkWvvQ8E++5HIuNPr050dpxfA+VqZirqNiuqk1/d/OETZOVJkVK2Tt0U4O0UjkkwxiDIMPo6G8Ny4CyCWvk/nEbYv45RrtTjfMAQrlsmTNXJJbE0rKUiYY5wXDyShSNQ4G/bDwpnd+LFve/Xq6hSYTKuTshwusHkklFliWp3FrT/0uTMzJA7cU6VFNhLXUhcEIrihJ81+cvdGGMGJEjyIKcbZ6nphbUVcbF4zw2vOm+aNKMJpIVidd/VqwRMFCnu6K2df6c7f/t6zrz5cVf4kHS22n4X1veF5nJYT46a+cTb8ta5uP+jLCb7/YCFdeXr1nZ+4x3mwdd1yL8p5szYjQJXIijcOnVPUFpQOILSuSs1A4LgYZ86ycXCCRGUmZ9Dc+rdz9+p1fnuFz5/7xns6tPrEh8b6cJ4OX++fa/5v/3oTg8BNW+uMNDzon60fP3V3QIrNlgvUohWJpG3gWdyrdttf+dL7P/jobXuk2tecOOc0/5iHkKPaVp3m5tZauwYCinnznW4CrJeccRciIp6E2NVsrWCvBfvEKnXQNpnePsHP7f5eSjvmZBOHW7/qIpP0NuVwhLHzyhLUnIUCwyvE8vVJ/+bj625A+GT3ldiv/kDvLK+3iUbWq6MyDhLARciunn7wg3S3M47DqTlFh7JZrQ4rFG9KvbPud5vBXPVI1bUiPKzTWKa9f1zNtBrbPaXF4sM39uKaVBcXGNTZfN8vT/6qXsgiuEjZDY9317tax5pi6mzKNZTL6us48WYghmufTfqr8zUtQ6TqCAViRvG16f/0rpTcJ9GJaH0WtNSqaqUItFCABwmBgvWhGMF7COtUMQQGk+W1+6zobA1nbDYunlXd4d6BiIkJlZ2lpdSyEyHlZRoXpsROcB83GuQGPBkJIfAYBOYSjBseN8wSvDkAltkdIurBlQTEOqOIbUo0EBP7PJoAZkNgrsONkYHE3Yr63AG2SXdSIxF4qKrEzFlC7Ft0pzoc01QrAhlSiv0i0HE5fYazD+mt3bHs79nwC8/+CK+dfPBbX/+V44c/6Ghx53zxQb4Oa+3yiw9eP1/sVmvej39x+R/H+ylU7F18qKvIxUwCA4NxDItgl8yGSJWo6ejFFETmAQ51CnfhteYxC8FK5du7zG93WvPBnfG9NsjTSzY/HYRUgNMcBUYvq8a8jacDLwOvHhg0DGCelptTuD0LJ5+kx7/raCYp5gQ01lL7eyEwtFrIyTfH179+M/7OY3QnV14mi2UHwBqnj+GuPqvEG7yLpr1oeEhrQ5RnltBtSXJlILAZAcSUVdiLUj2myr5/Bb+geeI//PrlkhSYfdUB1HUn7OrX66MyTqFrNMmmPnYHopPV8f7iS50SHQ8Xy8ebt/c/4tdkDKdXNxxuXohXEp64993T9z/Zf+XNbodlX0shEatCFgjASKY5POKH0zDmccg5V6+5AG5u6tiimaTKp/3qin/yIpRQLjSVj8YbhYhR/OTBnaM+ZjUHL7vAXa0l12fjVil2femX1eXm489OswnHYXkyXkPuTn2MjEhskYQnPv7yH1/mwB271RpCIOeuZ4afllquXkyEAnembqgiCHV7wzEKxe4YWkHKuYXXHpiaiE4tfNOqzWCeHxAAEm7FgBgm4ypt3YhAwvC01y5mdNumC+XqBicibT0chJsOvK0LwNJc+oKqCYG4EWfcSs/bsaObU1MlipzBDlfrvSyOO98u5g93VXclx6JWZWGYiLsyc5OLYgU3BJbKDK1q66qAOpc6DFfV0U2LqT/NR93R+Qf1EV709x9jfPf0Z4f38UC+QW90+a2PFOVeefjlbYmQRz0Bz773/lceyOR9ylBUrdTvWkqpdQGlFCtGKIisjYzTVuIgh4EdkI6JIrzqlKDWeFIz2a+9TvMBvh3cm5ICs4Z27pXmw/+yXXh50x/YBM0z9XPn30GO0A6dmzCMEFJ59uLRw4djsFvCLcHtsGBwUiJ3NTMG6PlPfe1HH7/32va1ilS04+2uoya3bFC/YyZmtJ0i2k7q9udzmBHaLXAQL3A1R8uPMCZBJXYn1NBnzZpnBuEt/nH7TJvTiftB73z7SvQdCIbeNWLIIQqbzSoEd6Lgecy8WL9TYpGTd4eH94fzf6xHdyJS2u+tPhs3a3HEkMbpxUef7h+8fQ/KHQ/jxM6lZms3FtTFbQE+JtdqhqloGSZ7BqtlmuqR7keEVOWnpviTRU5Px/VXrzf67DrVnLOC47v/jbTcSeCgVULYhoWbOn1xuLm82l3WlcGpG8f4JO1ubig9P7IcT++JBDFnZhYEyyL5658tyOQmLSiGcnE5zqGkE1LvWPQ7hbLQcjlWLSFfHtVaOfX9BIBCTLVdMS5oVG4FMwshWJibLHMDUNpWkbWpuonTWFIEiMmZQHyeR+3tOhC5uVnv1YmsHN4YVnJvwHjLnm97yVSchGAI5rcAOBGRedsXBxCRG1K5HlfSiZo5SJi5XTrTDABrYKvGMlCIAQ1PcHMfYkRVCCFGUZduLLDifNXlrns+Xpfr+46Pp7QM4aTint+loo/OaH/9ySO5WNzbHZfS3aeb/MlqdXL3tfsXMK9OzHVcrrXmLqkRtGpwEtVSQA3NEGtyvkkYCpGJAkvoegaEGU6+V+pmpoQTZh4E/hR7px3i+UJ/5aTPMt9muv5KthAa7v4KP+NlCQAhtNHe2ytEoPXu6ZtP1g+kJHYHSU2f+wmcvcLAMq73dXnx16r9SXezfrwJ3RCXda/z9yOUZk84M7qIwOYHXjC8BSfAbGbwvSxNTU5ungFmYdY+qrruj6R4MRWddyK3BXF+KG671plR1l6ItIwQdz6+3i7XccyBCGZtx6bGrDVvh2X/+P4uDUt7X984Lfid4/OjGEd0Vq94s73TwwOn/dXli7z6wllJR4Gyc7BC1YYmgxWtRu6p7JpbY7Sui6RKX4OV/X7IOyvZtOTnj3f7UPJJje/8wnbZTQ8v/OrZ5UX9NP/qXzv7ze2CQ6jVzKJQLSpyEU/v2rDZX2+2Q13y8ulW/M69Pk5K++0K1DUfbkYAx5TuLj5O6ynHnRsghLJ2AK7Wg0yrTZ0GBXs8/mS0DA6R2Mr+Ut4WQ63wYg65zZecNfqzAuXVl76okRvYZgIrV933x5WVyZnBmith75SFAWKvZtS00U7MaLIkAGzErs4ghlVmAdiLiJASwBRH7qnSaRUx81pX8/s+OWPQRQv5IeFMrmBycIAVc9UAdSJjd7VaNURhd18zqUgIpopSiq+rS79kukNXS74445B6z5vd6hOnvvoRqd87LfvVUVy/e3w00tWSPoucl1+8XvE4rO6v/+T8OBbd73vW5uwbnIAgg0QJ5L4FS1WwkBKISImNnCSg6RdiVaiBj0oLK2VmcpqZupidMl59tOULDsiZ0wFCaw3ArVz4ti68aoL+kgd0+JJAM9lC0XI+VZ9t802/3kZWI+JaUwMVWynhRi1hEvWw/9mf/vCTD9bj3WCBqJObMUjD7h06gzmtjBPQ4vuoabCBpuKfNT2vHGRzDl7hASwMorwMpZKOd72E0Yx9ppcfJpLDE6nt5M/U0XlwcsdiFUnI5UW/rDfUne4IzgQy5pk4UPfjg8VXYk7evXhKX+AHN89W569dn2FaUi5mmGIUy2G3c9x5/GQ5hUXJxklKLeCiYCg8myfLYqemagTESMEL08TS9XfcJxDZfqjLpwPbuu5SeJDzYrJ3sbjzetK4xxcKfvv8zjOHE6wqwxFCWOgAkdPTR6OW6+22aNnu0pDrcjzuyoN4WomchK24StR4+t4PcNNxPKli2aSLV9TUPMpEqdNMzuZebPN8SrkmzgjJp8kuFj0HEFa1VFX3BTDfpQ1RmiO2cOClLdTZFRKpfe5VaX92fMVgODE47v0UV3x2wWQkJBkEg/BoBqHm20CAk1Hw6uJK7KomBjXqoqnqTDYEWNiFlIjJAGYS6qTrbEemzDBtHzUHWRDWahxARMndT93hxBJEyKoaZXXm6mshjT0Uolq85DvuO+Me/loaS7Dw+m4y8X319Ol38oN07Q8/WT0qdiR36Ihv9nJOO1su9vsvHZeaTYjF9h4lDtIuzpVrNjM4Qj95s60ggAI7MciCGpxFBkUUZhms1EJsh5va2u6eDjP8bdPsTTNE8yL1tuE9nG6/BQ7a92Gak9RfsodfrSatABAg0iRa+2R1c/m1n/wtMKuTZGu5o9bqh9cQxVV1sU3hw/9Oev4n4+LO6dAVV7G99zjglKHpP0jp0PS3XfA8SQDUcgYdzaf5lsFmIZDBa+NEm0kcKVbqdtrZLW/EnejzTybMBcAOXRQalywEdmKmRac1LMqzlTfm0MRzZWTUslq+masgXU7x0Xj8YaeLN7//oLsiYrlC3tAi5ClNOD2+/9bxai8+yHIjRFopBCKBGJs6lxxzVONEVgBmA/GqMeFoVZzt+DSWxVH/NNW1986LtE0RU1He0tHPH5Vy/+qzzqtydFa4w0peqBm01mRxtawoP/ra4/H6k9LvrvtpOA7sTkwBto57EIf1725OtqvN3ozFUKyezSBvz15JamYjuE6TZOrdDafDmOESx8QEbVlWEDow/UAgMgKsiQFdqA1PwSFUSQhk5kDNlK1z4mb+zNMKWSM2x1RHq9DIqKWEsKzq1OjuALmrMUHBViywWQ0GJokyqBoJU+lpP63ijkgrUgwGsDB5yNuaYq9bEldVXrGJCdvkpJaO1xdVOSBPnVYHU5hMiULHxSx2NI4grbIMvBEGC8ozOSo48Qzbd0d59CmuM3O3mqp/5ZlPD+jinr97+nS9v3MRToblOt+TZ9vId5ZTXp+K5qvSUVzlDMBKJT5RgALLc4TOqkltglgP1hKevHqI3fokVCWbJo9MzDMpd4YKDmYKn0O6/fZ9edkE++Fyd5rhmZdno3XMxDO1+PNUYAICNxwXsVaJNFWEZ8PZqSROVTXyCLQdChOBiHlyi+Ja8zo//5mf/bj7zrqm48uFhU62G0/NBwDgTussxHQHEVsVIiCUCpLA6FQNMPUQGO5QJm4+6ZYhrjJX0oDCFD9cVl8iXPoc/9c+nyA4sSvYLTZ0VQ9Pn3Ive4njOi7KNsi0yLUSeFmRunytaV0LKMBTvrF78fFr03oneHf34LUPf/KPJqxtzaVS3I8y1eADifN5d/To0ZnnZRjL/lyTT7XnHNjB0VTE0UftiyQiuLBrdjDIXMhJciDArNiibjr0Xsfosg/kEhlFLOsUXwzd3qQiaSYCyJl9ErhJRJjCfkW02x7v4uq1ePLhA+izlYjAGQqqRSbrT4+/znbiNXqYFsm7utyB4KYWxWvoILuSSaR+HIPtmTVuJPR1E5nzlXPqQ+kxjsoMdxJqfA04c0bL/Yp7jxRokMbCtsIU4qjLxQRs+vOnLNGrxr7m4iJaR6coqAjOIWVHluRVQdYc8tGpVQ5WWahQYCNysxqmYhR0RPCJy2Sp0lQRq0148zPfykqKLShriWt3C2y2kSBixWIIVKenHx8FqTtfnGYKasa02tXgJMoirBTTLoqRlSkyu9ni2Ip1Nkg3kuw3wmCMrpAxYXy6WOg+HZOf2QmNclQH3g92TTrRyemmhONVjIkXC9lsF8GJOAaHVSZlvZlYdx78lsvvZiAJnKODoxj3wqqSLnOuTAzhdrkTzJuWwUnIVOY9XpjhQQO5gtlmMm2asVltmD8dlAMBRoA3TP2gw/Ymo5sLeWvqWjoZh8efXsXh/XsPLTOYOKqbEKHNgQQEIjgJUNV+6ejym5XSPUuDaCgjiZM3mjPyvD6CWutQmwmkWuvSkc2c4JBmSjvzy3jeg1BTUDG8Z7I4oXeQNjfQzz8Ov1Zzn4mT7ffYmJX7npwTAcoCDu4U9DrcwdgkhY5Uy+ZU3+AJcZU+vv4L+wd4Ws/v3mBBIUXh0JmQgsXT3Tfu0SYQJC5oElUKpBpm4ao0SIs6a3pjIXd1NN8UJw9wd2aYMNyZa8PLLMANFHF88Zi/f3n/9DIamb2s9IHd4Oo79UC2/PT1O9WlZzq93OP4LCnNb7RUWkx+9+qHtJTS7+v9sjSn0q3yVCGEgWF5tLpe+V6XYTIQudUa+rPrrex6c6Da5EFTZM0ZaMoAwXxfuzkZYUO9jBPyAAIL0RJWOMgU2c0nPr1RSGSqLmSOkLyRSFjdBQwZjYki0V7YCcwHUEvapWZqgFEtzQwWxoArULltHTBe5PcX+PTuuTs4eFEiDsyYiAAmqFc3OZLBY9cXvQksYmZGLNGIXNB20ppSIoy7FKMIyKfmv6IgCIWAOr+wN8dH027sV9Xd1ImCm5zGyKO7V4v9VuqLZ0Zy10uBThZc3UEYVWAssR35FusOOMTMQW7BDMywHUlwazYI7m5i7G0h38Rs85Lj8LknfxXKb2d3Tun8fLPw48dkNk45MAZh7ZcUWpfXaJzuFJ/lzYv1o4dnIS/Y0TI7X5q8AcEJICEe6/Ff1Ms/jr4+G3k6Mp4GFjuksaKAmd2UVSVACxoRTOftfCtTIHfMQUpzVNEty7RtIbFkt8VzXimR1R978i/bIrgSwZzoNvhATKXQSbQa2JpZrDlRJ6W6E6m5g8hqHvJR96VaEuTFhb2V3xgu052zPXfBqFv0Y1EXEMf18clJZ72S5dhZDqqJUCPTrXWDO4CgjVZdiNwsBCYwjKRFMRE5t2SDzoyFtC5UFRw4XrwVfvBpsTUJTFX0sLd1qxXuJUBMF+8+YM+xRz6SvBkphNnGmsjRjfL4Gx+frGDLXcrGXUq6IBCzjqVTrVljd3OJx+UZ393nUsGpIwt6+vrHZWRodbeF7lrMCnMbOGfSerQ5cJtIazzt9lZKLtVecGI5koGiuQ9yWqsiRTcXserN4MNAkZzYhUJTuczazUZ285kk3gAHIRig3D5IXkzUEAhMVg3q2+4L3+3s6UpgIerUO5SIG9G8XWOmxGS5xm5pdS9OZg4nDs31FyTOYFKjEJcROilaKiej5l7gM1xFcEfUyaLV0jkMLLycRrMy1oVSiGb5DdZxdCKT4uKTkBkxTMkE5hJnTx6qNEt5MNMoAAesmHMkdZZa7SUU5jNRimEN8uKDafq83n4VNG/svvYppIM+4HM4IGY+9SvsgrloUGgv/YGlT8Snfnn0gLZHN+KsaL4qQKvUxG2gBghWfv7JJ9/drvWeD30QCtspxHpYWc5aI5CDyU3rYdqPB9f41lCQziSHA5o3f8hA7s7uSNWdhthtQLX4n1fgME8FJHYYi7hAjNYwJ5hHcivEDJ/kqNx4n5vcENtp2x+dPhiES/4DvX9qy2/58f2YY6TEZ9N2n7NSjIw7ZxjGxbqQFe/FoAiUPeihpXIzN/PSpEwYgpiDYxAHjETnd4bbysUbn47DomY3OPYFesWXehJgXktTS3JzgTOH9l0xI3z2pWH0oKx+XHfM4bZlMjLT49Pft169kp2f0/lqtfTFZep52m+zFqUyQJ6sPvj05LXy6cMu51KKSX2+T+h0zWpBBDt2pSBgB8za7cDusKpE5rSoGbQ8Xd4BAHJstvvN1k9WhZV44tP1OFhlptBWCBCGwVmSgaxSkFqc3K2z1v3NFxOUnDiAwOQErz2b3+ZjqaJG0kqwoN2bb/6jmraLUJ1r6c3MQRTnC4SIwZ6ntdZiUkvw4k4iZqQKPhxtCGlh4gQQuVZaEBRWy5rctRAFYoeZr6ZtXPB+E4iYWKha4ITi7BxFq33WUbFEymm0VKsYJATPGjx4NXIKMVbxw96ugXHz/ReieFByqHqcshLx7Fb+inkHt3X14eAe/veV++9A/HkF/HuFCDRDAw1JnL+vv+R5hJcrQHID0enNMHXPd3R6Sc4VRKbh1X/QiInIKqn8M93TH3W+uLcTPvLes0d2n396ktaHw4RgqnA34wZdtpjI+dC3TmC2QoFB0AQnrMauFtgcWY8aWPdnyh1nyO9WJvVKhZS0CClJKdLYKuxaqrBEdWIoC2yYhvvxrW4fSuz+yN9YFvlRTK8F7YiXsctLalgGIFo58siBSi2iruR5b/Gg2zZTdXODSQs4ArFDpDU8je8Gd+8YBmJRYnKX2NT35PEcnx19bYxbg872O8winBniQAgygfuL8UvKMRVBlun65DRchfaRII+Ww6PxG33dsWtOg/H+JuXuC6mTo7haxKy+e/pi/Ozh66f5oz2mcCRecr1Yarz+454XREQp0eWyR22OLHB39PPr3E8krE5WNZBeXRUOIQjTurtTn7/YLdgNKHa96kjNjYIqJVJlhiskzM7YUljA5BZypsg1h7YfRtM9gjKTG1lNaOLTWJlMiSYVM+Fgtvv+v371Xzzax+AFQJ0ldTPJBJNziOT1KoVA8JrgLZjerVYKs1MUgSAMnwpi6lGzdqZEscV4E0A6s2pqSKgm5xMTM9TVWUCBJ0P2bNQTJ0k2ErMzc4vM4khNfW+qUZgImuZELbi7mdoSgm7RBQaY2GC1trIwH1t2/VMN/Z91/RHwKvP39msOo2GjdaB5MtNBj9WIMGhbiWaf6bOgaBjrC9Hw4Oz7bpE5HPZ0BwzAyZzcYPr6LwxPr4Ou066XxS5uS2BvbwLRzMonYiNui2Jzd+Y5eWU27Z43meS4zSB6JdCAzCSqImzjcXZY0UP6+Y+9Kq23UTc3O5Q/MoLFVewXqZrDPSbAp9qFfLM4zjfLYABcbW99ersGm+7jwh51yM95fZ4VSv0iUo7CBC/ZTEOMmode2GrVIOSqRoEbzKkz36krTg4JJGTsTXQMnq8mM29FkLkIAcRBtZlivjh99o3NchcqmwsOMdWzBxyRFyaRxe+s73ySehlTqtLFhTpzU4USCerqwfc/TENOiz2M8sZZxvhp14VwdH68Qjp648tB1rJ67Tf/N590Vh0O7p74JuVNoBKEglfr+2RGsY1yZC4EJmZaQAKrUbfNxUW8B8pk6vvl+uh8uO5CdVIvl1GWMHMqVSWwgRono93PTNybGbxx/iNzkwGDWj5D65+dhFCZzQAUlcYQZJpXXjfXv/kvf/TeWQ6wwmzePpLN8cbQVS3O4OJmlLowiLB7KR3BbdaMEgtPcLCkZFAjXjAZm4RoGxaJQcJ23n9OQl40pqkd3LpynRTMCwdp5DCYMUrNqRAXZyerLoGptHWXqbkpGeYx3TOIwOSlZVyqOcHA8xyp1Ezc57BLtOb81Y6e6PNjcMvJmwORb1H+wzBxu3Nzx6y7mekyPm/kAjkdiBkkcI+n+4+z2OYOQ5PfTge3/yADRsRky3/65AffIizuDIEJibY1wpqyry14Z9GGKYFn93UiKM2HmOHORK7WxCBwB/Ft+qE5sVJYVkP/2fL4M3LVNlL+2Q92A8GdZyyEq1BdHFEIVCyKHVIRE/FYs4mZK9hqvV51Z28MUrqz363dk/HxxU18ZHREozGmIsUFTO4ldmbqTNWIlIjIXRaGyORqROwzSRES4R4ETkxM4gp3aaMCMSozsRMCOXGbsx0ArR90clxTJqvOIAgMhmao4QQE7ty7772G0nkx4VSxPJp4WQ4fC3M6Wn193w1c1khTHKtzmNTz3tWJAgz98Sp26fre8qs/9xksT1MlGl50uuj3KEaQSLYKrhwSo1QImzKzBAmktRDUuDcZJl4uCjOLO9ZyeXkqcTlWoeKyv4opCAUuItRiJQxEqjO910TYqrkbBXej2Np85kxOIPIkqAhsCEwFgmLsbo5uNjETqkf/x//lv/x3dEB0nQdrd4g3I4QgqBOFcIennVauZkbu7tGJ3KtHMzBJqKogREEei8cUnGAGdiYWMoldgyQQcw7CNsAagGaOECXKpc15FEpUzMU0SKZg8PZ5cDNmMQW5VmEqIAJUrdVTDO0OVIKYakvam3f7rXK0JhBN3Gc2jwQurd9/uc5rl7rx7Lk0d/ufKxqzUfKhHswHk4gcCG3IY1Q0Pmt3vSUq19fHgd1dlWaiAM8YAMGNmN2Pfjm//+17dnp+uR6ldDqU3iy4z/qkdm+ZkipHsQri9j0AIoYXJjcnZnN3IQ6m7sJyIDUBRGxxeQWX6XxRElyd/7Sl0eER1EHzLgAOwAJZ6GGm2TopXiZFBE+c+v1ld3oRUYhNp81JunP+6QLr7g/s+P7Vz/3RsHy4CQ+dMmvGcudZJXE0qBPVvCyViEkmAKG3AripgsTbAnzjfSDNzdGI+TBqHe5AMmZyZ+ImVrGEBrLbhDEPx2KkTnALc6yOsDOYvCcaCp7+Cks/5WJT/HCvZzI1CjgAr5COvmua+zEXzsFU2VVrIQnivl1IvrrxascX646fbLE8viNW7YP8+NnY1+Otl2IkUEm9iJXkChGDO4UuJSkonVTjgVY07HhMzEzuXo5B5+nmslOhHGO9IE6LxTKtiLRWCkFBBLPYcBIfRciJOYNVIcGI3IibizQbiTghknkIcAhJplJHC4nMOAQnTWR/99/4hW9MvhBzauKg5qBDwnSdArlz/KQPski6F7g6CVdlwNR6qHqtLLEXz9vaUYiwad+JZytsvbOYOnWHaLZIAZV4dICFg4OJfdJlUSYnX1ZwLdKPNXIVKZwCtFRNyoJmqGoO4cxCcLWVubs6IoNTCuREruWgkSZmImcDNRdl4hnbbPsvP3DqXu0ADiw7AP4yiOXVwz9f3H77HYhQG6XQQyEmmCFpLU6A6bK8/+jelz74f1wtiaXyqL3U2hQV7s41Oh99/ws/+m89fPr1U1vcuQq6ILIXveTQW5UZruDGWOLqsOxqGtibWkki1WZ72ND7MMMdRESmBA4wZ4/7JKOMxPwirT/ogN3Ul2khpZJQLUIMdab5FuDaPACkTTsExnLP50F0z8nUWVwZTiHq3niJm5OaOcTi+/Fh/xVJbqfff9/vro/wR6vz2p+or8JWI7aZCKUwxZKZzMMIYSJYJHIrzmlS9oI4eNp147KG8Hg77E+2PqSl1sTZKEDdkjvcqqHb68Pt8zeuOcaAWhHHcdFN4088+k0KzDloFNJEbk4CrdHNHIzN2Yvl+cdXr23ObvIiXXR889lP07QcuelvKY0sJzffiiU9+5lf+t9+6Xrcr+I+Jd0nUemlrF0pOWB6bIN/251ZJMaQ43h8jLUdTUOeqkdJywig7640isaTqzXxMUoc0sNuit2wKwOt87iX2V6cLeSPu/WnSzbpqEZ292F47imEGNMqjalxhTMAj+6xWOisKlXqOU+6RCMSpurBqwcxYwJ4ciBGm0I/7OTYJ3cz7IgCZdz5rd/67/+bP1xfn5GxEjGLEKkJZ0M/hGUcR+91MhKhoLIKecpSfX0yjXSZUqhauCkaKJgaxxD9s9hFNtUwoCsbXpfKXVTDPibx5HRUprz3fjl2PO4Qg5iZsE1Dz5MvKC+sZvIp5B5mwtrbBJukhDULCrG4spB7FvaqRGLOXvaWaEHKybyamXGc23MPDm/Gds1RmM2dBAcSLBG5cUDldplzbcZdM8JHdJDb8W2hOCCQbQqYv5LCLUGwFVLsYy310eaz3WLq9wWdsat+jncX1Dbnz994e/VfXoR43gUhN62TUWgxQ7esRYe7d80t1SGkZoHhMAZLZQI78SH44LAIOvxtI1YWMofl3ozUDnFEs0rpxx5EfmiTAABTHUsK0gV3d5ZwcJyusatTDf1IblbHzXCSjp8gBbePrtZfoJh39WzlY7d15YCizORmSjCbZ822wmJuvyWxceXYObAPY5wuJ1ec7lzcOXAzv4sxz6U70GLzMa/ysk5T6PujUanrmdMpVt8uti9G4lYpWluEUI2BjLxC/er448W9T5fBFVK+pw/vpapNB0DAnt0f/MmN5fX+rz2LPoVVzd3NWem8lt1+mbbMxCFIcTNr45JNe8MakMAgTetgU3FnGyktuwtPidz2C3cZDbKNHmhhHp3cKYi4axnNKZJ1i4lVlUAAk8QohP1ktRrzqUiQGOcADzgThCqxC2CNvE/ujlEpELHY3N4ugwPO0UzWEPIMM1W16Uxi7f7dv/Qv/a9v3n4qRzk54GpUlLrIzG0R7dVnHwAr48RmWKV6w0LmplATyloVEsXc68TMd2sZOHYBXRnD3TqsqpbB0mKpedDQdRunFD2ECrbIpJMzCMzdnpa2wYqJRMGcUBVkml0FzGy1gAQGN1JyJ1ViJmemxXrBU3Zgb1FX3owKGvbo0Bk1mBOw/gnrr3bYguOlU9OPeQj82Jfi1ZE+HM6/WYMRguzKR8OzzVt3v0W6rB5ac/LyrxM5j+c/+q/8VP76zWpxsl10AHueWOZ3s33VQZqjzZ/JheFmLk3/IzyvJA+h0HQg+R5+RoNUSaxOOp1VJxuzg5obmNvsavK55+Wfe9bSV1/ITKwkWJmXJUTE4gxLwhL249V9efxwjLygT8qdL4wn7+d0EmOpcfJIxQQsbRBvParMSXpus5jDYBVspQTiUhiVLvZHtMOKvWqMWilEqBdrASt8ZWeLYd1dajxl1L2tTYSrhr7y5qiv660QzEXAgJlIM0gBBDGv/uTh8YfboDVir6vzMJYAgMTJCaku7v5OWTDR4htiKS83uj56kD/gro92jR6o1UnWRByE2Ljl6OaSFVbKGUogDyECpl78RYzGAd6NITqiu280bpw3UFXpOgW5qVkxN8vWRhwARKyVyZM7i4NfAICEsGJmYaYMITdmJXd3oYmYGz0O5gbFzHP3CcRmdqMuApIlM0PVSrlLP3jyw7/73/vn/56uJg9bEAszrxRC1eCMkdyruMPN7JRVDaCbWEdehQqvMIDYhUiiZEa1GsnATJgGRtUELZNTiMbIFMSIVQwC8yLkEqVORRjuxFvBxoBN4zS5WVWEKF7bmtlcaxBS78ycmVBb0IxXD+n0rmTWUKVQqU0Q1YxAcDvGz1u8VxQ/hw/4/HLfagBuzwF/ngXwZxz/V//4YB3X8trboV1uarc8f+s7kbq9J9am458fRAYKw/nPP/i9d7uyTDfBPXS2d6JGCp9l+jyjW1Pj7DKYWkRAk3lbS5FtHGZ6hbp4gC/duVAHdc+6mMx9Ku7EBmZza3rxV9adsFkKeHgxhEdZRw5ZgpiWdvIBBC0UU8lgMLOXqeu+Gmoa7fLjcOco3/1tPl+Us1yPd5lL8eWmeWP7SASAWYgJTl4bcInqVijaWMRprKkblrssq/3mKFatTLogdjXMVBXiR3ZTzPrrlamDl1zMMIxyzPnDqrrBPPmyEpk7uCOtJhyLynn+41+/6TfaW8kXj2soIoeh0NCT37v6g27Jmzf/v1/v6iL5seo756X/7GK7jO5ZGM4hXDepFHUSmVkoSQpdhH1Uqjl3faEQCKpGGNElmIeAPt4sltPU1S2zJCu16IKFyd27qqYVUl1t3jjB3HzXwCX0blVrpmfUDuqSosBjJ+y1KnFHrZeyhhdCvHH9yThinAoZmAriniUw3I+ehQr7pf/ol//V7/zOTw3TnbtWcynVahu1KDAUwVXmAPChZYz65BK9qIo6FFqZIpOjEEGYg+xZAtdxPKthaXs53Sp1vdQypBRRxnKe1eBwmbft67mFrgvaY8HjRAwQsznB9bD48Tq7YNM4U3UDNfUzKfHipNda2bpC04uiJKZ0+AQ3xYuBAJplKwfSz+2FN9tfAk6ohDkgqQUvH+LV/9wi8LIAzN/6wBjiYJd7ou/AybMvtLFybv3emat7fPorPz395vbei9PujmgR5H0D9InnBei8ACQImnjJhMEs4EBCduj5m/aBmEjnCsc+Z7QbG4Kp08RcNVg2Mpq1ErOPEPmPlbpXVIU5lPUqpTjNNoky+6gWNWYiaEF1G4dO7vzUlkJefO+9cCd0/LGfrSrHkF3IVbrLBl06ADOlYDwbGc8vsJMkiaLuE0WZhuthxGYqXVNAoB5bGQul4K6qCLJZ5NVxjk8Ks1cF79mJ0vmb/fD+WbA151opCMwNVo0hmGUBpd7/4fMvP2NPR9sXo3GhPpUymzwQ0SBPvvnRse7S8Xu2muK6fnnzJ/dsRbVmDJNGYTgJd2jZUxMN7sTcO/eRA361lry9GS0VK+6B1r3XQvAYE/HC9m8ssy4xyI5Qc3Wq7QWBIbBWSlNjWsJBIkK49ebkEN2Jlt5ahCuIgHs9ZivjBF74/AFnIoktfUoILgqzkosQmGAq0Opw7OLGHnz/+Pjv/cTf/M6zMztemZZazUcDaTZyMvVqOoE4BGoUdhF0xn2dqlTxOWiTGWbWmZNQrWw1B+6Su5saaV/rMAbhzoatmftGERhEk5AVhmutLuze72mBUdbBrZq5JcBrBTNz89GWJGokpaVZeCU21cBsEiOb3hShKgiNBmgW58+v4vMPv20M5ov4QLk7sDUP59PMwDLTAP4M5uw8Ahz+oOV7EJrvOAgWuqsXO9q8pWEfqoRKMLSV7PwPG7nJL9z/5jcpLU+DWAareSKYKUMOAUbNdgehVXcKzCIM0zkDhl9e4AeLA3qlaLlocHBxt9xpbekPysJ2K4Xyl3ADPtc9tF8brYLRlMgrKDB5S8pQCcguSc0J425c0pPzj/pJH/zm5v4TuX+TabWextB/jChOsBQCQ91vfdzsIItojJJKSMLWwadOcHMRN3r0fFp/xSFJSMsmSc+mNboWJVA+wermm7YKcdGnIFizVeMgNF29cV3BomqAW4RDGJQjBYbVReHu9+8/+ZGHcnG1W75WeBlq0eU0L3nMzu/8B96/KGdTWFjtxuU7P0K4Dut3vsxlHHWvZZqmkvdotsEBjZD0Yh69/rH0i+AkHUuwcSrsFInUJXnmXRlJiT2ehFMr1Yhp77VUNSvCxAzp5sUV3DkEJjV1NzUmclVDncMpg7escgRMdVBkMxIyYybQjCAz/PaUVmeX5E1jAVAO5uX40ycf/h/+9n/936PldksSwiJwMSerkMFNTd2zmZfstoQqpUgxWwKkH4lahCxaV1gb4UzZQRqi7CVfp5V+tlitp13pelFnJsKeIpMqFRI3F5lKpSiuZl7duHBr8MSIGcRxasR7YmGYCUVpvMdBmB0kky0WPeXJtJIyZyXmoHZ78BtrwG89Lm7X+S8LAM3Rv83dd8YAXoJ+n58YXj3+nxsB5gJARDM0mLue7NGjn/3k/3692vs+kKm9grm5ccT01Z/d/v7N0fSon1SNrZYIx2wg1L67eSMdtSg0Apkexk5QdT4EEtxikPOk0/aYhDAJMQqhltNJyWsBqzMXt0Y1bIzDP3ctGDUdidJw1MwHpCGRxMyNch4rIvJ+uNe/o51My/pJvP/Qzn/D0wklhExezcWGvnFZ3YxYjA5ZipDGPqTqIjZmq4FkFO5Pp7LcHZ+tJpdYpVYLfZQ8lWYJR1iVnJ6WL518tHnvcu8i6+Xy6PyECnYPT/ZkYKGmxDNDo4211z5YnL75c5WRri+1Pzp/vjzSvXCcZvDU+zvjDxLVfjreqWrcn9ZP7wexHKh6f55qrQYt9aaWacpqQ+tMmefMx6XWjRmFLa9OE9yqNphF1Vwy3X2dI7TrPIz7sXq1O1pKdSIXL2qwDHczc6hBgjS+I5mT1zJleHR3IiY1kLmVkkIMwT2ZM6OWUaAQKDla+xC88jIhMFMIroM3vPNk18uLe9vhzu/8zq99991wtWigASmlPoS+P8pVvFAa3U1zqZnJHNVT1RwY2euhfBMTMSoLwdSmmNimiYWZSCA3xJwMU4AkJlPhQFZmPwwyT9KM0Orab2zF+46FiIX3xXnm1hjYK3t1J3g1bRQkIgSQKoUuCcLCFETktZo0Cl1Dxw4XDGYs4MfHegYAA7/C9QUAKEgA19kp5c88G58bAQ7gO9yMnGi56bubd0/e+ftxkzGFRYGrHrA9AAVdJP25L7z/3bDa3/EhuUgec9s++EvZ0uFoOkBMQWqtFohUmppXzJpMsaHDrwgV54c4iKABpv3ORbWCHYIyvzo//tQOGMChVGmJfUBfMzOTz3/KQnHK6NgmcbCXYTo+frPcyfnsuz+S49Ue7+rqZJJl/+n5MFUjlOTuqu47Z3Lm0NItiYK7EjGJEtX9iOkk0Sb1p8+8bvTJ0XahzdrnPGGYqOsH4cgujC0FnL5Rv5j3U5nG/Eyfva9jkV/8dHcvHyXh6OxOQWt1gllHWixIzNrvPvq1zzJ1Vk/vxHFYdp5W+RDZR9b1n33s1ZZP/8I/9tXoy9XzH/xMXGQ3qPB4syjKIQD3zKqa+x5WpqlYAbRUEEOCOPx+pmqThajF3SUwEGRcvZH4KAyxHyRhKVTLPisxREpwY0HtHKZqDlOKKUpWc5hrNq0VwrBaqzmigWHF8kJSr9GDQ9iMQmDnyDrMzO7FAoOylxJROfm0buo4DHWUo00MVP/u/+xf+t/1tXlEwIOO2TymbvCeqzCCCNVaEbmo1zx0OinnXYSDOVCRGNjNNAQyZekC11pZJrCUZ9L5NHhMmk+0OhNMyFU9dHu4Q2sZQoBWtfONR9tyb2A3dZzsR4dD1sxupiVocRZ4JDKjIFAngtaVp0Ak6WJvjMihVBUHkObTbj6Td1uq2QEafKUDoFdOGW4xgMpM5Iddyv//R2jMXrXOnJhgo1bOL7pvv3jy+re1k+LCVo1qxEy1Ihvz47/k3/+Tx5uHcSyLqlpNqAJOAioCg0B5JiGbiFRXLZLIlQMY7uQKiQqmOTOpWkNOOTk8OzFnrgsZIitW074rYejyxJwbJbmNjO4tQKURbJr10eG3SLb3rJ5PYZEn7zqdFoP2vU2Fg03blLrdKnxytB36+PiL4wg8+frTx68tH15c92dLO50uzyZV4lz8uAQZEGFaq5NNTmRGIqVQDKWwYp2u+7Q9ykGPWQp/vOqHT47jIIvtnc+u73Zs5DnExU4Dd9gv1py//9oPBo8+8vqMzifqrp//zMd/X/gC5s5Hpz3HVZcDFw9CubMCRkno/6C+/e6yu94tTseTXT0tRSoyhAoJq6Yv/X8+vXdN4yOM3VUi6m5SfyF5AQQU4szJplxsVYsaCEsCzKqbq5ZaLTfWahkTj5QSbVcq+fSz88d9n3q/ef8Hd87S0TqGB/UGlpfeo2w8DDEMtVtcrpQ8T6ur7rmE5XKhu01HNLkFGQQQquO6UlM/KLRInC4I2QIZhGGlesfmksqg/ZKnIXbd2Ueb145feI/AZfJuT3A3twgDL92XfPX//ht/8J11XsXduO62cLgAeScyktvWQowM85VaoprWLlxzId67qZl5qBOEACojIFG8VKcksqQycW/741IdBTyKmEKSVSPGtDt1NTOXIm7o2K5YIB0U0FKo6y6du1j3e0VkolHrMSmrQoRhpqxBzEm6QU+W0T170uooWxWpCPDcPt+owG0vQE40hwrzwRBHTYn5IL9vFyaTmlDDjGa4rO32cDsStDI6uxO0AsBOTM00kMlI3TQMHE8fv/PNTWw+AC+nbXJbXp6Xr5y8/wes4Vg2wkFNa22gv81j/csewwO1RXwjq4q0DDqCuqozWWqqMIeww6GB3P3AkXW4FmRUqnWOGe7n6ugtYGp+fn6rErDZEMS6RSfGsu2PpnHsusxCY6U0BO6czZYlrQfavKlvSwzbY3wzpkeb1/44n93JcQgUazSrYJQMIrHSOlAiEEwdTmQZDjsSGQt14WKkKB1T5ap3n3RXfeLOfdmnzRQWgrC0GonQKXCTMjRJ9ToqhsL5+dlYH+ax1pyLbC+EYt8tJLKp42TnkmJY5bT6w6P9k+f2Yv/4zg0gIaipizEYBPIO3xczUf3hVTqquZdtF0UW0iQF2BPcQ+LJGtVkDlJxcwpzhoKZuefguejejnYrefiD7umdwXi1Cuen17//le89+Oz+gk+PbGtHsdI6Frk8WvfqK9A43ctp7Q9lk6PttlVIjwbkuCSblLpYEYJr1TZSm5asEqtrxywepJbiVGpYa1gsI0l0fp6g/bmGvvfsUV211mp7N+cuhuvX3/1H7/yLf6fcZFrSfgIkCEyto7bvSWbZAOyMAxTiEoVTkGUjw9NYi5pVI1gpTiJwJmaSCIA6ztxRQzFJs1LDnzikK+aWVxCCQ9gryIualb7vQhl2YFYBr0ZAII4DYpyJmAPcFG7kzhQDTHMD872p01+27J8Dt/5U/49ZKIJZ+3tLID70BH/+aDwf0Ns/b3LgOf4JgHsgjy+KlG9dlsd6vVJis1v6Eci1s8VfmL7/rSOsjkmPHGRVZ8SiDfTtX/BDZTIzFuFG1mzrPgfIrZjAVJVCYHClNo0eiE5sRiDUEkaUmOu80veD8J647Y3mbXwTF3qDXgAvqUteOURSSky1QT/E7izmpt1VSM/227v60y6hPNr88fLkwU1817u7dWlMyNW1tjgVilRN58QcZ6JmauoFgf3pWRiZjX6Uu7OTLvjiAeToDpeleGe6iBFOKNZcgyvI2K9S03e6TsUIPEx3Ni+GcVSSQImZUPfj6EzTJvOdy7xeIq5O8rr+3Kd9eSqPl0MXt4sk1AyJZ+Hlvd0fxWqUTp7mFFTPTi7PelOpTSrnggMvwwGYOzkRxGkOUzhY8C6FumKmmcsnl/IvHv/uNNXrC6O7n36ze1o/sUlWm5O3povR+7C8Pn+2Wz7xcJY7fX66I9+fSKUFx7P+2oaV2YSeFBkk2UEgdhLzYOrDRmJ1SpElcJXcF6epdKdZ62SuviZehWHgSfJEII+cRJhRYVpy0Uf22vXf/zf/a/+pPbvpmFnViYXYYFr9lkMrFIlICWLIcHcs54n32M1bbK3VYqANzK24WyfFQnCJHcMDkbBwda8sNmmI7sTssOq1pdwQE8Q9sBpx8gXZtNcYRd0AdXJzg7KocnBtrrluZBKFTGvTwZrOR/JPyV3nU/nqbzXR/1wAXp7+2zGhnZ/PVZE/9f1eFgBzgjFQzcCAMxPii5sTf+fJbzw/l4lZzEwOx5JkvPPsF954/4f1mE+w426EVQW3SJ45FahVols8EIf7/BDi3fa9puawfamIKZAYLzqCeZuBZjyZqNaY+0rZmroIeVa/+e0apJWF9rQwbxcAX8ToDqNqCKHmdakhUZk6mCk4VJuQr5dp9UahHR39g5t798NyetbHJUIssQwwU4QAIqvqrqpGBK4ioOax5sRsp+fTpo4X+xtPqY/Q7tRtYWVpEx8XTrqjzvdDwH7gBaqzx22VhQV1YxBcWeUsjUOttRBUJfSJ1LxmROX1+kG2Zb+fFp/u9m+shw8e7s9PaFqNV2/GxqGjmeAUXv/eJ6lyxdGHoWaPy7C9J9l6Y3eDOzO8lmlmmxzqGCAtKxQyW1HDEQLIp8WLrv8bv3j1TgWXXZGL8ZeH86H78O719oNHb7pBeLx+/ycu4ifp6enVmO5jIwFU+lXs4xF3r9ep3tWMC3itudSgRSEdcpkquwqVm+QWukghimiF2LTPLrNVEm2WK1lVTsX2W0cIo0hMIVCVGCSY07uvn37v3//LvxNXw2bseBt93JkDK0BCjHJDDLfiS6ZGUmzULd8RiJwwCFOIxJVCWBDTnTYZ4DoiZy9G0w4G4kRCDuJlYIWyOFTdzJppIzwQCxOhL5NJDDwKEEKXSgGZqokpmbf9vsJUzN3IXVkYrlq0sVhnku6rVNqXJ95fru1utR8tGvPl+n52wpP5fPwZGYF4pcLc/hOhERWI1L1dFSQsmxenX1kuji+KLTOzmzWWoRGDeI+/Ojz74bL2J3l/VBxaanMkbgDuYdE4by+0+X0qOQR+iPG+Pa/qVsGmqBrSq9WszpXDSIiCF2/xIXSAFWtLsaaX+9DbFwhEsLRmDkq264OV0gCHRuEzByjY2gfaPKrvLK7D7hT/uJPXyuP39osz66bVvpsssImHMLlPg8msmXbTVplQ4cIE6LDdprSk4Fy3pW57GGGP1bBbhNxTGSJl6xM7p64SYLiBdvtUyA0wm2Ts7+6OZGdO7pAdOjiExdXVJcGckKHx7o/Yl50+vH766Nif6xEXi1SNjckdWJ1/w2WS0fKGYdT51eaxGjg1HwIztDWbMcFY6bBkAiDCTKW9H3BTEIg43lu9/dc3H/VmgVdp+U63fL4Y6XL/YXi+55uzrefN5oPlB0c/9M9+et91f/hge+Tl5PoZ0bhchcyI+96W+3tq8JKL1lwdhK3tLO6rLIqDTeLCJQaZHEmHSvVyMulTkMCh7Pxome56zUXd2T2P5t7DwCJk9z09+Yf3//JvPznFjScfyrgfc7Hn3vgHSxZhZhQhp8jELSLNM1pGzRBZSUgJzMyMBEgU5mOyqm6qpaqZ6uAAMTfNAUOlWZWRNOEp5XacvDcS1lyZmQm5JAO7GRodANREUBJrWx4pOIp5yVWZiVxBc2Tfn3Hl4xWcfz7wZGagl0l7jajSPLdvN323NP9/wiO0xDJiBbGwUakhOD37sv3D7oRYu8wMc0AJIHaixUc/83Pf2H92OpyvR+6zmFV11NvggdsOoP3Q1qzvTGYvHJ4LQKtq7sxMoUVLCx+sp4motv2yauSOYp3ahmTOmoVhbl1nivn88sHBjY/msXcjZV+wUydWhq7TwUgGkgiDW7/f7fOpf00p4Lz+oOuf0Nnv1HQ/pzLnVMyetVQLCcOF2tLF3dwECmEDHcV+XYabS9JpzyH0fZ2CmU9+vZC6nChw1djrcNQlBrlj2rDZOHsXuJGPTJcYc/vuTSccUnTOeRqmLJNONmJ7NMVNxAky6cSST3rS9oq6M6nzve2fdK6M8ynHLqqvNt0STDMBCtSZqiJwdndyMoJpa8gYYLpN5e3aXoHk6vjFPxvSV0otVg3lulrsOurfen2pRC/67TBcbt9bLDU/ffF0WsV/+BNP79HpG8dT9EK2H4SQK+sYrRLJYmmmalqVZaHsUz8NEiPFfuGUQhHiznMFSjLoYBR0XzYD1n4WqOZpPx2hzciTq9as1vebm/j8//bXd++nRwtDOm2JYTZZycM41Qur2ZzAQi4BXtvyhsRbo7OKyBZB0QHXSZ1AIkwJjTUiBmabSnE1A9FOK4S0Lud0a1MXbsJWdzgmYqpey9INVHM5GTnCDIFFxJ1FBKpMMuNx1HViNU9mBHItdtDQ4/On1g/32is3+CFui9q7d9gStI8CDAdk7M96/Pj3C4cM0gMHkbPEHJ76d4++9K1/8PBk69QKwAw4kOvqr+SrDyOtH5TQhVG8FGeY+W3lmTuAmRGEZuzoLRbEa/t83dpMqzXIj1kEZk1E2KKKWEirB0+5HwpAboC0GxjOIHGQN7X4oXDSrIo2CysmMqFVKRRjnoi8FhJ2kLiaa7X8ou/ufqkEWcZv3Czvn8fhYzk9v+7WQxyKsStIbaWgIKH9tNTizh3McfBA1buL0PXVU+z2IfRr4Z1ZHSLtw80TGk93C3NE0uoIVCYX6/YuS5XKpu5mHqQPI318dV5yrlY01cyRYZWCdl23uDapZTLGc+7HKfruCLva5yfUWNkCJ4YRP/zeR6hWwukLETZO66cnCxfxgxo5GIzcXczowCv3JmwyV/d0+GyQCBu4f76ZflGGadEvHdB8st8sKqb0Pa7T4tQ+ubcIX1g475dXw/N6XXI5VVxcO4WQutUqdFKe37s83p88dUA19M1/hX2RvMaCs5tLDdG6ZWeI0QNgFHl0ntQZBiEH+95SSdHquN0Rs4QQhENK4maD93X7uHz3nc2H10cM0pBSCkILWqyFiaiM+/046QuvFV4yiOEcpc4U5ZGh7jPJ1kw7ZnIrtmUmcAyFAgtRPJqN5u/VYm6ljA64KrpqxubMzaKDzLQSU7hhiZGiTJMQmSraBOwduQO1dmhMJw6xpaQSEaxM2u43/vGhf0bfXq7/Wp4mMTGxER1cBA50gBkC+3NBwMNhvy0A7o2j6d52C6mEYHyld0p/qpoGzFokmYFH3Xzx597DD87y8dEHK1TTWrVt3mZk4dAB3P7oDahzM2JyLzPWaTNTSHVGVdoGgeww8jSOeDW2bhRVbgOqVyZmOPRgBDk3OwcjXczco8WRL0LueNuv8tZDFBuLJNTOyKw6kEl2d9OTO9vonX2ryr1FuNjG8zjp+np1qXAIyIupGwmq3sIMAHEIXdEAh9ybZLy+UU9jGaSMF1iv6nS0yLpnG05ruOCU6ijHTiiFk6WbntbWj4cg0/1y2dWzj6Y6ZUspanFKi2BKVIYhRN0qmzpZJUnPznVcvKhfPNtffcWJyM3ZiRgMPv29fVXk1XQFy1gd58sTc4lNa0WEkSnK7EsKIlRvsRXS+FqNDtLGJyFTe/Yg42Rb1s5WODLvw/3c2dpXUUPeHD/5sIuDp7x4es++fPOT8F/TZ8vr/GLAftTpRWbZfPvnf/SFqy9b6mg/OMWsWUHRBZq6+OS1j246yU1LyQwcQ5IWrM6mYpqz677yNKzWAq1aSi2mtTZGZuj6LnR3WE+oPn/zSdwNaYn9aAYWnjjElIJESWkB85+tu0Ft2rvX/XYcqJIICTXHehZUkATUOoUopI6FSJ2yS6asRjHuqZE/CEkikxU3rVXVuTbn7kOrSwSvjg5esjpWAFyrmpqRaRUzZlEtDmd2JGJmFjEncqtFm0ek/CkK8LwH/PGDTNw8kPRVEqw3Sh/c/zwIYC4tL79dqGJNYhugxnCVG0v6fJDnnz5c8r6v2WM1BxWTROZKf52HH8R9f5LPysolDSVgNDFh1KZYZlegEgt7riRCbhRMmukJZuceyYVRKtyJURxoyHgAAQAASURBVEmmLjRBVAuIYLcqwnUbPFm/2as4kbiXMNsqszmBmWqTGgDNahgWyasi9ON6KMm0G6+x6MruKIogunrPJSMwpevPlsf5p723my/QPzxaPdq88Vvj/QcvXqehv46SJyernLwWSTRpKhUirjpTM2+cM3U26ZPNDT179toGcj7tt8fT4z9e/vToXf7i+r1PUleEnLriaXAL61IZi+fXp6fqHdf9JIxYguG6qxRRq7pz6mlATIri62ADaog2pTW2J1gZh6nf3Tx+9oBVAUUwW94EdNu3z35vWO11IW/99jG7xFXdvcFa+w3FQBUhMXktCNGqMZXqnZq6tkwdAtwCjKLlmBzGjJOhnr3+2flF2jxA7rSfUAgCWuwff4yzEv/2/+Lf/ttkZ1fphW1kF2rynu75E9copeRh0A/O9g+fjb/32U/vT/pPQ1r2L968HpaDjYZnJ6dU33weP3nxetfvy9EkZjge7UHePVyzgOA81VqmcRzllLOePkb2NvBmN6vTlP1HNSWobX5t98PHnaf7Wh1aSihlcIWIxCDkvkiJ+z5YZwrXnGH77VSmYT8IbCBaM3sGd2SlkoCYtVaTQiSJ3Gqw6pnctxIEACVmiSSctKhqLgqv1QijOjGxO9p9uqWaIzmvRZVYskBYa1hOTSMIHMu2062qldi7C6uwV+Gozm4khcmqM8+ej+3DDUIlYsAoFJdKXIOBZJbhBcC4QRywz/sB8Jw4CpmLCrm7EyFw6xxaxSA0NyoqV3fvxa2Pok5gN6fKAhXB+NrbF+MHMZzEqnCS7VBFOg87baKOSq26tgkeFJlnp3SHAag+3+1zG6pzXkC7B4AZ7Xc4MXnTF2u28LL03f7nlWFpdhcB4MoEC/2x7kKHoXa0dN9Td9Uv0ngt3Z5YwQTbbXe6On0rDLXzH+x88UT7j/z45DkDZLnNFARvEisOphUH5zJ3BxOZOmhxOVjpj3fnGxPabFN5d/XgSu/m44uHz94Z17vCyuLEzoRSSIZV+u7Hy6OQIofFqid5uHtuzz/FaGrusCPK3JFuTrLbRLYPVCda2SbN++tUuVzTepHnZ86ViA3HTzdkFVhdM5xJ4k0XEcF9YSZCCO7Gybx4NYEq2uapQdxERq4EbvbT3gRa1z/hAxYn220XJh7AGmtQ5tPv3O2ffvn30/6jB1d7WefV5dmms2BxWD1b7hOEjMPRMry1TPnmZrz06+/025ot2YhnJ1evvffk2z/3Q/7RVz6Ma77PPoU+onhgUAhHi3sguJrVnoIEYbxY0OhBd8HBUQgBRLBaJ+VOTL37qHt9vLnpMnFMMYYlJHhRlJoHI+ErgXMnvgAkLZenPXt1trrzOu3H4je5KkiogiiGRbgMMUn1EoXcEHjnzfshWRmNWK4kkAO8AknoVihNqctXrmZWdTgQ67WqRoSQIrGQqUIk0Cx8Yk+RtTgnJRPK0wRq17eqt1RtmB90/a8CeQJXetXnY1bEyUymtZk1wExOTmy3jcQrfcL8XwSnIG7NXWQmHoIskAyfPZSjk9dekAKiXi2UXooxYD999sNPr0/SOY/Kyh6ikRfNXVUQVNkd6qAsgd2MaosIQ5w59F2zGXd1NK8o8Bwnzo2+1FiOBpCQKsQBHUo4MJ4Oi8/ZBPFAK2jZFQChSnDt1seVF7E0jVmdqE/j0PeobXnAUBr3+6P0+AmN5b7+xrhan9745fqMKFYnnbrmxkgOYjhxHM2aIzo1U0kwQ02CXHmgs5Pdok67/aDT3l47n6qFjsEno2chV4C5MFvRwNPJV1ZbG/cbHbbXmsfQjUMf13cH0zrudnUMwila3e1yoT5Oz1OyeCq64UgEl0hLuonrW+MUzsxk8f73LsQKcPwpkwV0/YfHCwg8BWGv6h7NSLhWMjeowc2cmj9jMzpQCM/ZykREHrY/7yWdfOwPcP7DL71rQcOUCuPincuL7oOT/8H9v1n78cUq6mrsx2VlrPOqrFAM5sxhU/ZZ42Jxzk9/dv8Xzz67zLXm7yxKj1N+/YNl7j56bShPFobVcZevajhOqBq6rqPmg87urhVYu0bSafQWGeJtNjSPqq4W0ovVP/2lT0/7AB021zdDvciFJC566o8DmSqhjHmvVSTAXYJ2XUxdokVaJNFqY5lKHnajQMf9jZPUkUQig0gLKNzTUqxxWJglhSpCblafU3MW7pkAMJ+BmKwqWc05V+tqMWZ2cABAAaYUyCsHyySs5MUKIxVEAOZ8UHW6s7Nzi8s5CIFePtgdTTnlt3vDNoATvaThAHNexMvtwefYAoc5wD2wwrkVABAROxmI/dnJx0/PF9cn6y2YoRoMROZa+l+63H1/XeNimBiV8SJ7CDGQM0DOiO00ogsBZoHHmYDiZq3laD8IaUPtm42MHZoSNJkP3AnEqErkIJ1KPMAKrVC2LmZGNFp2xbx3bE2YrIYoWpUTxspBzc+u9zV1rIndmbVGH/xO/QJPzsvNH8ni9crfG1+7a11QczW2uQPwRltgUMMnG2GGw2RukCCKvL2cKHdLvhrTYip31no23Zxp98niZrnjhVU3t6pGQIhSPqrdnen66G3SalQKXx/XP/h0+70+dL30XMNyHTU7LSfFOOZn4+l6c5l6G4hUAVaNtLuzqLdjXO1Y7eTOf3gZ3Bjd9yO5oOfrNzsFqiRpp6Y2/okQnBqQ+rlVk3fZhGvzlHPAPeCrJUn3P/nX/69/49/9F/7OPxcJIsliPbtcyf33l7+w/fWLbrkxGvuiaUiFzBHJpFGc9MgKYnCTp51v+u30ZnbhL54P/vPnD+///FF97YOzcTq6d5UWZ0fbH5TFidGQZR2JBQ64EAwUKE5Zq8fjoqWqanOd9ObyL+t7d76/+ezog2+Lni2OV2ddClVr2VxcTTnvJ5MuUurXkd22ItBirvudA+6dIfSrdeppcZLEXeFl3Gcdpt2Y82AmzJSYbwwQYcoEN1djKLm6E7Ebk2zbUMvMHKOQs0gHAIODPG8NBKtginNAJokoAnsXkR2CaiTszS2m2fm0K7B1mfhTFWCWmftLnJBeLtYPdzwI9uMJIp/7JofBDx7wcgEwV4oqYLmeqIQvfI9mr1BzUkLgmt9859s3z45tDXMOcL+uEHZDbN7soYKJhTCZWlWnIzPzNji7AzS1PA40wwI3dnJ1YmOoo4kunKARDivKDnKtGl61+/rc4/b8t6fLTHAKHRJP3kcn0qrZ+Sqsh42IzF/oWq/pnH7Scwr8o09C9/Z45x9otw5rNqoexIkM7NaEFW7gAIK1Qgk3MXUi2KVeXHMsyzEG7gi1O1lOJuxTt1tvjjbBuaGdYkYhkp5YpjLG0y1Lyab6WKmM14xp3zSHsj47XnQp7J2EzHVxckLer7CNwYgMRcXLMvrBC8VIUOWBfSevinPUayFiWefpiKuxihGLEMuOYdk5gnxugtxfqZsAETiSNUWFE/m9e1cd7Ycvfu/FN/+b/+G/9u1Qc64q9cy+/RPvYfXR6XB+vTq/EbbTiwfv9WFxc/bi3gsQIOQIVHhJ2buvv/ezv/HP1xevTbxdXMcB5Zx/avpL+NL2a/17cX13u+bFww+ynYQcKx0/uKNNMgoXlpBSpJL319onmBrcfOdGMDM1d+/YfvW3v/2LP/HNffc8PHU1p3U6OVudEJ8x6XB9s9/vry8nD2E1mfTrTvppMvda1Fy31+rMxKHrU+TUL48EwQyeh1yn3X4YrvO6ZVgicjOuiOaOQChwLS5CaIE6tRmZQOdlBZibuCXGag6n6AYQV3B0Ap0eLcfiplJVpBQNM3lPFa3A3N7Z/rkLfI7Rc2COTqJm3C2vqIMIgMwdRRPDgm4751dGALh7mBG0Q3SYtUiesL28F8PDhWRqkSHKZkzm4St3rz+W7aOjSikEr3ZXVWtV2wp5UeZF4+JgaQYI0egtsp2cG8TshpYHDDe4RrQyx0RqDBO4GUN7M6uTirOXbJjpLge/oVfrHc2BybP5MZNR6uMy1BoS9kcr8n0OslmIx2jjrD2XcnPVxYfvROr7+o0SFp2dXx+tfDpVlexdgxgIzm5okbltlcEgwBWhmBEbbNrVe2lbd9v1OT6tslC3D44e1/2y13UNWVgQI6VgRkF02q8XVUJGSmFtxLR9Qx7+C//l35+e5TFTSjLkp9c951x3bnpBF+uPLid0qv1ilWMsERNNvKYWI+2AB6faP3zvo+BKshzzyom69TX3ThCO1Vu2bxCqqhyU3QGnH0tYaASZTvJhiRPHd8KuK/m/e/m34r/y9L9aFiYZW/jRuz/5P/yf/4/+ref90+NNuA6SStjd29wfd/vuk/XzsD9WdaIYyMxKOb73+1/9jRdPfqB1i0q6rMS1hKnub/p7XrsT50T93e/WcMZOwfp16EWYnag2mqOHuIhOFN0UIPe7TSVqbl6H7fX1rlw9f2s5FjElSin4/upHTiFVkrQ6Wt2ntF7SfpdfjNv9+GLIQWmxjKHvJESqU94J6bjbkqhySkKJ42LZdd2yWois9aJO45SnOnqZKliiqhETejizE03c2tVks82o6WhuOFEIcnZhcHC4SiurpBTcXWIIKbL0Mo6wWelCxo2mCKLGywXPORovL/L5/B/0AfPBmAmC8y14C+r9WY/2Dh+8OEJTnXOL1HJ3D8QK2k3y4qpujxeTOshNk1mwyut/avXJZ6vNSZwab1B7atBYRtOZbhvZzp87iNnRuXNsRg8zCknwZjNoNGelkhpFIbe5CEJIRU1rscRiwwihAwHi4DpxMB/W2yVpcxQwdkPfB4UxBq8sVELH1tUSOs4kBDMjLlf5Sf3ZtUbuhm91dAeLF5bu8Zi2NY7UTTPjv4m7XfOBj1m40bDVYU7CJ/Wor1Q/vWcxkJoQXyyOmWoNcZf2oYJBImCXJoQ88o2tYL5md0C1C0N8/LX39IvDZjdMqm+qp2WwfJ1LyXk6my6eFY9U7yKM7MUjGS9PD0/ayUNOWJz/xlU/FZfjgcmE0/r99SonFQoMN1NHAlMyogoCNT7EISmKCMQaUIW5NhUnSJ7/mik5/uq7v9K/ffE3dw9yd7286vKZfa8ufvTOf/y1D3/qvTevu3Xuvn50/tlfujqKC+l1tS7OQi5Se5GSafvGL3/w6xrvDqflGMdSFSZYShc2Gm+OH12ddIs755e2WGEMWhGsGoSZJUkgcApb8W6t8GJqcLcKEFR1XyxKynrzhcdW3jwqu1pVy+SF04KrTsJiNy9KPZoKp+Xx+iykFMkt53H74vmNWslIfR9WIcYggqlOtVS1japTCHzsHFMk3AWY3b2r47CfzD+tuWpVHZqZqvNshZodzgoTgATAvppQdSJviz4yUxavwTR4kZ68KrNI6IMOVaV18e7cMIBZhEfz2/GyWjfPjNkVi+hgCUbtgmpUeGAO8z3wY15pJdroT3M0GFFoeV1z+KDDwMwKTM9P9bUv/j93zZ2CvHmVazr62uKD/fo4WU2iSqYDAQ0+NpZo+nBuMqxUda9q1UqFK+YBR0lCIEYLynA3ZiZ17ZgOP6+B3RiNWiFcc4G8MqPMvOOZRXH7mzONyhhGMXHfdTSOcTkUdYll30uQPMbTQtXVAduH+/VLuURl/XSpd4+PvnXdnayIs5JCamivX4tFhyvMDcw8SRCRIBsClEKs03l4sTirfeg3REnL6ocPfu7FFmGtuBGVUYzZQaULAHFATmfpeT1KrhRZ3cdV//zDFMbluds45V3P5DWsEqrpdozZtFYX+cOT9RiXOQnCsj/a06EEkOwjdYvv5/WugBdbIWeEtD9ZmBgFFzgbO0aWGNgMIBJhLmj0KUNjn1HQXE3HHu1zQ5vHYJb07p3PbC15M4yn26V1GE6O/62rf2P3tfLVF68Hix/LT/29v/FfvPXx7uatb3z1//Ur334i1PXRwJ0WDSc2/a1P/xX7aE2jTKubvixygNt1ooVlycdPXjzI5+fra0/iFDV0K44SmEFc2koZxzZJ12GCqwHuDDctkz7YbCyGEBY+vLc76u+RqdZxP6o6aTFkd3CICwt9wvTZZyMLSVyksDx99ASLlZLocPF888nmcutdH+8tlmshoYmg0zjUT4iJSPhHHFMXGDF2y5Mg/JfyOE3jMI15GMdxmOKMAQg1euBLyh4LWBGEAFKPZpRSrZIhrhwWQUdnSksElLHSwUfX1N3bcrbtt+mV+xoAuzlzQ9aJiW6tWBumN/MAf2wEePX8z//vcKGG2PqHggq4seTcK0u+vvjC/Xtpddl7VOq2w3pa5rw0/+ov/q/ee/LJl9elM+PC7MeqLd7IrDZr15lgDhZqYIabubObmbpXtARfk568uGRMWYhcMnMEJHfBa4UOoE0/HnGNzWcwt0xSycRtUUVt4zpXvhYMTuQ+RS7dEU3bVTdK2NLuZNp3fndxse+Z3K+pT8VtnCZJ/eP1hln/uOaTR9P5B+HL/QdfmKLtWXYiPNaFjWkEyr1tXKXrxRQG02WOPC7CuLZcqhOT7JLs+7cmP8VH7Nfh2fnJh7qsAEpEZiFBlkRkTq4eYFQ0HsduNzGXrFjwm/WP1zsHcUiAaSm1lqkYSwVribo0fvDe9a/ZBfang2be/lLdxjQHNFm+s+0effheGmBY3PvPwrTI/Zls37jstt6j9KCq1dGPnmxHS2b1WLLMN5PPzSST0sK3lg6f3uH8ly7Y/ers+qxSv7uPSVbe1TqEdE9++aJCTo6Gr4z3tDz+qX//b13f/dFlt/v3fvV//2//T//H/86/+oe/+r2flOD9lqZ0FSYcsXVYLVW2sfeJg5gb+uv+i+f85e9+8dGHWh4s98s6diuiZvouHBzUJSblxdLdErTRygEBVuTb5QM1WS35pPzgxOCatmef3tsEDUN3Hfe8Jy+5jDQyGIFDgENdaUDbod3pprJaP/ori0D54v1vvffDFzeU0urouFv2YXm3Z3ItU7Wt625rIIOH1HVxFVIIxyfExFbGIdcyjtOUy1imRhPHgacnyapzg+wlgQJQ5XgXTCWFngBhcueiTDDtTJUDK4gAdpN2Tc1G3zPPnbxl/DXfQlcNrUS4mQdSEtTQOnxvWZSGWer9kmJMcwagGwlcw7xPmv+bKJBXkOFFd/Kd+NaHJXnrvONERcvrf/nqTxZ6snBDQRC1SgDPa3s3M59mxmCdgblD7SKIwOeEEjdvDbFZsapq6hsQHI71HgrpV1Ehg5BarblUtuZBa3+KEsWtLPqBQUXi6CJCIC3COQch82g5eyQX33UIxDDsN6+Vt04skskfVrnf0/UurJaTNSjSvMIEEB1X9uC3/jO9E9+U8y8sZKtC7jVn5EqdkX7mnVKPy3v6YkTYp/3x/4+vPw22LMvOw7A17L3PdMc3v5xr6urq7uoBaIAASYAARJMmIziAYQZNW5TkkBm2Q1aYwTBoeaAdtn7IDsuhsE3aIVsmw5JtQUFJpMxBBEEAJEhiaqCBnrtrrhzf/O50xr33Wv5xzn2ZWd3yjaiszHwv77vn3rPWXmt93/q+TdyJcZw2ITHdQNPUoIYH9MIRRnBJq8yA1lXNKDz2fhBzVkjEiUqQGGNQjJIG0QhUmcpHZ1O2nWQTSqgnoCkot8zTD0sG3yJehMM67GfwvlgQRmaIqgqkCk4CpQSsAmQC9J5lN1uj2i+RIEPfZqLuYzcGPZtspqe3TouNFTCQsJlhwBo6wa6Vqm4Zkv/+7N+yh919nXz8kx9/9uEbTzr4jU/93bc/cnHkVTB26l1H0R817REmF2PVPHJEqO3R/XG692yStcnsoGhNl/DUkUMehGeImQi533uDiEixLy4JEbFQUbVWLdfT+w/nz774zbuPDiqP0Jm4i/MIwg3UFCHEWhoIpCICAON+KirLhU7S7/3S4q18unv82o+k+83Jux88efj0SasG3NHdLxpnDTFeI8amrDoJna82AqkCMRskIpdmI5NKRASROjR129R+JTHE6NWTaYOkhQZgQxK36/CEQIRITAqAyKIgUWTAsIc6/vntjdqL6+EwG3jhzu9nfltwrN/IfwEbuDnn4aVn25bMOPzP4M1v+wzAIALMbmWfnbx1uz5oARQII6nkVXb8L33rm3txbxSUQFFq33V90lYCJIooyXYpR4cN4GEosXVdDTAMDSAqAnHaL2/pFpdqOsEYs1HSEV1nGhxIvNn6e/nqtxeqoEBxOwU0HU4yNGhbKbAObECAtAJrRCj6REQDxnbdHsc3xx6Cg68S3UvmF2U+F1g7HwFi1C4aK2ga6prJB18vE5+v3IHc/1fIsqC0nVSaOx9jzNIAtrls5pAWV9d4tH+h04ancc3jrhar/S50tIhAGBQc+2hSs0JHEkSxG+O7sYObz7+3X9OoEpOkFb9SBpYnnxqvNUUmg91B2m23oRXI1sl0/vfWSeclGZ3bywIC7TyaZSBsmSiKInOMjkInRtpEIhBBVGSIgLS1N98qK2nPyYCrL49PY1OMaFyPy9wnS1bbWDBr14y7MdsW2VCSmRPnr9fZxV6Xjc2/3P7p9o9+8Off/dl33rIZStt0nqBJqnmT++I3zadOJ1ezxmunhMrYTl8Ns53pTra0u7dNk1Ux2SvQ9bg6IrK1BgFFZbD9Jo4y7L+hmoDYk09Xr98ppxfV7/fF7pK8LXE1WnHF3oaRcz62rpxWaVeJxCiqGxVVEUniOH/jy6f/Ilbr92OSuuTW3cO39qitz99//6Rld20Sa9nQuB+SQxmDb72Ple98pwgcYyS2XACxtYyOx3PCKBK7pmm8lCx1E4mwl76LdvCOpH57gBhEgZQUQEIcIrePcoEtrgcA1FtQfL9OQN/KD6O/GwoAbu+jYVaAL4fLVj7neYowClvWfv+kAkpkVC99+OzRx6OSQQEJIrkm39y9ffQ3Kgtz21iOlpplF/EGu+ypDH0JosoDwrT90VF7rm6L/TeaYTsrYN8/dQOld9Jh0pU8VrLa7eYEg4hM7Csr+KRpcp9kcCBSASiJyVMg7yAiRjLBE3fSJQIxKpnB4qdb5SP/hkIXsydXo9Ee7X2rme6vyGMUVIkaW6aOSU0YXV3MeTm9mqyfrs/+lw+Z1EDUtkPVEHjH9KZ1Fdqc03HIuCA0iXSxcOs6tTDoNrAq9uyNGCjlFohRYtPlfGCemECekKjfWAYEUY/MtlBYuKia+ZOjq6VxSLbxMqON2bZ6YAHhSN4LJgTNR4/dzCzfSRflrSSosahkIgBjQKtsiaPhnoLR52FFEr2xjB/oFQBIKPXnIjVgdnHS7KxGZRJcl61tYNEuVmmZdihAyngrjqs347j16ePRmR0l0z2+Da/WYQQp5iRYBW7qi7z69L/3Vx+Nvz2t0zK9SpZ5XccTP3/vsCvGcOmLcVmMtJ7NLFNva0VKxhgEUMIhYnpnoNiDPqpBAVDBh+sH4TW3+cp/yzV42IXcY+tq6GxtltmSarNJL3cv03I0OCJBDDFEH1csj/CW42WR5UgG4nd+l62b74w//dN/0l3/k3/sRTpEpEwViA0ZkxGoaIzNZl110ipg9LVe9MKqiOwSSwBTwGLMBKy+Vl0vNjjYHw2BEBFUgZkkBFQEJY1xO+rvgafnNzhi7/uECFsqcE/dGsJqwPJg+23wEmQwhMU22HFbBAznfX/im23V8ALtkJkQ28W0+nW4/eEcVJFisJqu5nuvPf2ne5pZjXk01pfriMOeHwbtD69rJCZCIAQkBDQDVsdDQWChHwpE6AlDiigCSNxzk7H0FoMHyGOy9ChKoW1jjxgMHAl9ARV9MSUOly5qUkcayYYIShR8SoEcBTLQSkICyOzD+qDbu1Pnqwx+NYW5Y/og5LMPjrnth+BIpDGoBZQHv/Vx5c11cLmh29E7FZKoAVnbVijxSpaS3exsVV/m+1244qRKdprAFKJzoqC9EvF2Z8QHGaXtqpAQo4DSeEdXppMX97f6XN4vdmcJRp7/nrwWOpfEwLZL5gqmb3kUkSPjwcNT8XUHmS6h2fuRePGV9m0OQAgCFgAYiNhjQdGkwUSPABBoW230b2zsjeVkOGDj7ME52lHnTSiqndWoyS0nrQVTJDHbkISo1GENwlrvbWD8bEy3JrWEdsVhPW3G3zkWUKssu2kCc5NXZ+mtd1wI775+vXNyeLp3AdnJbvL+H3lkzerZajdW2jSCxAaIqN+TMdy3lsOih/aiLKEXNwA1KhIMx6WFauo+/e4v/qvLTVZNN4nuNHPPaUfzpMa2WNuzaWHWRkVijOr7tWS5c0rj+vfyWLCPQKgJzTKortbXX1W58yZ97mO2zExUsWHQGC0bJlS17KxUVYyIjKxAoKJ+O3VXsEjGsMEJg1qX+YoIYgTyQ2AqCSiwxdirgCKqBsHthuaW2bs98bG3wpOhTtPhNtqCeHBDF8Bek7tXehi6g+dj/yHmB8hdodfQUgAw27Dn4TRFBYIYQn01eXT46t91CqpE0Y/a+cMfH7/xq08/E0YgFgPGqvQ9Z1FRUUQEELEhYkQA6uXntxMR2CaC3oqo16SDfkc4BiGiXrYfUkIRk41qsQswqiRB0KBwbx2j9IkKoHcv7pMfAqAGSq1hYUpbDxBBfUEhhUrRiY8BIihqt2kP6weTAJTCV1zYwdH1dbIv3sDAWEIw2kVVgM68V9ZLq+mj8ebZnysajpHVQzRWfUSVjqx4pZb38Ul5YMcrm7SmaKOsUDMpDVAPuSj0DtMxIqlvpl3XAGcJ77rrNg9oBoUz0t6G2rKGoCrBsrHjR4c/fnEhtKgst5NxoMFtG5BiwFH2tTWJkB13wker8717F22IvRGFKCCCIllVkg4sWqwlEMXtPKa/2/rySgc5GRR/cLBM1C9cl2/SmkPEoN4oA0JiJ5kaL7YzDQZbzi933v9xnD7c+d0H5WEcN+NLmqb3TAeNtNitaruBWrvZz+FrMpWUXEYWYhdj9TaV829+ls/O13vNJi4qKdPcWYW++++Xb0CIaLibVUQkat8yR1QfNKrd7Fybzbz4qf/81//YO+08d3korlydrDCmONGRjDI3nSdt0Bh8FyRKCNGHuN5X3szRjGNTRwhdyfUVjVO5rUD+OwSGIIb+CEZCgAqZCBQ6y81qU0WWGEWRHKiIAiZIisTkh63YJ4mJkSxpL4BNN+orIoBoEu6lblCpd0eFwc5z+AxgS9SM2Lsqm+0MYIt59701Dh6SMkAFw1r8TeTrEBd9u4AvfKkntaPBYYl++Jr2wDpyffrmm18o0v67SUU0jPZ3078/UjdSKDrFdtOy8YObgyIjqYIwoqiKGBxWnRF7QKWfZIBgnyGSAcNrgYjAcDnM8jMSCUCICPXOnoZGRemGR/BcdvyF0xL70OlrIOpcwWyFxJjGuFpMiKIukIUOLEaICKDN2u5evWrIM3x0apI93v1aMz6+cLH1AiheOXKMFL0J2dVDyMtojR0t6MtrLyBGI0VnIjhEZAYfpSnHExsvN0XmYov+egHQQA6eAhEzhgBIIIoU0ZI03mxUVI1BewgnQZRvajpVHESh++VIEJLu3c9JsMSYZdVyYjfcWcR+IdTb7hZ+yyMqubzKw8n9H7n7a9e7444IlEAjECCSwdQ3niy2zoVGaOvLEAdYtU/MN/zC6O+nm6o4b/Jqcn7v6V4JFCmkwpITifEaTDDeRReqO2dvPnnzcSE42s3r1YVdJMtkRYBodNy5zrY+BRGt8yflnY93TQHZcX7kuuY6vLbKqdmjk2WX+lbWMa2vgkmZmdmQMcIIRKCxF6LSnuYdFKJEVVV1Il2M7OpxQ3r/D/zaF+eL3VB76tRb2rdVvshK0zlMIwsXqjGGKBx98J2P8/FVk+5sdIlpSkY8cyi9VjVEN8KQTo8AYowKsWuaTgDdgMVFhNghaycagYgqRBFFaqmX9UEkMoYxNBjamObcH1pIKtJ3XYpgXGqA0LKavilRHKj98nLjjEg67M3dVADbSADYtpcKghhxa+A3fIp9RYLw0pAPAPrBufQ0EOzh7v6/3tILAJAt7Zz68T86/MLDQXROuqy65/ar336zPHCBsoohNMFwA4isohoQCaRHJwGk55QP1UUE6PHmgZuA2OsLEBGS6YnNpmc1gAdUZAMQutUxt43vOk8EgQXweSf1fLwpfdl/kxhITIJkG+wI1ZhGXNd51NZgV2LmGuolk7tstDnU5Jr1fW13Znb87SqbnO9ibAUwBmBvJKTec/OqX6yIahtnC/3yZ78Fg4pyBEQ26NVg8ER4oE/dXrZM1pmPYyi9dQC20+kVsjWiEbiXQgyGMXpJFqmxUSOMZ7DQiCZQnzEZRVVVvEJQRBiBT3x7/ilER+DEJpRbSTraWoJp0h3KSUzWrU+wSai4evcNaT34hBAZAxABAFKXQ6n5CK9zgxKVbM/Fkm0p2Qu/YT+kBQ1vyPryLeWolTm3l0UZOteOO+dzxcCa92NeAbCdfbhrmp16r7n/ZKe71c1WI0NyMWltQ63rshgsJKIK7nDzYK1PZUkbt6rmJ7J/PfJ2StetZgBGyIaGqSLDzMwjYw2hIae9oYgMTTKDkJACBySOVd3Oul1XYJz95Nk/+EsfNzzrTJk3abgeVa4ZmyIjBe8ieiTrQMFIjCIxbvJwdz252q/V112MwZe6y20gr8RMzEhkkYhEg++aRloJQUTVtV0UVQ8kLDEoEEgUos4QqpLocNSnrTqjHY01ErP2DS4xtUAKZJxRVsNKAVRjvyaDL9TtN/e3EelR2r71fb7c0wcmbssBFRTscdLtyj8OteyLD3xpRUARDQ+aPKFXFNOOSCORwulO3WwSSBq0SBxZ2tfcq//prsgBJFrmTWw6Y804iPQKJxEIFFwvvIcYtjfoi6a/CiDPUQNEAGXt94N7XwNENQ6CgxWYRy5f11SXIYUAthfoQhx6VTW9uN+2zMGtPjAamHbSpYeny3zarsjgFCSshKMmobKjZSoafL148/TO620sGviVYhHH2eZ9c8c/Pj7rguuNKMZtxFaNAvyLEyx92o3i7pPXYDUtwbaBou1cUlWWIpFlpcnJNLebNrkYdwl3ii5WZIPiZmTAB5tYr0oORQjKqfBFMqk7jMbSNNcLj8hQ55ovM0bZTBtUBpKoAMHPm5A87N66AGU67ebrfKd2JBiUgQDJRnvrb19Y38TsoPiVUT6bj/4f301GzqkyKicCKsaR4nJn79Li5T6HpsloEYYPRJgUGWIEZI1Rsq4ba5ev3v7maXjtdhUPNw8e3f046cbnSVlc3Hn85rffvE4u3npnl7tu6qNFxaPsel4Dptf7dRJyi/lmpzr048Wt091Fus43o2d76ywY8AXkNA/rcenNeXz6yvS7ex/uTK4f0nR6lYbZSu+kUnRMEgDg8uDh0dXh6eH1LkjGPgPp+cCM5FVAom0TlUleCkYrmF/v/IH/7+P9uqPCjt35qC286cYVy2J8fu/ZvbNxOhTXZcziqM3ivXqWP9kJ4+W83Ds9WJCHGJqq9kVwpjtcTSvsO3RpbJPhLLYIMYSofOVs+UYeqqaLGgR88Coh+BC6LkQEjhGZVTaT80DRH5FFHxBBLHg04AsPKGIwabOExSbRN1FFkVWIWaMfWgUCBZWoBoBURc2A0gw0eFUrkUkGu0zsp8HmZqCHBAp9OgAAkH6fXmFYuCWFqEhGxQx7IVF68BV0UPA11x9M5wehaKHn8HvYyafxO3mcsI+ZBG7qqCrDarL0I+7+kFbsDR77nmIoX7b7Sv3L75eaAADaoevkbXtCVtrEi7FdbLnCEASJgORlEBS29P9PwiNe5lBIs/F25peaFmsiFFExBpEDk0P2FNc4Te6mNni79pWMjtxvSwubwtfqOEYxyK1Yip0P4E/POSkTdRUVP9qYqODFK3FXJoIhJBFVAaN2wRo1OfUEKw2qxIDg+7Kqh3YIAKVY2vM7c9qEWHuMOcD1rYYaGjEuM61QZpspXNtWfafWJc0lN7PfPk6SJtGlcZtVlkdvibhvGCW2d927bUaBfbYGiuXdV3brMs8iMjMIGA0iaBHGbPa544js6mBs/4HgkI6H9xQAogEJpi4OMzi82GmNjNb7630/4tubex+9fnVv9WAj/viddDm+Hj0bLyYakvBLb8eRb/M6LU2IXV6O61Egmfl92VHKQj7OxV0efONHvrmjzXK22b2aLqe1z4vVq8sZV7WfI1EdACWq5qkfleOYtVMqxGQYzcnR4zsneyFfHD07WmaV8VmbeedZvQ2qAerQGhili9d/+D/+X8S8iT6Y8eSqiIIagHfgKBz6KW6Ky+Onx5f5cZRKfBfrer64076FE1Nm1mGytm2+cmsKDTU2maSa1JPL5AqRpDUocaS9OWF7Szbp/t28q9sQvAADGecsdhLq9XrTLtqqqauqcesuERrtTFFYUKMDOyrXZhK17xF8RNComCjGQGQQiftiu/8gAiACAQgOaL/iC3UBbNdUdVDKhU8yZPT5L4gv1v+K+qLCkNmeqDjocJg+TWhWbu7rU82vUxME2Uv7Vnz1nZPX4y54HdchbUpPoISDIDj1e0lAg7DA8Bph+xseEkDs93efO4gN5cww51QQA141Qhq0iRVirweML7AY+kt4Ae948UE0aYoEY83aYE5lr4uPnIGKRN+lwXbkL5MUXyX0YfrVZ5vJl04mVyG9veS6VtCuQW81DSGKGMfVRTVpl2iB2vSHnvUKjp5YRKMXlG3lnBMzaTCowTCIgIqACKIQoIIwAvSyiN6nu8tvZ74YZ/MxHUL3OBcY+f471rtVsOeJudjzgMF3qC5tNme/77hl12zG7qo+zNdR+8mYoIBr7q+/LVoH24yfMIbrX/21vY9vZWWGbGhovBABardxe97vLJUT8sA0yEozDfm5rygpZKgxW76+d35rppvdGtSFNOQS1k4Oi3VhF+m0c5PZZeLy1jCfHpXX/9f/8Jzq9Oneye4qNcF6VImgENGzMCaUkcX5s9eu/OiDwyWEqkqXWsajbHn30etwuWh3BXjUcW4UYR0qvKLGJ6vZ+u76VTRjSm+P7hYXVuIyvShg9vSt7731ZGc1Ke1Y0NW29GXmd6DgV9/7xd9/mQGRGMfITGAETbD1qM7iCPfivszwEWOGe2g0pCd8Nb8ab4TyOC323HJ8Orqytdd60uwJmNn40DW6bHHjWhsYIHR103n35GTHN16rxocAaMigcuIS69hXq0ZD17V12V5W13ReN6d31ROQeNt4SPommzGxHHHQtmNpO2QUNj01COBG3w+3AQIDpw6eQ2DyAunnE2H/id/BDw6UoXY2/W97RoGqaoq9zFkFi/K6uj89SdlHSxCL1y/mPz/D8SxIlEChadGqDNCCKimQICAgKkFvbo+DbnG/39+/JoZtpPfA4wtriAgEgJ0Sg4SIQF3ww5LCzVRjeKUwKId8/yMmLuI0EFLkNG3KDEAVGdZAoAaZYqLSrg8hfSVQZ/nrzS1+c3zr//ns/uidUUqpqBK7BNcRjPG+2333I181k4OTvLi6dfyrmcYoQVAbTqjyWYaqQKRg1XHwwBEEAGO0CKBRgAFQZaCIAoBk16l8+T/4hac+m+bTMR1+5kcZ56fRlImHzc7eenZ6L7qJA98AWza1OV1fkP4zUOsb09WTiUZzo38CCsnBt88z2lDS5BeEPjfp8anLcx0INUpOCaNIcplmCmMfgEiFsFdxB+plDpQAFQg1RiBD7WeWj+cVLpJNFl0HXiWts3rvmYkq4/X0/Lje4UPZ1bkZObq8t9O0jS33NruN2bhqvBl1aZvU482kTlo1mqKVtJDm1eau2R3N/UiAK3jV66idwslSZl6h8ZylNh1trEtmqU0W0/fuf+3+96ZuBWte227q7mSv53vps2TKE3WooGAJWR27RVK6yztP7//o3y4eXEGabAKHCvokiTZmMtIk+nQ9Xqf+FlV2hRXVO1dFc1CYtKY6WVHpbbB57ozQxktdrY+r0cdHJ+Nyx3Oet0kUNIQqsZp+9fQwQyEERkMsxhnLzBub2tD4DtS4CUrEKuJ597Q25AIwiczaNc11bQWA0sRgROgVbaULg5XqUBYrKsA2bgY4fzj9Xgzrfui/jYNPFsP9joc+58e8nA2Gb1c1Tm/sOvqv9YNFlORkVbz1xq99exgRVp+DV9978kp3bCvSRpJ1ExMbvWxbkuGf4TYtqWxdzIYloKEjMNsftZ1sAoACDqUMgolIojFCBPSoKH2NGl+gPmyLoee16wuPdk4jpBUQp9Is3XElUQCRDMQoSMpRodvAjO7cR+FJ93vtevm/f/3PnAYf8z1G4hjUr0sYb2owBIDfPJ37SGcOXPu5kdjQ+d72VgR7GB2BENRDAlEhqfsE3fO+ECFg5P4DJVQFpZAqTZ764zI0m3MTP/rDf3BkyQUqwK5GHifj88dus5x6ypzpNov82aOmfr3+pzGNWqCOPpPXalXCtola3Mt+J6RCbApZGYF6/96BCXViEEHJMKNGItLRfGHTdVvNV62wIWAUxR5tAdXeW05VgUQdN/GNan412RRnozI/PX5667K4Oj7ff5yM2usfepxm+aYpAgtHq3vXd8L/bMFJ7u9v7izGnkljS7WJIbQqRAZcmwfuytkCDXuXqjMOjVnZV8526nwSTqq8aAi5YxMVKZNZdxBy3W0/v3l781obzXL3dG+dtUbrrsNut3598/bVG5JnzqStdLaQ3CcdJ01Xtrf/wf/03K9mdQfR9jQHIEXPwgp5NVtNKueRU81zs9rz44t8VVdQSOaKhoLZZCtT1ZN6NxS2ZTGkoanQm6ZpbMhCVOMMV8eZgfVkvPY+AgIhG5ckzlomVTQJRlVQ4FPNaJbWNSVGxDi+PrDnC2Zi0YjZKBdVVCXwEAWJIuKW4aMvBfpw6qH0/e5QBQ8V24tNgW4De/jjzRrR//+HySWGINuunPrig5RG1xe3kc8KM3CE6FOLH/qbMzFjEUuNw7WnQXK+H8/2Ma03UQqoSKjSUwV7zHl4aQrPwYm+5QAYGFAKzMgKQKhIEQmQh0nnC+/NoIv+AzOAm3kKtaI2gUNtR6X2tIdMPCChBhEsl+mIXh9tlOGrzV9pw1ce/UdTe/a3yuPi+LYVNUnqOIYIhhH3yjptzGSTSEk/EpIAAMSIaNsytQ4bgu0J6roAwVOvF2ZiREAm9L2KEYVh/7J4Nq/fenw9LSUyGoOjO/t1vJqpH50ddEe/9ehnuz/SxevyBFFbMePk2cWsPR5vCk02Ogdzey+0RJEC9yWFyL3ug65DNXG89kWgkXRP+dZosHpDTmMXgazrKEm6qrt4ACFSAp77A0W3iDIM65TUgVKZ36bDwh00Zn5NhRbiYHm4TOvd+Isf/NrVv/7+Qbe/jm1RjkRCXk6yq26CNpVCnXd+spmtbGfb0fX8fFQlMalHre32l69+lK8TTSqbUGPsYrb/63cuDkflWThwrYMs2IQl1trx0q5imzUZANs4q2/DvTgNo2Q1Oc83chquXClraxpyamypmKdTqmmnzK/wx37pV78YziQxQSNKBEJJ6/H5/tWsmwSuU59AgYasoCTtOM4ksUimbrtmudNN4yhOu3ECtrY10DS+El6tpsbbNmutH4kqhM7H8kRH81EeQCMoMlmbpJkzTiVqamMtMcSgMIvcqi7XO2gkElvb4cQ2wY5BAySJcXFYm4sBDTLDVhBL+5ZZBoqtwA2bfsBBtjvxOMhm9UkiPo+858ljmzBUX04M/dowKoKaTCWEEAUl9hvBAoqIDPWlPT1HtiikqvDaODt7crs7oo6AmnGziSgehnXEnsSCLw6VqKeqDaZioFsBC+lf1HaYOaSpnueHAIDErMKkkTgM2sdbDuBw7ut2WPIJWSsAAMjHjU82I4F1lxdWLnoyB8QrJkhTqycotFmPsvAKiGH9Rftj36z/THLhVtetLE5/55fHwOlonLvEFiNu67A6uQ4LTLOQbGavPA3BaG9XRKBAKAF6Vjda4QhJ1zgyBIoc+7aNjCAhgFHsfTijxHD7F5f1YgMOQWPz9seAjC23FHdOr/mvH/+1YvyFH9tVXTy5Yiv+1nQTKtphLITNZAQC7DVpGQFRRSY7765qhGirvQs1bdKNjz8mW4YxMSuoNBICgOFNE/35EstFVbfe9Fjjzf3SU8dBAUAMBIe3D07idLVXz0Ph9zeH66m/H29Vkyr+zh/9jbvz9xdaThrbUOcqOylleQBJaatxNWnyFkw2dmmQdiSTLicKFNCbuKwfhQ9/6c/+wz/50ZsfvPnufqxez65ePbvN1+dhLmB8Vdm0sDlLyEyBDpPr/Q8ffPDgzJ6+9uiV9165zlqWWepwRIvjs8liclFbJ7aoIVBIY4agXB6GT//Wm0cBkEtUJlSUKOq1Ca3fVHsnd073qkRNtB1J3uSVa4MJQbM0pZQIcFP6btRQiRbdMmmTdb5mEzWIKLTsUhObRqsPOzfGxgZLKtDvziBCHrquq7to0LCoqnYqLN2Uev5SY5oNZrN2pUwELLVAbwGgbacIaG3wEfpR2EBuHyJeoKdD9lT5LZlf++Hgc1mX7V7AC+E/qAANgfbJxzBgMAZRo/cRpAtRI/ZuBUBmNzw+2R/vWVAkEfxs+/l/kqk5iIEVxV63gBr7AZNij1MOCET/eghBBWN0gLrdUwaAnvGAdLOnrAO84ft6FEMcFAiEWYFEBx172V7Li/kNvt8AQTkx0yfFereAkauvF643HNGcIMam9kJKTbPDcQ/IGvjan/3ghGVzuBkfLpPVz4yeteVytV5fxk4UOZlNsy+9Be9/e3VdzDb7o6ctd0AaAzk0qesCmcb21U+IPnDhdeDw9qwo1b75F1QLEpXYrXaJ4cOA7MABoaQ//s6o2e+MrA8vdv7Zq3/4l//tO5fyd+G1z3/h81+G9vL84nidteOGqzA369GBNGq4Ztf2FaCEafhGF0ei2roTROWU9BzmMUFiFpVYoqABjQ6022ym8br1rUcWiVEV+ilyD6P2Y1WfYJMlx7Onpp4vD9raJNWkHNWM64Ns7eZ//DMnP/PNOzWfTJaHJ7dPj69uvX/32Z0rXuQxL/PStTNTz1fJmtA04zAHy3VRjpo8TD+aHPy/44cPH/7K9O/OfvFPlXLA7fhRAatVSL2STiXPE8JIDsdmrmkKdD/c5rHNwqjide3W06fHj8ebw+vZs8OnU3975SYL4M4iRxcK3VDmlxu+9Ts/yZ0aSr0lAYwdj6udcu4zyarJOq9RAtVYJR5LAp+UI6glpy46k2ICuaqsJ5dZ8JpCEcZ4SD4mPrfWm26zYgOw09kxsykWA4MiUWKXpRwE2DiIkQgkqqBgShvddQYAtI2jcXtWHRVdba2Ch25pHDOpWt+JqDFpGyP0cQ2goAYUVLQ3dUW4qeeHDCDD8PylWfgPiP8tUvaCJigBvKASYJZsmQyjg671IBICWOnAql1f/PCTvDv89qfXaMs7+9Py945Wr1FrGydjf66IokjgkUhVJTBrVFCN/VDMo0HsR4ADNwJVoZd8VFAZcE0wURVA+mmkKkCCalSVjERA4X5jQl64OqbYofXQy8NGAEAQCbl2BiPNm5Gu9jul1lx7jknkxopPgWpNsRLHeRmqOG1uJ1EiXX/8+84MdvDM1NdU4dnCFpO7BmPntd1sGrTWHhT5j3/4u+9cLPDumYOMgyAKQMQuqIomfX6CznQ2rhkjEmEQFehlDxwpAIE3oEjademm2L++XNoYHDRcXN1/9TfW80VG7f7Vzt9/+q/+vc+8m37+Z+C9b/29/wLfvHvH7x67w9qbUT2KaqYWwKg0CKXpSCM7Fv0775kH33N5le//86R2gvt48WCTBacdsFEfptespbbjVZhLtEcVRiERFgBkRm1UcagfAQEgMI3C03/lHJtX/gZ95vHPPkmiaQtJ6vRyxnL6o/G/0RSbwt91+2NxiRrbJlievvHurmkVWhr/0g8v7d3V7acmZGVRJl6TzUF7VO82nznNjr949ke++Ue/8se/Pq43+PojGi8fwIfteNd2yUpH03avZStpY4Krkjpt83bczON+O23vtPsJOMeWSRfzy531/iOtdcHRXs4344ujzegymgVC0fDyyR3TqmtNmzVFk7KiSyFrB70pUezm5zunqYdydnr0+O6zUTtpKG2TdqCmm6lMMXIUEFDooDl8evvi7smteqcxYa2X5lnYsQa8YeMR2CmneWrYRYambtFqHw4YJpWiQjtuEIVc55eQdmfFaFFXJrW+4xgYgLGDpBXVVQA0QcgG7fWaA26jnuimWFZQVhnIyYoM260gUNK+WO5ZxaC9ejj2B/MLukAKERHo5iM3n2+rquu6kKCqsSg+RIJOoaL49JWrq/U8XeEqw7do79smpFMwZAV10fYCPkOrqQpWowL1BAYAAO3lfSEM7ToOOtsvTgK2cCDCcw0z2i4mbyeSqqrS7yoAAJgQCBhu1o17ijMiiRKKGmNSyygmGNti1jQJqSBhJKcMNoKSLNYm4+P6iasO/s4hgwdLZEhVKDZNokCECDEdEQroJTSdFp97APJ09fc7uYuUjVPHptBembIbXmomAQ17b9SDKKIZCjnf0zcwIhOoamtWD95/ij5YZ4BD+FG5wEorM14ffv13f//nf+uP/bOPCr//B/5U/NZXFr/3lflPvpoQpI7F9w5K2us394NQVMDHGzpwT81IwwIEnQG4SooEMJIzqsDOewigSRKyTnOSAqNEiZ7YiAR4YV+sv5fSwC1nR6oo//Dn/i9//nG7mT/evZg0o6ZoiqusaRNvRQSq8Trzr57ulT90tlfg6ri4aicXLsz/1p3/7KfunAoELpMqCYZD3rqKvSuL7g85iA/Gh2khejI9LHfKgsNVmxGyJ3RkOg3GQtFN2yl1MW+TykYDNpIHlURnuEPOzP2RP8QpJpkFj6kjk7VSRaehCxpCc3Krtk1irNMiukAYs8ZVJggSAhmUaXfQ7eOIxt2kzDYSg29M9IF7yjooSxJsRD+AVWk+NamHZhFCRs5K8pTHqYDpiAhg2N8UEZAoSABErAqoEsCAV6qCMaqqbeKMjaEih2wMpw0Zh9F3aWi9IBrBbYWMSLrd/ns++h+AwG283yB3+Dx3D18ZNMKGnIEvPgkACL7sHGiWQfIdR9pK10XxMY1ooeuEYXVuxtOD+uuRXdx/JbXfHOlsVKGa1sFVsH2HQYOZGVgflUmFesrODewn2/RzM7frW5u+B8XtRODmBd3I/2/Hny9DGEAQxRAAqYCCKA35gkUIAiUz29Ro8nmlqCbTegZojJim7bkVEVmWzbjozr9zkNvZL/3IbqdKoQMUJYYYFBSQCSubGgghIhtjdl7BKq8vy7LGxfppJGNsblxeFJlNY/C+6yUdfA/sDPbnW55N/6F4xl4yxfpbv/zUbZoMArnS/onYzGPqE/DFu1D+/Dfkg3vL/1cn4+P9g3vvfzC+OwZhXwEYQFBBElZGQqwHcQnJjl/9hkE1eJECEpj8qaWODVYrFR5NSJKEBFg0q8xuiBvvhUBJDNPAQdetwCAggG1Jw+5xZbvmJ4+O3ihtI9ezS1pufB6KoArNZL1TjroOTT1e+lFeKrJlBTsZiV09O3jj9Avntz98dZmtDpdH6zxwcJKAozbWs1q6PXngs7T7zv6dX7t1ukurZ+0Rg63s2jVuZZBWLmJD4oC8CY5TTwgRDLcAECID5Fp0WXSWLQjKqCB2YijDpqxAOKlX1/kqX6WN86N61BmhYFqMTESgggjWZ1XeGc5NGsE4FItJR6EddCog6YpyHFIa5s6RpzzlscmNxuB9l1zobGqzpEYiQCYmJkJCDKJkBAyT9vq2yL6khJhRgZMAXkRJkBFFmRk5YfGs/SYASS+Of6Og8TI964Yh/MIsD25YAS+hAf0XdUvv2Mbni+OeF9EBsxtjCOu2K4hyl4CXpvGaJapPT/fu3HK3v+nT9Wz1Gu6+t7rd7WrrwCnH8sYMeJtdFFhRocf/YUs/gV6scMhLAiTbH7xl9m0rgK3Vyfalbn9FQCB9foFRCZQAzNYCBRRAQUmEUTjrMEt9vSxdi2LJuAARSUMtjEKMntWvdF408bQ4Of71dw5/u5LRKCmoiFGjb31kwyCiCQaPaJKKMPogyh3P9zPZFF3TVOtFfaEiUQV2bD6eTGZJZbndeJM3yCASYjJcZL/OTWBwcGAsp/Tx2nmwMToDx288DEEAQ2ovv96994T/5dNM4yhtni3WIqNX9tpALvVqfA8mUgeK0C9XASLRkYw+/+vR1t5uJo2q52xtAQ3b1cW6Dtn0fla4FkOsw7iTWHH0XgxarlUA+zcRtwRRQIAIml59Jj+dZN1fXP8ViabgY92DhLK6uLQXaXSn6Ul2xYCS8dUOVLS/XoEmVUHXSbYD/yP6N4vx6lbX49iAi+n1nYe3rybLySq7zNczTwH86OnZ6+PTex+9AtenOgGwMW3Hbi55HDf5ya3TO2fpxfTqzsO7V/Mm9Xk5ilYgq5IqVWAb0mhMohqQw4iU0AWLltk0UbErL+bMGFvRRtog9eTq1snt62lnQKMwg5jGdKxtl1TTTRYdpn5UGU+93BRuuEnLpOYIRESINmZh3E3QoI8+dA2eU55ZF7bUKWZjrbW2F44P6kAVkJljBL+xBXiUAM4M7rlqe8QNc0Ugm88Wsp1noyiqhpsZYH+CyPMcMFD1BnD9eZzgCwXAMAzcrgtvq7vnAc8vn6dg3nNpYjNnavW+bbpuH2OgLDNhZPDh8tQFT1iN7sPot0doxi2jIGvrk4GfozjAFAGtxggYe93/rUDBsGbcF/PbOf5N8tAbRPMFOHP7kodE0fOjcCv51bHtIXjtL0tVbi5QwWRZkli1auwGWNuOOwOIKiFhUGQUqNbrmGq3eXjavvbYfOUhZLOxS9MkHU2LfGqZKbZNF8YxdEEQk+ijqqrUDluT4ymZyaGNnmNXV3XtH8v1WdcFmRfjxGQzy9Azf5bI3APrhEDMGINXJKTr166uIXY2acCSvDr6xkw5ZA3kYan5rfrEtKaoTCzuppuPusxM6tBLSCCAgEDS75UoD5AQwf17py7dgKmTLqDNtJxOZrH8nod0QsY9neehslFSdSOJXZq2bVBRSEMAIggv3jwIANGGrPw04XW2Op8V7+xH207a3SpDNFlIOFmP3vvCb3/hw4NHb3z4hQ/n6Vd+4+cubXmrgmx+mct63d17+jpe5lwXPKUJ5naU15Y0hlVa502h7mr3ZPeaq+6orUy1C+eLbKTA6LJRNomZz/am3awZV4WfdJljhIqX6SJb0yrt0nXaZZXxRqzm0QR2dkV5ayhtuYuYIHVdnDxdVm/HWWfFtXnNPoQQgg9hYwwqIgWKHDASOKGAjXoMloy7kfXOMnHWMFd954aTztVpm7eqzEjsOi1AUVc3YzhkY60xIMysGo1E7U1yDEFt0QsjalTPjiG0nYPA1hkSYhWyaYkyAPwRXhADuVnhhU8E7BB2L2h9vkzt3f5LgZ5Z91K9/+JTbBPAr7rE2nxcjBJr89yBiK839UUzGt86eXI48992sTj98u7s7PGbfswxwwCuXQ5e4DfwAoIQy9apdBAq2pKQes4ygupWguoG2X/OAdhe0VaVZhvSOjgbbB9iSLZ0gD5Pao/EIylQkjqsK8wnxSUjxLYFNSkjUopRATrRbNnZjDv81tVq9mE3f5Lq8lwhyYzLLFtnd5LRaDQepcIM0fvYIRpUHxwah80Gd9tqBanDjl02JoTfH7umrrvwYbdog/dhh2w+mY7dHqD2eu8qokyZBC/IlMjutzccFUCcbetX0ov5moV0NX3vuni8sKbYdKNslC/eSQs7evOo6ipkNCAASERQ99aLGABZBalx+9eXzkaK6CMYN121aa6XD8VZZ1BaXeyYmsBZRguU8zooSlAaNUEQJRpVAdQtJRQEQodveZc7vcwv78MKocNgIPqi3q33JTN34z3Zzy1m16Hzv3pRXVo9f/DvfL4ufiKKFpcUQ6quM5pKJhYmuB+OdRdu4dTnNZxXO+WkS9rd+xepT6b+pJ5ZJWFw7IQVQxrnzU6d6ZyO4S4dcihCXqQtR3sxfXz/Aq93r47Pjy/2ViNAQwscUUwpR/IM1jTQJofPXt3srJ2GJKQ+IUd77b4vNCEGBdQmX+1d7a6ybnq5d7l3NS3TOmtVsevPViwSdWOnJhuI6V3JrevSznoGNGBrTDwwkh+wdWFkJgQkJiJG6ktgCJGIJVEPzhqFLkNC5cR6EUIiVJNQIJXQdQFhezKqEvTb/QNbBrbH/03lPqh93GSFFxv8bfANQbRNC1sxGgCA+Il8YGJdRsXEhjRzeVHY+XS26xhCubSc7zz76LujILu3zOxvO5RjsUgSzeLafIJxAIgQFUiB5QZ3VMDerRxeyEI3FcCwHC2fzG9byRPc8gdQFW46BzAoURkkStzy1/uLZVA1ibucFMamsozGBSEOa4gqkCp7MSBgSWauGWuadS6cxcSIYhQNvkQiZkMTZuI0T3fS0ShLDO0AkbZ1y7FukhzozFlLLB6k84gK52zteI7wpaZqQ1e3121VXTVtcDYfT8a5TZgR0JilKhOgdnn82kUbo9UupY4+C2e5b8xG8vXZPD37+NhMbLdKFmqAy7PX/uCPb5YXi01ZbTgKMKrYYV6qSAqqiMX8lxvTSUNUiVHJTznrLi/XhaVK0tTxcjXH0BSNPY8uc5uyBRODItAAMA0i69ubiaKtd+4uyqS5uPvu1BMZNV6FHaD4DrrRenZ1cDoPr/MbiwcLuv9f24zW6aPjX/5T/9EfPpHyTo3ji1c+unPFHoWEFEM0PvUmFOWkSdtplbjdyO1junsy2xS2fNqNEdhjm7INI8isqGuyJsVGEp8FI1Pe5X07oYOU3J4ZGWQS8N43I0XVZnKZbA7Pp+scBNBCBD28DrqUJEDLIeGUgmlGrZGkb4nBkAUjpKtkma+KdVqnzWhthHRQZAuBY0oOch2iLPhYd77NOvARGrduCjMy0XU6VGBkDFNvcIHI3KvxRlGIXRNyk0RmBQ1OYhC0SWWI+4k9M4H66H1kGIjZOMCAvQQA3pyvLyUDGBLA88r/OZwL29H5i30B3vwCADIcyzcVQKEiIlJHaYNnx5plNtud57eLT+vin/7ydZOH6x8tfPebb/n01knaOA3OV9M+kQz8BAAEE4IgqTANve7AW5L+fVJRVFV6XrrAIJE3PJ7bnW7HHT1iwLBdWu8fFnwgUpUogttJDQIoUgA2Zj/HNgg2zC5AghENxogWHWrKntIy2XMbH/HTz3Y2d+sYDCBpiO04+BhRdckEwIkjYpvmRZLYfDzKE5POMKKvZGKk66i3Ye7nxuK9RDm3ziYTa1BVY1s362azOHmvCZRkaZLl6QFbRhG5ThbvnTTUTFiJefwZG7ukHi/H8eJHX390dfpR/bEZR16NXIx1+vaPpenOPTAY6q5rvITWlzH4tvOxU0MqoCZPf0c1ppcw7Sx7r6s0a8/g+NZIT69ApHhWzrmp9XZaNpinl+SQfQzYCakomi195ObWCpPV3en3zl8ffeuoO/yVn/hoVO2f7a1ztauinXVp7dbz9bRJ/MpMNG/+DC4Tzlz41149+X1PR+fJN770z3/m19/+5psPd4wkjes4xXrajGquvLFrtGzb2VXRNJP590ZVAuVVTAEoQqcr9iwjbbI22yRVmnA7bvOGpM3Wk9J1STW/PLqctwfjrD3qxibJQhRnZ9fj9fyjvXq0iUqkol28++7P/OM/WBpqsiprTUebrM5ajgrICDqRg+qwnMW9seKOpNRKq2Wm1iMTIYCJFEx/jBEgQOpt57tqk1Ya0HBSe5ON67r3VwEENsYYRuj9v4AECEFEObZ1FdLE1DEGRl0zk0bpMrZ99g6NIeq7BQAZPPoUFFRFREkHLxzYTs1Rb/QAtJdx+STJv/8AEbZ1vz4/bm8SwM1wc5sAdkMEVdE6BHDgm/QCC/6Ac4Q835zDNBVKj8ev/h2w9Po1dw7D7PSiaFyEXvmDetdP8IA9v0x6jUARJYsx9OrkSJ6NQY3STydRvQFBhrgtcLYTQR4YT713nYIf8mxvhCaCihYiEKIx2glprzYI6v2ooUPxNUFaSLycmVl7CZNJU2XYqb2047W4hlKIV5hdz+s9mPNUDvN1reg7qdH1qZVCB0m1QEQyBJBRmhpOc5uPszSfFMhMpCqbwclZNYoCsNE2KjJFJDZ2Ro4Io+/Ceb1arp6tKnWj3JrReNa981lcbN7fQGZ08cNvvkNNeOt3i1rdSfpZqqrTRw9X2vJ1MMmGPivvXJrEOWvtiA2IMiigVJuqW1927ZKTTj7XfnWvTePSn/tqXn/alXNe0nf/dz/783/xp+vUFebO2efONZXy8u/9xCvnK9dNT1yxCDYAYYwiVhVVYrTS7ysJY/cFXKe4/iG9v/rSaqo719OlvZ4/fOXZ+OT4nQdr9slizqFQT04qTZq0HHU/2/311V747PIz7Y9fv9JIcnHru5/+nbe//dbT/ao4PVyP6oQF09iyRISSz3/Snf/Q+7e5fuI4l0ZgNOqyOnty+N37z24/u/X49un+xXiZbKarbFzP1nntoFjvrGc1c2fbNCZ852ripc3CDty9+Gx5V3fN6eE3bi/T0yk3/+i1X/gxffyF99OYtVYSzcD1cQmIQXwMIpo2k3pS78ohz00xibxwID7x7XgzXt6+nvkUhBV8lFQzSWW3Tbt2dJYu3nPTdJljiDEAKYH28CJFAWCQCMQaFallR6dGFxYULELimY3FpqzJ2sQSBSIFjm1baRo8owxcYBBVIFATo9L22N9O+hARAkNwJujQ+4chdMLNAQkAQ82sQCjbE3j7PL1ZEUAv4AOmU0UmRkNIICF68eoyZKnbhgqg1i5fS4r6/Z3yVuJRRGhdSi+Ig9hPjZEIMcQQgYgiDuJkJNiTKfoc5RAF5Dl5kXqIX27ghD7J9XbBqsrDGHMLfMT+xzyfFiIiMt0MB11MwIwNB6DYkMv2/DpJ5t67mjXNNjCOPkAInTWG7KjVvOs6ZLYwTjpMMWpXdzHGiKSdVzAsqlFUOiADQhadM2RSN0uLzCaZG9nUUvCiIMF7GfyaoqSq0jYAwVhn2Zg3ka2BGM8XJ6dXXc1vjo/Hjs9/8fo3vn05Gh0lX/cz41PboXYxYF3D9HWwsfX2+vyS6NubJLadqkJjLCmwuWMcZzkgCsGy7pbfTn+vfDDm77Rf/FT7mx8tyyYEX1Wjo184KMDfaxa3m+WH9yqtov0jx0s3PoMAsaYiLUWj9IYXqtrvDSoiQMTufksGk/V4Nd4Yy7hHk5jJ7dpkywW4937fb7/Rhvdu15PF0WLSmJA2Zulq4wLFCERsMvnhR18s34qvZHtLrZqwwXJVT8vp4vB67omodVf+sPHczu15NCkxm8LQbnrLT2A/s4WmgVTrndO7T5Jru9p9dud0p7S1rcZxHFqs0tIFDKjo2pwhimkQ49jfhk/hJPrZ17/87btvXIb8N3bg8Z3LST25PlhMWouABhDU+bzNPamEqACS+sIXPg0HYkrXJIoGwmYTy4MAMUVnugGXT5mRmWLoFd568I6NzRJnSLfa/Tjs1IqISoiIxCSqQCQpdyvl1CNAJI2WUVBFuhCpl+LsiS0vdOh9jT1MxAa0TAdc/6Zg237zC3H0iaLg+zjC2ydXAEDDCBK9ggOIgAk3vm3SXDuyQIa6xgb5FN7++um9bs94JIDsouJoe/4uABgQVQEgwRvFUlABg6jxZhKBwAPC2Sc1AULtM8DzgO7fO0DUwYUXnsMDw2DhOUQYFAcdkiGheNfxSDk1GiAqtd5oQwY12g7zKucuUGbT2cIwsnMewDoA8ZBbCESBTJ4RgLSI0rRgg/eKEMBECRClBiJCZGrT3JDNUnLFaDTK7YzYETGtCCGEqG0/PYYEIHhVuCbrrAHdvfNjBH7TXupyRbty76PdHy4v1nT1nY60c+O2xcS4KNEA1oHmSfr5vYuLp78wn1pnSQEm1BOvHhljrXVsrIXJBCUd/d6k/IZu+He+9Zmf2f+g/MpTK/XmwU/9tb/4t89eeY92vnU8bw+eUNLwrS7y1XkRnYVUlgYkCtyQQimC9rAldfBWiblRKw4zFLFt1kHM7OY43sWi/FQ9n73/xkd1Q5urlW9HFCgYoRDy5e46x9BG60+mtYNm7I+rndqAsQZtTRfZE3tqhZKL6Rm9de5E9vhRm49BxRsPO8tXn9yVPdhr7tR3dMflaZJYZG1gcXuRL/aq2XVxOVnvVY4sFnW0ou4y70bB2M66Rn1auyrpHjz71Pq13/vjH9+RicqtiyyK91UFzVgUGFQKDz7BRNSWk3JSGu8paoxBhawpcNyaJGRgFKPd2LoIRESEAmJBlTH4JEmM9Euw28qU2GBEROohfBUEsBqDF+8TpBgVuRMIQZXGRIaZAB1FRpQgCMAMon35fwP0w9b7oY+fl8w+t9g5PP+/vPzHl7LINiMMnJrtKFFBAczDxDExQDCICkgurWNAFMxYggDa9dEOFL+ZN8ejYL1RcGXDvUYvgCqYgb1AygwxRoaBiYigAkQyhHCEmzp/e7b3W0/ba0IEUFGDL10eAKAqKnKfIGXAMVUAIrzAENQI3uXKE98oSSNIBlpMYmWBtbSpxYax7hRQSCovwVpG8FqjAWilnSSkMUaaRWTfYNJ2nSDGICEiSQjUM5gVOi9BjbFEJskKBzbN8jx1B8aZBAk3ACAi0iD1UKi2LRtLVVST5PkYKsubx8Vrd8powgdf/TnTfujdjt3sK+djN0pKNwlRBHjTVPNf2RllLkmsIUqMNYYNj5mZrTWJpYgZdzry9eNSGo7lr/yL+599+/PvbE6uFb+pR18LsXRPl/Ucrq/SfJw0p3c3i4JPTxqe76QBsBcrRgRFvOFriCkP7rwf86oZnx1eTdusy+tkM+VxebiJrJ3ZXX6q+eF33lqP6oNq1qZX46s7T+9cjZv82l66dUEHrebrkbMX01BlAZkkgSymqT3ffzy9TK8sbmano1d+63gzSsNpfZCqxMaEu4bKSfRt4qrZ1axyNI8HckjzEeGh7GFuSINvbDk9v326e3Ln8sCq4jKvRnXSQlNsnJO8yiJxmnse/e4Xzo7bopTXVzRrblcHzQQlgkIIvNx59srTndVuxYtiRWVOYnxCxkpdVLbOWisOCojG5JVbtXWGvYqtKLouYfWjLLU1MeHAUh1aVgQkIUAGENAoEKHtCLAzRCJC2IKZUb1JiEHFoEECtiJhONOGzv3mvh8UfjAOI/TnOPkWIYSB03fT7QPAy5XASwnjBhXo/9CvHSKYjKVVRq1dZkAUcjUKYJxoCMJOyvhAPvXty1n5GpXTikWbsk0lBgQVBIG2b9h7te3+6VW3E9QborCCAuFLa4mgiM9nlxCGa2JVhUE/6GZ8+dz6+AYVsQA6mK0AAAAxcpZyIkpGGuT9Td2ygxj2r0d8Oa4r6Fgr7ycSWFYxE5YOrHPSRU5UXZeQBnVOopAFcNYHJRTR4BXVdyhRNPo4ikEUQ1gxo0bRGRljrDXWZUVRZO6IjU0NIYGK9120vQ49W5LYhrUWdTvKg+V8lwHf/tMA5dnVk/Wz8LSpPTLojJK0yAhsepoGuydV3R/9CVvnrGFjXJK4xOSZ5aRpGnjvct3srE1l09h863v/6Q/dfeX2F8Iv/Vl8z3/2IePsh86aw3bmMJpVs16I/6VF683h8SQjpBgHQUfYUrpBfbr5Mes1uSpxM9qYxpslXbGMf/mzT5K7qzRmTw9OXlntNM5CgaPG2txnzjBVs4/f/trn30veefvCz/D//md//SciW9GGEEhElNtZddjuI5Kk8frQPfnJd498tfQjBESGpG3m17e6BKzsLvYWhTS2SXzS2o7bkZ/EMWU0N7uWmagn31oP0oH4cnI9vswWc2+iEYr1tBmfPvidT9HHuyEYATGYdDlZ8FEJQhiFzDHEIBevfO1Hv/ZgYcvJYnw1rXZbVyWVicjRhdQToHHOpQBRBA0RcLSagvjUWKO9OScgQJrYfpLVh4Gy9M5q3kMTnMVaLQBENVFtYaBpjEMAMS2rokrwUSUKiO2BwJv1PnmZH7u99bcL9zdjvu2Dn3/Py8yg54GzJQEPZ7cqEKK5H8tVcBQKaVSRqNEgXeUiBkqcbtbtwb45/lvzsHs7dDE24JYegWVbQeh2r5xDFCW0w1Yg9tCE9tfRUxJRVZSH3iYqEshzWMBsYQMARSQM8PIjqiIQkmxzAKlIbxiioAoeWk6j4ZYzqJpkVNumSdWOafcypJxXZRI5IYgRotHgstqoisaQdEFRXVJpJ9G4YqEqSOKdNUNREoQ5BlFRiSEGD4DaDzeBLa4AVIEpYWOtS0yw+Wg8yqx1WZEnBVWIEAXAiAQhhi5tzyjrQjDexrpwU9h98CUCANhcnJ1dbL7bLZ8JSTCvJJ/+qiLkACpKFKJvEBEjO2ONZZu7fGYim29dE5XrWWxayvO95hvfZHf37v74j/yzX7vncjvKz7q7F4VIc1XsdOnVb/qdXWohmF6fQRGQ+oHyNsVS+FLbJJRl7XG7E9J6cnH04a3z/b/2f/g//9zF4elxczDXR+7uog25Lzqru3Bb7+ABRT7ubocdM49xlP7m+df+4Z/97bkKu0ZttNFKLZEjA+Va5uv6jY2frT7bXa54B2yHWM4f3vnoM9/54scPTvJrWts2bwG9icpBrHctCznIJYUsOaKj7gjnCmAkMUU6Sow1EWUzvZxfjVejTXriru/++p/4yqtlNno697Xd2I31hgAJjbgdvYO3NcWd7rjciwVWe1c7V+OVWdx5/NbT2xvDzbjkkKsqR+dYoo+iAkF9ViX+ShNCiqoiSsTG9i4mhH64ffspuIgTCN7ECIM1GBkNaw42Yi9uHyMEVI1KwIImPufJbaO2N8GlF2K5Lzr6L2+Pzi0q8HyX5uUu4IUkckOdg2FRGEDB/I/bi7Nlu15WXdk0EcCpAIWopMaI9zp9rbj1wfn+4vPoYWOrRC/EqPE8oMfIACpR1KpKr22uvQmiKCBIcACgKsNyzHBkIyApoIreLCbaoZSKw5xgKBUGjsRQ9rxQw0TQqC/UO8FU08xnrBFsSsY+ObSti10BkdqEvD1y54IGa2cF0LrYsTEBQmsd+A40jiCq+lUFhlVRgicEUaQAGpWICanf8w0hBonSBN8GIHYAokjU9OAv7hIbaw1NjEsSZ2jPpalz1iSGYtTgy52REfQhcQ1B8HzRWokhB0zHB/cRhVSXlxcn1+/8jfEf05nbbIgIUcGpRlWRVAIoEBoTOBN7UNeJl+TBasOZRJlBLCM9+h7P/pM3jmpYHIbTajJOjbhms5u28K3V6546rJtJLs8lAVSAhs8NbLSfqTa7WphyvByXtnA+nSVe30j97rv5Q/NoZ3P2H/73fv5/0DAaYMBSXec6pzv+9tmD8wN/LxYzs/njj/+QSWJXOamlqMZl5o0tR+uitnVY2mfy5tWsDWO9XmXTkAegxd7eUTMp4WTn7N7DN9574+HdJl3PNzvrzJANKGwCsoRIUHPrgm2MKphQ4IjmOLf7PM8kLUxCxpbdeOlH69+9/86+u5iqRUI1SF0vJEFrDmmTRAN7i/tntxY7LqQH2cHIp2PHdVxfT/0mKU09DSQumghM1BvfqLc1bs5MxkiiQgxERBRFFIjRP69ZFRDBEISAoilu23n1DYJ4iYRgTRJ968GHoAj9lhcoPi9oB4XNG2bdDZr3fAr24t+/QKTbTgqfJwDcdhEvDBJVCEgBxHw1TY/enISyidGvry5XyxAlNF2sgy6VJ7eLu8mdvzUv6UEpXO6usvaSTEDvtgSfpm9/tFMcYL5+1keqiCAhGWp26ZeBqekTGXLvDYY3TYD2JpChN8eUm3nncM1G4rbq6jMgKYHBmwqCXJVl4hwv2qJI/SZNG7NbPiqr2wZVz3MTy0CJJUi6oJYrA10VE0vLnbQSpuiRkhxiLMdOIqIEZvGCPFXfCIACMSgCRmMBgGlNqN57WWnUoEDaK7viUqGXOSdjk8QaZ5xzWZ5kRZFkhTO72iXsabKclTGbcM0dBodcYnWpZIg0S9zOHQv07y4//LGn65UOC9RAaJgQOlAFMtwkUds62V1/9zpNHpku90FZus1qP93Ulsrr5XxRp37WGltPfMkJ8qqpvvtFv/bmwK03+yhbTzrVfs1UAQghJkdtnYt4rlPvJK/nzZ1yLv929W/uvF4+gNHU/s0/8MuVOxk3R5d7q1xdHNdFy529zC/ztdNEI/9p96n514/Ut7azHfu4kcZUk48Ons7WHFu30aPFzgqZqzLnmph4OSnqN5/9ZHg7P9pr0ykwXI6e7D45vJ6eF3G8HFW5gmuSOoUW02pUGvaKGGxMy3RT+NE6w6LZXR828/Rq58o9au5//MVwEQ8eHpbFZv9if5Ob/uTFIo6qrEoirIur0SKVLrvau973uczDrXg/MKpQ8K0uE2vFRvDYJ+BCvAEMlU17voCDoeRn0gjhZkJNiqRE2DQmgkuEYhAAUhYBRt+mxmAECaBd7SDUVYscEQL3ffILFQAOZ/ZzOP/FCuCTx/vNWagv8oL7YeLzFaIX0oIQACiYS41KbDnNd25NuWlrs3p8pdg1y+/om3O/TOn2k3fvrqZUsfIlpe+MvKBY2dL7clCJgsgSBABZhzamAwQBSnAQMlEklRAQoNcGMQCCtndEGKKfFTRaQhUl0xITSBRGAOytj3rRsu07HQEhwICeqhbL1IWxi1gY2SCirm0emvG0Co7rzhh/VbjlOjPaaQAjBjockw8wKzuKnHYcVaMqTLEVJZtI10HCEpeOXVRFdr6zJmAmEQklMCKZTHVHJXgfYhtDRFJMowIjaKMAiKKcpIY4TWKaGbJ5Nk/yLM0LmPoZaCKuSgQDVsAgSBDkfK+xPjW33//jn+8epXvLFKBHiUQ6BFVDxAQN4AY5ruH6lTWBn5dttEGdLwM2tU2DNY2roaPl79jRvXxS5S3zSpLz6WW6d1at2sSID0gRCUljVDY9ISNi9v5PZ2d7RtoixJ0FYzAxXk080eiL6yymsHtx8FP3f+dPPtu9Onw4/85r73zxn/zMd/c388Wkm0IdM1s7lcWkjpcH7Sju1imsdtW/svGzMr/EanZ6+32Zdnfdx19++hpU78ZxEiLhh3nmbTtZELXzar96tX5FXuM38G590Mnog/n19MmrH9/91psfvfHh7Ys91/UK+k7KqBRN1uw/y1vTQG0lxXB7M69fWSST733hF37qO/uBA1ZY+bLeuZjXOxfzBqN0jM4bcZAQKfG66Drg1gC2lCAWshuLzdp99GAxITQGO0AbqR3FnXoeXZxYb5RbAQIkYwgikjUbYONjb68OnLDkZWlkM3GbKtjUQOut8zS3HiSgigIhNopASRREcH3rvGUBK/QGMTAcswC9urUosKghj3GrDtZbb1AvAoq9UY6i9l2doFEFgS3hCIYdga1EH4LJBrGO9fl3o81TM8oouVtg7Q//9ZPLzTvtXTr6+6ldf6ntjEiKfgNIqjfDCvUIIgB4sxwxrPdsHwIDNgIvP/p5YM99Hvi8uh0hCqj0VcDzZ6JBFyXCS9CGbgubhrMkLUxTJhw7diRNQNdRUita1BASY9wMqG0VOXTMCtpKZBspMQChyQAE+kNQNYIKJsZADJVgjIgcWJEQsbLOaOe963+2mmEWQzF477ugMUjUEPNes0+JYxcESawlYOfUJc6lWbJrkixLHU+RUEOItSrECHrYOBjnpf3qx0epsW7XD71ar98TpRumdeQbstXm2cXxebt3vhQiizELj4s2MnqyOUPTqjErVhONGCtNMxnN6drMMgj5mEVEVTQSEwtIGE6aav5KwztmvRldTj88qLmLRbpzWtQtVa7NPNVJ9SOjIxvDFN5oXs3u+Adtc+fvfvndzz189Z2f+NUvLkYn42K+1FnZFtezq7xMRlU6OZsc6R14/fo2HvKdi/Lh3QmMFkd2eRGy4NDnxby1xeb47NZ1XlHjrmyNSZ3XO+08kDmOt2HX7POt9c6FWQd+7413X/voDrBSkBqu8kf3Hs43E59xMB04r9yRSHnrWfnD779SG6HMJiYl4ESg6spq96PPfO0zD/fqydndh3cvx83Ij+txO1I1gQNqZCQk0FvhljSzx1MDSj7xgChBoSonHH0IPsgQnw3mmSPpAgIiiID01JDUV0AY1pmmgBjiuEKDqE1MJok0rXfoB0z8Ru3yOfX3BzxwkASlF3QAX5jv6ctYwMvxh8MP+X6QEMBYRBARtXZCGNv6zKImabtq7/yEPr06Gee7zTfuVKNbi0hRnCxb61CkdykGRYg9Fxf7E0TF6HBRN4HewxvfR07o1wXE9P7nFLZXI8OOoA7zvZe5jCjDhj2C9jJWQ3kUXWaNxdo6VmCSQ/Ihtu0iq8uahG3dhY4z7Swxdx5MMCgCyKwhBuaMEVQUQZhVFJUQMUhUBRUhIrREFpRyCZtA6WTTLzthAf3KTwTKiUCbGCXGEIPEqCoCSMSWEEG7KICOCICd8SbJ8iw1NhmN8tTxBAEACJv15Cp0WPyd92eUZKUPvfOKemA2BFqqiAooJSKcVM3Vyf6d9YW8+gQDXU9oX10gQZJWAVgRR1PnGm6xDV45scsZIDdmYnrShYq3RNrzr1BVoeX7HVkfbBiZdB3bXbzQVSXNvNMuZfJkrmbn2alS2swxw51wq/x8/fvGb+dHkrZ8de58tTSurHNlTtLCcIM8uTo8adWPOItcMcb1q9DOV28Uz855FnOpUs3Oj872P7z9eHI1aTNSGrXBVtm6qDiRNBZdIVPM15N1RiiZzNoEIyuL1RBjKaf5wp3uN8UyXewETsRmrml33vnys02+KtTFJFiZ2h0tlC3ivJ37An2oY+lLe45X6QldmTZZT5aTJhko6mrEauGK7EmhszZX06FE4iaklnSAuRQAkJldAq3vfXCjelFQicGiF7bBI1sCEWQKKBCaPN3dMaHtSmjaoGWtfTw/b+r1B0dyPxdDoOHUoxfifxtRoKCfhAH7Uv0GT/v+BOCRCJnUqwgq2RQiZM4ZXH/IsZ3fj/d+BycffCkiWwBqzhwTIGrconPD2v9z3fI+i+kLL+AHghLb1z04H75A99/+++dPpNsE8/xatfeO3pKnEC0SY1DZaVtOMYQLQlJyDCARyRrmrnEZMQmwiYCRCRW0sxiVrEuvmEQIgdmARAVQiVGZsRdr0MSiggg3hImVEAX6bFwiqhKzhuDJMFsL2nPBfYga1UtU0J7u4QxiB0EUOkIoiZgpEjH1W4jj0Xic0XTXpjp3353oY/s5Fxrs3XEDiiIyJBKjEGg5StuojnDxVmi/+NF3ycCulRPDIxM61c55SEzwze3dPPWOnfGOp/W99Xcx19Xk4PazGEVvFJz6uS2oaLrYJRHJbjUsk8WEgr72ztHT7HKymjx99dnO4jAWNZcTV1tok5Uzk8Wc3/ns43G9X95ff365DzOV5Sub8Cy9nH0wPUkA5eC//NK3yrcX+Wp3zev8Wjp68zzBsMOXyzyLKCoxvaLlg3fe/MboIj25d7ZzdudyH4EtEkToXOeCtrZON5k3s+q4vXW9j2IEOVd7lN7jPZ2Y8uAyv7p9PT0vNjaMOqgno9/6mV/+dJRoQ9pZgc40SZvprLu1vLfa9/t8V+/ILudpbhMyVNmrnav5mgMLgah2xWI6a++0u1nplvXKqZGGtbTETCpA0POAaGRJFGn4M6hHBBXVWiqPpmhFIBIZ9EF8hFgDO0yZMsUsSlk1g0qW9pIXW+27T0QD9P5gCIgRAQbn+Je+Z0DHfkCQ30wFX6rMt09gPAIgIWahi2AdrwExBkpTuby1t7TlrfRrR2362hUZi6DrVSEBEDUOXmOwFSIj6V2mt5XBTQJAfPHnbX+DQ1miMggcbL9ONxJmQ1V0QyQaSoBeg+km021BRxQepTGyX/mxE8yMV4V8lD7hCUcPiil04jWaGBwZFdEAgNIFY4yDGNn0WqUBAGNQAEJksrYjRlKNGkOQqBaCAvY+BYgIQIMrrA1dUOl9DIAInDhFUgg+RI3BqwigqDIQIjOte+cUrACA2DCyYWJrD7Mkv6XTk/M77VLrzcaARgBVK9IFJhQJMQKC99IREF/P8EgX0zqpzro09Vlq2JXXkMWESKlw80mKYDmNPpimPXyw+42L+afv2kcQJQKAWITBbpsUQDR3e2E9dvgki6mbYlBt55u9zRzZsUalszApi6XUgE0CxthHt3Xx2cVekM1kg5RmjR9N5mYyouJydMWtefjWk6P/+M3/4L95SsvkKqkSG0fvxlvv3zvPJ+WT+lA0aGGyqcmO2wfr211OsanranU5Wtx79+13712PvYk2cpdQSBr24k1dLEatR4WOrUFtxmGCI749rWhKqQTT2nNaZFfN7PzhW9++K9oHKnUM6m2HvMxXeWNMKDbjTRrmbob7bmqn2RxHwcSaLSOgGjAdV67acZo6ZrtKQ4u6sGQMRh8REIiI2RGBIrJIFInbub1KiHXk4LSVAIZBDFlVNABh1Ri2zICG6ebgHJS8hr74+6MYhrDC2A/dP3Gk3lCFv+9B2/TwUiH9/DHwmAkrZovq2xQQfBnhzNounUN37wNfXL2KURCsqa+ChIiGnqOTKqQSFSzeKJi8fA3DlO+ln/oCtPlcALn/e1TY9kYvqKD2iwfDepQONdhAbur/red07BrBDgy2nbESUBpYx8QaEDV2U7A1oY25icqJqhUfyRqNHCJqRxkLoJFOJWIURSUmlSiMCgw+Bo0KQDZrqmCco3ooXDLSEAISAxkCkQxBowC0qkAKYFjJkEqM3scQYje89HRQeEljDL5dBSBmZkvfmW9GBRy/m494v0t51AyjIJEIqoRRoogiFNBJQlGgu/ijv/Frx7yJ99KNUGPP3L3sqd9xCWyqdDqfpFxGoK6p27hcjXXnS0TlhhUQVVBirrIVLwMEhs29+TvXe6EyU7/adbSe1vXoCvxBN8fbcsA73IWpTmMsx5dHl/tt91f/j//bnytbctlVm1UVYpYl1+lm6vc4xVu0Z0bGPXybute++vpHP/zrP3zy2jvd7ukkv/r0s1v5xRnOyCq6JoERTcJ+u1tN0yM6jrdpL0gjZbeuRpu9k8PzvevjqiiLsigxQgiRo1Gu0NtWOuC28DILu6vD9T4dzOO4GbeTK/fh61/5KWha6DTERvLWqAdUpMhiW6qp4sYKhwbLSZdIEQ+q43I3KJIGUS3O9y/GeZU0IcY0mWZtWltt18kos7LV2yFi9g4JJAZSlZsJVoyRQwPYQDCiRBo8spNI1nDiMEa17IWp8Tdlbn/D65ZN931q19uwQQIkoudD/yEz9KTATwhnb0NsKKN/UIlgzLBt6zR6NDZplIwBgx3Ep36Dx+NfmAe+W5JQMLw6T4ISqD738nwuTa6Dvd9NJnv+eOGCbpDLYQZA25N+4C9pX1/dOH+92ObgzdBvYLFuw18VNMnJR41poSpON0FGSQNUqnShQyZEdKkqqcEYGCUiK5DBQI1H7VygGA1KmxD2OB6hSoxqooBh1IhoSEBXXBiIvlNEEtW4sgaYjAmAINEHQpCoCE570oWq9luDQCkQYVQR8TE2PWNYW1HjXBZARERa5abxH7irRQybbtU0VQ/PE3YAhKgyMKIhYhAvjWR1tnfrNQjdxZ/42dgm6/pi4U79xeoqwTi7+2C6Iq6o5mAlSgRYgzeM2gr2lV8/WOpbKkIEPP2Z7JTtM5iE/2znH3/u8nPPbivvbu4uAwfXOs8oXQKZmMJBvhJ/nvtvvfrP3/j47nny9I2L3fwDs3c+qx0FL/mq2Iz1Tbh98q8lf6G4f7Ry0xiqS3e+ejNs9r71aVwteJwwaLyeNk66rHaNlToJVhM/N5P4ir/jxwJIPkosL83l3iVf3z45Pt9/dj9ATBvbuM1esMBWtYmOA9nougwOpXCvtRgf/PYffFhy6yqu0dcdRJB6UrlFtjINUEjbNBqPPZUniCBaS1Y1gAK0dWwnkdGojVSJFKZLMVQ2Zx9iP4/vUziitOJjCqSqIqD9qjo3G3Tiu4IJVBgEokRQVUECBSRWiD744VbfTvO2zIzvC+N+lA6949t28o3PGwZ+ng5eegx2Hf+VFYIx2pMQAEElBig6UUaws1PXdtLd7z54czPNKiUIBJvFgRiCXqx/G5UItPUz6Ck7L1F+hzD+vowmw8SfVASIBo8zHN4C3WKXn2gdtqOXm0x387S2cI0H9kKdH03rs1EnIVgXF8gGJFat1qLo086Cj45jlRoQEfRZkhRt02WInBaRux6SRCsiQAZD9MBIGAkRYmBU3wjadNXbTuHEcOxC/5LJJFASgSKbDpCYAdbQl2wEKiEAEjChjbKrGqOPgnXpvXovAuwMKqwh6yabupj71cbmZ6AKQNRbNIcQjcZ+vJglIo2kl3W2mU7jP/L/hsMw+0OE4C001cXJ1Xsfy9hfFOBqFymi1srZbt2FSlQ5K0mBDKAoEPRyWIKEGO6b7ojPD04n/8lf/1//6L9////0l//9v/Q3/8oluJC2o9p5gR1vV7YLddHu4vH1v3XyF+LYW7+6D9ft+Z1/MLrz8V/+2J3MZ5qNknGBDcDORn76O/PV3pMvrF6T++uP6vvrdr4ct5syEEcBX91hgwaskHLEokzXjn1M2lGThWTGx9Whm+e1y9GoQFm13bJWiRyyGtr64nCZbWzLrt17tlOyaW0zPcXGbdBXsDlC6/MqqYjAQgdNowGkUhBEXtKC0doQqwiW8vXOxXydAqAhR1DOSpDHt0+maiXtrGlCZxga0rqJEiVs8brEQBeDKIuoRh+GkxF9VXLiSTsiiWDSdpgxJ718ELWBGFhfUAH7wRF8E2c6dPMKIBoDP5/qK8BgJ/5ym9/HGQIQPPcQ/OTzmiR0EYhQVJENYGREJYjtHNJyPb338/sS32yCAHMaP8wTqwIAPX4vipAOOgYemIZuRLaWnwAIVqXflexLTWWJSKDKCgqIFJAYQJVFQUHEsBmkw/oZnx02LrZv7JAHhlYAkSCADdGCQWVy49JwePZofmsZ1rnzNeyvUx/SDdP0i9dPAkzOwmvvTUvUaaJlUNVgY2h1tOLGebeGypkap3GDoq7hogqp+IBgMlHnl+m0SlHUOhKe1wg4vvYIEVNGbaM2IRmXyICqsUsTjZ1EIlAgEKPKTkVcCEAGtLHMSL4x2TjGEKQJIUoHEBxXvBFXKHTTc2mQGURksEgi1ChoTQjOo7l6KrNxs8ZEu3vJX/gOtvFqvLAJ2NRNPgUAWi/L8+XZxaps6Mqrz0bB+DyPvuuq3EdERdMCqffs0tPjGBpj9t94VM+q+3O3+nP5ZyY7BrLT+ndHv/fmh/efHZyPyt0Kxa4efPzg6dFVkzf+7u7pjz7ex914tNr3957Zb/+v/uf/xvnatNn73/rOApLRZOJvTcb5owns6tzRlfpi7V+5PnhESVWu8tTVkHbGfvPti91wdHVcFTGICRmA8UmVlrn3IdbjGnM5LqfdYXuvu+2ScAQatc3BwLSdcth77/b5K0/nH0+fHG2SaNOr1Kzb2x8vp/af/cl8layMteOQg45Ep8P+jramycqsMd4DtAiQn9z78LjKOPpoUSMXGk23V1rt0tOjarpJo6GNbQ+KhJp106/4IhKHiVuuKeVrEyEhTkrCIAQxet33EWcdgJN1O+dSc9eEkaAKoAZC0rZsVQ0EZfAGBnqx9Kaaw1Gn27ObVHqdDSNoRXhrqktDiyzDeYgiCkQYkRA1qh1i5kXRXdXnfzZrsjlBCAZERVUJFXpDsqTMzY8+Ohs3x6NYIQVr3gm4mb2YdhAp3Lzagcg0FCf6wg/D4ewe5s3bs3zYSRTc8vkRAOKwp6QACqjoB4HhAD+ohFGIKBBDwIJBQbwkMbrdiKuWMQZLodox4qYHVycXnY8sVyZbFpS4Ujbg8tgEg4ogXHCKYROMAwetVwIVVV9Ht7AYW7KUt2BHzjALGgyqU2wCOzdfRQlikYIhYYLWoKgoxiyuxDoWKwCgaLpe7UEYLYLEaAiCEKWRDBkrOo0iqiJrjBEgtrAMwkvvLTExG+bhLTQqouyyRqL64KtXVhVy++H/59VHRaUPzOVhW6/AJXYtap070NcUNNTr6mG1XK7Wm6YLISqgrkUBQoxpDCCq0RVrhMSe/eQXftWlF/llu//faf8np3+Z/p2Tv/r4f7hMQvru6NHssvjunmfd/Xf/63/zZ//zL89qW8HD+df39HI0b9vb35N5+5enf/GVML74wrf/Ny5zXC+6JOQ1jLSgmXH7O/P95TlO7393v709Xpyspkksgm0wPcq78am93DmZXs3C3tluNV7lZ7vPdjZ5TLusdDVB66q8xppsc1DOfQEagBI1iS13VjOZQpyd3/l47+qoGp2Mz3dW43oinXS//RPvdVScz+vhbuzvWgVIOU2TtOPtzonurm18dutsH1MwlXgDaNiJdgAc28Vqss4uZ48c9CNoEatkmIg0oCBJzDgICwKCxBgFEtBOOCu0a5OCq0bIJCjiHQ2snD5uejkGxa26vb4YXi+d5ACAiBRUtxj69iRX1RdmckOcEOIAGvZ//QMxQAAwE9EowyCI+rKm1+/C0ML01n/hZ2e3jah16ww+NhQCkW57D0AiP2xnDe+vfnIeqUNi0iHidYA0t93O8LHoluc7BP/A8O2rDMSXX/7N1EEREAkJEYuECUG7DIA4Bk8ZB06xPa3rHbk6ljk1nIrZWHc5DsSKbRAbNevaFtUnyRqCi7ZTC4wdMVeYFQHAEjESMxKRAdXEeHTQCS0sFOwXtQFE1CitQzC222SiaAggCdBJJDReWEVtT2BCUiRQRROwxw8jDONNQtYIeku6gNDVsSnH4epZNwI01nHvJ2EMRTbSNiXkgJzmtX6vSMpm9yt/afOn/nxxJTK/ClENgk66NsSOsEU2JjXj14NvmrYLH2+urlfrTVOGTsjapAxgOWGu8uBqMu2nFgvkiexetx+2O2bv4Wy68zrFW/5Ox6Xx0Zr3P/tk/7/88//wp//Wj9XaTZopvFIX/rXvTXbeuXWR+AfNz5yoJvlX+GDuY2Z8naSLLlduLjr/nS5mufrs9OzNNnXZxrwyXswUmsQdm6P0QXwgh5TaRbWx3pZ2OT8vVhzyzdH1ZJG3VhJ1nrVN62ztSkgrtLa0LceiHnMSduNBd4vHPUIlCsuRKX38+q3b74zLcU295BZi7IXaoZMYVACS4W7trE8pIVPVrpm1E+gGdhprOs0jIwEjXAIRivSSWohsXZIasoXBDklhWBmX6KOsV1HEr8vCRkXXeTAWlGE4uvsiVmKIICqgSLKF1AABQF7Yk735/hsu8Es7A0M9fNMqDFG0Zfptg/+/ClkweRAhJmxAJcY4xK+qtzUvvvD06bGZjWp2lolO60KjtzQYDwzFCSKBPD+2f0CgvjDzH0b7L3xh6wAiw9y/lxl8XtIw9OPF4Z3Bl4FSBaU+nTpWRRCvlkMtLl0ARWhZyY/vyNOlT3OPTT1SbDUIeArWaKVp2vhg1VuzV1+xma87aJQgGoeBQYNShmoSFl8paWxcrhGAFMxYHStiEQ2zgAQUBA0BbO+2oWVa2MYbBhHSgIZuiMxBhKxdiXGsIIyKIiJOAdBEiWgNU0zHbSAMbbz2nQ+bzmeIxhjD4LLEWIDIRDb18fMXa4rdHs5+gp8c3I+PiGyaWFSv1gJIdKFr0BBeAvDEELytPmpXNevy+uJ6XYfLuvK+7uKkAY7g9fObdJqcOdlf77snk8e4Lh4nevr5d9txU9/TCcsX9e7Hf+7yrZJe/fnf/0//pW985tFnHu4Xv/Lky7/9335/N0CtC435/OS30txJV0qdxeCMRQJNMluvOlech/9b+0/p8CvZd2PwOyEYmuIoWL9zvnc9byAc+rdrrCc8ryelacuwKlbFKvrk4tbJrVXaGtKYGAEXWVkykUlMGxZIN2Y5CyMt2mnciyMSRdfl7S/+d3eetcdXo636/DBMQ1ASkgGGRoS02tng3XJPxV6nCw35Fj6UFlrmQv9/fP1ZrG1bkh2GjYiYc661dnPae2732nzZV2ZWFavYFHuaRcG0aNA2DAowbNkG7C/7S4Ahwn/yh/0l/8iwoD8bkGXzgzRhGZKpEiWZJYuqIllMsaoys7J/+frbnW43a605Z0T4Y6197n1NcSPfe3n3OfectfdeETNijBEjjvXebUELU3UxV7i5uweYhwStZGamk+WWVq9j1yBYKYvY7+GByAeHCE3rg8jcvJZaw1zr3vFe9OkT/pXYmSLHD5qfl89/Qcy9hAnpC47/V8iC8MjVSh7KkZvWWg5ontkY6vqN31k9+vB12a/Xo8f9T1vLrHEiKpjI501k9LLkB3Ag6+7Ijfm6ZgtQndcH0+HJz+emCbacHzxXC4yXLiYvXyWgcEANZAWBzAqTFiKJlVhzaE/H9XM/2QzboKgqneyPe/GxvVokVaZMJFEy0dntRuvosbnRjgro3o2O1etYA2spbu59BKtacabRCRRR3ZowTT9hWVw8+4oIrkXVkYzBk+khY9qBOr11ZnBPrkxePWFy4prWH0S/TgEEjlciCN2RvaVqWofygZUy7s2DKqc2iSC2cnwklzfni4+fbLbf+KtbPNh390e1Qi6oTEIOF0nuWnWRx2rq+hGk7eIqLUNA2e3G3eam73f78vzdWuNi/cYiP/sl+/6f/sE73/8L7379j9755CTf492vbuK9y3ZnTxd/tDxpPvjT78j/Zvt/uPkrm78avs6P3m9z++/+q//3PDzNKrF9fjJw94snv+H9tqZ2oWUvXNogpW5VTc5HOfv4m8/iiz9cnxx91PzyVaiyHBpDs19s2x4wjCm34aTE/lHf1BiIVjVoHva73X4YP3rz3bd++BsfNUxj2bbDYhMbVrakWN6sczJrctKuX9gRtSsN3Xvf/c7PFx8vNBO5k9+trmsqZ6nsAp5ntyzWTt3Tupxk9MEcHAOYsmTJrJxj7bvWq5bq8GhMbqaD2UigCgfc3AASdncMvhdZWA9SJY4OuDKHGTw40ENgu5t6+5c+prN8ktXxKzFDBDLwq/EHvBrzfqDY5j/Sy28CgABm6tx0B3c3d4WZVrNu325/df90RXpCkeMY2k8uT/Y1GrH5POFjgIGmQR3MNkPsL6ca50xwNx5AoMPWsjtt4mE94CQjmGGCu3HnecyRCK+imHecCabiiSjEFGTyCLTKi+D9erSoJS7CDTZ+NixqNYoRxlnMbUjJ+5pa76fCS8f3uaPh2sPp1hhM+XofPSJvqW3HrcZIeV9PukE5qAFeszRKabTGy+AiwqbBCofBSchZljVbDDo0AqIGmFMVACbzUrpcAHMqquYOjAYwE1KaDKfalsYCqjcsMbaNv621lKr+fNgNdVvKkUFi0zberW8/7MnO84frN73uY53UmcFhauaBGM7iVgsHIrsoud56rRYb1uJ02h4ZzGDPbp8My7/28BMsPD9M65PT3/+43nx1f/zTb3/3Gz8/vwdf/Kl//LY/SOXZ/R9Irun1P1qcDbosj54eDcu/8Bs/+Bs/Wl6unj9+cvKLt/6bv/zjblv5KJRh37gtea9jkVTG9qx5cnuyfGy1fW0dBPur/9+Xm5tim8goy82670Za2PKGh6aoC1qmJRbeYok+3M/3xhVRwd72msmiCNAP9fb0+Wub1Sen16thfdOptGNbQ+iX+0VznZu3fufBn3zxpKthvmVm8z0UDSWWoA2mHtKOn90v20Ux1xROUppa+UIt22rf7qR66HF1YW65VFM1MIXULihAzYlY1Nx1vt/BdWyg1cYwlhLFzUi6OjXw00Y8I5/mxojgzgcHsEOR8sUPx6Q9e/kNNI/lv7TWm+OK7n6Kv6y5Dz/i5SP8Sh76fsg4d1Nzd3V3MzM6err68u8f8fU5NFUJhOcBEALJdIxB5pn/uYSB091MwjTkM/22OzrPD9E+twt+lx0cE1xx95cxm5ri8G7QwTPplfiffjwzOQk3IfCskHJnKSOpKSTYlpuLMjQBPeWm3eZVc9tuvOZ2HNQoCBgV5MOwPPZ2L1w41trIVhE4hlIaVgvCXoOohcA1CIHUHo684bNl8wLVAPfiljmh5BACTKwbFRLMS8NGyYvQJIoUm1CcrMQOCr2ZwScjQYY7alWIq2cGg2IDWHGnKwKJAKeA13Eomzrs+p358to07D6xv7G8d19HKYC0XdA6EoElSe9m4CAaWgSG3Kq6hAWD3KxpaROnAmv85Z8+4fKNzXu/fjIMv3T5Zn7rRfru8rfk5vyjX93F591Hx+8v/u2//X/7n/3S1YOjp+PXf4o8HD1rnp8/u+xud+l/cPS/OF2++/bxH9y7TIPs8Tun7TCOEmJzvUzR4TtLkSjxzk7WtLyu2+eP/Ol6Ff7x8qsKYeNhWFweX8ctNW3XoWh2Nq3BRoJAQEvu9oue5W28Vb6yWznqmrpx5Y9KFh428Xrx3rc+/MrHr29in3bdftVTXpZVv1/KH/51XOw5HoblDih4TUM3pAqaDlbV0fPCpTXVjWdvYKqqtpNbubbbbgzbcFNQQ3V3NwU7SUzJ28CZQUZu5IBU06qILCdUMypn5YDK5hyoaAqsRsJQNy91NsCu8/DePNn6ijHQq7f6hOZPuuOX6psDYH73jZPwzqZmeoqpz+WTl0+Ej5vVRUu1Xtex78eizfRFGy9+9NWL8Z3bH35zjKlH7Ifnaedy8D9zhRxS18Q+fCr+767uDvN7eWwfipkDlzeNEQZ75eomIoT8TkB0N85492MO2c3N3I2gSqQmboKqhciTFlk19vR0ezV2r90S2jG0Q8erjy62FK1gEcpOutQU4kDlSIdtM6x869yXLuaLSttx3TQ0jGjSuLPTdt9XXjwP7BygV76SFF4MHjgR1RIENXV1KzFRyUULs8Ck2zesJJ6nzgpoSjEOTNehbb1wqqaTiSyY4arRqqWGtJqJV2cG1BBDBbm7eRaGhZPwKHjux7G8SPrdj99c7a9+8Pa3MhrXsbhqrQ2TuVkNRDB3qwjEDg5iBnJXCSGY00Kiu1Lwx98bLmj9D//OX3hOVyUv9Kd/6md/bXy2eHHZP72/XDXlrZ888bd+/Cv/8V/6vS+//+vff5j33/bL03C2psvupvvJV8v+n3374+Fe/7WbX7v88+Xn95+2HcHHvDzZj2PtalP7sfr2o4dHPysny3u30W61bc9Pn/1S6tYpUmzH881qq1/5yUfvf8kfDA/K+bPVkzZzyGEIOYyLMe3jvo0ln+zRr+LT2q/qshzv7m3fyW1Li/NxvU3h2fqjL3/y1ZsVu8n+aPV+fefJP3jDkhqm5b8H/30iIeGANDNQYbsct2cfnj9PkjhWGyVEMlVYHTey4yfnH37pSaMhgZlBaBHIyihkzFqtUqjGIGZorUoy7hZVebXsQyQaaku1mhbhACsIwtXYclEnAvvdaX3Hk31uenbi86f4oE8r/j6dAO6+nwG3ybHrX/II/15sFscXD44er+41pNX2uR/Hsej5By/+1vuP9k9LUwsfb739HjWocavTGKQHmvB5A5hmRd985gN0KN0PSCGjEpGbeqRZejaJA3zeHYRyCO45Cd4Zi8yIiDL5QQz3cgDB4ewkI5+Bg8OrmUTPPUu/DGWsPmKfcWHvedvp6IvjW/44/TSttq7Effv69c16m9ahH4KaL3dd3DXBk/TleBglDZeL9NxCpzuLekvLMDAtMOS0xH5ZN/C+pXxyeTo0vNsuFj7eIMTqgyXp+lKCK8UWVXMOlJehz0S6C12/71Z+32+XtluN5MxaTJitIHR0HTvoAHLiuRJqek/ZOjUQQxs3d9NRAISwojfq8FNaHvs//M/i8vzh/aOvPn6cplmx3FcRV7ZsMUmhCcGuZbmty7zKiRXJBkQC3Ez2L46f/hr94f/zr/+V8PpVi8vUHd+eLvhx7TeXH1Ycfa+5+T9e/u/yt+L9197dZf39b333Oz/90/mqrI6Xbx0dhReLCxrLh6+/f/L9Y7+ytq2DpqYleo721EeSziQtx/VufxQxDqHDWsNN0xWivNquuZX9ajR++xe/837zs7TID7bfvP6N56v+fFxuHr53VDiHAFvvjI63dVly7cZ7tW+fmr+4Pr+6/6yl4/Z4EdJjWVCV5w/ef60fyp6wid3N/+lf+Rv9Ud80OaQ9a9O3faMh125MscLrarcurrXRs92yKt1cPLu/X5VAChGPeH18AKmhDzcfleZoyX1RTkzVpIls6POogioZbM5a25FXbHa1zl3vFhXqYQkV0jGsdUzucoDNzSAVbsQEneLH5vvfIqYqmWhyyrHZEp8YqCVzOET/JA+AGgkZic1H7BSPRPDJ/fXl4h06kP0gAOERef7kfdAmrY9OT467e2n9QHQc/Xd+dfWPuuufftWy1kGaF5vcQJ1LVX/1GGYnIgfpQaT32Ux0gPuIQNM6K3yqYnkljcFfFSxMv8E/hYg6mR+wxQlVUAechZrICjAdWSlKIv0uLfw6ndXUDls6PrNrO7UnulQiIVN41w43uYQh7Dfro/LxCcAC1Qk80xpjEjLRtooQLLacc85l9OWi0RFtpuBWiJfr7U1/3lqjW3MJMmh0K9kIRFDHcd9724w7v2WvxrGptghQlT5sFLetAmrRLAvcq00xT2AlJoDIxuxdt6sV5OqgAoCYKGNihZSkIdH6uObh5z8yG45OlkcPHhx/6dGj46lOUi5s7ixkpWrIxdittGIZRLKo41iR0r1/Pi53b+Nnp3/7L37j0deC4ev9LeeoSZpjc/AVqJY6fjR+FD96nB/Eb56E/vEn+hw37SfddcwPhgf6tfytuLKjevL/Fa9IJlTrIpBtqiQaw2J43xdH6qylmNsou8X1+DT+7Fedcqt+dNucyY/+Tjk+MYl0++i7w3/+Fz+UNz8+7mS1/PGjrKTSgYruTlVIasZwJK81Lt7d1hFXZx/e/+Ts5mx85+Zr9s7RvfPb4/ebWxpM+W/SB4sfHZfX33vtdr2Nud23lkoKgNUANNt0w7ZgAcC0aipTHomcnMHCEHEnOok1JW5SUWdmJzAzsQSfYovJzQBzN3czzZel8xCwZRYIaomxpVqlMbgRhdgz1PRweB8MNqaJjBlHuAO8XwXyK5Hyp/t4IjiEfEoVn4k/nhpp++zzh6AKnQTUYnhY+8uPncRSuzg6XS+WH/3mi33Xr++PqrQ/x4sSkhYKqkZMfgfK88xj3zXs00XfXbDRndyR/KAV/KxO4Ised2q/T1EJPkuIEaZXjmlwJ05rThxyVSvFJsq9ftSje/ubWLr2tqb9riKbsA8aYtM4b/dlCAv1fUEqz/zYvXp19x2LsINgWXMUDWYaRGRo4WmhPlYLyXNFimbK9FStFdr3Z+PoEoRHGDETOCAAipv2aNjv01oGRMvcYbRlKlWb3N3QyaYbyQqRqZOwT5WUO5jL3GupCbMIVNjcmA1ENEmLAQAqPK0kkeURuaPY+OzD78H3i9XJgzcfH31ltW4W5JrIqxoCUw3MImxqZPAXQmDE+FFev/jqn/zFf/nWr33wT+uLx9vv/Jt2HPqw2EkQBtNx4YFoxzd9erb+JPbNJo3Hu7Nwvl2+f/KkHW8+ev29b/38jQ8uXrxx8+j3H957IjRPQbuVEkPGtoRl0CuTFGIgc1vo+gPuck95HYkbakj/yf/j3psPWENyOu/WP1vetL9/Pvx09/Z33tlUEXDOoYy7x9fC426TPn5423pcUHNyGrvb9lwbG7b7i+f3q+/W9cLfzOtCyw/fvG9XUdphyLtr26229z65t109e+Nn3/zRL334xs1KQ0x5uaVKcKhQREOBxspghROBxIINrrsiKbo5kasGCUwSUyQSK8rkNg0DqUFNd7ntJLY+wgEz1SqJq4c2QnVqQDzXagcn7QMb9jIBTCO/5ETToTdHhQoceHUYaJLZfVY3cJcdDmOGd3++iztyAGEngYgTV2mOAaIRPty8C1udLH/rdfU3pY8StdlfpyDSWJn3H/CBkjuUAzKj/58dZpgwAid1IvK70d/P9TifMzOcpc0H5vaQAg4E4uEVkRGME5d5lcjaDQSrN+fn/RVQ29uyTtRf10XaexKjYKZ9tfu9M8pg7UDJBl6pqhp5VMCrh+QESJJKpgQiSzwtPDvaDUoEqZNhq1+MpUm1u79xAnn1xlPVac8k4OBQ9t4my8tgAKO0bCOIsfNijqRUjVBNwDKBKFPv40xTAZi5GXrTpDQBhQEOh06LVqaBo0oOSWbZnZB4ybBammH78Qe/T+ax6c4fXyy/efJg3QEqbfFa4PsYWljuO4EqyH/5g+df/sv4+H+U65+TcTn+7LX0fn+6sH3HQgBRy2lRu3vbx1YapKzuN3GIKk8G66tzeDicXwX33cNxuP3ku29dwt1dQrSxxq4tQxtKWZzRRoWsr5BFaSVwTrsffGd47+i4vXr0wTdf/Nd/58vfOKUtMwLePa5v/yQ2j/IHj09/+p/8j7N2XCmzhyJuxK22XV7t2ivVgk3ePuoplvXCmsIP63JTX6yevvOz156vLvZv5Qf65W3bMn0znjS85MUitU3qXMtwefzRm588fPbgw9fGxhIjlqxirXSsBFd1NyZzcmMLW1oercCAq5pP3KEs1Klk54kWc4MCztiHJPDKXUFVDxxrKRJilMZrdEUGuRdjqS9jZRYpT3f5JBC88wr2AwLGTEJErIcopvmvGjkRy6cWiLyMxM8jATP5GE7hZjAzYfJazQItVoHs3X/99urNYbUsnDJ1fLnpmoIub8OkFPTZCGQW/s/XR06Kz+qBDs6GU3zL5N+Bz2akzz5mEfGBL7zDSOiVnOZTrUwW0jSHX822ImRqvu6xitfysBnLQB3Z0qgte+pMVAgLv+Wu9htboBmuVxfD0/OgFMxjIxHjSBhrCExlv5LpXbZ+oDCMIcZgg7XHV3AEstrr0RpX10N0Js0mqxrVVVnNGUYcyD0E8z6E4sFGjm7ahn5cDslzt/UBrSu6G3YDE+KkEaM4oRwUiayyO5uBySz6xI3Oa9YJk8Ey5Ym35tEANxI9Oh/2KiGU3dXTHwndcmxPHr1x/mB17/HaAgN5lxGT1eoUo4w4av7L62/+mwvWd7/3AX/7+v2HaRfKcWUisLCKYMiNeoOjfjXEXSj3x9akWnyNF9x8NF521yd82h7LvcvmqA8T/iNuhshSUFfL8SNddgQbLDR1ONqdPx9D+8OL48rx6Tvb8+t/O/yJh7LPmmgUShsrD2hx/aDuT975Z7/9m0pZ29CVbjjOgbDTY79IZ8sUykikun/61vsP33/r+VfqybN7u/v58dWXtm9cr4f90QcXv/9LP27Dvu7DVvuOj3GPzsIb/K2b37j9dhxOtu3Wa7ldVRVHn0xKrGKdO9wM6nDzkkVp5yk6u6rOjlgkhGzwnI2NRFyrw0Au1KsW1K205MQAhaZUc14cNYMqB3diKzpjXNOZdlisOTPhL89W3IWAw0UIpmZ/XO1ML/+ZUwPA4FcwgOkxm/oiXEsIbNUaZncSCayFmPzLX/qH95+d3SvauGkzXKGRHBtEd5vGAQ8n8XQ8H2aBDwXA3dXZPCyE2bjszjTkswH/WQxgFjjyvBX18C0zqjh/t0MqwTggELGZwR0UUhR/9nR9shifnAoqszTW8mhLcRUPbJ0/NcMy5lSMGh51uU9OYRytCkch4PgmK0HaaX0B+VhrIklNIaKGpLIrk5iuNbxLTdeouVeLXa1SVSRUBxwsfbsc+75JYxLzCOwkmlkdm9gnH8iWETJOO6V9wlTmuXAiJzCnsVpsxxxNSeCm82lgICJm6jmwwyywWc3uHYjBEnfm1ZtGbpp7D1B3u3fI8ubZ75lLn1b3vnb6rfPXzgRVg5aS++vx2Tf0//Pdp0s+P7/8X/6tbM3+E90Mp7rtMNu/J3D00DS0GOnG+s67gbfNkDuc40xQffQnvovvj/ni96KNDYmoFupao5Hi0QvUvVaMzgJedMtnRmX5xBX7P/ibzfKNKyx+9z+y188lFhbNEnIqRp1twjMpf7hqG9NkFAtziKlIGPuF71L2gQNSWC4yHqV1luv8yQe/+v0//+Nf+eRLRe6/eLNvT7uLp3/5eXe+T6W5NUu7utisNsvSjKtLuVyXtd6zh/7GctdutQ7l+n5u+6RNdSeGMiuZupaKsdxa21At1QAWBcCB9VqojlXidA5OLp0g31MIJFoap0ZM3Sx1msPx6+3t1aYCAteqYHrFw/ewHQx0uNVxR43TSw7MzWsVvPJFEBHPGMDnJcT0KeXfZ3IFwgmHAM01zUhd37Qt6dXlb/7sZ28/j17Q7qTKdr8OKgEaipk7kcwpxacEIDYNquPzGeAu40w9jtFcN3wmI30uIdzV+6+wHI7ZBZgwGzCAATIKmCAADlE1O9yPLh4MNXbNJ+tYvAymwXpaNYOlqvtNO752q9Lw7baxpstXi0fvWQVqbZoyVCfm+7qNRCFtwa4O7xZjLdB9gKFpyi1hchHNzQNiqtWqCbHE0ZxYLKgQuzF1fY9Fky9pH0xH5lQrsRqVKy1uNxVrbEeSHAKpE0zcwW5eZyWHmQQWhkHgjqn0A1GY6CBighuRGHEgZtqaMFlRcY+Cq82Fbj2kZZeBlE6YsNrV/bMXN/t2sTx+9NaDx+3R8eoeQ//Zv/9fnK/34Wc/Pv83/v1/942frzdnjeiCAk9gZEZupSJAo6UaTDkqOyORKgEa20hHVPlFKa//R0s5GtUd7q4SbDRqEpd9e597q0WdXKXV7hhB69n1P3qSurPf+Offx2+EypRdt9yW80vs711fpD2vr23tt9fX5LCBvJfquvoYj/PCkuogmYtjlOP+4e07/Rl7cz/Hfn/1069979EHZ0/P9qsOa1505V6fhpOCob05uemGpoxvblaD1utYF97cro6RlFaD5rBfDk3hafk8Tx14tFQbLM5Pumv1if4mUAikw4KGPTWTSQixw4iMdBc6Lk0YGSSMYlwlOEjCcWTaZONgQzWYHQpmnkW708dOh4PSeeYCXo2Xu4Ebnx20PvP1T8fdlDM++7zPg0dhRczkje+YnAw49zIEWep3/nC1SleU9tCFhF6PysDotzoV8Bzy4bcRJlDwbpDp0xdywAAwK53NJx3k50qSz2AA8xcObdFdZps0tSAiY8NBTEyoRsaITTUOgUr2y3gqN6WRrpYkBec3tfOn8WRH1pAum6u8otF9sen0klbtbiGlCtLq/OomA8CLa1/S9qocM5nCfb+m7J2X/Srub4ZASnB1QxiK0GZsSybAMi9rg+wFCiE3Qx8WtVhYq7rYEJfHVyWwh1i3q4GWu6NnF2G7XYRp9sSsylQH2MECfpOWKMWbzOzqHMpUZpFMVulIbNlCiqo1gwOv+lwZRGMbrNJqDUfVDCU3wEwDLms8ubfjSPvrp99rryS2Rw8en93/d979Ws6CtewXv/2v/Vu/uden4VjjVkIUhiOFAckgiYZ2bEeyLi/GpbhUHhY1lIFke9KbnQ/b8PEuH9NYIVHClkVCLTvVxXJ8Zot2GJyDjjGVZRusyDj+0+/8+u9t/wM+erRfWB1uAtdluLxh0Iv0CR0/j6vjP3z6t4Zbz3Iytjoc9d0Yb37E24t837RpXKbqq7lebYLpxbNvv/ed8bV71+sFpbr/8j/9kz/Jl1/57rfefeOnX/3Zl967GNPoo45hbMNJ7IamDOl2UfwSu3Vo1jkWLmUr/YWSAM5KLOzMBB9zHSbr+2qeCCSBTBqCMnzyxCCGE4x1AI3b1cJqMjUtTI0PauUmknPTZyKZmth5j8bEph1C+aWDrx8AgDvHECYiYhbFKzFPRPWPwQDYZ93h/OeXIOAkraN/axVzFlEvpbrWahfPEfkHf+av/t2H8jy+ON2tqrbbD/eNlaHUceC4WIghKE+XrjT5yigmM0RnryReDr+I525d5m7hYBJ6qHFMPYrpp696AjadiDl/5unD9IEDZs4EZS+LB6va+phW9cYX0Slq79O2ZpgTW5U0Uoy2zziu3CKj8ca2pUk+BijYijYJpjkviIQsFxJCbFhzNWZzZrRLu+2xGhfe0PUJSlYW4U1a9c/Tie6CMLOEsSCyGfUdjzVGwPq02vWrm/VC+wJquA7UUJV9ikVkk6xkIwKqUOVQpQZPvl0EdTJ1MUZxYRQODFNL2RuM1Fa4O4uMAEOLTeOf8CKrLbebbmC4BKiQF6UmbaNYriHRJ2YJt8f70CwacR13Sy10PZ5yDELA6M/t+Bdnf/u/e1O6BRR7IzalYDRNZSbRUYUdk1cpMAtTJpWrGfav4b/zmELqtWlIXQMVC8Gh05DUYqwhwEyGuLDLEvJR3l28lvYBqzFdSaHSj6Gjsv6AVu3m4vlisTj5/s//jeMyvvbD13Y8JNt/bRxe+0/1X3uOy8vjmwWIYxAiJ1TlSEOSnttiTCBSPfq4vbq46p49fP7wB9/60WvPz7bLFw8uV7vF5t7HX/r43uY8Ly3mdmjo+elH6/25pVAtj/uHP/n2L04TQDXt2lvJJdz8k+WvhxE3mwIzi75eR7HdRbt74udxk0BCOubVPmzL6mf/fMUhsKlGUg1J+1aNmkY4HsmoRUOw22eXI7MJWTFi1mqE2Wx3Oungs8SXiACpyfZJx4fXTfehnuyZ2R3zUteXzuKY9pXcYQA85xKdh3aMQO7mce7Lw9HJoowg67UqCLj1I9BO/tofre7XXrq8RFG92tNgZVRzsKsFMZ1GmacylGji51+ClS8dgA6XZp/pCg7a/hnP+8JFiIB/JjPcWY28HCbwCYyRMSxpWyjkTNQTBzjc4K2CWMgX6opmmV6cydV+uXSUcYxtuWpDclP3NdXRQ7fMbsZOEiKpZ7bJMxlMWrZaF8vMtXLiGoKjVJY238Z7TOgIlo3oBHlwj2nt1iykDDV2odTAnTiJcTA1gblaipapO3rWLdKuxiZ7EJZYd+pOqNWrC7PBCcGZjKDmMOQGAxoMTgRXU3aCU4T49EaKUzRK05qm6hUcgtjYBzVQYB93Z8tsOpzV4Ylyk7QpqOEdH2hisrYPzm/i8dX/9e+lo9PV+ZfefiTk6oH6IFqK0paJ21BHxrQTzUQ0VwoyC1BaxvfpYtMTYvCxHxeIEUJWDDEFs00IpinkpK4bbuDNKmx+2C1umiUFXXRPKS64DHk8rlu53Dy6vnjvd/lvLX7+8OPjc3RyHOqZ6rG9+DPyAA/GRrdaS63FzCUQESgJgitcp3ney/Z4WZeLrjyg79A38sUyJSysCZG645CqNjfNR689e7RlnHXvjF14r5GGV4szv3+N8enDq1Opi9xmbnLeP1h8Bx/fXO5zVTTxqLHurG3K0931zXpldVRIWPWKKsTrxmGQyHsCbJxbNxKxqsVNoZaLkbBWQBjORFUdr2iAp7J59m+nyGA/Pdlf9vG4UKuHCvHVgAFAOq/PfGVT0KG0nvPKjBtPY4cUvnLU9hsVGlxzP6p/c9MH+u03j588WD3J3X1DNh9Ha2+sZifiaOZCVaf8P5cmNJt5+VzuT4IEhwN1zkWf0f+8fJmET1mMvXw9d64oL5+7+1EOfplh3GFlmXWwGhfWe6TMrc2kyoZiGyOgdaLd2i23ne5hEhYY6Bg0FqWQlCEujKTqRhSaJDUbhExNq9HKzVzWp9eSi6BuERjMKfWWZZ33PDtF+hYS4UQ75YbGoawGJOlst7AsohQ5OwGc+gQLOnZrHTygjMnc3c2iREtU0lAB2Cw6h2l0OMBkhGkinYXcAGU3g8joYGa4jEg7jZPRCbsHnRUF5pAALx9/KOOj47xvTjnvx10TboPRahMwkUlvbNy2R8fbXXVyTZ2f31ufPnqw+oqIxEoMwMp+yBwiKUTGEDgEkmHa6coVw2+z0KKp6hUphcDmOnkZqtW6X0vRwFYdabNEReE2WHv6WkQc6273eLfdVEuLW8u79dE2n7/7/q/9+Re7pb6Q67Mnj6+Xw+kA3L7/17XkBZkfz7dBztXLmOuQsgvVEKoDBjT1OmyXHiS8OH12oUclYukLDuB42l6kpYKaGPJ+uV9e39uu/XHcNTdxz227WEX4uJVtt1mOza7dhh9+D5eLrCIconTn6+bBYnnZPn5w+Vy7Qq6lqJp4Tdvnu+TuZCLixFY5DQQUZoF6FXLzWkp1EMw4iCkxu9q0Me/uzp5rXQKoEJWyap+H3NKeUx9ocnP7VPzPeN+nmbUZescBpb9j1QlOCP/n49P16aMHRyWKl6Ha87Pb9YsP/qd/9Pjt8TlKo9Y0Wpm1wBnkTMxMxHPoM090FEHMbR4FoJmffhnxd8D9y0ujQwFAUzx/OpFN2mf4K/bfn9JD0Z2YYEqElkPULZaNVaaA6Krz6zyHBCpDXlADM5Tm1k/avloa0lG9SedjzQXiNEQRsFnkyST1OoqrEZ2B4TCqTuze4zLU6rLCZPuko3WK0g+rQkQijIFDENdapWt1jMtWzUuKPRW0BLeFFsBDN3L2Vd7U8+3WhcmIXKtZzbCq3HskEnewYVZL00QPpIxGR+oqM8BAlWlnkvnU7ImbaE5jYoADKDApiIPRtL9JflmuP948fxYkhBCjhFt4XGxuI4hIBLTjo20vF9bjaOW7nvnpDzdE5YjC4uKtrzwMx2vW5j4ByP1QyQaTyKXcO0x3NO2PL27HhQHm0ga1Wo2ZSOCjmS8E7JUx2PLiA6g3omN1ycb5werkcnemw263313V3cp+crToyz/7b/9yv9yc+m+Ur//8ywYhXQZtT97mYEI53s6Si65RJjOyMG7Rb8nMhNwpEMdFGHtmGZrbqjHkpm9yIBmxE2/ChbxVL8pikcttuIHHhG7f9GG8udi2J/nL6tHHksvTR5e/9NH6k3ZLVrebvS5HEk2NlvX9+8t0fHKauqi5aPGdo+pCichrwTK7TAvYp7kVcSWGAF6rGczB0z4vN39V4n8IVJ1bLOYU68X65yQ+UKP+KlPwas5gEH1BBnglR9ArYQSEc3/+XiWii9XJ2enxuu1eu2n+3ptf+/dea3a7aGOlJMNmrDtjBsGgRF4PZ/7k02tsDIZNckb3eUHZ9Ig4iHY+5QVyl5oITG6f1zH5HX348i05vD8EkB0kECAKKdK2i53IsIuBBgpUeOpOIFYLudM+NkKutl3aC1svdIHhOoT6dGHSiI19glbEEHpMU9dLImGYb3Rax2cOR96/aFqY7cnFHEyu1Ol+RKRpvbliUcYhCFQY7sRhaBflcrNeaCUwaRmzMrlmNXdi5q11mktcF2diFl+T5CiWPAgVSCIyJwby5CDlcU6EZvNMtog7SJdaHWbaQgOrUGE4E2yfWtJiLizV1erlv/Llod9t89Pt5dWuvymhv78/fr0cFUzWpduLxa7hAm/JNginmkzOFzJuif2Tn/6HvazWAe3F+b2LNx+fLAkMmFWtO3dmIQxr//Gbuam7GIlsHEUNwsw5iFVqIw+aSL3ZUbtuDe2+665v0Sx/5fbnz8cHLp8sOBwfbV5YV2+dtruf/K9/8h59/aO3fnLvuT7Y34u87F1Ld+o9+yA5dcwwA66yhSQi+yNZdDCBFh12o39MqyE1r5EUZOwC30Ysajc2A6tUUqlWfewWJ3aMjjiX225oLSy6HDjl4VaBRXl42wxL6tl9LHtiaSpbLohk+572H2toWPftcn16erY8a9P95tm4vUcEMxBZhbCVlmAUhAMBrDb5CtOEFaszuRaD4LMY3iFIyNWoWbbRzNqHH3xwoocK4dXwmJviV9eDfsYOYGLj7OUa8UBoOoHabvuhQaJcdHr/9/4nT57R8x4dHMlse7mtmafkwko63cu4Axcn0e40onRYS0iHUJ39PDwcCvg5gu8imz6dFg69PU+WZp/KZS+LmZdpTR0ii86bvix4mwOLjiThDnLYW9XYNemWRzi5NWoNB+fbZboeT+jWq8HduUaJTmqVWQTEo3pgV0zmLxAzSEhUY+PJe3EDxxTg+6GOMXF2BzHgI8SZa415iNHqLgpTrDsXYnfWujMJpDbUKrr1dnGtxKEWT4CDI+9YxhoGjeQoSg5Tcyadpztt6LivScqs/CZVr8qqcYJEkSnHUCkqu7t6ZTcrxsHYYV7HX35zd3l0ciRvO4ltn1//i+/3m9OT69q4mZFRsyibtq1SmM24aRTmGC13JaNZPQJV1XLzAq5K3em99fL4fN0dnR9fuIIYOKGnzx7x4mZNqEYMQ4hUtbqbqQss146UEpFeFY2RzdJ5c3zy1XtN/97TJzstu2ss0+lPvvm0Xjx/T/719Jde+/GbhXv5/l/6ePmD15+8Tj26T24l1dWmddmJkIPlzCrcSRp23yPbonK3PAPqi8t3nz/bffKgbV+Pi9odxWLVme4JUfWKPK434fl6aKItxuM9nDyP12Mtb3785m6z2KSct4tdyw/qa/xa340nJef9LntHhKEGOWrIF93m6VWt6tJIXTy+dxFvIsNNOUUPkMB1oggYxuRecw5eq5HAwWxqHqyqC73c+DMvy5wqXCdQzaM8OwJKe/7G/ueYy4VXKwaf553nmuHTUfNKaH2qGw9puiw/0mk28fJafnH6y383vn1ZraLGdvBaCjcOc+aIbGo0bdEivHTumFQMbh4mkRAdfqXOKsDPKgMO2IQ7s372i3fvAt+BAIcWgA/CgNk4nDA5LHW1ZhvjujoirLLOQoJjlEE1YyFejInSjZ92+55uU7ssFFdmtTpis5fpLOODwYCCvYosqxLUZreT1q9tWLa0kB3c8+DOG+YKVnUIC/xm0ZEZAcGBSM65T52MoszqDnVGZaYSlHmk1tK+RJY8djw1+UGCp1iDlAInHQkgJtMIgCAYMX/CTLPRtBYX0lIrSXAuqWgYM+JsERGtryYiqqaEuv8OPzNy7Fq4yyqeD6b7e2RDcDUHkQ7dUXIdgisl0RsDCM5t4ARYts5pEbRUkyC2/2FvMZgitimtzy7uHbdfwR9eND5grYMiNChGDK/WwAzIFSZejStS/WBMyU7LzSiyG//DL73lQ/pWR2O/vd54uv/lP/h5DX/1r3dLP357++tP/9Tyz6a3b8+kjquK+99LLpdnN3GkBaNWZd4ZC5yRPYaa2qHzcdTBw9G9s18yf/fnv/fsh+XZEZ9tyRa8dJbu7OTB6b3utXiyCuu0y1L3YxeSlyUvkfjF+hdU0ukDG/syWu/jzWafUroYx2EMTcGOxYgTbqMzdWv/IASQWzm5/skP6OLR64bpaCycHBxKT8QNw8jhWipZVSOGToP1btPyL/ArJYADTgYHOVEKI+olra+b88RvfnydPnNwzqcnHZz5PxNq8/E7j+ZPU7wTyCiAViOuLpG8li6unv6G/eBPjFsmF0W+FRLjpO6AiHh2BKmVmOF2YClpkgBPWsZDApses9OHvSzfD08TMCvavgAepPlGfwmKTCljWgni/moxYVqKNt1oXXIUbjFYSPPf2jahLV61RFJnousFby5TsOVtv1rljak0XLL6wofBm6YtMFMScZDXLGFXJuVjx6ijAsdxIKojjyKuxsHLqt30i5RtQi3bVoa9C2+WqeYgibqRydoH7zGpMrl7ybwQavecTPxaQqKhLo+rmxIIQ7BMbHq2G5y9WkvuItWmklEoDdLIoKstMZubNaI1tBxiZgQ2opQrMiGSG+CWHYGhRapqZB3GHme2P+4AV0PT3L52UrfXcTm6gVjYdbG9PF4PgBsoxhEMzRKzmxqnlJ09K3dU1cJ6ae0wIJDmfvNJLqq2Oh2Pl+Pu7JocIrVQgQsCJ/PIqHXokpXAJp29kGW7y3W325fXHz47fk3taluanhsb2ntvPNn8t752+hVEfm+LlT6q+dFm//CG3um5In70ABhFg3Mv7C4heAxiBRSMvXAclkVDaALdLrYnTx6++cZfVa2f/MH3nw21ErNWvf34mvNKmuXJd06/c3qSfNxSRgkapc3O9+Q+dvHHF/sOD/q4wSB+9nz9blTjRkK2k949E8Z1IGpYo6sRwfS6PAy7yDUGQTXNu1ZqYS9KzCEKgRlmBlcjGCyqk5AZmLXaqzz+dCpWgMFMt6mK79fr29PHw+1bt/9ZAPMXHZvsEwH+xXg7wXxCa/VAA/zPSQiuHp0YzuF2eVn/93//518frjVWNHKbBtq8XxPVahyFbwYsV5QrsTATXHkaUhlZtBjJOGcZMiMms2beC1CIiIno5dz/9K9kdlhZ/urTUwvg7kOQyd5k9gGwwF7nWVkAVIdEixNqgjuE3HRW1WI+IkvoWh8qO1sNjfVJbNQgCIRaPMRpcZf5wmekmsnNiQuBKMTw9GK520uwOn8kAqcouV/7hAGsuA41iMM56JAhHfeWghYzDkKoiYoKIzexa4YdaOCkJpZo7KnBGKqzebv+aM2j1cqSLYoWXQ2SigWvTVAlKMmYExcYx6SjshCZOYnNRGpkJenHZG3VUOTeDQSlcnJVELQ2xsUWf3D8rcZCl/n+7qSpzeLmgx/pix/9OQ6FArsaixIxE6EaRTIEDzZ6RKkShcyUxCsCaUnsJF4YLOxVG8tZEUKR9uTF2suuiSSCsq5jQfCa1zneH56LhABTkPHFz7DmXXO7e5qeful/+JOH/ysrDdV4+8mt6+YGP9Vvv1Vs/dvPhlVDy9MoJ+vQxtK5jW/91v/rf3u22o9rLUfDLSfrUo/Ul6XmRvdH7U7C1UnI/dpu7pWqqz4Ve/FGEa7O73707sc3u+KLTFThQ+FPnK8ePPylb7z1eF39WR2RqMoik5mq0dOjPlENV2e1sA6XtyUPYy25DDR0fTtyd7VqsBL/B7UU5pqXFFdD9/XuYhxdxJQKWhpHHFeX1BA6Qh3UQDdXWwTS6b4isFV3HIbd7wYEIG5GLIyK7vbk7Y8Wr29Ilud/9N8QT9q5ufPng+vOvEw2KgQGUbpTFR7SAOEVIV44Re4Rg9YoYNZ+Lfy1F0/v1e1AgZiQrHYNI+7NJYRAqZaSYxAD3JjY4VCayTwAcXIUszhNM3LBRMjLgYe4y293x/4XzgYcUM4wW3/Y3dAB+YRFTPgGS0MsjD4k0lItTNLEaZECgFR3PRCjO6LAxZijMLkQwC4yXYbbDYvA1JrJnRCdm7uNedEPEFZVEIkE3gAgUNx5XIRa6cOmkYRxOBt6J1m15XZsUtXQaXVTtSZblRj8WPe30dDlEkzNaknSklQfqWnq5urGB81CIBcJoJCCEEjIYinimUKZSO6gYGIRGZlJiGXaN8CUWRnStJmCgGxX4SLE4WqaIYxqXq3P44tQEfb1w+1y2XXJskc6scrCMBKeHHPc3BslIYIwIag54qQhCfOaSQqToS471MnVNhJaN7NFYWotpehVgTzkRqTU0J7J5e7Sebl1ZxCxharRK3tzScQXHPMGzcBx6L5KAJC15GF3+3TZpmPpNfXlBjUkw/lr21/88NH6GOpRdlcnp4J+RPfeMYiSY8VS92EhGmMVSQhWvYph4Vd2UoAvv/MX6/WHH16/f7vPOTTy4vh03/2cfvaDcvLga9/80ltdKNc92YuFO0Ir1DaXuRRhuT1+983nj5bVytgPWXNGf9w3BY9rbkLHPaTREleDWuIulJ2BSVXv5bGqHLc8JQBnchYwsrnDaF7zPVFe0wk+oXZ3iz4wbW0mUU1U5HyxG6yJp3dN/txLHzZrTZXbK6a6cwI4VBZ8RxbOCWAMlCiJKmrmxnRf+Dd+vHmwIYKZs0vWuIiVgxMzqoHIVGTS80LATndsvcNtMqyYRqkdgBMTzG0aY/0cyPkKPPHpB5sbmDjM8gI7wIXT4T57iAJMLVUETeK5WGjcDXCeVntNLQQLUL1aIDUoBWFym+jLaes2TzPaYGIyntkVNyczXQ6aQnXprGrVSh1ZsQq0FgJpQcOlCkP2SsLkpZg0qZRSABKKttQMlKGcGSSYk4QUyd2ZXR1hgX63tRqa4orIlQrITGc/J4KXMbSUxzB5QUoarFY3nrzTicDTkhoOyJM5ZUmSBbtGDVA1iLgZAsHd92MfiJiD12bUPm+9Y65nWlJkUxZWBUBu5uYwIpaqTsFJ1N0wbbMlECiQGox5LinZvBhYBMra7CiurCpxbBZJ8lDdLSRzrWNgqBkopFFTrWxhrzU9qHx/YcmGBm7oh7gsy65vXwcKvO422bp9GfeS9ONn4ej4N/JHH6w9tNIub0oOnW7jvSWMKOBFWTYxxm4QNhXrF8Km5nIbDU45v+Cmad75SuxfXD796PnNzVtXKoHP36hX+MXvd/TWO1/75Tcf0vYycxIvmyJYHlE1KdalhSyLMZUxG19a0WrF9o+uwzGfN4/2murWaKm515XQjcQkIHratIls/6JTRCdGC/JIBnMFfPL/9wOh9UokzET3TAMClmoV2wloGWsseRYKOd2ZZc8yYnejlyqZVw7Uu9P2jpQHgPBGKVayykpLB/Zu2HzjS//03mqowcyYZTCnZqW1AZFXLdmYAZ28xl5i/RM+P8cl0UxtzsUMJs/Pl0P8r1zQ9OXPZ4DJO3P6MbPoCARApk3sd5yHIpia1+hajWOaNCc6wYcTmxDEtXgGU0WYQt9MHURQYzMOTJzMzCRwP//srC6BlWqIrFXEfeplorAVJWSyHMISxapWCbGXELz06ssw7oIUY2ZmwhXHRlD4RUAkHUtLbgaCsJMpYcwWBF5YEKITweBupG5shSMBVkSEiJ2ZNGef8poQwaAI8/7nyFXdrFiW4CJ7uDnUaiJ2OJkTRew1i4KkawSFyJ0j8uaBHnyXHCjMDIZnJ5UAh3qkCla4wxg0ozoEYp98MN2JubqqiaNQqsltv4+i1UPs907Nog43S2mDU17BzeEe0q15GTovofcVXefXQynIWFaNy8TBsnTAUJZcaXVO0EK+d8pfuaq0aR9ud8Te19p9RXJZ+NZHq5efbFYPvmwB7JAmAjlZL7kkiISjJe+2ZHyuWvuCQPHNd3IdNk8+6ceP076UNnd92P7gD2vz6Cvf+TPfYu33g3UrpbFSTCd0Hr+BN3xdGM3CiEL35NEvHn3SbVbx8bq/X4iArnGuwWrfrQPUoDrmI9pv4yKZKpNEJoKTOBFmKv+A5PMMaetcHPOss80sTEQYgdKW65WW1Hja39Bsr4MDIfYydeCwdBzAtHfrlZLAPz1bhPD4egz5Vk5uvW180Bif/Nr716834SrHQCEhx4RwVLfCxO5KCtfKMp3s0zDDYVQZREDj7mpmfAhuNyeaSxCiuxrg7oK+8PwHlA5l0VQCHZ6XKZHQXQIIXBzqOwmJLPfNLCAqsya6rWUUYURHIHaOrrNP2pRDhYiZwXPoEU/OzM6Trgc1cTWhIZNIFKGrFMyYyFO99UXMY2qT1UydaTaiYCh9bSJ1gFc110js1XiJMmEkpQw1SM5du6x1rE1QcRg5VVP3tsmKYKaFxA0kTGUbmhUGMzBKcRCYedoG6+aBxN0VQ1QLwcRci0amrB5EhKspC8MLOHLxQrXWkbk4scbTEPsXPVtD6mAygG2awZgX1btFV2iZBo/gdleiupNgXgilIB4lRNMy0km7iYtmyNVJzMagFXCtbF6UF2wAxQBE7kl1FNQLT+n5VjdVWxxR1kDA3o+H2lGlBbmYEDJTIla17h5gm9Cux22m/sXuk6+t+7pYA//5P7LXlr/43XVYrdf3Hq3MOIgcewglIhuXfYiUxnytEDLNKVdxWYSHf2l39U/+e/sn5ZPf4tXi9Ml69O3v/ENr/8qXf/2bF6h5Y4tcfQ/m2+X+OKdSqzncHnf8KD9Ed4Z0JrH9kM9DNdRcmZM0Op4O2YMkWnDe7bA42oAlyMxh8bQH8FUQjw5+OZ99TGI3sLOSDqcLNQQay2EC8MDzH7Zx+jSb8wXKmi9+hLfOLG0+GsLb+8EtIPxk/cZ//fZJyj1JMuTatJLSKpc0ge2F3bNzEMUdEemYWABzuBvmPmMecGc3AvHddtJXREiH1/eFj0lbNB13RDABZg/C6ay6+1kd5SAWZEJASEmIYZ7n+cpMwYhUU3IyR03VQQAbTbkJTK4KGLG4FV+aOdyMya24qVSzGMftkph5Op6nDB0ollr7jhxeKwhaKQTynS/jOPo8zscLQskFoWPiptbUM00KIB3JFewOc8Q01qEGSjG7MWDGxM5C1sdkHDyrVieaeGQwjAASN/N5MMoZHMhYWqpuykLTGmpRMzZTBygMVsgJyqEKe3HWvdykoI0dtCMUQDA4GvKZppr2VCkdSCSaTy4SN0eajHNcyM0p0tB6zW1om2zdkvphSTqUEcLEhiBafcoyXe2lVB0pHtuiXkr+D/5uf/Hg4svf7JaEsMaYyAoC7xiaEmoDJxFOXq5kvZAFVQV0HL93efui5zr84urocRqWR+Ll4/cMoU3n6fRxagiCZQSqW+UwDBdDVodQzY4qkn0cnf5MuEn/1X91PGyWJ7bKO34Y7f8tYfnoG7/81sPmPBBubIeVLcbaL4mYYRrsvDyk++6hIyx9/2cfn+4ud2Nvm+tcYu1XpYBD116enx9dDTW5u2klb8jc3LRWA08jfXRwAJgcVHAXVAAQJszOo1Igoo4zMdtu68TzZ/YpdQwOXf/hccAADs/M1fbLFuA/aU7O29dC63U/hLZsr3/zeni7uzVmgZHbfeyXcdt5tVxzLnX+/EETKEQKgIz94EFeZxBumgEgvrM5xKHcx93/P3Q9X4QC8jQIxDaZpjLPPgAvFcfzz2lsOJYxRa0ZksIAJ0DmN5B9bCM5qmZBcYKamhDgowjcmSsTqpEoByJ2M5swFAVUHe6jR2RNS1MtZmhk0jlu9qHpKJyGfqwEoTFwhFgV4xBNvWdh4iC9URAJ8WmSxmo/tsQmSawrYwVLeBFWS93040IpJExzfXCwuIHFB6ux8awOkFWiSKjmDA0+uUnMw9Icm1oAc7Q1C1URJqgS89zRBwMou/e9cKZQnWDgEIb9/W4nFtyMhc3ClOHIhIiIbCQoJTaDT+Y2RgxzmXHqSR6mxKK1IDRxCNbCNoJCmr34lZAhBuw4sUX0DCf3aj4My51ypTNtTq4aW9Y9XT3dNZuTo7i4f7E6efjaUSJgAbi5Sc4laIhs6SGs9AHcIlNLF+avayg3376t2w+HZdpEWgRX9n0dRh7pnOK9etZ0r1W+3Z66P6EQTSuFyFLhZTFS7HR88SU5vX9lOK0tDaXe3rxlOv7ix3/f3pY3zl//8umD47Cu4ZbybQgEqHltcpdTzSvU1eb99OcePuDdbqz6/OPnH+kyrZp2qHtCl688K7GYNE1LzkoOM9OqhINgzgHTyVLwU9J3zO2vwzG0Ag5tsSZyvbmhl3HjhEk6TzOZ5vT5UuKlngafUtiGP4hU4/lJe3KS0unJ84/zr//W/sP7H20ZVrXp6HyoXZB49EmtRSG0C4FFvAZ3J2ZScsCVeKYtpjXHk8SZwJyJyd09zJMId73Jodfxebj3M4/ZEo8mjQTdsQI+Zx+d856FPBIp3wQRMyW41QklnGjDxLVYSs1tw4bINVdnuJMSk4NDz2IMCb1WYuaQzVmYYTztcd9oasouHu/MFMRc1Y1FcLL3YJtwhDKENpoFtuoGxaI89aOVBEC1qsSKELTWJZvVUqVYcDMvC5DARjtX3457tOwS2tJvgkgwZ7FSiLj293dD1tKd3ATSCgrR74TWBqjOnwPnWrOxEjpDdIs9CzlJ2oqIURRTBykRS6RRNbfqpBWLsd5re1i0oiRS9YDi9JGdBeBo5uTK83h2me+j2amSR2Y4Ee+Jk3suEnjZ602zaCNte6RFLehS6cWrWQjiJBJgZmNh9VCtfVpFT8yTZT2t+rCz26fPy76pYX20Pj99bXV8vO44oYMbE/w2DHyScuwzU9R93Hfd6EdHphF7tufQ640OI0OX6xqq9GXfXyYP9St/9qJtBztyq9WarqjVzETO8XlNSTFybr96Ezeb0p2kr61/trvWsIZf7p/stMtHZycPH52+/vD8LATPY7ZA++Nd25O7x+Mf/953jurVUsKgD04fv/jue8WugzRsMfl133atVvMYQQyaXV1Ujd0nWNxn5gXu80KclzQgMOfdIYUqkkJmVc2z8PclqG6T7faULvglCGifqQB0/p47GrBhTrh6asjd+fDg+A9+rf/e2eIfnd52jXkz0luJbts6Lra5Fnc3FdLCEkWJyHXi5A5zPqZqk6pHqFQScjATExykTDAw55cvjEGztx0IOq8A0Knkn/eBuhuLw0lsltpWEfLD/JCpc6yNIGwW5hSsLy0DMeloLARTD5WC69YWroSiFtrgxTi0iqBDbVsbNC3n/exOlEW8uEicT0IJXLCwjSSBGfNegtexCKB7afVKY0vFp2m8IISqzTJv+xaG0PqwawPVwlBjsdEbsmBjLYxrDom9mtuQZRWdkg9l9DMfhihGoTicRku71BROdH3bpdpQX3KMsXpc7NJ+7LQunUwpBJiWhupC855kcFEypxB0WIw9rFQqUWwf0tCjUKIS1BlE0Gfn928vstkIYaXYbCW4VuIGzMLOPlLy0ThlDUEHXY/mMIpKVYXJhJgtZ2uqEdT5ZLkZtTl6sE+22afj5bUcN7dX4NXGoytGnO9t70ebxYfL/dh6fchtS83e3DECbfHCqzWTWjEetu/ZIIS0brl9/PZr944bxIAFzBM11eveA90bdmvuybzX2PKbyqj7saD0+zz2EmIp9UxDoz+4/MsnV9yrsCmhFrOwrJl2674m26q+1x4141nz7X746S+aM3zzLP/iMvi17upZVq4ffvAvRgttc3b8+OHb962jVVM7WSyuF2fv/r0nX3kzrsK2UBPKi37zSecFBaTmwNFy0MSDhRjJmEKlkJnHyT2BWKcdOORewVBSgYJR0yyhZyIG4LwKsacTy6ndb1fP495lQhMOegFgnsGhmQmEAqhyqPkPAe92J5N3AKFxVXBL7Xb1VJ99afFX/pDf2C/GBXspnb643UY5bXjzQtzV3SgR2TykODv1uGO6Sqdpye8EDM/liLE74DQbXtuhBTkY/h5gjEPe47lE+TxhOFcG+JQO0DvUkjN1k1FZIia3rJ4bcoLItE2YGUpERAFjMRiH4KpC4sZgt2ylA1QtEzM7fBIsTe3LBF+WQsSkDlW4qyZicje0RGZQRDdoUUtuVt1rZMARqF/EOnoMsGnd0ZAkiLCPpcZAVpWD1Z1pgDdd2++bINBKNiw62+XQjQNcguqahl4DNftcYMjkjBBEwj51cO2HljhQ3e/u5ZETa+5KdhfHth+0ZiMNIcjpOW2JWJgIzuwArOzG6ETJ3VWJBEYhmI8gCUxINN1maizCgl2IjFT3q+hqOrVqTsE3R9jysV2XIat67m9iu0r76327yzJaEwqURLhrtuNRut2k0/czqABcsyODAjxMjreqFIUQSDw0HMVL1ZuMd//RgOWyuUgnDx/eO10JJbZOyGShNO4R4xKu2545xKZlKhxZb7c5O2x3s6tx2f/4OF6cjkTCWsZjjKW4JGb75Nt8+QbvMITQHMvrj375J0+eXT7n6DUff32/V6+aRxKqOVfcLP7xR//qv0P/Ynt93ev+ul+W3W71J761UuEQWrHrVHY446cZKWgvvAmnj/sXduTEpgY2d3I3zUrMMI+YZPSEKYBeamMceNUwEOSIwSHEdPPHQnyvmmpNEeh3rcRUAdwRhnNCIElwK7otul73/Kb8w5PFe8fbhTetpzrehD5/uBo9DKbq5s6TvI4OXcX0imYSgwGbpxgmwdEM+jvg87q/u8h9Rfg3XbkDfqD8/jhoEIDfGYERyCnmkaAsZZqNkTD99UBulVgmqTIT74NgJqqJRIihVdisMsOrWWFisJPB3PzlQpMDUMGqzOwezSDkRiIOZ44TkohKJOxqqMoIzjqN7cuyCTMTqSCYMRG7VU3VJv/yJnBRt2aPegvLopWbpuyPh6u4WO1v1mrchFwoWxNNS2eGCLOqzOJA9H1FiJG9IHBwnmAX9C4iOuTrohSaGNZwA4Js7+6mSV28hrpLkgm/dYgqsZe6dFAQxmhGrk5B3IpBUrQ9dW3ZC7s6i7uZE3E7Uhe0NsFDAKmuR21aw6LTjBQ6uQlDbaqSl9gvHhVI7VNwtFLVYSJUTNic2EHMbmChaiR9CJyg0YIQvI4/rkauJMfd8fnp6dnR6mwpaBpUqrkyr7ZaSyD31bgxl5PkdfL0zHpr/c31QJyW60WABoJWM4vt5YnrIr9oDbJYtqvO3nw9nMp3/6iPuw8/Dg6OMS1uOLU1F12drL7za0f4C27GuHn/6U8+DF/7+rceUA6VFFqjah5zTHGv3fp4tGW/advl5vaYQ4oxcHa4u9WsYDZYmDraOxp2GqQ7BM5LqFwZSm0yIid6Kl8UIJ9y1DvAfXb4AXcJgECvCIOCU2C2RgOul7t1ffNn6deLBdvHmFD2haP4loRVVacq3B1e9WALTgdXPgMdTM0PcD+5w2Ui1g7fPl0MATzvC7kbV7yTBs4BN1/gF0mHXhoeEZXN2LSio/i0dtvIySHRjdzMpisxMgCmxhLVXCxDiN2cqAYmh4Qy9fx33msCOOxQkUwLUKaBLnKApDBhmrA3MAGVRFjgPUwlOI/MMBBzXz1G7TutCERopq3SGkjJ3KgYqouEvrSyi8e+CVErcxy49d7RRVJhOGHkJoyTYskILiCv7mUfYwDpxNJAmpEay85pH9j7fptDQ6FpUuyJ3Nx8cdgnYCB1LUk3I4U8CM1abT6wpApXhrDBhclBqMocyYmcUnYnAbHylCuXW00ylCBjoaj19tj3I2HR7gvYrNeQqLZaI3G307biVuEMj1ICIRBzsRgcXJiDSKnkxg54RHFibuZwoLWCXJ23+fKnZuA2Sjx57a0Hj9uuAYAVTFVdr2iyOBuME1uxe40R9sN2N+w/+bBqfcypC+BA+9hyjvri6kQDi7+zWFij4ehXfuWHP3/WF71u8uW253RvvjEyRVvWm+TKSU5O7TerNbYpRtVYAjHljsePFkcFuvPgw0nYfXh62j7fpmVoIvlk+mNVZzVeBYgYrlNFPXmLHhw7cYgxuAlM2uSwwf3mqH5R9H9qr8bLHPD5xys0Qfhtku7o9LjTNcS64y/9X1b842OLJYxIOqAZIq5s3ZaNmxExuUtQYpmZeKo0i4snSYgbzRnmM3wfH2TLU0dwx0bc0RMHhdIMYn7OC+xzr2H6tw51FYPlxuFOoAKakOpZpuzT2+siYjpx80Sm2pFAjSflhYdgcHXiKQ3cMZY+6R3cvBJbAUthMvVJiuug6RN1s+ieC7nTxI0rSAB1V6tO5HWnJhQYZsQikTLIC8BLzQpWM+mCMxXv0m47NMnh6mAeHTa6Iu6Vq0ocmOBO4gpU5roQMnP37aJtbN+PDcPMydZettvRwwPAjEopIkQOryBiENicvCKk6qJAzcTMTJQlMaiR3olImIxgzo5KTODQbD0e0dhjbQ5y0wmicR0XdcsL3n1j0BKRdCdJNdi2r03M1QubgcBy9gRr/WBz/1aWRcnUSmIP1ZpqKRrCKGJsDpjFEMCkDoBCyGN1Yi7OAjfc0+JMVjeW7L0f57x2xNW9h6fHp48uGsCO4VUd1ow5E5F43Scp1L1eh30/Vv+oVHM0zZfCh+tVb+WD/oGKBPnwXginhY9/kvv2vrB/83z3w58/t+XRsNtnNdsO3r/Fp5eLQmVsG3q6bnf7bjWOIGKqOmrUhrXszuP189S2N6fL5zfNUfcuV1UlZyEFvBLRtC/enHkml33ujSeE/G4nBg5tcmhCYS1SqpTPBcRnBv8PB9mMDL6UCRH5p0DAozpePTfiNh3hT5bHP/u9X/0nH/7ZqxBkb4FSJE5pnyFtrtWIJwIYVu3wS3wu9pkAn7k7wt1mYrgxDNPus4M28K7hwUufoLk/mN8Voj8OA3hFN+QTFcJUo2AWDJAbMZnXSjz9llmK7JOYGAZmBqAzscg+mTNP0mB++c4SE0HcYLPbGZE6SCGwafsX8QRemptZq9XM3RYyEeYSJuWCLULJFpuiDjI3UoiAuMqUTAuBiVXX4+CO3X6dB20FZb3raRHzOOmgKIy1CcV9iNP6A2gRVg5VbBzRprhhwLmJlgtH1hHMadmGxAKt7n4MUyPiOr99psQUIK1nySnxCJCru0UjJxEDhRCF9iCDkQuIoV6l1IiicTBngVYBzNhKGFUo8+LeC1VCZzXR6KSVU2IKod0UYFTLN+TuWNCLktw5LGzsyNjNiN0MyqSao8SY67yYg4MQ8y1CS2pEzgIn2ruDI+npzknWrW1JKP/s++oAd+ePz8L5649OI2pojcmJbvqRIUuiyDHIvnx12A99X+rv/vf3LwYPzS/ExaVbni6GW6O4tp9+pJy52V207TL76clW4LUf8237pa9rbl1jW7y/fFwLJVaNBrea877SzfLB7W2MMS0WC3+GxYObW18fhQhzIQOqmeok3yfIpC3Ru/PSfVp5i6ktniS0cDGTFBkCpT5+4fn42SLgrhh/lWifj+uXFcCKhKmq1ZvnJscP/uO37n34gPeLsS90ez2wSrdY4nbXi9dpEN9BXiWGmV7gmXfkA25B9EoLP1cxjsMI751TyOxv/4o4aFoZRPNJ/sfH/8FIecoAHmOqNfrsIARxClKrKenMhSi5O2Fq1WftNbPBwIQqDiY3VWKaXODn92ha0uU80YnsBI4AhMHRyJM7CZkSk5uzFHcS90mG7e5kL9sbNQspuFk1b9XI1CkxObvXW/YKcbuhUZcRa9qXppNRn3fHdVebrjiRO8sobVNpmiEhcg8agrHUJ22zFNTcSl9BLV+bkYPQS0gtgW8iV4/styCwSKDZKxFKYHfswn5ZRS0BEw/ixd0cARRiZiR29sAKAxGqtVJ6pxRuSRwEUfbqBNCe1r6V0w83orlfquwNyKBYq4/S0bGJj9L4s+PKtFiUkt3Yw/FYGsudU3ZSAxkLXCsxC6DVaaFgG40WVWu12Jh6tuosQnVU9r5vF8ZeVlnRJA7bGJGvPy7OTM2qk3D+9lcfrxKOjLhY01+DWRr1F0WRfLB3nxzx7SLi3ahdFeGSxRuOrQcZNzfHb3u+ftG7ay7VTEvuwjOwNDeno+623ck9u6IjHjPtnERiWNDNcKWBgRckyzjmRV9Ts72pK5YUhMnJrbrVOtn9Hrrlea3e3YzLYe/OXSRIRYwMEom8a774eHw1+j9ju/8Sa8OnOgAEqIKIIh7YvbML/RdvJ7w5cjvq6mTz/DaUpkRHiseLwocV9aQGTPvAicXNwZPsFlMlMB0Z8+XzdKPPW0vcD5yh4cD/36UAnxnAyRljvsAv2HX2anKg3KylqhiDzNwpVgpEZmnCP8nMAQKl2UvA3NxJaBof1sLOgUiRpt4caR4kLtP+Zm9cDRzIFBxgGtyJWZXVCNDSMrlJjFsQEczq9AKcJ34enZhH1yHPyYWFApFCvDqsasPmhUK8Ol+VUIZY0hHvtmGtw0iB681JNXdDPcoh92HJVi0k0QoOUYXsRKAu0rgaoW5q5dZrDS3yXkNiSuKmzp6IYDYORJNQixQCMjKmwCzQeeEomTFDVUAEV98GMo7sDZFQcM5NzB58XEtwNdAozogkt10o2kr/gd1fSmajGo7TrgehaiWzPCbax5WvrX/gz0tYVSUaEdW9lobEAsGZgBAkw3xwZoshFXMHS+gpBC3MCnBoQ7yMoWROwaiJRSNXRWK12unofHKOwp5rvSny3u8a0nJ91t2/byfv5IdViRsJYbsZVUne+i++edSVunsaPKnpcMxmgGndXvHJQl+8g81l7+T7/X6XDXTd6JeOcl1b19rNrqP+KJaxiZnM4EZ8f7fbbz4Zu1LTErejQFncEpcYg6C6kJm5apmq82m7NwiHyvMznfNdpIobC03GrmNQ/lxcfObIPNgL36Hwd/Hz8sgFgODMgKOiytfta3//7CvfP21vAkJXfM8PR5sWhnEeciVxZk3VE0szS3SoTDe++4SBs9rENRI5SOBlqriNSA4LSshNEdQCjIL6Yb7MzdU9QmRqhsyJhXeYBnEI7sqzGToZbNY8R9zSIpElm7Y3qLCqgQ/pVaY6wUYmMg6cIeYTtKUjQszsGUJVqkPYLTuReUhNyR442F6ikGqhIFqEWVUaH1UGghdC2Ds4hKqL6fyUw+yTE4ShdqmcAqd0S6yUxDNRUQTJpUobCQNC2w4jznM60ZGkKTcIR1Sdg5CVWkv0oW12HqTh3a5JtQlDiJoa7XVsFpcrKRzLbVwelx7WFBETrr0jRnIDKcK8S55EZnIZhBqougSN1uVQpxkLBwBmN6cIImZhJlXXqtoO3rWe65k6YLJyNzH1mMhjHYiQ+npSh6O1V/cwmAYZtpni1qg75r4P4FW6er465f0mB/9YKYaxXb4YlsLRfDgeNSVXcFWDE5urC/l420anjmqE9UjLblMqmOuQqoU279At2ThvScR6Dp6Peu5SyZ6qx8Y1tU6quV4+Jd7fxhXWzWJ9cnq2Uq9MovrO1bO/GX/4xtVuhcvIplaYh2b14tTu7by9uQhlGMzKfYwllMrh9DaeLJ+ec0GVB9thwRgtSRnFLST2WhbXCfni+h5e3DxorqQ/lkKoO2Fxp0BuGrpe4zRFa3ASGKaxf3GrmAgoOxz/c2lLQ1vpiLbL7lna9w9uph2ScJ13hPkBY591NDjs3xAcivDpEd3NmanOTwaflMhk/Djdu/7guKfjot0YTHaZlRHcCaYHKb8TE8OIwjTYQ/HA4RNIyKHuBFcL8+aacEcKAofm46WZ1wG2oANcd3fiK8CAToK/Vw99I6HqJJgnkh2kylp8rt0rsbAq3VU67gSzSHCbNv2yuyvcKRKMeOJFlMjNCMGJzZhHBACQblIWxgIzNzi79WTM3Wx/tDAD1D1PrwGVhQnqIK4OktYkogyjc3L3XAjEgQkhqJtqTWUcTTmMtrlp2jBmJwlQZc8cwoK27k5eebcer62lUYiMrVBWXqTaX93f33pbClshD0AJhAMIS5iEVjOq8irv6jTrzmb/JvxxDxciJxeLAvQW1zdEDjBvuW2FSUYRkaqeAlvOe27cnNztqFaVpg5Ld70l7nisJa6y/qKTONZVd6WoA68aY1UPMU4mrzztf2emaGpOhKV4ZUEmFjbbD9Vc4FqDOYgC74ThJGLEYPGYG5QqlFN0reoYmUUSnEh0IORStx8UJW5C1y0WbXwPy6evfc2fcXNsysvzi80ouRy/9mw0QTy6fxIRpcS5t7MqbTgqKZiYG3ckZk5MEgpiYJguxtvh4bLwti7KB6cPru+/iEc2JkUpy6SFBHDTWoic3AiKlxOBBw3AnQTg0AAY4BVR3L2Q7mgs03LALxge4rtg++KH+gRoHf4caAbTwO/g8Y82X7lqTvba7bvcXPeiYfodpjoLe6aLI5jxNH4sdyIeQNgsTii/shvNrb+DJn/POwKPgHmhMg4ZwV5F9wAo8+R5g1kSMX+FjAOKJp0ohWmGilim/oGI1Cc737kqOqwRLZM8kpQnnSFPhX2d4mTq1Q0gM4ap+hgC3JhE4T5zlu7mRqgUaMK0QVB3CAFlnuVqzSpEJAurIgZ2wF3RYqjGwlDnYFrbCcwLwbQ6hajQsRhXYmF381hr1SrEQUvwgbkMg7SwnArES9C2i6qyGErX1i1W1XYmDRtQnUnV6e7dxSv/hR8kF7PodE4UXyTGpgnXhZOz5xi5Wmi2DLgpGvio1SmJsDnQJm8Wulj4xBUzB8/WSBWrZhLipZFHZz8tum5HqQhRZXl++oMmBpCpO2Naq6gOqLZwI2JqbCzBvDYEYi/OBlOGTKvRODQTtmQ8++cPx7TXdRiGwAQOcZi2uBPDwgllOmKyWp2MfX9ViU93u989ev3RU9YSHc6r1XDlq7PUV9Wq3ek5qpZxlZsgzkK05/aeLnHTcVWKZDKdaWIQdvew9Vt+ZO/XbMHrMOp17vy2rPjxlgyOqABcS66YyH4/GHx/Vvlz+BQOjJ7FLpiEzPVa+rHyZ0r5l5/a54P+U9jAAdB+mQDc3Zn03rHxHzxMHz0ILh6cZVvCGKeKm4RmmNKNzN1dp4FUoooJAaTZ41AcDmNhn/eFzoeMHli1+WXRgRA8XNgsADooAmaGwJkOuuhDMBO7OZSJidhB6iA67FYEsZOr0yFp0AQb0hSgU91jDnJyGNkBn3TxabdVdWOoKUzhZF6JIqYhAwBupRGQ2LRtg4HixJjGc83diIlmwzcnntyRHJQYWorHGHt3VZhO9qZAgbCDXK1ZjJt4DLipkzhHuA3aSfVQS7velS6ZBYq9LmxoRDclo2k36JjAydxArsqqzlSVZ4n2LMicpZd3wPDBovlwv9x9Dp9OBD4jO6DGMpH1uyWRmzlgqk7CtQAkIr0pKkexGcjZLGLJnDodC6eou9gmq5Qk27iLPl5Ow1Zl5zM0A2avYBI3Z3avZgAz8kThsJiBmCGqrpDoYoA5pWkltKZpUNOtkhFJVCMwxQjAzcyXllWYuyzCITB2JLEl4qtyGp994HT67Hkb+Vn7yXHc8Znkq6Eq5PT+WF+MnN5cfjIp36nLzT2OaFSoUGBrTN2rWQuvRkEo51hx2l63e3lnuFxkLu3i8mot0bUySwWm22wC9ycRxTSB/ul33l+55wGSGppQKWTpd91QDxzb58J9rqvx8vP8DDfw6qc+J4DpSHh7/PLPrr59bRfWhHK8Yy3O5BPFT8yTlMdndwE3ZmY4SAEnIg/sRK8Ym7MTA5jswsy8zq4Bium1TuNk5OFut9AclYdqYjIBkrvaaHolzjPDePAhN6iXCp3YemZl1mKTMdpcAjMI3NC0XCvAzYjIiK04s0+fgcU6LWhjJwGUkpkTuakEBtxk8sI5tC/Tckd1RHOoAWHazYFtiNHLWBcKItSc5qwwUmzgqMrkzlGKKTHqtGPU3Y1CcIsxT1gClCSw11qkOkDkFFKro65ocMDL+nbji873J9vr267zvaUGrjkv3GHTaAiAA9/78oA/MCw8gThM80l0t0rq5Z1Ch4rBQBRVXRqhAeYG4sn1Hk7TVkgXg4/sGtyZ2H0IomZqBILlUlrUcXBGWnVe0mLYOJHQbrNGHT2ltgY2BzyrMQlQp8F2LykCzmKzutx5QqJhEHe3AZM9bZ1eJDfFRVyDEEBeauPzBt1Qas0ltgRzJz7W6vBa334a4oUPHW3HbHnU72uzTji5CDfSCsrtSTzejgW1qA7jqDVYsxxYFvso2YgPWCkIFCqRfPCL9/kKft1FGT3Fcv/yevWV939B7y3XQkH3h6XaMufXgXw20Jni4FC2HmD02fsJTEGqRwYG42LCM7f2WVGwfa4q+LRAoM655fDnYExgB07e2N37T0/8xcl626qtx7IFeXAS0letxp3YmETJprk8FwAHYMkBtrnlt5kDnKbqyBocFIMTI1h4Eg+q35UFePUUmgpypnJIafN/TMSUyCMI7uZhet+YZwsVJyIz4cPPs0kK4ZPIdJozckw2Q+bgQwUw1x7EOt0woRoxmwupEXg2ynC00ApIynNtcWA/ppOPED2DqGmnyqlORmDQHKf+IQSCmjKZTwIQ9loMZE2sN7LCtTMzm9UANWaEhpLDvIxNGH1h+6QmHAS9HEkTK2gZRnfLa0GuFAJI4DoZe7rP/5tgAdCkwDr0cpOzz9xbfa4FoFefJy5dY0WNWsAdPE0Bei4LB7mrLibOB9VhbO4xmwYa+yhBB4/L1qusWesWpfhKrwSQsJC+AbHBXIThxGBy9+oeHERwI2EYE1cSdlfzGElrAVzA7qwsQu5UwMzOAaMFLh7qPEFq0+2JTYfY5hILYM4USqnSiJVLt7FJdX+8WsEkIWjNe3vxk2KpgXdHX4ofeYo73/W5ZCfbhPsPKI8rBou7w9WImDiHwGxeLn6qD4n4w33t+p8/evTk6bK9Oj8b1du25mkuxqZxWbyKjtFddTyRVndD/geBHChRCVKpbIPVaaQdn/vQDv3CZ577dAHwqXYvwKftvt+Q++9/8rUNXSgLWorDFUODEu6S0Etiggjmxu7umBFmN5DbnYiO7y5ucrabQo8ADzNmQOzqMi24IWAei8RcGAMHD6DZgGLOdA5PXJXJee7K2dmIWUDscBGdKlLWuUWaphPdKxOBmev0jMGIgt+1wMgsps7h4GU2Tq+Spp4JZNM1OBcjVA+FmJmYsjsRsStNM9mplkophoEBd2YjVzAgRd08BHZz9zEzCcMpFJrKHYJV1LpbqLHALZgq4DgeKYyVCtxzcfe9hlBDqk9XC92a8Ga5TkOWxmsZLUXOzlQNgWdpNh8O7EmHOVVODkz6pju0+BXDiFfvlWmCg1gCRdSxVO0IpmqQIJxSTAZAwKwq7CKWJrmHx2oiapKjuBPzpXqI5H5MpU2tcSbySOQ5BDYybSZN9bRFQA3RHWDi6mrEcDDDnOJgNumBZvAoMbsaiH3SXhcwWSVXiaRGYlNhBhIPq8E6JtM6cbqotdazbuhtTO11FHOOjFW99pVdt1xhdfzgXVYJ4cfxpFdVSAwShkWTwIowb2VjB4Vx9nE87Z6rdCent+rdWOX+z+3o5sf3ljenLZFWadVhtdY6t8SYdzJO/9AdToOD38asnyGPbfAQqg+3MVeXfwl4++qsz+dagNnW5S53hIl8hX3lxdf+gXWbo6M+uKXMdbOimipVYEK152ic3lAzkUAwh2I6VIzJDUJ6oPBoai3CpKalcc4gB3qiES8Qqjy/QsVE0R+u+05iPGuhD887c7HA1WjS7JqrqYr6hApN65j4pWNQmPohD+RuymzMNM1ekwTUGngaKsqNYLSYIAZ29l2K041GRO7qk9rZvVZKGNUDJtWj2JRgZn2V7yUk6E4bJq0eQjWt3Cb0iNFHzTDnSKopsA7Z0AcmEfM94sJ33i1yVhOa9m+b2tW+7Uak0mVFvZKW8f9n7M+aLUmSNDFMFzNz97PeJfbIvTJr6e6qmZ7unqUpw1kgxCwUABQSHOEIXyh45D/gA38G/wAfCBG+kAIhBKAIQWIEwIAz0pjunq6uqq6qzKzM2CPuehbfzFSVD2Z+7o2ILAxPVWbe/bibm+ny6aefNnStYVjTMKizVO2SsfP+eQiBYOgrRFRBIEM1s1yQJCKZqkFYQvsDQltA2e/YRwCQqd3IDtvWjj9Zs6GlYRhlq0PfexQSQe8dU2KX2Cc0BQQ19B5icqtOlSobdp4dxYGbqwpDuq6XADZicCGgRnPex0zglsE7JPRopuCIMSaRQGYeTYSrSkiTYFUNgmYKkJhEjJ1TQhGF3jkQc9xUlXQJKQEgEWIvHbj2egAiUCRKRoTorI27yu2Da0iUahppY7X12jgnFma48aOPADu6Sp7FGzRnf/Ff/+QDgGAWMgiumMDMaQQEpB7CivfnQxqvl3fOr77/x/8DPHj1zQm0cdmwGquZqqSC4udu2mmYRll3AwAgzDB7gW0BXB3E+wHG9qQTcDp5t+84/Yi3vfzbBEEpBmBKHfBv71bVnnd/9P15/X+5e/+rn3BNyrhrvyYG06QLEUMQqYY+IUOG9lRkWXlTQjQsM+qgxCQmqmA4lZ+mfZfHI97ss8kSYfawII5MDDGVXF0sm24rUTvmVE9daVeZXk2rxIu5ST6HIN6RqaEpOUhKVVYXxkSEpqIFvMsVBgQgVWLUjOYikYGpIZGPxpiMsmK2aiPIacAqKhCjSbBcAOqJEVSVwHEaKWTLblClpIgEtYzEg8zzeiANDg0DCmkUYo1OcorlTUTRcXSkUZBJVRGZVBTYEYwzFxOMbYXsCJIc7caq0gS9+QZGrq+MvIdxrPNmoskGmoBDQTdiNstcjr6bANGSHcSCtmYxVUQDIkZQvwuzUet4Vd19VF9fRvOVY+8drjv59jf+7O7y+OKySXGMDR3Fmqpx0eF8xxqGNBv6EBetg7YKPZmgLzTDzA0BBEQuB3QgYlBVLwLEYEI+eIhxO6uMsN+tTBUoN2vlLZ4iVzYogbCHlOUmTOxk3zP7Hr0kNg2R1bkxhrB1vsM6NZKS5k5cQDMVH0DMuajOy8DNxZwHbKgP+4AgXf3wpcbf/aqNOPNjbwAjDikuHjk3O314587pvABdTswUdBzCv/gXD5580jylumPes7v/RuzYvfCL+aws9Dhuz64HTkqW0EmEQGlUFgUA1elcKAATgXlJSgQAd+5SaqrR/dzgCjQVyBsnwQ8tSV5JKCCDZQicgFHR3xCN7C1r77xx199Nnw+nv6zm2ztetzV3FW8MDJHLUEo1mhwHIFCOnNFuhxaWg3dTO7QxvGOa7ObfZevlL9x8Jct85+biUJAFKZlc1hzMoiAKdgCt9t71wwwFKI9c8WhJgRkEAIh4ErgWJUKiXBcveT6igRGDGbqbjCOf4HFClTC/bRRgdBm3UARKpgqoSGiIzBBBi0ZzPneGTAhmowEzagxZVDjfaAIRVEAClKxIDnskBB2BIwA4xJgJieJRgMAsbGBOLT8YYhTnGDdY0yDkHVFElo0PnNrIfvLpXOwnCAoqFP2w0mMx5VklzQRDOzRYH3Dk/FIPO0eXaf7ZyaufxuXsklgNiCT5xeN/9qtP/9/71SPiAWk3nIfketLNtddWoRZLFJqaSapFiogGJiYu44dagZmJGiMiExEAIjGAE8nLhxaTicy9iVUzFw/8bwBDBFJjRxCkNKFFItREISVxNIoxArlcGFFQZHWMXqMZZmVO8hkNNgQFF7wxREHrZj5PL9ZQR6wJ36z6+E2NyRuvl/veTsdAUMnVMI5iUFWz+uThg7t3j2wenGKNkqLx6w+//81Y0cnpt/iqcefd3VXLxVurqoiqFpFMcwCOIGtV08SKsZuDkkRzk6pTdWw8isr4XeW//BjfhwANFPVmwNa7kZ5LNfZh9/nJmf1iGc4/wXSt1Z7tijJOZImd5dHYGcHjGwOCeMsVFy6+ydun+tYFgr2Va5bOgcPnyoAEU9vwVAUEV1KkHPAhZu3RW2+cDANLX8sgU98oIlEUSwiERUzMQvn9iRcghhkIZzI1uqFW5rqsMgEiZwwAECmBinMaEcgUiFKpp3LWz0fKQuOH9useANBUawAlJOLC7SIABDHJCAKAiOp0z2SGLIpMmH/A1EQLbYltC45apSr25kOqvYiBNE5643Hz8biLWHkewCaKOQAAUAYAaCQsHMoMVkq5zglbySuO5aOSjqKhONsv9Wr1++M3L/AEzhsyMgSu3vhn9uj+o//i5TNGj3NtTmarOJ7Hu8ciOMDOxwEk9W0zi8Ht8m5ypj0RAql1SEQODExF1aDOhgBHAypdyWDmPEAaIWEKZZNL2TGalCUJuCyiLqhIEJ0nkYoH9SoJAC0FHM2IfO9NwzC61oDYRAKyiDI7ETMZIzsRCTYsTMmUKvUUaQYal3K0XUe/3KamQQZa1tADORdF46i0373+izGiXx4fN+vHD+b7v+rTJ4hPwxVI1XxFuy702o+BaUJVVVMStRL+TumXWm6af7eLVkusXNWqDSfuzVK6FUHB7R//DlCw/P2b7f1Oyuf6JtLy5R9crl9u7/TOS2ujseyHWaYpgMuRY+59nwyTvQ8b51aegv3rwYIdYgEsDP/pcyrn8UYmXGHSQjDIijwAJYdHQIKSzOcq9KEdyg3A6arC5OuKNQrk5srIaOX9Mh+JTA+lFiCAhIBEZiKWWUMZzS8EBAPOnkULlAHmMCay6KmUNnF6ABnDcGZ5YkKxch4M0dScJTHzVZYWyNM8zAArtCQSR5dblaACVUXmPMjLjAtmkgqUn+as5my/IFfnOGuI6HUPntB57y/ArSprr6u8mig5eUIjzDO84XbilM/7W9X/gkZruX+YSkVGnjbyOZ+98TOTuRkQISOsTjd/+n/6/f/HBd2lqJJwe71145KHN+frmmi+8KZIRNcyXKkPvLNc7F5pEgHAVW7LAERyiAiDWC56IREjAjADkHOJ2AFlZYfC1wAAg6AUcEQuPDN2CRBNUiJJiM6NudajNVpCMEl1FEZFb8AORTK/QEAM8miz0YhIiaM5TYnCOI4UIVxf0z3o0h3Rzma89m+sGTty1aAYfEjgOBfrzq/f7KHG8bS7M8brtZwO7dhhNfOolfU8I8pra2YioiBAhggWDRQ1aYmHp7K/lapzhgEVbNaIeYzYZo1AfrcdEL/z9ANgmX31237aIaa6++TRz0/+auXP7qv2s1FPhjdUTjkGiQZZYNoMCFJJ6iWP/no/pIBC/plc7b/jdfMXDoJIt1iQ2VMhAo5E2YcBod0KPbSidj9b+u24JxcCjxk7zLUHEPPZAliPSJmxNwW8uXuYNCGRpTLD1KarTmYGaEr5xKqCE5WynBN4BkX92AQY0YAgS5CAgWquXwiokpkMgEygApIT7ISS1DQFy4i2gKqCyujYUjKcQW6/LNIo6Dq/sr2uhtFma253pDoSAlRGzjoIGlivhOfpFgESIPdCAhZ5acCiRG23mrF/23PJf4Yjz8aLxQ9+fY1z2MC6AyNAgB4363iNu92MAzAw9UIYPv3i4//2z+J6iIzsAWuvq36A5R10PPZ933eyAUByjtWUgAj7DIHDLM9qAQOQaGbKjgyJiZkcTymoWSz7YoxkCESoWYHCiSoFSbGGXoCSIwBnAqM3M5NRTaIDdgCmQsg+V7AsGpEjJzpQRaMwkTGoYJ0wUFLv04mzp26BjltZNu7+lYqr+t5pHBF82Obix/gwUFQYB1l/soReT916T7v9vE6n/QXO3MiUD5RqRqIyxRJKmTKXpkuDe96gN6cCwBA9KTOa7hWVOf27D9b0+1C4/r/l+67qKtr+h7v12auHQscC5kZz17sql+QQSACYTPO4bc27ByCTTelmB5VtZTTVnbM3f8vHvKVxdkD48kbMEiiWy3tl25cfLm7Wylu/3c+E1g13fri+OOl3+505XouiD463BAgEmscYW2bGaNZdL6cXzMDIykiMcpXFAmNCMGIrwYyZChAYhmIYZCJcCGYTIUSixXYhoCXN7PbkgEgiJCBjSIkzME89gwLTNCQZBnJMIlEZEQk5zyotIA8Sgoe9CcaRaHyliFIFSuqXPhoNe7Rl7Hp13qXy9yYMAAkU6BAC2mFgyyHbzE/Psr03nDZNeV6E6rb9Z34H0Ffr2DkABFBbuKvxut0dPbxIbNFmkRfz7ukv2stfvvioAYei0YYedyc/+h3/+qvRKvOzVfBuq3Ho2i42aoaAeGSqZZZTfjQIqgaYCE3FzJshO4IKiQiy9UEk6ANaEk3z3HqCBJp8SClUKRGimoElE0oEyICkAhA54GgGSJzHK6BZEE3GYAjIIOI6ZSOPTs1XqGNctbstr8L13M87G1uqaMEtUz3QjBF9xcEGYZWLEHTQ2UlMu8u7q+3rJShfxXmKm772UTE/AlRVLWOpsp4MZadhOtHhi12eXJwgGSITRHQGmFrBCHSjH3Bz0L/7ldgMyJR/y087YNo/fvzi5L+dUXdKHKsBQnetpEgAaJAwAKJBIsyMN83jPpIKg9JtA2AGGdRXQ9R3IoCCjh0sgB7KAwfWbwmeEbBI/9ut4++zB5vKGDfv2/GHn37CwbHT7upyv02jIhGcKioyWVdGAAXLBYyJIZQ5SLlIr5g7E4oFMAAiI1Ck3NYLCORUmTJyDASWSkJSGI1A0ROo3YAfIRNZrCvVT6emiJhbhBQpD3Ywkzw82RSBDJAMFYiJxlKxS5B5CMPMNrrgrq7csJNqNgBUPpldADAvnH8DblnL5uLkndSLCCwrtxZOJ0wLD4eSc07ASkPWlA+UFCC6MW5Wnz47W83aLlT1Pv9JOV8jHG+ff/imc8Fhv+Nhn8Zd3P/ZyAvqEViZQk3dX/9H9+Ff/lkrCwHPgHRCfrEmhEtJcYijXiAyMyMgoanmeBoLyUZFZympJcS2ZK5LQCQ2nDEk9SqsmfYd2aUYUINhw62SgApocpg5rOiUIbGPjtAEnevzPSMymCgYO04KjIIm5JlHg4gOk1zsqqOH1eUIIcQ0uqtxlfZunKcQXOz7XhoWrJYShaDt6qPNEb3cNdWj19uZtTzgvN0/ql7VJ4CFai6SkubBD4hYWiBK0HYQwjiQuAHAzAiJYu2jxSGpjvQd7T52yNnefim9/fV3sQLXL2z777VRv/1e138yzvtw7cO+degBANRAXSBTxEbSGAVwzGUyi5kZc4tAklE9mVh1710h4e2IAIEmf3tzOaQgeZIF+FtXbCplzHjZmXZTOB3Sox/PzngxWoT68Uc0jG3b7tvhKUHixsMijyUyMVVkphYRM0su/4nEZAmIpmUEKEzjXPGMtaoCMfleiCSJz5F96YUCcCJiSJhcGS1eKJN7JEYTqV1Mis75lHLwa5lag0iQJMagWaA7C4QxJYnGDHnoQgYZVIEYNrykhKebixgWIbazbpwFbdOc4sBNah3TsFd3VFIvmzCAlOESCaUMeGBo5ts1gNwkUURZocxUPOywcSFD//jxn7pkyjBI3hcprft0+RA+farL+nK4E2IvSrP1eFn7cYMwS5CQgGz8z87cna++/GwVkzAkwFeAyN7xqpRXo6QYo1iFmaKT0DQBKakiezY1YjSzJvdVwAUiMRNJxUKB1BkxiNG+shgJ0ihx7WKqkbO9N9MILORHxwm5V88qpmaOVZTcjr0jUOsbGsSzNqgpkUmEuKM1aX3chPO+Jpdwxnuo6CJq3WyUIcVR69mvxmo3zpccx3DUXPRvqnN/9+ji5fJoezro0Z46lrNKgnLG1E1VcntIsbSCKIKTWvYUkNkhAmAEMRV0wC6mcYdZnfY79AAOOntvvRApE6lundO3vv+3UOr/3fMf/JevP3r+eO5dBwms3YhHA1UDqwkkiWFEACXvkmoSMeu4CijAUzuwEDGC2ZBDdUXTIu0PSAhAAmwJOOINJRgQb8GTNoGCJXXIhU2xPPgCVIyIYCxAIDBpVBcufu8LNzhvk0qiL06ta/f9sL/eJwPyTe3nooYEQJIUJqIsIiZCVECKTGgiUiGAiWqdbUAxBgAeTMUAm20127jzR52IEYB6AGQyTcwq4EKfSZMFbDUwR5aUOGmOMWs1IFBDVSAybSHbs8WYyNM4zHqa0z56mN6fPYFG8ZoLWCjo0oC1Yl4Y31njxtFmMkZzIWiCwKLo1QxAzRWjX6plh/LpoR6MYAZ8oERnpiYCOnRVjEFG9+rqP6i/TGNNnW/6RGRmKtaH8/4Td9HJ0ubV2QxF5t11NQa1O97me8doRDL+8vP1m+vVkTlAJBDNVR0zQ2LnmBoAJjIYnSMZ+rjZeaLt3Y0v21durtfMDGLRaGTL3QEhVxGRmUwUqaf8HBsZk68hpopSIiYmHZUxMQCIVvXWkwgTSGYGMVPsscKhViNHKtzCyu33hksewsqu9nJUn/fLJvXuYr148ajahK3N2ibujvp9sNXlSdh7H2fXd/bDeLSjuKajnXars7S+hEX82DEYQooxxv7qKvqeLAGDBECwOESGyRtm0NclCySC4EWrMTzw8kDezNJF3HeGaDD155fY23zBtwvRy6ZIrwDVB/sy4WsTFcwp9H+8P37+etWFehYVI0KKhmRlrJcCEucEKUUBQkBiRgwuBEjK+5xKQ5VneGYZXkMgQ9QMcWDmS1qWo7YMy1N5pHjwvG+FKgfooFDXVIGITCRPFzBzqOIobX78sFGGJNPGLkpcuJ6fAOow9rHd7dorQSAfgkNyjScZY0dMqGKW9UeUTADQh6Lak6sQhlBBnnQkROiIObElN/7ugwdj27VdP15lz6ROIzKjOMv6yHW29WbJETliFjHkiq7AkBlzd5sZ+MJ3GAwhgfKgGAl9ZnoZmVhEKCUiEDXvQKxCHXxFKUUbFUfBQDvmgGbRMzABlRjyBqPRjE4cPrdiAG75jBv3AwC5KRnR5tfXn87jcOcy1fWwd5zJ2bhX7R+9Pr33Jx+vNiM1dWde4mJbJaUPnlSb433uzdP5tVANVA0EpshOMrZgbJZiNki5HRAJ3Ww9f9O8rqXqcDJOt64OAcEcYCEs5FvUUhBSZiIkSsRM5IwQPXskMAVQdqhRndcEikyqA4MIMRohqBGaDRbIhFxMiqACpq2HOcHgFrSFeXPV4tHYvT6Oy4dx4PMH0Lvg4Arn9/mic6uPvt7fmffom8X10emXzbG8gGR9k/7Rf/7NxyndHR1ArmWbSUqq5RyS5Elw7m2/DKW3nUqI5vzgHdZVv6kyI/X2YyvVual14N3H+l0vO4A/DqP/8etH/7p9cLmoqjGBehsHc5ilM6jwaQAFCC0aCpAiKIyMjplpmf0LtGAwaZtaLl0DQpYDQ4Qc4xBQlTdfHvyhZq6U4IqjtYIHHm5BS8COgGCq6sxMTSFSCG17+sUHPuqtlLdsbLQWkIldc9dEUkzyJI5DvxvSEXKogqscIoCylsks4FQUybnWcqFrYmTHvA4mAGAKGsEGSZ+uW6gXgREgdm3btmM/DCpjP8wAmB3ACAoYEM1UVEVPEdJoRKcmSRQwmYKpCGuOlEZmSEasAZPYNIELwWV+HhgioZqOwUasYQgkYzL26iCNjo3z6A4URSm0ZZwY8wAZc7ltYm068KU17MYy5FNHuYzq+nE7/+zLof7SOaxcAldW7MT98qvjKl4++9Fy5LD0py8EHOrH8rJ5ea+jnSKIYIoroWDYX68BVdDd0qvItBUyAAVVxzDuN5f1h9WLAao+5Au//VzziTlgSOVmcKrJxEi5v5GYEVGJEAStUuI0iAyeISlXYooEqs6SEYIgWUJCsZFm2IsjBBU0gMpMHFNMOpMWvFsPwM18ttnFZg+nos0mdu5O/WRO8/YyXHzPOtq3tItXsf2cX9sn3wY3fylXz773V20TiQr1WsVMYlIuW55GByBi9B5TZ2rjNBKjOjDbmCQmluwwbr00p9NQlvZW3853vAoQZ9MZcxh/x7nuydrkmBFIGOOgjs1BPs+HPB0JgQwTZOSqYwMPQJZzapwVpmASVVPVBLkaRyWdZsg/GfNuy3BHFuad6M7l4q3kQLl4QSVX8iIKiM5UchBduy4efe/zIY5IAIecyOd9hREhmRm2RES1wd+ROA59P571++sIREcA5EPlopmKmiUAcsG7IbchWUHEMEKGXPIgsvwlPQ2jB9BWRD3S+o5j0L5LGvfdZYpjHEeZGwBkAhDXrHLmPSMQvSECAzbKcwkoK8TmLhgAQPTQRS4JOdKhMJyAjAApjaasZixJzDGB11EIxkpSVu/Em6lKb4Gl5Svv4UE4YYJlS5TYQRHQUKUa2pPxq3SX76Wr2CCQAJEBOPt6981HT85Co5UHHMyjHXX3nL/b/ek/nHeXc49JJI1V8DEu3OXMk6mqm/amAKAjxKwghSToKox9f7yoLmb+gAAfbiD/muY2s8xYPFw/AgCpGKokLxIREEfnyRCQJQROAlCEBwBMxIAVWUEsMiPmOceoRIAJ2ECIqeYxoY5S2xYD7Oo5bPdjuHdsfcKusrOTatH1DBxf3uXVsv3pkezG3nl8sTy7+vGfVnFl9bpvw3/3h4/ejL6I++axXClNiriAqMomyd42zIVkm5kxSOZqNwOvlYyURG8WZXrKCKhTwF8+/21VgZs3yWvqUvUHZ0dPdp8P8zWMGNSnMYKHsS7VPAbLC48AJgJccjBC71kkF7sQ0JdH1IiqgVoy1SRFF8xUMxdlaha2wunOMwBL7yNOJWw8tPIYsJVutlKiLyP70Iduf+/Hd7ZzILakN9MQC4vAU5HlzGUmO0dyi6XpFzIO3X4/vJKUFJDuAJKvHLcAlkbLE/NAD1NaHUDu2KfMqEED5R9aGokIiABNUqeqK3CB7Eh+ImOMcZRXaRhikmRi7FhTzUwigkQOwQBijuiNwcyISECQADQyKDgPqRiAiRBllkWZwmiB1UJn6B2kAQTM1zAOgJ5QYqBssEqP0qFfnLLZtxsMIP8zeZ6y5DbRLBMAyTD42WiL/veX7Qf261ficwcxikL4Sj9z2336o/WluHbbD3cqPdoe/0o/+c325UdXa64oxTGhaZdiak46CWimyR8wHivTMDIGzhKBasKz1fG3VV8LvWOvpmYrLBFeyRitjMNDM2BC8bl+ajaIkSlSO4ZVSODmKXFtQ88YSCKABhZRUdJcE0yBIzhKrWMTcyxAIGgJnQy+se02JljH7YsZj/Xj7RAcRa4hbmtorwgcSHo1//jVOX/8lNyvf28mm7svriG0dxdPbJbqOmVrrJoVqMuJNUDH+I5Hz+dO80xdY3UIPkAk17jrAeJv18v///9lN/9x4/c+/Gr9bfBXdyx15uK8H4RQIYEBIYLTcu6mx1B08hkQkRGrAs5IARU0C2kYIoE3y1oJJmIEoqYSJhJaYcVlMOM2JDUVocvGzX3BOALmUXr5xyFdVp9/eiKphywGdTNWuUS2OQnRaABIhMEATUR6csu1xvhjif2+7eIrFSAkeICOEPJ4VlVVnjwj5oJF1vEHVOvtzuMNzzGToQgICc12yIRIvAHgQIDfSynGpPYy9TEOvW6BiJxnK3UOzZIaNEW1TgyRRHItUCxb/6kZyiyoZDtphhatymA5oKaszMyiybMzRTKl6ZS8FwG8/TnCgcJdlg1tGvaEYDIOKZwtHr25+xFcPX1iDSrneSDoludLa5rj9o82yQQUjyE+lF9+ssHnz+d3N4NmTis5P9pifPNyxUhMVLL6qU5Uqo0IZj6OapLU48wEOfHtTXCzcQtcriVcnIRMSuXJkCiPqIEq8woY5XrnMIR5s4C+g7oNwScTQ3ZoiuRBiTUZEAo4tIQIaoKxG4bkfJUG9W4wn6KGebVqX851rP15Pai1RlrHqo472nZ+7oWaeu/vvPrg1V/S5mThhrP5LvzgxZP+hParnKmogEkyKp0XZuyJgNVu3WL5L6IqgKEAg3cJ4JpSFB4U8JAmT4/skCvZdHb+xwKAt77nqh/vFk9f39ngUc9ROMk4miXghJCFJXNDqCkBkAcUM1VQGE2oIiYrBmBWNleXeU6QcQxCyoxbHTyKocRYMIJgakZIU2Z3M/HP4Ob2DAxyw0buMi91TQUbFh9/PtvYcussAb3LdELIWm0K4daaAgAGFSFyTrhe3hERG7u223f9r5B9CIHnAEDkJpK2CeZxQVm+w8BQlp+JaU9EhkyD5URmkfs8gUwl40qAVCH+OImZpNT3bbtrh4jJKLBqQ6BGSIOq5oQdwFTVqyGp2NTDUJWDksWR1BJhMoXIJBLJezNEGYxri4qMlABUDZTtVs8P3PT9394FtyKtaQxNQQQQkAzYi3PbT45++fVXx68u4U4z/S3zi9dvfII7sl49Z6+zhHfObfVvXvi1O4NP7v/b+XYGLIqVj01UuDi/8wVDltXM5R0r+wMGA0RQ64EcmcJM9yFWwDkNxLdCWSQ4oMZcdgxNMTACqNpkV2CuwIbIc9oOkQbYLU6qpM4zJDIyJI1iSDbrEmmUrNQeASrQ3JCmagAUeiHWnuqFWXy98Pp4CPvnzfV29EtLsA+jX1/5k9D83MX0Nd87P7Pu+NHVgtJFEwapXjWfb9K885Rln9RIYzSCHMfnypBC1ph/a/9mARsAUiNwOMxtsw2N60pH2e11IQOFSZuz6Cb9j6OA5YgZgLnlD7766E/3X3xzfPyy0cF8HAUtcaCMGqOoIuXuLFMtjaJAgEqEBiqAgAQ4AiAi4VqiqImZWlIzICRmUAuBDVlHLah6FBPLA1ByDlFwgHfSmyxuZWZOxACJUu4/FvjhF+Nlw7uadQSGdBh1NOWIWe/KNH9sCEBEmYGZCScJANk5O0aUGKXbXm37nT5D9lUVOGRPYwSZkyvEmbVXy8ln5yYBQaIhN2YAppZytT5v7FJMN1NLgIw+2BEYo4wx7a7bMbbDFs2SIjVFKsUwsyMHA88TVS/3LxggwoBIaCq+xkEcSls31scheWOUgUMPzjvrxqXLHVW5fHIrxJ9Yl2/vgduLje98RB5caPEBrXbnv5nP7tZ7bCIAqIJvfrr74Cfxwau/vbtuqPVILxbz+Itj7onc33geF2xmhsHh0+VuEyDUM4TcBVGSLCrJHGeYGxyCRmM/T5c+BXWTbtUt650jvxKxkOXgMeXzkmmbhJSmsm3MTEwMMwc0DuOLs/v3j/bbOnYjGxEkUXJo9WBgUQMLVtpZmI8jODatAXxSs1SHNBjBGD1D5XZ4/XjYzqr+g7O2a9YboaS78XjXfn+Ljy+2D0+bC/vZF+7a/MvHjun+r58fzz7qLh7sGjjA42JoB0am5ozlbaYeAiBRlmIwQGRMFCDVC7ejCfS49cO5XwXLMuWd9+8oAxwsgPuD6/Dm7P6+/vCMtWatdoP4oDGPOoOidVrUB9iiqPOoYoyJZt6MhuzmQQ51/Owqc7+TKKmOBoCUEAyYfelG20Ouh8SyV5UcZU6WEqGZFyATJDBVMFUgrykZUs9VShz+seulQnUWDUHQFQ7uVAIxLf4v98CRYZ5jUBSByuAEA4sZZa/c8p6ZxHTZbdthfz4G5BDq4AyJUVOaqSYDROzps3OkaLJqhTb13sA5RgSmaj/bOKhbr/vFgI5kNOdLmWryrL45+gREFK6l32+3bRzGfgTn3WkfjZBdtFwWSIygyDwSM5qay73iPDb7/hjbysWtkKvcQAjBmyVxbOYqSIQI4CKg6US5wNwTAgh4q4nEEAy4VGM5B1tkkI9o9K6t4jx+++Hnv9AfGijYwNADMkkydHtdDD+4u21eHsXkNKDF+dNu2T0cro7unz3Wft7P42APvv7Zijd19fpvJlM1YBgJYJLDngwfAELozVG0cHSeZE6EUyJYxs6jFF0IylReTEWW0YoDIRAwKzwsU0sGSqzR1c12ACc2C/3zZnFyRQ4EUIhZBRBeNGHABfRBLFKQuHHB0kjchQpEwM0av503O1js1XCP6fLoYl7tV26x7vBid/dqmHX1/vnRbnH09Ocf1T/zp/+T/wLS7nc3Xx3vok/X9/dPqudyVwMooiVFQpAIhEaq6KCg4CXhR8wfKeY6tAFpTamq0Hj2tAl3v9wtci+ZTQY8I6BQIPNc90FE1KIHUI7XgW+DOeMyKO/p7m/Xf56q7WlETGYEo2ZkxecqwAQa5cCCGD0YMmoyUwEAqDI8A2xwCJtV1VyZI0ikZIggAKqmkgr85IvAQAeWUjIDEUAm0qz0bbk5q7RJICFYUlGFeNr29Wb1D2/5h7eM3XclP3jro1tgYak2ZEBJwRDJ4edpTJpieiZD311HXQCGuqmCMDsV0ebN37i37VdAsuE5zUeGiJ0Id9hs+YrMkig4ciKlQWgKzQABEWHPDkwNjpEQ0Oz12LVd2427dq9EPhAgECJWAIogJipIiBAhz11YdV0TdoNXcmggoiAGgFAbB1SgwsTEqWRWyNpY8D37jmXJpPRiOK2sYUCuXKVb9+n5zkeKZQAFkCYFSru/od2FHd+7ug710oZulPXyq2F19GagHw0O3Vw5kWs2vwHzdX/94/tPM/2ndHNYqXBnzNrArJ3FNszRbNMi6A0Ie/tizSCndoU8azAlkIAChTBSbsAgZ8SJcFZDp+iYtdcu3zRyRGBFUxIkVIOhDtoPHOp+x7MKZV/jRmZ6PmevWhGcV1V1iX45t5YWizr9uqGmvxjR7+Kd+5exHj/rN74/dd1/47ltLvZ3bScOLI1tteaRazXQlERRRQ+gn4HRuzvWpvudQnpxXkcXOsB818tmAAEAAElEQVTxqzOeFLWmh2c2ATnTQuGEqZXvv/3np3ZwLUwLN7tsv60TL6OHqEzSC6Iq5PaYrGIwcWMJABU0N144No2gha5Ah77yKbDUiX0OhAiUy4eGKGULJEQiRAyY+XaDqqiZJDAiBCpJx00ok6eT62JX6cUnf23eI+Qq94Rm/ZZXKWa8hSyUlbLD9ikFM2RyEWsEVf1UxqHvozwf2/ZKVE/ZV8HX+GbxfSVOXtOqS7P9LAYM0qRqEauNv256ikMksVSbkSPTDHkijFkOFbgA6R1mBtEJGJpEpaHv280+vgY1VbHa0DmHiKICeWwXqonORvJdhy4CEqioL2xFpTxhczoZE7eZJiCzHLy3jxQeTKiVdZigWJeCN+4uTz/7cl8rxnIbQJKQUfbzP3Dds7OdgUZFJb/YPdNl3Mm4fvwsgcNaWmfLzWsVuru7/J19KtEYlELDAeSVjDFZgjlc1x/Tpp9VxO+Nv8Zb0KEBGBfs/BaH++0nXm5KElFFbI4QRIZYZ/561rU2A0xEmAw6QIDgfQvBRq3Cfhea2PIxjF17tIg7V9WBwHhkL1tHvuZh9unj/dVq/qy1oe4ef7IZx3OMH288RHnhPrnGaiYJ1h7RHBuaShI1TUnArOAvqjxlBnnZp3a5XNAHAKPkgsjKLkTHX53Np16Wt2DD2zu7MAFvvvvOrodccJuYVm67+IUen31h4sHAWTsqIwCyAiASUSq2dOooq82I0XQkdYRoikiKlrviyhWQGcR87jLBAct15RDUAACiaQIDYGIiYqoAVWLMxQQ1cAIKueScbboKEIPC7A384RfQ51LC+1Cx3dzotACEBSY9uLnyIzYtNYBR0Z3umEnNYIPowwrh8zQMfdfF59JuxADgn8yfrGati+G64q27ZBgceFFPsKigjmQO0IBbA0JQbYCQCKAqjyJZMgOAAACqahdqxI5wcKfBaVKX2t12s4/dOI5dGtORAaDLEuxEYEPt0xYaRY1qSAhZDRUGB2bgkOiWXbRSDrx1suH2+kzAn5VJQqUbCBBQo+IAbfzUXSNQaRI0zKkzaXw1hzCck1UyKrDjrV//43/57evHn82rqwarAeuW1O3O7+JrByfzK7NS+SmXopAPgQMERIWj683qxAzGzXjs8V2x62w8DG88PWbvgtNT5smIF7Rg+pAhmlR+YQhqBjayc5jtshEgoxhjNOdj5KaCNFSVxT7649eb03Xfi+vVVQQO2yg24NVQuzQmdCGM7eN7T8/2RwyuWtQ/k5f948eDpYdf0+NNc08iVHUEbWZpE+8t9pWZGhJYSnY4wLnoVNZ2ysrznqSS3hgYhUHC9pxifC1heoq3j/zb+x/hULSbvn0LW3MZyiuyvYhuDM8qDLOezMD7bi9IaEDoM2qZ19MQs1A5QCJGRXSA6ivOHU6Z35BFM7mkBDkwyyAhQBbROGgFI8DM8qitEROYIQZiZvK2sFw+UwVAYtfepIJgBpa66gc/wTOfDQDgu8vxfiyQQdMS6mcDaNMv51XIZc2cJTV56GkOlcBgj65am6QfpaHdt32Sz/YUPQ3m/9X37109/vX32SnLsF3x1WkKak6dAiRCQhMlGkrIBYiEpY0rh/Q5R1unlEwUWHdqRCToTu4SgYztMHR9PNM4Dv2oCzVyzuHIbETQORUDQoqQwUZmRiTn9LAL3n5Nxu47N84t6tgUmgMSDjqsP34eq2GWOHskhSw2puL37bLimbWIDmy0MHz9wR//L19u+uaaLFYyLF1IY2f+I5Lxk0EK0Fs4H7de2UXQ5XreXvpVeL1XQhV9f07BzWXj4bCX+7H3fgJtyn5RNZpzYiJqgFGJWESd5RZkyeO5YTV0SVGGufS+gX4vx9yeeY4DL0Hf9Mdjy7uTcdmSGMzDsKew7F+4zZyuhgfVrl2sr2cA/nl95Ko+BbHtbmRQhaFykgGpvLBJkpHBhH4chjUbFI9kN6a5eE4mA9rHuSg2WR/j1sPDtz/NDbp2AwLSTQRcfv7mTQAAXPMM/Oa0ZwBFtqG1zAEtQhyIKZ8eyz2rkgYmEyN20YyJrMga200kk1H+DFWo5v7trHxtoOLLNaccKoBD06QAA+RowKMPooZjEtCkqpapeIKkImDj8q9/touLBLkeSmXM2WEL3Hj+25/n7Z8z/ukQTAoE2SVRiZFJcqM6FcUab6IIQOKqI01RGts/OOvn2/mLu+dp9lXYAWjVpf2cexsA0mgzAae+IlRRwMwAMZAc+0KT+12hQjAVtS1kvSVjRmUCB5BGAPDQzIgAUOLQ9UN6Eodx7JId765mMx0AAInK2AMAtMqxGULKRTV4bwMo3HDFb1YGM6X20JyWa66ACBSYRh0/Xf7UMFPXDcAMCE0SmlbkwrizmcsJpaXK/2rx9YnGsG/aFhJH6Wm88wfDTz7vns6/0SnbKiOWbmEAZAaMya368xTqNzhzrPBeCDC1szCAgZq5svlvzZLE0ruSzXzRDxX2TjVRSEV7IzI4NEM1BCFGBEFAS64Z0+jq0SwKu+VVFXjbzZqtdoTD3i9ns8TIlWCIgFgHbLBLdpIinAWOV3T9SPtFWPjnd85eHV9uVoZxdJXKtlmj9awmKgBoKekh1kcCzYFJPv8HIZ2DF0dU5wUcJl/1aRbkVvp/s7/fSuzsbYM4+b3ySpBz+SkYdvSb2u2WCKRomgbJ9VWFhERMmPmwZqqEYCYSwIAMtU8ymrBSfh1c+whmiFTI/nZQn2UDQhAoXU+WAAHUrEY0Z4jRREUi9sSMntEnszgk5cIvkmzVOfzDo4sGtqf7rJ4yJbL49oF/a+scQgSczCze+rTkRIV7biSAPHWmO0ISBCSEToyQgn6w4+RNHMTf+7o/efLJG603xzH0Z3W74eGuvcQ5GVPY5engVhdv5cxEVa0vKRQiMgEVNVKR0XlNOsRZidgjIhgSJebFmhD+MA7D2A/pfHy18Yw+EhGYFgEWZM9mgKpcDpiWGGxC9RgmCO69jVMaSe2wfbKnToyxPYoJk4+cIZ3SU8gBEhpb0/T7WkUBiYfkTo/Or+KiW1IK5CnZWLfHP9rq5uryKjoss1OyK7yJOITIFMl9/GZch5GfnVU1E8K7zTHTQzo4Sr2phiHgjeid5d6RfF+ZT0tOVRQRydQodpUzMBFjEBGfZ47BviJUBRKmscXZ/OT6VbOm/qoet3K0iteBuqbjy2jVqu2TzGjEPd0fuyu/Pt89pGhJ7YrX6WJwRjZ34D2kWd01G3VBQfMFEiZNVjQlDBEpq19DOWe3jy2AIRJo5QUrE0bsfOi5PLUbuvfNaYZ8uN8qp7+X+0Fpvygog2svj5YJF5czAEhjhNK3Iw4RTXK9IOMRBAimJln935Fa4qzCXzw8EROVWPFQBiwhn+U5P2aUt6EtSxmwzxIVVCOApCQ9MyAyemRX+WSjipqIKhMjsvv7bvB9tdpwvml816+9+8p+42YeKr6NhOcuRcBJBi9vIVDxRRNRgRBBbZ1iVHK+g+bZI7k+aj9tP5XdX2s/js23i0vvINFVeOnsmhvR2Bskdd6DtCUF6AAB2cFKFMxEE6ioiDk1JGZsGJJSU5OpGRAJoYoYoEhOroh9tVT9bP6X//1myV7BBMBQsrYiMZmRg4S52o4T9jJ1RwbTMifgnbW52XGlJJJPj0AfbNy5rmnjoq3GiUhEZlQ1FG3ZnO2DhRaJwJLx8qJ+MZeGzh9fmU9GUEP9xrT6xVPycXXRTPWpgklOGIASq6lz+0cfXP0FznZXJ14A1L37HK3kfAKU/ct00DOx6JAWwNQRU2wfpcSeDHsDUE1Sxdg7VM0yPEIBQYDJCERJ+/Gk78RTvBgf+VcvF5Wl2jZSrzsM28dXd98oSqRFONvLsnpZfTj+HPWzR09jtwK3HQe6+8R972d49+xo/cYqklloFYeL5Yq3IUcoaJLJ/JniRBbhkAHc3GjZs4AIKMyC3qJG7Q2KpNvNk3t352NZgQP/450kiQAAVNXlrhtzX7rjvV9veKxHq/oWEYDyhEtEUzGfUXouvEmyzLEHEWUwcIZoCogDEqKpVQBgpuDJALACin0Im3giUaQbcimAfHB7VQzOKYuMioGjEXAI2qDFMSpWxhWzaVAv1z3BvO/j6D//Qdw6JehdEnAa0RkTAHg/oCGS445QAUQqoWARqlHRSeKmR0joIVdildEAtGgDAoGaMQgwyAiIAuCsyClqFi6xXrAScXPuF+urU2d/9re/cfPw4r6E9qGrcI4k2xW2zRyerPXbh6ufwcO08enuMzoOsa631ZhcBKpaJPHsYtB67JZJ05hSiP3IzjPZqDNgMzCzDIFm5UUERNAO0GTX/fD//uk+JRJjTykRURKqKk0GmLDUhUCpEKAYjIgQOshQCpc9QRmRQ85vlIVCcv3YTA1SI4bb2W9+MD+rlHYheUpZJYq1H70bumtzSYe01mG+GFvH98bgXUzrloSI1AYbqkSbBWGEbRBEMFHksnkpq/yrh2hI0jW/Ft8vwxugAIn9bXgXAcyoHJTslwgJTLJpzf9PeXIQoYgDAZerDkjqcliTKKcafUO9LIOlkDpucLxcejHCsaYEpjJc1Q+e7o5HnwZ/7MRWYWx9MNjMP3z27EdLenrCV3jt/ceLl/73/vTfHnfevnr40ZcbR6qL6mx7tP2KXToiQO2/+M0v/9bsG3GLJsaZqqE3VUAmBNGICJKnXYiqkRbFWp44ZAUnIF1GWN9/Fu683NVdb4eZd4cDjuXJQingZzVpKgFbxp8AUM2Qii8kJCoUCtfNR/ngqoo8qBs79VDiai5ExfIGSAqARYkkh4glfy4tJ1mkwCwiFAZcNsdpLucnJ3237vbVavnx9+6+/Pr5dd9tEV3FKCmS8yQSSYdRKARiFxoRSZKU06iL6EItYXbWrf7o9z9gqTsalAdOoqhJYA8qcWhTXSCfENGxMmPSISWMcxBlSNtAQCYmtYoBJPAHpmxROjxY0CkdnjxjCSfJxJgh4qjLl/d/8SAN/enRf/XoX/zuHfvZF4n8+f1Kl0cv7oOfVYtZXOgrA3cHj/7K6MOv7sXr7+1+9TkMUvHWXS8jGnTSjGShJklKrlfpFQDGTAPAqkS4CfLgGARARMM4/ylW0poF1iTsUY3R0JUU+GZjGBoCAZuCaZn/BNMItluRACLc4gtOASN6h4S0f/L8k+Ofv7qz2KCqIoOM7BuPqrWKIBH4NFhqYW5s5GqXhFQsjlYDgWWZFsuiTPkW7PYlTnC1gW27bwnnu9eBJ4AA3ipalofx3RgvGBLlbkmb0hhQACoilpBBXkTEAMmck27R4zJtqhPEhKgUEioyet6lLZ8AXS2HUc3pnv28348W3qTWvXlii6czP3MDAW2enHz47Nnp1ldn/OHHZ50KzLh77X2K0SAMQbt1hA++Mg5Vip23IhIrSYjooKWXi7dyW7b7ZnUADWceZYYqQyr68d/9OlC9pwM/xbOFJ1DgOSiscy2pArj2zsXp+kVwNjjat+QOCixmBsiYcsiWRQ2R+HClCKZ5zq4VYkeW60YEyI0r+U3fzFcX10fuCXz4x3/rfhpmMcp4/fLi4uzJi9dY+RBb8lWgyAvphXmvwN4xrcdkomMMEKO6y59/8cf/4PvcRhqqOqGPPgEAk6Za1GzshjOJkqJIisoQwdcE5mqHPTkAT0mzSoS5lKdy6mGpp3wxf0jvJhSY008lS1gFNlVG5PGHXx9f4Tf1kwcrafnq4mN/NDx/DHaMfsF+Yftlfb3AbXUJd5N/6rdp/PPVuOmO9xWfL69WtBhoZyfP5jg4tAERmAOC5XkCZgBXxI6ZUBGQEXDMU6Sw0X/tF9qJoWkEJFIjygIutzVaoYDOZSNMhK73kZIynXuCAQ7guUmyarnt/8XvffoHV+1enaoySaxllMojhqSaFHA5hlnYdg2QaXAq3pQqAjXMgis55gNEnNzR7Suc/qfQ8pXerV/sjj0ehGHftgATeGMFPi+Xf7hZg6m0U7Y8YI4cEMCAJZsgQlNJLrQOWw28a4bEqOD3FGqMyVZ4vuJ94/omWIKm3g0DVqjaJxq+hvnWa7y+U21+8T/9oL6ow/EDfEPd6/XJVeNTW5GTZrnbOxmGeAf2Nnx9GlRaZHQiZgaqYxIBpFz7AgBKYkCabprZsikXy2SBcSVg9dBCn0Ruo3nvGoBy6Eur5VsxwmHZ7EDsK5A3gqPQP9o347wHb/sUpOQQlg5QJMKtB3f4w0ikapar3jnxzEUXRDTMqr5qZhS2clRvrv7gb/6u/OYvkWC2nlfH93gAG65ePrv8Zn+9U0RbsCf0SOsxGsiQ9ljVGObwmo755fUX/+QfLcc/+bJt6sofAYaBF46MAuqohs6t7ZMUBUwtjn0/tkM6CxCNITUVDSOhBQKVqObhMGEEbk4+vlVOea8hIe8qw+CAAXx/evkZfjD88DfruWM6f/PZszZF3jyphuiHxiQKNo7Ew9xV8r1O3xxHf/qtrveX2HLonbTjaP7S1q8fcKNDqKrRyl7lWSkLPbSUYheVEYmQoLKMnB7/6tsPKuLEMbFniwlMqAoGObi+eT6lxJn7MXJqbxlFfzv3L1tOi6GgkkeDqbj56fhq++zzVfXweKNDN6ZhEE1xcEytigARnUGgSrgBVGNKvaao7FARiLPqo4hYmVd+2/2XK8wuWk2XquvhtWv8hO69VzCcznb+4FbNDADAcqFiUow3UiXMkyoBAIxjyvyUKvQdHh+/sTjUi3h9CmiENp52Y1JxjfkV9bFa7JEM1BCizuakUDurYL3YvPl49dUznYX/fHbqrmfVr092AXFfVf1s1ndVVXX10DeYOp/o3Ifzn4taHAOpFK2cISqACWZQtbDibvHdDhdsOYZTN7CfXbXLQVXo7fV4e23QJrN5a3sfzqwVfg7lQGTiT6GbbdbhcpkgOteOPrRVuYzENA2yKPj4Ow+DD4J5h4lGQIwpxwuqAGai1h7vqztPrv/O/wKfn8MaNpT2ZmE5a5Ddg8d/CNReXrx58eL6athEckwrJecNEjin/TZiaOTq3j/9+5/8K5fSD+ZynVw9Sopp61AEmWpCNGJXmZHznuYOBL3sn1TaDbFvt6LJ1WQWiRwC9JynyeJ0tm9wxLeqCW+9cj6JjlnHmYK/aj/5xYNHv/ngYoXRzaVe3rmi66PHO1l/s9oDB7P1VhcDVkOweLT7/GLN4+/tt4ujePKajpF3bfeQTMfBQos9jz7xfBiSKvtSdMAtsW+Y8dLM1MQqRVBFx3/ujzGysCE6MtzXOITGR3rngFFxru9Tat69NzNExvFmt2RswGFMNKN7mz//03q5qI/qKlTLmiLDuN9HBZMkEs1zumjNUACd86HCQZHUlNCICHLqbm8bncOrVBfBDFR0MX/yOoQyeQGn9PbWlpuo5jg5uVstMJkKXwAQzCHuW7cpQqAKIgCaxtBs9ajux1kXKEFI+2DeWy/jbnbS6nJwy7hlh/trHxY+9Ty/93r7qQyiLvURLCxPrs5WRvv55sQPH+puj6ula8mk5R69UwjnfHX0YXWeuJk32KeccqqOgkwZmymgJltU4EM8igUpBQBAhCoMYT07J9/CYSrSd71KqgP0Vux0IMrk6XBwS0u0JF+uuvp0w7EarNbWwg1pLm96K63Lxay8xSTFLPGXUedcJyAsU7uhgP0IvLtPv7b/2T+47KVyUSsyIBtfJo+uCnXN7E4fextSe/nq1dn55f48qqsbrgJ7JUeu2srH//TvPv+/fnYybzt/dI8gtDAT7ABJEron7DEljVcAYkAMwVFda/dBqEBBUrh4sye9uoKYiFXVKyMQc8yRzbTgk0t6jzJ8uGdTHwigX17h6Z9+/GITbfjv/vinJ9/7NXz85t7RX9lRc08Tnxxfj5FtM/TgBq0vK2g2mJZjwh3eHahpyGBgXcdxRLvsL4YXizieL2VxDWFOoxgYmgDgwkwHUVsWDCAJMqCvn/zm7rIdEKMLMqhzCMje59vR25Yfpw2hJQfOrTeTmOStJMAmrtIh1DOAERyZBd3zUm17Fl3lEYKn49myCevFrMs5oF2Efqcy9gtNw9Ay+CEPrhJTyYQcmDDvt1xImYeSTzEg+DbNeTccIwCaTof9HQtQNvlkrW+/sq67aZbZLuDtzR+ZBgUwxQSB2pa4sTYid55MAWELzrlqTAuV1lZd1m5RZNMIBmmvIv2mGsYPrl/hur/ycCSL+urJx8vhurk7ptlO2/3gIbroalAbFjAb95swmA9owGB5JmJKioSmxlOnDgKY4tu+/XD8EWtUWI6942gq30WQOKxNPqQ6kd1urVn20jml0BsMwAAQXD+fny1EY8XbFi36iaE01ZOx/GUEQroFQ1iWzcOsxaPA2Xco5tFeUP4+rgzP/H/8h79knodxT41JEnAVJdVuB0QVuqqqK16uv+doHIY3l8+fvTy/bqukyK6Z7Ye/9r/+5Kd/dv57trvciAlC3blVgjuDW3od6ZgDo5mNnnQYFW3f+3bfyUPywTsfBNcPjqo0dttt1KGNMkYjir0DtBy74I3Rg0la6ealhSSAgi6woB+MW7/+6sOvm8v4Kuj5Lx+m3Wp/KkdXsIbNRxZsFzxRpZtdqjh1s1dHrz97PVs9f+xf7O8+P/bS6EyM5I6a82G77BtmwWd+XTOK5rlfpoqI7AD2BdIhBTTk8K/1yJ/1HhKCmACEhFUlkgNpuBFGmiSZJ1bmBHS+RxLMVXS8GTZnYGhm0TmxYPd7dd3ZUG8GVGC014gKYVY3vp7N6sDrOWnABIOkcegHSVEdADKioYKBECJiGQFn8Bb4OGWnAAQcm3m/obkio2ppAnz/arOTP4hi3ViI8vUbNGf6+zlaMLWsw+qSoJngeMRbmbkIAyY0rtbt9XVYLhD7bcINwUjeaeKah6TNbBzOToXnj9Nm4xfU9eOiXfiXtfvsk+rLHr/d2LyydjeGADwummFMe+D6zpvnrmqYkjrnh2zxTMtcDczRmZGKwC1xbJxypYw9ISXUcL5xOKDKb6dHZvkwLDd+yzgaTOjJlN7dfhm63RcjWdVBpd0YLDVFzQOcgRkS3FBEgCiT9zIRI1+tlQNiDDma9KpgiBhNs5A/P/vgf3Xys5qo33KlWwg+bQYO5th7QhIbt+Yce1d7RwgffvJHbP2+f/bqN8/Od5tN+/f+6dGfnP/w399aPLnPw85R3WO16dsN4azdqRmExjNczpfBK3HU6tRfy+Ky22uKrlHx645D7bhezVhMry5blaGNBEaK4PBtguy7a1QEFoxHdkENlxd1/eKLhuQHb+aLdvjxv7r3x/+31eb8jn8udy/XzfbF0bHJYu2HVfuBttX1um3w6Gd0988fV79ecL35+q4/uRi+au/HZS2LaF+4y6WuL8NnI8mQOCRAIARUyJagyv+xGhQRgP7iqIZ9JHASOVSaqh7mftAas4c9RC+CBGRoYkZICGM565Oi0s395bqfs8ne5xBuERHViGGpWt9BiTIOScdhi4Q6bAyRmJlg6ZTmdb24Wy/nTpPu+1HGLsJYPBFRVmyCd7NInNhYBkCIQsvq7ArrIbcLF3mId19v+31DmDa1qRpQYZ5mj0VmSpQl+BHz6Hcgc5p6v5xbt/eVQJ0GQRibuYRjCb7fou9WcrWCk33vKz+0gWnsAPEht0scLnV3R8R/cLU7eb7m3XDnT9x+tr08ud8OYU57Q1cNJ0cXvZu9gfTgo+db0FlwpilOmjUGOgnsIaABqSjye2fbCmSKDhzxpl9oZJHvWpLy0hLW5daqW8WEWyunORLIGED5Bv6zT/3GhWj3X75WXwIzQsRIhGpI09xxA0DTlBJDFAJV0qShqcYy2Tk/TQAlEDHifrkb/OhW+zd/65/YlUchUjHiMG6G4FRYjByoVJEajkLiVP0y6IzYOWJcBEzdxbPXzUfum7Nmrr0jhIGOQullrrGMC5eL/Wq2vfj86mz5IbbNL+49aF81p3G7bPfLMMALd+9sS6cv02pdGdXNRTBT21w/bPd9O2DoWrLIc/X7deTtcsgZDaEpBujFARFoUlILCx+VUtPPxtA2WuibL3Bu1+j2CxFzVR1+/bh5eb/2nd/e+9kHYQDyajDorPPzX+wet4tuUx+xk6t179b86+uf/OW9+cWRLnyfxAhLlQ4A3NQhZmDAQNKHekcf/T//qx893r7ovW/6SJ6QbAxHftBqotaSmiIS3bTT5WK5AaghUsoI0W1hyUNGYPnZZ1fCiGSWwWCkTIcCxFbSOI5JJEbTpMBlsk+aL4Kbn6xXdYVoccC+i5b6YW5iBghOs7Tj1FacimZjDDaChxHTx8u/+Hp5FHJlSV0BlQ/lsulip6+rAd7Sbkwle+F8GzYxiZTZVABSFDBRosgQ6wV7kMg87u+JAKZ+mCE7NpFY4wiVdlKf2Bk1AzAxyBh5hrvO1Q4QUXB5chFOx+s2HbWd4xjoao5hZq04GKhGvPPwL/roZkHHcbVgAQRmHQWH/cV28JwSJmBMUs2GLD06JWAoObc2ylOi8Z61j+tfpSPpu360whOArNZVbGxGAHOghQkPECBOWa7dol5O0fmU6rmFgHMCs26cqiuFXjHFIYZ2q3p7CMs8iqokLiM2ppmYQABMIKl5er++WKQX7h/+ofYVdDUYOjDZ7zGMXG3nUX2Dbds60pSQDYPKFZog+boJ/Noz1Xc/wDdsizElhf2b/WxhQwuARITXxVNAc/xYrqrfhdnvVlfknx7d254v6PJkfrl4uMXF8zt34qP5+OrBm3RlSZFofPTsi83v6LB7dD6/XIM2r/C6+iYN4XJYrpIyoCOJkRzszdcm0QCJ0chnifIKZGQiLU0EHwrojHRGkpL0A86GZBeG6XTx9f7kybbhiplAI7n04fIyLqu68t1QHV2srHv52c83D6r9L//ul7yKi0rBWeL301sEAIurLgbt/4fTeX8FS9IRagYRFLBoyaLPfgMFgABN3v7tMnrGQMs8poM3pluIwE0VwZByeKdT88iICGaIs0xSMhijpiFBZ5JkMGPtCNj7VNX16njh1rM5MRFemYmoWJfFBMvbKnhNCmCKAwcQrMajcH6GzRSlvtO4mTnsxTDmXLd0bEzf93mzlnHaN/ZNAbJyRWGgigKIJOsWDe165HN0zNTUUVNrXHlFMBO/jMO1A4vx+EpOVqlLOxdUgZhpHNhd/OaTbT+KC/50K64C92g/tuLJVwISx7HvqAmp673vYgTIclpqILLvhZmJWyCmmPZFR2MaW5+RAdQsqG0cULyLVNEgqgA3lPuM6LxFITz86/Yr96PfTOF+9+VOMDH1XF+MgGBICQjxgInDVEieqq80TRwhQCx8ZgBTdDeYOrGK9B++cfNhMf6Dn1RX1bibkRqSpbRZd+nE9ktg9paS1hUPPXi1vTpHjmeaxnYjtmYUrip3r0vVPPbqV/gqMWAFuUmHchsx78L+eVJ5cyLX1UrOuu/vet9X7kyrtMXdGIJtZjsbVr+Topip7vrxrP7Z0365ch+0H21DwjvVXV3Y/Vf7rT6xGmLEKlAQIko6QEVqTGpWBxBCs75FdrH1GeKASDEFhiWDqYqoH/TOVpS+ujd8cPmrH7otIrsobvaX34MrvQuN9zAKuehXz4eXi2fLDn7n6v72ZT33vXo+zE8/ZLklpEXGSHd+/u0fLvoWvWhkzwrkUtUQuBJQI0z1tkOsOG2UwogBuvW3J/tw86+bg5Obu1UP3JJSx+8wCzk4bwhJEFVERG1QM0vDftlvR6wCuaquXDWrHDlm9nDfVCWNqS8DU1SEPaPyaJA6aO5VwzcXR8txCiWnJq/pPqYIoPBjcr7zDue9UJ3zEZp+jxBhouIDACtnndX9wK5GB0QmAqguSNRoGhG01yBtWlVRwqtTfR0/G39VEdVMaNWb/mieaPXajudBL55Xo83nFk6eyxiREbyJJeuviQhFRRgtMzrNzExSMrQkiE4UkEXQ1HJbd67gF1F/U0FEpRlKw1tqeIxJDcukpMmfGxxOXW5ye79KMBH5blKBdwzAbBA0ImkTMeYRG3jYdgDKxTEkKLFBoRYlMCRkl+ydP4sApoCrs/kw9vrPP5GXUsdURQMTiam6OFpdz+5cusBxF6leUUxQBVhc9+RlL8/q2qFruCPEYav6b+rg5ycz2tbHvh+iUzMxM0NKiERU46j3H7v+xZ3Ytxf84/11WHXe7+1kuKKI98fL2v3GL4lyyqqf7OkD//EYn2xfPHn+YDhah+bp51+vP776YL2//y/jw9ftph3HJM0OZn6AqicEBRN2TpRISMj5OGZDiADDnABGW2yJyTmzZq9H4I2OVVYwC29IorJAkrNPv/Qf8VAzuiMF+IL8h/dff/INpaH58x/5dFyZafJeyjObmO2TjgF3xmnx/zmaw2jUD+QhqQgT1zWAQ53UFQvB6W3iRiFzKMChp4feNQIHG5DTUwOaTp0BAHBpl8jdnwCjoGfCIjWGqGqIEmMlQ98PvUTvUDF441BVwZFx1czrOS1UkySxTkQkidBolV9X1f3zJ6/cynecU9+Jl3C4xkOob3CzQrcM3c0Gzznw4f4RJ/+KkFmWgGDGndaVR79HRGRCz6yUVCpkltFSQtfYdWrciHX7K4B0LVhXMqzn1cw6WqwH3ffOnK/62O/29SkH1Ajcg3NGMAKQm+nYrj0ToQnlYx2VwFJCYxMjcpgKLUWnKn7O+gwBCYwq0xr3WKWUpBBvp0jtJlY6fP42AwhuNsJ39IdPBkAMEjU8RmCCPHLMcPL30+bACV0iIFGg3FiJaIZm+jaMhqBRgM+PIr18+L85ehnq8TocDYhocRTo7nb7I3m1dqRJaNaMGrWZ43AlsyXv4njsaewiBz8qe2/2gK27uPKwRL+6s93STaBqImq0j6lq/22aH10t/KvqA3l2ZPKw2z4Y+zC/OH7QRlt18zjrr8rFDbE9TXNcfzj8/Rf/4Em9sT/54fY/TX/nT/7g5fftX3z4N37xCGzs9v2Q9l2HIJ1HEGPU4MgUAYJWTFtYDoVQVHMk1rFDy3TO3kCggeRWZ92Dj/rTCIOwQHj+Y+s+h+v5KyLPSmH29fjJ5enuiCAOf8vsyKVIKHaYiVqs+aEI6wZHJ//2lz+4u9u6ebKKkxrYmAKBKqK4ArVxVkN9r2KMlOncRd7x9nfgXXCtvD8iEGo5S1JSgGmUWUhAJgpSgOfgiAgQelyixKSDpnGIQ58V3QgXhsSOoHHVbNZU7sQ5SwloAwpVA+PZN8/tOIy5mITvX9QtsjKCZUUguNX3jm9DmwdsQEDBVLRMWsUkYJISoiPue24sCTlOehT30Zg5CQTSNKzMUuBxrBFdf8kVqBgiu6en7moI6ctHDDupcX65kOSblPZANkZ0owP0WV2GXPGZiICUIfNMQSHiCCRiyGpmRjft91N2jkRoSJSg1s5hzK1c9p6LxxsPb/gdIGGpy+O7hnJ6uV7ZqKLz0jlQ2nVtSsImrnZBDwHRjBANWABNYszwYLHYCACoEpU87+vn3/9n8wsdVtWW6i0zaBLEk/1sdt3c3TZ9J03N2Br6YP2+nQVr4/yYQMFXVb0DA+1TWu1hPh+s2kDD3Sae7KcIJZdJqDpCo5TCJezS0f30mwYCXkWMqBs5WY0DNVevH+77auQ8h9lXS4Ertt24vYhutbS/+dWr7y/e/NGvH/5nzj/8r3/wq9DUoWGUWvbgd2c9jd1ocVhmBJXwuvP3a4Q8bhwA971ntjjL7a4QCfYg1kdZtGfBz/Y0Rx9jaB9/+/H6y8fD1Yx2Is0duP7Bi0vdPr58475vQ+shWsWD3Dwlg1umHTBVif1/eTKDJ89nCSVWys45hapwl3NLqWGeo0B4c2Cw2Mzcgya58RSk7AQ32YBy6nPGXw4hwqF7cpoy0BVQMQ+7MuTyFpFZAZlrRXROcSZRzUQGiTGJwsYMHTN25a3ms0VgrqvaSd/3u+urKz1dptQknLjDB4/41sadKMu5Je1mPytOViPnAofUwabaxltBATAAVThsTiOYSYosCkwgY0oUHCjhJt5pDGJtsboDLTYYh6Fp9ntokSm8aE7XI/Z7z9Ztgg3BoSpX9ZJQFWNiZhnBNdGbKRWJI5PoAEzQUvRBxdJYshg9uP8iD6pMZs4Z+NCnkEYtmhvvZIilp73w1X9rjeD2I37HALBiIBq2uf0MjGFqFTmQAMtCGiAATQKkpAAmSXx2DFRSMiBTQAI5uvr27/2T8Y1b7Numji1A1KRkIEdDd4zDsutjqH3siZyXbbRHzvZ7bJCGUdljLxRqHASjiMII7N3uehwWixkASG6ZRUDCYd5fhVXaLx7223l7uZptHb2plleM2+rO8Ho1Hy+8X6bFRemrex2Wg0efztft/ev1BW7SM0fzC/f7VXcf5dmbcdggO+a+Xs6cVvfvk0Ub35wljUQKdNX2myXB+TzvJHSxqQDnMkBps3I2LETggyep2i79b9asRCLy8Mqvz3m+vzPXaKNfntPqV/BXs/hpm5q/OvEQAZUYhA95XYF78iQkkAD6F2/+mjt/vZMNuv4IvSfwYZ5FF3lSNzC8FSRBbnnMZ0an+YDvbQKctsYtB5MpYWoTE2ryNIh5FNyYjAmZEgAhEkBW8hUVYDRyWwNyhHBkoiJmKcUxxijXebo3ts6hoXfmGURjTNVq5qzoMFnRObtFXTtgACVHKSyiG15MufxMiL7BMjh3r6moIigoIgERIWvU2YJ3OwDnXAUbDg5U1QVTV8O4Jd7Xc4bmld6f7Wx1rqQWU39/31fW8skOh15r519sGxI8sQ0ABgouydgrWZqL5AEtmAUPoGAABmpqqoQGDqMUmpKU55J77AxNAglWXrEKO3BxzCPFS43f4JZ3uFXOwe+K5N7GAN594f+xrWrF7bNK1ZhB6izlgWqGjKpFmcHYctklDslREqSkFEc/b0DVkDmVWIclApikJH/wd+pth5dHtZlGrONgRGDOCDC4cUe+YumG4CpuW7dEGEaecdJ+DEvXtx6JpUvoFnjZL+Yq/Vk3m8+WgESICmHqPmIAHHBOvwkP9ueuCU0/LHhgeT57HHehjs/t441XW2qeUeShj1qNfUMyqA/gvlrd30rT8ssHAdz9Ny4llX7fzV/D8fDMfxTqejbrf/P1SZSA0dw3dxdPeaglILFzDjnO7E1cOlcYJ4mwu7MRjsu+0r6a9zZaUK10e/9a7ryqtRqhGfvZptreS6+bZ5cfnHZHeyBgjeghHrxayVrJRAEYE4H7T+3vjttvAZ6N810EtISL5fdFiQzITxhA3gU3nrF47KxIlJVbzA5qwTCBugbwVhnQE6Kq2lR2illmACdjEZISKZIAIBKiITGhqk/AkIyL5lwBJQvZXUWjxnEYk2Qkl5mNKHZuvjgOyXNUj6RaGlczpvHujp2OiOUhddNBh1LaOHQ1TSfAADUlS3leiyQPY1UjBWujr1ARVRSACUXA+c3cR/TapgfxnAJ4ojQYp/5usuCl7WheibBnHWxP84iVLfEsLWjvHSGaBek6mgXlIfmGx369XFAyNASJmi7PzhCI2ZTNLFTSD6QRWCOXsnLuQTeLNUW3nBGHh69eHg3bLokY0WSkD2XAMmwPymPITUFTUQczxctuRYTT0y7QAOD/wQfW9mqr6EizBbWiSYGGmFlZkj2MqRrvo8OkLhJqMnaNqiIzGRKDmWmsIdkA7T/+ydAyyiICyeia104HmnFCUR9wHOO8sRhTOvbQtliHBDGGOfYbFzzJGGcI/nI8bTnsx7XXBn7dzT45fe2kn4XrDvs1IKJjdo40GvOmqscNuPGoE0eC4exoZUqMvz5eWxfVAjClSFUtwCZGbcX7hs6aDX2ve3rc7L89nqfkYDziXVp6azZht8WY5t+G149/+qh7nFqWRT/fLrd+9jxcp5NXq25TffBm+Lh5QpenH9t1U18enclxe/IK7p5XTmBx5inERBX04vhqsdhqM5JXcDFyMypponAx64L0axkLX6XE4QeO+yEQAPfl//k/6etmGNSk7/t0PYyb5vu1KhKZeZhwfJ1YcMWz48TvAzMDZ5n6c1Mmyy6XJ5uDYGaEzKSGWQ8NAVCzVyU7kL8BsLDDDYg4D1BQKLoKrhSR4C0nhZC1hdQGTXGMSRMScajDAnLcr3hAIqcWAnzH05UEiZ2NWQ0CDEDwwIK06UzkiNRMk5qYZDHMwdCqygSRAczQORAjikkZhBwKsCUjcw4kKdQ1dKNj6ReulTpo37sj3ycfB3GoFNgMQca0GP3CrntH3MysTdw2DjHyIsxrEGSKkAza1697dqCGGMkSOUwgMiFqBGVxVQycEuNsCfBB97LGi9gNiegwE/mmnVthIgTkdXKHlc6fS/l+ciDgIHcd5i0GBgjuBAmH1O4Dl/irICslEpssSW73R0adOALIBIpGOfifqhcmq60Crc7/+d3UIaLfVba1GjauxTm1tGw5kKSky4q6Husg7Si+djoKzivZd1TNoB9prnP8xfGn3x6Pb5b3e2jePAkfXrbDSgN4N5s1us/vZr0nCFXcVku4hgezC8cCHnZnzdLe+Aft1/dqshmR9YYEhnCp7MmMVYc7u/jFn9U/ftHeNXu2CIiEGGRnM3upx1GSuWXt1yfdy7/3TKTz67atL8L58VYfn91bnz+u+w+2u/57ciZ3YP+r+XY+S5cbx9XTZp7udkOFm3tdTP0CdrDiPp3yYKxOkqgS4yAmpjbWEIm9tKF4K7ox04fdDgAK6v/NF81XX0RjxziL5PqE22Ex3ASGt4/HTTZYMKUJUyxQ0qSLND3iw69T0WyxHLxiup2Iv/Vn30rRJ3z6gB1PB3aCEUrsapjn4NlRroybIACw933JNXI3yY2JmV4T023CvllBDckf2tcPFnPa/Yfb0xz0TEE2gEpSnCB1TaCGyMAOwAwCRKggaooGXPluRHJgDlUdQrJlI/1eyVwwRxIHFkXnZmjQ6Ww1G6PFjkzT2qVkMYVqAvbMTEWUUIvgLDJxnveQV66sXfEDhmDEII2OKZEqEhErvbUmh8N563O7Ofu3c73SXoV5ZGNuCzAEQGeJKXWDZFF5Qs2YYbYEk0QpZQEZIKJhOumFbJm7BlR92YWz101Fl+l/+6jb6kwj8ThKU7fXGJxIoCEEl8bIVdC+tzq4NA5c1eNeta5t38HcQxL0lds+/4S/vjdenoShdleXX1w+ZZs1r+4Bk6cADtFUAZJCcGkEd5YArgftkFEN60f9uHabdubioEiWlobMHsgroI5p5Ou7L7D5k+WnTxa4gL96uDaJUYEv6ka2lR+X50MITrv4sqH1qwX4o6/uLZC++cHLzYle/+iVrOJ4L14Sj7ia7QaXdBzn14Ojfm8yel3CWYTG3FytilcukO3TjBN6BFOHImQKrNGBI3Il5zX4Dr52iQqa33z5H7QDGDogcJTcTDmcb7LU1A1x4yZ/OBRwAA6BIxQ+zNQ2a0Ue+iaXPojSll+8VQl8S1D0Zq7gtMNunAXgQVrsMHEEbv4OIAD1kNseHYAaaqRJJzOPjj70tuaLRrgFcBcxLRUDooMBKGHCAekr96wl8gFVAyNQQNCEypkygaAChGgRyMBUyUEEjzbXlAzAXG81jdGTIJEmuwjQWx1wQBQKPARJhshk85hihTIHMKz9qDEKCo55lczAzCQmpUxhApie243NythFMQPqTT2bNNJFZlUtNpTeOu43cxFug3zvFXnyNdykRjeOBlyvTLt9Cli0f2GiWICZ0qFZHssFqE2yEyagCpYICG0imJjtjoFefvAfw5mlwKoBRl7BZpzvgu+s5qGxOCQK1TBGWtRp64IjHvfbI+/Trq+WodtAaGzszh7p9nTY+oVGuDpzV932741Vu94qYbLOKsyDy9d7qIeNO42JVtZ1LqLRODYPYc8n/Uv6aFBR0BQ7BSIzC4CINeB452pmz2aP4ar93osnd3lMyjWy83W4SvPZRbeb3e03rm5+WX34jdDenz/uuur56auns9lu8/Vf/fVxuzl2jxa7ek48nx11R7qZiW/ai6Pr3ez8wdFX19//N399flUl38SthdTTXHvHgoGjkhCbIZoOHFDMar3Z3G81JWsx5uT/+4cPf/pIicjEDEjUxi4mnwevHCJ+O2yIdw/oITuezMUEG96k9gCQQ30lRlQzTW7aNDhZgHf/8vSGZavj4WdvlYenXB4BKeNcMsUMZbNNE4yKY7bpe9PVH3LW8k8mgxwggMnjT/v15qZzFaDM39VCYyloATGKKBGDpjJCQQZNOJAZOhYdx8obGpiwJg+5RasR3SfnIA41kwKZxQiuqeOwVxWKIzeEezbyDuqiYZBD+5gKs1Kz4mSCrPaUyU0G2SBke0UCjg2aoRc11SS5RWxi/ODt+77lNCZDPGVNOD2Ud9vdy9N3DnHYt1YhMNzmDJf1vAUmQYZc8jwV4IzBoQIYlSBUzYzQP/3d//kYoTYTqMK+qvHicn7qeplB65Zp7M15HDv0PkDsFhXHPmndcNoO1aLqhxQC9217zO0ivjk9OZuffHM182cqpNdpZQ5wRoY7UgQgaAW6SM4u6xnJCexm3vYDV/RyXl1uaTZm6kqNedKASgRVYML6mqpXzae2u89nz5vTC05qakbzTV+tEY5+2dxdtLhcvZlTelOjpdlmVn35EXz7kIcenv7w5NqGr+FO72hEt5SEK9UlOdyGtelxc+fLR69efrT///7418fVuc3dFuzInvFRO/DSR2Uq4BpgIkXWwyGb0L9p4SnvDQy/+eo/vNp+IUqIZISiHi9bXEUkAiwGHbM89uQ8Ed7ZIJhj64lAdwD4bz/y/IOZ8wVlF1n2+cXN5g9xyhDL7xWq4OGtcAKnpv2Db9WpQuET4FTywxICGBbxrLcvjYon5/KzWU0YbrCt914T5bkIEuR7KyKLhPnvCZmJEZgwggCywWAORwrXxIyItq9dUnJKogkU0Ak2NAyIHlI0ysNxEXEY68DCtSJbEu8BEzK6mWNCAlAEMo0J8lAONacAkIv75aihlgEt5RoBPah325FAc2NdYUG/Fem8d9f5YN/6fo4gizF9r1bokrduLy4IYX4gUJgD09+DUgLG8nWipIbIefRk8SAEmtcadHz69/79s3ZOLMJu3AfbDmkdthgwUU3SJQgNxSE1FfSSEEDHHme1xf1QrXCz93MPfS8Lf/5Ivrk/69b6dFt5cZe7/+ZvzPQa/JBqVueJwEBxCNrzOr6CnnjsvEk9dP4OnFeVjTznPaqaYVUhowGCeo29qJrtTp7wJxfqZ9Wvqu9frMCrmkpMkYyx6+cn7kLv0Ktvv0e/rJTq5VePds1jqT8MCu2j+L2fXi+c+CU/oYFtlaKtXQPkYn0cjyEdt/fPPm2udl+0sxTHtAsMOA7jfXu6jrxCc6RRiJQqatG83+tNmevdFyoC2fgnRx/8m1MLI2U1nCQzGFrnS5cb3MLLsr78+8nilJzftIu9f/4ha+0WoiPdRo8Bb078YRvd8igHL3PIGBAA5Z03sWnQe97MhpojAg9F6QMMCvlogqKmDXzrOgAhT8+9tW6H+58W0QAAFcqABzO7aYLL9BgVg4YYTDQBagJHVkXwKODIojAzRCKJjsQjJEPGMRJUVNM1+zqpWW2mRs6N3X7WeCAiapTILbQdlSoInnM4ZgiaUpFjUA0GCKpQIBGYsneDQ47gvMJC2+h4UMmNuchiU3b13ftlwj7esZ+AWuiVt3MFMHCdynZwPlcYDkbaSnPR9NAmXgaD5hZgMgMsNWrCcvgNAJrX/9FPvlmeviEAwzTC7HoXTpvt+byxzi1lIxwCqULjSQmJOKaRqwB9lLqBvkUfrB8gVFefPr/4oW7jw5dPj5YX+2/my2uaJ+Zq6GvteUADQ0I3UnBp0NOdBuy16WLyM4p4ej3US9HGkoAp2FVwao6sY3ShYr369Of1R/vqWtzPlifP1vuxcsZzkt0q7Q2urn/HbfYrunh2uho3xzuUs1M++bb9ZGsalkHtyeOTRd9vLnUEqXe7Edw1PLzaVlhF4f460GK17I9sua83o49bWnb2xj4IF37+asOdGvA+1U6ouk6LoUtDPT21kh7eRAC5f4a/efrDtv0eJAYFMdMAFiP7hEQ4PUycAv3D03/LD+C009AmlQCEfEBvUWpvUm28/ZtFDPZwyLCo7t38dIkYCpZR3qg4K8zjsKEwTMD0QHks4+engKhYsNsYgIEd2s+hfCVrzN/GPvPwpxtDM11XuZ78u3kkmCqAgCGomSEjATghVVDQlI/JWEsyM4UgYpAAIFAST9ZUcbclNOxi8JrQI6gaWqVdaw30oMgWW6oxiQIlKqo6AAYSkzotY4IUGOwgbpRToGm8HiIpmPM9zsdOGtKU8rLhex58mv9w85X3uQA5q8z13QkDKMcVHVJM4DCG7P2p4KYHzKjkEjkwI8YRwRTLxCBTyZ0VeYaYAeD+n3+wXwz7JWvUceTj8331cH7V13VnMz+MbvQehmh0FJOf+27Lw4CzKm4TVDPYR15B6gcIVbrztft0z/XRz7q7drm9+LQ+755+fnHcsiLJaAEQABn7fXNPX8PdfcPtsPTb5oLv+gs7btuRHJgxuICi1FQ0jhGt92womE5/Oj/tKJ40v3w46xZJkKzTAcZwHRezM/5kiDLzF5fLo69a3VOzm+0dXD68/Hr+o29/9fnLk6OXztuxC+H+df9gb2fjybbFq7NZs+m/GHew+dH/6/MdwdHrIVSN1McYl3XgR9+c/2R4vqF97GBxFZchOfd0toiXRAvNKRTwdHYPByvn6E/p0UUzx+tgWELKYbPxvGsOofrt43qTA0xo/00zTSkITrH3ARgo3y8wMROYoiYuh/K2cvKUiL8XhtoB/Ds0MpRgIE+PNgNXMEiZDJ4qMhfkyTJvH7+rClD4DDegmSZl1BuRy1sJzy1jckMYvIFJVJUiEiIb9EBsSEhsBA6lZxyAtfdqiKbqOq2qhH5fMRiC7RoaZR5SvWs1aLLOV2wi5mq365lHL1RRN+i2cd6Z49wGhIZmqkmUTAAQMKV87wecYsq7pg8BmJRCOyihqpACmvJ7bP/3PH35ok33Xz6fIqmCgUxW0VzAcWS2IICEQIB5hAc4TQLEJLkvJLf9qQCagiftnQNVEtEmtU3dD6sewqi8+d9jxG4MPAoCHsUnvobr7SU8Pq+CtjifRYttpMpLD5V0A24E62BjZNe4bnArQUzDSXM931YLpyn8WutRLzan4eX9vn2EV7PBaKRjjIA2Cjfb5cnwcr58tQrXwym0q/OF347ot7tqpR3bAKSt8zAsxOo6GleJqrTX6ld3Z30fFu7Xy0UIQjOMY22aTIT2r4fVcjsGt+vWK108IW4uZ+3y7OpkuGzuhCcnXy/u/aq799M/urgz9Nwsr1bdR17DHbh3nIa4gM1Xv1d/85OfnxwHj2/W47d/mIYnj+3yaOiOTkE+qN0uwU6PYj9A//XJ934av8+yAQhBe6xvcrYcxuP2RK2tdv/28+N/9SO7Pto5FCPGoRo7RK2djlYGgmYLnusy6jLMhaR5EkLMhDSeNJ1uAW0GAMhTfaBsHTZFp1o8tR2IhvlQZe66ZSGYQwd5UR5mnKL3sm3QAASz4nICRAB3E+yUqXkTf9GKmBdb3nbTruZD9wmWd0YPZpwPjxoTqRhSRMqoVB5MDcnMzDR51cxWZ1FHkRhACQkFYVSuqrG3mqMyKiARkTiQqEjJmWEzbpreCDuuKuT5mMCP9YwAQdlGJFfxuVXLvq+WYnFslqFXdja6pmIkJQKlBJLALAFD5jtYBGRUQlPNI4tNCxOYTKnD+lo+Hd9wzX1iJ4SYB1gWi36r/D8FTjDhf1gig4lOjghAJogWbyau5Oft5rve1JdI8FAeBohmhHQjMVXSGBB0ogJsCqoACMqNH0aOhtHtjv8Td93WR7S/Xko1Hza9JVu0148Wv1xzrbFPMYzRPKNCHKUi50+2UserWFcB+941LtlV+Pj84oNv74Z9mu+/jrUbv+bPzzYP1fCr4f4eyjaZ69Yf7758tN5e36nSIzgPq1bt2w840aKOVwtPklTSusUZtNBcG7EKeQk20NG4896r425Lsm+TIs0APSFYNxuu4F4zbt1yeOWbs9OXVPltYIY5zcBD+/VnCT74crjfx5fpy/X8Yj0edfiEjjquMdQNW/SPZl/Ws/teti1/2N/FN8cvtq/mT45/eXx0fuKddXTENZEMRuM8UAXbIV4eJ0XVhsM7TnUM0cYgf4F3X69rhoFADVDFjbsBGaxQcwtlN6PsuVm7OHfLgWaurt+k7K5kbTc5dAaPpqc9IiIaTljley+7HXpmn2+Kh35WlJsMEgxu6ozZ0Pw2bTs7RCjf/a6TR7PpugumSYZlTCLlcXaoGVa7fb0IAFmeBBGcmYmB1QggWZZzQMYUwAxUkQAI0fEIMkbvZgpIYJYMg28EYNCMepIZgCZZWMIatA3I0qMiqDCkMTIjIIFl5rzBNLEJblIygCnzuuW+nc0WKSYYxj6QDGly5jcozG9fn/ebAuwdSPYA9oKbvWkBLIxclnO6Ki29v+8sPCi7JEqUNYtYJbKTTmYQRtp8+h/5LTaVJfC9gI6Dspxu+g/txb0G23FEx92gdYWGDY6MSfra49iOfoYwtLjg1r1crs/o/vlaU22Xl5u7afv8qPn64/D8NZzfffC6Kfh0aGkNm/18dTHgZlFdNGu11XZ/x8fETnrZeUfI7HcDsfaAkdFUiXrECJbkkUaiFOkumIohbIgQzNBJtGaB1/pgf35i+9PNRcPS3Rlh5LlZjQ/PHr4ams286k/a8LRHGWMrlaBPCEqMi79cf+9FeFS3p7aAa7OXsP/0Tz9f9u6zeEK66r99NBtZxtgQGrInSMulH8Js3Y9JrOSyt1HeRU82f/3T07u/uEcJRjYzBJNqt4lMgFmtpxxeBKDM5CYrlQEth5NMEfFWJD8l8jfP97YFAGEEydWqtzbcWzu2jBI9IMYlx58igIILToAe3Prve6/D3jfD3/JDt43NzUYub1DGbSlhTqvtEPYXcDoHVZqHiAKOBTMwAyBNESsboXZlzrWCz6towghR0Y+GyJBSStGTSBbVpILaK1iteeZjTwyiSCGLtUwyGSAIFkehYjQxFaztsKIFA5xuzcPRcg9B8XG8TGQHybC3DvF3MPzfpU2WxS8Zwc2BnqyJ0310lq3ZlF8YAJgDA1O87SFKMSAzTYkKp1RBGMilxLu/+e9dbdKs0f3gmr2L2z6E7uRs9vF+O1/BdgPzBetGQ82JwsIPMcqoZ3W6TsvGBhlx3rTXdFcvK9q5ow791Qu5Y/un9/zwvVfufFYZzbtYyKp1rNz1m9n3ri+a+Ta6ffto3DadnnYSQn/N94f/H2F/1mvJsqSJYTa4e0SscU+5M/NknunOt6q6urqqG6omKbbUlASJakmQnigBAgjwRwnQP+ALIVASoAe1SIEtsVvd7Km66tY9dzhzTntcY0S4u5npwSPWXjvPOcUA7r375l5r7RUebuZmn332GYFIUqunkOlCWk+EQGQWfdjd+kV9mxe2lbmpGhLilECiAPZ7WNT7ROf5Oj1Lm8mv2fVaQwo9+4wOVvoWJ/1PqvXyopv55colf3Ny6+RVZI9Vpevkvr2+ZvvIdtbSk/XfoiBn++VrOHk9u+d+D82EMOUQyQRNULehUWwWoVZNiTy8h/IiIjT06/3fTXGWI1pmBFPA3Pbg0GikuA1GBwDFeQsewL2yycWA6AHsy2VDHHUNwsH8ERGZSVUM3+eeHTsCPASGRICHlBMB0NwQARwcwHBXAgiH0T+PPvcQ7ePfZP84gg9D9nw4Ec1Kud8GhHM8B4cqoIDBoA1UcMBhtSIAIaJlJDRViiWAsYwAgAmzZweWFMyEicXnticACEOInRAATKEl1h44bF1FhmZVK6bsJoNEuQGSpVSqfzA6xvJVR2Lm6CMNACCiTzqv79vnsN4/0JyPL/s+GIbhcWQ3Piw8+IbHl7vba+koxwK10uCUypBKfBBxHRKMMi5ThYb+YWXMFDRGav/jP7tSCbo3CBanKbbJmezrsN03k26TaDrn/daqieu7ELp+t9MwdX2OVtXYRfOVa1sM2Tzt9WR9Am+u/QK+Tj+57j+6y68vTvsffXK/SAhgatad6dft6WL9bon0ou9e7vc+XM0ut23Adt1PMQCwCKCIRIK4PtMMBLmvFA2dD+/EScyQkxoSmdUIiMB8k6spbnTBv6nPr6cXX6/Oe6BqG2ILHhiM530Dt9W2oqw7D5MgFJYBckaEmPbx1b/P/+RPXQpvqiq9qp7s1i+v9Gd9/0d4+1EXzr96Ik1MTrHemYGJAvZkfap4S86ROxZuH55dJ7a8/rdPLj+bT2JqckKHYoS7ROwMWW04/QxHIskxfo6PejqPeR04So0c7ZLR0PDogmMs8dE1svYNgMgOANa4EfHopP6enfoD11Be+sEU4EB4gBG1NgQzPUIHbcyDS/2gyKorGICJcglvoRqoyN7MGIlAoNIs1TDr1jJQaRPKRk6KRqE5xkkXiQCpRyI11dIbiQCWDYjAYSJEsKxm7DwNyYoRoGSBA7V6TGWG5Rm6rx+Sn65O1/uzdLu+dklydN+3giPGenyNDubxC384ZXD3gsiayrfEh8CpjJLlwwlBwwMdWkpNABRMJIaKUKOG6j/54GvQSRZVdpbj2mqO4tOT+80H4d5tm1kV+z41tY+7ZG7Fghwcul2ehpjZhcp2Lc2tXeCb+eXdIt5cVcvtV/nHb93F633/vHGbzXbTExETI6Bu9tMn6csqTXgjPlfW6rMJiLl8nxd+nYEco3PY8wlnN1PJxpyVsO+rZ9DaHO7jJAiXHaE7QwMkwhOfJTBfT08IqHsXKM5QdzNt+sQWTeKsn1Y0r1pdZMvzbbM/y5fb2gRza9b+oumCve4xuwULvP3yZPfu49tmTQ6sO7s+J+g79hBbBgM1IFJM2XosQkeg30kBDFE/3/7J9uaXLiFY6dRS24kjgNKVbYdwvjTTmJVxYoAAaegRtUJ9eTDQAQV82Bh4FDgCqpaGa4HHbPODmxgqUkcpwKFqPLQeDfsbj3PdH8QAjnYyfn8IUD6GxhRhIDQ/RCQlJUc0UiSSMRYeKoxjbjuCqwJqBgRsZoqIPhmBWMkDDUARGBChSomo3JEYMmVBTzJk2laUexDBQt9jcNo2EiMSwQ6IuKK+oUGkzDTnrCNmBwMT+7DodhSwAAJwBTuq2v3JW8XJbZw+itSOFu39dRy7cvXRq4Y/8T3gitsxCFkmfBBSMoBRW+5okMigOqHsJItROXhMNRFpxPnyf1e9Nqtzdi5rRtzYrNomqutvZx9v0/RqUQfZJzcnjnupgmATUrLYUfQV9OpChbsWWDcv1zcXk+3Uvb6pJqur7qe/fT5/E4UX3PW/vnpxskEkIqL5VXwy3W6rk3uim6a5cs0dP21vnpzkVJ1MjFTE+kwuG2cQDgpszjk2SVBP0m6B+4Q+SIcIJmrBAECj+Io7DbbpXqTdE/kKmhjAcr1tTrp9wJ5tw6sckbSdxEqsD866LnfUYkV15WP1Nvw9XcyT7nbtfLp7Ovv2w5C//smb9GyzaG8+vHc8ZXWTFgEQ1RDJsmfhGgtbBd9PASj7+989vfziZNplEvWQgSj30dCUCFkVAGhMnNGGThIccTosAajiwLA7sqfjXLv81bF7HIGskNcOtndkhuUHPKBY9kAbBxtKgTrGII934Q8GAvaAXZWS83dfcmh0OD4NR/JvablHKtUQIn0IeM1smARbBosbEGGyIvEphCBGhGg9OtOxcFlmEJc4XQFZuDTttxERk7kS/jCNHkWMiIZCrpkgMGVyB8wdVXPKIkKPQv3Czn2IvR5CtLomN3MrPtkLCjg9is8er9p719Adad992ZDCP3yOgQE48Sk7y2OqNzKrhgHMeiBsDIMdTByRCpINcVoN4kDnL/7RlSkuoa01mXP9Hp+e7tahwetTaqv9nZ8RYuUdq3Wtn7t+PsFdVMkwnWAHJE7bFS/k/oOv6Dl2gT/TU3/9yn38u4/dOreL593kn+Gf2276QnPOqnK9n5/kG3weP0jpBXULvG0uduua0ut04dc6wWxkRuHqxN233joJpCmQ+Z6XVatTvm4XTb91mRgxEPaAAJZiiGgs+/XZTapTn/aLfr5CXn5BL3IfiOp4GZvZ9dldHcM7FbpC32xO9w3NjUR66TenPe6WQH4RN093d7/4YtY2b/e/t/UiNL/64N/O5TTcX82fDPA8YK+aa+gZiICOuO3jFRvxV1//Ea5+xjsNGULK6Eg7QRAitEEOHEdmPxSWAI698WP2Z4igRocDQ4f+8YN8+ODghw2CLGJoZcN+X/g5hPs2xCtFTwZHLNEeQtrBrGV4ww9hAOOnjlWAH/IU44k+OLghIkXIiGBFFbm01x4gNRvASYVCqzJDREY1zaqYPIOqmbJkN8FYlpOQRcyQIBs5E6XSGi/myNQyUjoEQaYGBvuqQkkUWucryVkmLkWgqtJR6l1zFtVhRCmMJbqHoOlwg+PjMG5073tPdytuugHoefwkvmcRfYkRH7TlHh6vwSMHUFw3/h89ZqOHHqMy3VfLByCAjKOECATIlNByTEBEPU22m6afo/rql/9g3Ws9wa4POVnd31XLSb6PDcfaYe7Nh8nd7fITuFHdxmZGfVcRWYpi8zqtYOG703d3i/m9PLuJJ5O902+E/P3batGe1NfX85NQfxugOjGd9x+a1eLCr58s9/cJ7WKnk8rMvZnPXcy+/vW8FiVLzplwrd0sW2BTkJR3Z/RqAXcfhjsXFp+HyQT7zAApYpC2MlC1UN27rcx23XnSSbi/zRZMlWC3zsiI7F2lauQCJ2JUSWLCnXKHQZEBQpM8mRWBQGKSRKIAktOEtVWncQ9YNU0gGchYeWRdvfdgx/ntkCr6zzf/879YLmfQqyNhE+btJhEjElIqRHrsyRGoSkWMIFJ0QQxhVGx8FO3bwK0HMG+lLiZDnz+DKrAbJAZFx5NiBJF02POjfoDDgShKzAg6ykQf/hQrsmX0+b37G1v+y4l1aNYthKEjzIBVEUE0DO8b/324QeP3WK82OAVWQ4acSUXUAOJYDSjqW8iQldkSAxAjWkQEQ6JEBGrE2XyQnfqgRoyqobPaxUwaKAuTUVYOLCkFMiCNUxw65VAFPGgXHLqT0wkiGpHmzu1fvekApdRmzdkh2gczM1cIdaaYwSVtwoTjS/xsxpZ3ux45ISGaDvMO8LAaQ7yHgKiK7mHG4ECFGAfbwPBiGZ/j8DnufU9LBQp8aOoo58vIN0dBVDUD6Jbpq+r0zq9PkP+Xf/xXNXrOKWXM1ezb9uLV7G0OU+3N5ygYHN3O5t235ibf0nym2+yAqO+kqm0vgUHc7/MZXZ+5v/7Auyyyv3sy//L1ebUl/w2e04I+U/20uV4sr64/mrTgdp+f0LaluQdAiykKz6u2r6fd788mPgtZ5N6C3lnVGgIo8v40XdzmP/78+o/30cWzq02QTMqckBt2GnKAfSK0Sl7qG/e0R+lyL2o9ghpXC0OTbFm9ZlFkrA2Q/IQ7zt55a3sEMUxJiMCwyMOogjMPhGCaHBAGzCtFFzxjNhM1NXo/XHvYzWhgFvrJv3v3y5VbBBBiBFBjizEPj1V1cACEplBEJgtSMNghHSLnB9uz8QcoD7uclDgYFhEgFJVhGMOIwSAf4pMx3oCxHjhuSBocytHfe2SgauMrDaEMHnj4lKPk50gGvOy7gW10lFM8SpW+u4RmiFiO/KNMdnyLII6ZRqFKHDh4pa8JSVusTAwRBMx0wGxJRRAkT0FA1CAqAQWukhgHZ5pKpcV8qc8UhBIkg0oWRRiJVTqSJcvtDXGTjmU29JyddYRqOYsOSOPwrB/tkqNbw9FBI+BDm3Rxt3ZY5cfvcQNoelhJGnKk/PABeEAGENCjmYKhhxs4tW2ws+uX//vTv5gpsXWZqnbmv5xWn3+wtyqo+EZTxDpAomqC9yyvK1dT10JgjdF8CO0eZ76XarpcdZft26fgPa1v7AP96/6FrcPZO7X5Wf/OFh/l2w/0WzzNW4N9rk/TTsLcZ5mxk12nM4spQGqbLio40Jo4ZEfNPaCkRD5cL1uZXqdnSusT/yq9QJQ+UTQjrz2QZM1cO+0xpq6G7hRBFVk9gRjVFQCI6oCumMBWRJAcz/vVCW2rPCUUBcs+GaY+hUxkCs5nJkNEdi6rZkvnooqajLBArrE0eB507EdLHENYcfDv8qdf8dwkM5mAIOWuS9VgcqNBD6MwyaBM1qThTMXxUx8+f/yPAQAqEgLooU1GmcbGO0AzG/gExz6jhPyDk1I8kNIGJqJZ4bIfbTN8jAUc/n4hmePBBB6OnaPXHzuY42RkHHP68LnHFyIoDnX+Apw+dAUCAKgjHLmGOpY/AYBAAdGUKXduCp0RgSmiApoolO5BVM2Dk61QRY1BgQiRh/KqKakheU+EUMi0lmLWgwfDkfKEheFfJNtMBwIFsedurlsHoFkOqj9HoOfx6hz/w5B84fFroJAxh6LBEUYENojC4hEX3PB9zQE7uJHS+UhsCqsTbX2Uxeqzf/C/4XfLHCSbUjWh9O2i63564+dun+sKthC8hxj1amp+wTKR/b26ymHX0qTSNoNzIOp+9js53a5nyzbEzSY6/9dwYevl5N1uGSbp2+5HZ1t/0e7z+pe01dDWJ223R2433RQ1KzYEWtf5Dl70mgUVUj/Fe5jQbq6AOaOnGOO0/+rTi6/CpNm8ez4z1RqY1wksRwi2SW4Scj9zN+0Tt1tms7jrSpcjIKEiEDAiGgc1ADWTnFNfrV9X8M1MTsF5TDypWq1gn30HgCgZEhOoEaFDcAEVsAx5zkOCOrZlfMc3D5hwnL/65lPYnaNkUzNlI7C2BywSIkP33mHyixUy3jglejhr7ft8/2Aoj+3qwUpKpooyjIfWEjoeqII2NgeXlz1M7hrB7ONNeXT2EIwtg8NfOeS1ePjKaHA8yQbRkGg4hf3hjceH4XcvNSQY9C3H7sPxtg3BMpGWcZk2qAQgGICCKjKYOjOCTFy0eHQg6RJqiQ9cSwQGRJVJQQGqACn5ypGpmWQn4rkK3gCIkBVSSqVyNgwHHVcYSsJD49obACA5VGug9UBZFYjowAE+OiLe5/Y9BEgPq3/cGHr8E4KhGZgr/vXIrw45wzAtFrSgfzZ6FQVTU9VmE8LdWfP59D/9U9liDKgZEVHdFye9nt2f5rS3SdOvoa4px2yVKOzScrFnbXlexzZRCJQ6qr2kDP2XETZxPmkbun5dnWw/s8t2dwbfxDM6TV/wz8Ke53y/wmp1MVnLnFbBnOPUxam0HTTz5rZqdNdOF1lzMjRM1ndIsj1Lxowg6eXbpb19cb6q+2c3v/8grFQouCyzaCyE1b5Qmm3at+YM3J5J0AUUVWYEEwMAU/OAyDAgcFnEzTeMdbVbxzBJ2+o8bmTehOCnSRiyABCpgllMaJTIBAmJGMVUxXQozdixltujxwz079LPvq3OewMyAQRGTUl56L6zh+dGOKj+K0LJxglMH7jf3//5Ywo/tvLhUNsmewj+Du8zK2j691yHKlbhjhzs197v2nv44w8lBxioaod84fhPvCcqNFzDIJQf9AAZS3ln7F0cI4DByDAjiRLBYb4AaSETqpKSGQjW2lMwUWLMuSkN0paQUI1cT4SiahmQARGzZQRLUsoMWvoMHRVMDZFMUy7HuwEMJ37BetTAhunMRVMbEMlZck0vwVRStuI48Pj5fWf9iz+w9yc/HTvf77vco6wCylPBB641FF7l0NFYFh6JDPy2m07X4dN/9Kl7HWe2nmZ0lLeb65dvZheva991fuG2PTuPqRf2k1h52t67dDqbRJe6fT1ljeqhwjYS5dXlavMs7Bt8u17SZkdnaz2Xb/PTUG/e0svFlp9dv5rV+wllm1YpmTNmzNXEHIE62e193HWe1myiiA4XUWuSfGKSiU2h/pb36yeX61wv794+e3IbNGlOfctiAoTa+zrkhPXqqp5fW3VdeUfgatwVEE+mBogDYGcIIAKI6JycMcCz2hw7J2Cqcd/WRFz3VgdkRgBiIAwmOUe1CgkAeMzcoTQrf+dEHrYHorv67Wnz7qPpCpkGkCntlUMB/o+micIQV5YnhqRFpaFY2/fugWLiI9g4ZImlmHaYFl7m2BoUARg14DGEPc4wAOBQFhwS9XH/ZACzB0jp8H0HtemS2I5RwRHy9AD2EZiVtuXjmvdA9rMjhza8c3gfEZqajmq7Zo9TAM+AVLSLByCgJDyjyqlkZsjkQ5YRk1QANUEgUabADGaK2RySAlWp9w3FvmR+gGToGNSkKCypScpG5TwdIqpD+GTD/SMMQx2RHcY594AmKWUFfXCYB2t9/wGUlX844Q/rMsZpY6o4/mEDNHSIxws/5JL2eEGHLAwNwEiBQJXenBHK+uX/+sPfdiczYkzKqDHJ9OuP9NtTf4f1tNlt+cS0y+a8b1O3PJ+uzcwv2n2fqsprzC6g9b0x6Qevmw83cHIf34XF7ZU/2/rF+quTZ9sU7uHD+X5y+m3PN08vv3jWt7XteLlPhJrYbRtfKbVdY112QTtFBODg94YI6LFOAibA9Pp04z+4uX2xq97yixVDVQORpB2CIeVojeuzx9T6ZdNjlZPF+3sSuRQgU8M7AyIdp9YS+MKUREl1VC9TP0MMDZBfhqRqFnvrPYQazKAgOK5BJNiUaXoYh6fkhxztGLQpyTEU+PXfdH/8JsxjOVkAlaxrNbgyi8FwVNGlQ5RWTmICLd0NwxMcn+fh8cOI6xUvMGIGgEAwRhdmQINbGcYqwCgOh4ddBwAD/jBgCaUb6eHvPYoAHv5dxxjDwKC0wwGW73N0IY09bSPQMBh4+bqHCUDvX4igpoamqmKPYwpDsAoE2KHqUFwb8twhgCGKYAk8JEAnahwKbUjEiwKCgAMxNQQvYJqVUBEVwImaoIIpkuPi7sxUVXPKSiYDM7M4HYRR/GR46oOAKBLzfmJ7UhjUAHVUWX6c9T9aK8QypwvwCNQbjncdc34YC4LD+937H0SmekwfHePAAYaxbKCqKtNsm8n/7M/oN4uTKD1UQKg5C6aPttt5yPE0wKqvOVaxt6pGW6a7q066ym43U0iJFpazsqOwa8UR0ZtadqdyJTfkvr2eTN8tpvc3F5O20i9PfiGb6eL3EJvL3auwntrdxIV97ajWHifsJWJVV9VeptxrkxE0Z8S7E97anHYtEIP5Ov7yq9PnG6n21e/95FeTs3cTr0oIM7YEIP1JE1d82r3Jz/LdArYTpxGJNH+OPgBWk0tRA0vSmxmSYdFIEfCrOshezlY1RJ7lTWhmqmACXbaczaMKAhmwmZgCMTGoEalKTiLaQ+GSHVKAIRQfcjzs/7L6+P/31G0mKTMZqDLEyMwZC9gzxhJQwNuRB2IqaoAijAd9rWFDDL7lYEhFjnqsHxkS4ggblEjQwAAiIhLRI+9RcsqRQFb+DA/jyX9Iq2vEAEooPhxOdhz42+CYxr9TTIUHIznCqvC7vLYjawBTVQQ1kfG0HW+q3HgSQpQS6jz4TiMCQ+LsNblKuy44idD4MuNM0zQKkqmQisGgnAgGdD+pdKM+OBA0M8vkiKnMWEYAE8liQ7Q11uABStmdShby8N0N0VulfZE7QMRRcXFM+w4gwMMNj4e8jdWC8XmOOMDhNY9WCf/TAUYa66ow8jcQS85rwx0OzqRtvPRdTlivJ//R34o7QgIwBd85W6Wgs2yeDdhJyuYqv0saaur7xZTbfc5x6anfSTPtw6Zf+uh362W4Wcy+npIL2N9va/6mfd5tXqZ37WJhql/84uVm+5y/3DYBJe93P1pidpwNgJCcc2yqWdXchPscnHEWJQRVMWMwC1nZYeqrTXVCGdFd0YIAdmkm9zqTO3gZ7xfWTS5feef3r/w0KWvPddJ2z5VFMpMkokDOBe+5VhER0XZosfI4HpVDYbvsIR6faaHmmkFJqmEMSXOhmltEgtgbJUNPhuwNGVU0zyRS1sU//X/92ZPf/HGCnpgJAcT6vThnRMRoZQgAlkNNZQgLDAzUMaggGiGoAQoWSmDRdVBzJUy3QWlnePZFNhqRiQDBjigKXEpUI3CAqFr4c+Vt6EtP8sG8oYyUGKdfj8oyI9r2ELozk6oaD+5kBKps/DtHVv7o7BtkqoZx4AeTGl/DWZEsZVQR1VJ2QzNFBZJsPKyHeSxjS3i4kb5ILFIENCBmUSVPegh7yAzJYl6YqhmCEKqAO4wBzKVeZ7610xdLr4BGoEn71dt32WM8pNZakhQdcAynpUCaA2UITZXrp9e3jYRNu4vkB10jPG7PH/53IECNq+aPXAwYFIwDH/EDH7kBNy7eUIcZX4CD73gI/Qbi05Nd64JmWvzVx//bTzcRB9jCVot1f7Jvn+7Qkajzsc9+6vLWgBg1tdp7iUaNyzFBFaC6rk67MPmanq7vLvovFic98v5WFvqr8w++dC/uut2z83sHn/296Tfwkfxeajbpu+32/3xxfn4xX55GJtROLJOvQsV46/3EpN2eGCBYlqkIEJiSExDNkidTv0t1/TpPQMXNIvIJsgbc2TR21fSrVNum9Wc2kR5m1vN+ZxRVEIgDkYGqSm+GQL5yAZ9pTimJpmFpKwNVNatBi2AyookBeijokx8WVsrJbgiWsjnfrOOkChqSZTFEXQMYsHMuZVIIm8+X4WreJUI0ETMLkrKhAy71IypcfcNM5BgG4ioiptKGftgo9CgVOGhwDYY3hopjwjcGIg9YEJXSHx6+/2DpYAAPuhHjIEGDUdt7EJZGsbGPDx9jEqVG9zfhVI927XdeiEd/9+gaeiKOOEYHCoABALghzykplGEe1qpEVGoO0dRE3JBz+wGrEUAwI9cVe0RBJlRQHXgKpVCM5p2rSfDA9MGCB8hBF+HQaGXHkEdxbIyWWSJSNrHCI3lf/vthXQr8N1KvdXAA41Msz3lgW+B71g+DAxhWqaAQh08uycSg6QJCRXfiLlQpC/Sf/a/+3mQboUmll9jmbyfLm+rptgwiQumVg4McQyDsRevaoqmFSrse64Cxm4LM8i3MjKfI82VXy82eabc5caumatu7n/v9/PX+T5evT06v9mH9JHddTEl/0n77ufTh7Mn87GIxqZElrpMpPulWvZ+HpSE7R2Crok1BTM7AfNOn7V6o20iwlnqaQYs1R5jEirvt7CT3nvpND6JJLLAQgxKLOjbVZMVAyBOKaUqgKuS89xWxmYiIbRHKCg3RrKIjIsIeABkJIxTqbRoTX1LZJ/Y4oRs+5Q2HKhtrZLIsyA5SbDK533/1E//mZRe9EhEjgKU+O+fRWS792ENDrmdC1YFYVAwSiUQRycgKw+6w0x46+G1kpNoDEPiQ7x1tFzki6JXfHugBiEh4sP3yscOpZFoYjUO76+Hdj7bwcfT73V3+YLUP5KOjCx+96vhtZCaGGeBRRjxeaiW+UCpcgHE6Lw5BDSMCqpbJQiNECAiZGMzQpQJBFpBPFR2MvZMGhoYZQkDNZSywIWlKYvrQpDPE3SUlGSpvCAAEao7RtEodkYnIgUWB3wfmPtSQD1yqR6tzTDd6/70A8MAEHNFgewjFhszu8NcRzczvoar3yf4X/97kJoRdNjVE0NzP234h9xNKghXFvdYVtBEr9tDvbTrDfURnxCt1IUCM8US7vN4t8c6FrU3FUrfXsH/rn77tP9x88+Qk8PYtfvjki5f1pt24p5B2XUbX0PKiqnd38u6rLob5+fx0/uTJ1Em+Y6R8l+OTwsHFRg1NDRISmDGRM3MVxCXu4gQ6thaUe9SuRm3m2J1bijTRttrIQu+0kjL7EtUMHBHGYWcPbWawsJx7Ea3Ih6pxdKkppqzWFXPAAGaSwSoTSVZm1yGULjwwAAVkLzn1tes6bDpn1tKECR2agAohIPr+r/BciLKQIDMQQkqCzpXtaTqQNtDAIQ1CriXX8OV3glhMkMeDdig8j9hOLggiDszBkRF3QAQPWMGwiwgK8UeQELSUnYYcBAYWwgj7IaBZKsm3FDeFg7d51IY85AhgY0/zY2r8YPaH4OQHrvd+Z4ggagd+xPsuQgtmijqci0PIU1IoQ0hEYEagpdXY4gERBTNDdAYGqiON8hCgCAISEkYswT0iIKFp7qMiEqWDvZWFoeIvDnEMggE7Atd0sULLpmqgxIf7eO+ygUg2rlnBNIZp3XDAacrifsdBALiHsHD8YsNDGlb10CVWPJ3VXZisrp7/yX/45spFP90GQDTNqfPCDEbmgCyrVYH7LjeN5JzIe1h11gTTPoeKJWU9Xc3rV3CebJZ01semfrNr9Hrnz9/Ck/XNZDrX27vmWXjzLNxe4YTyfrdPgIZBu1VTn9ALZunW29XvRPz04mL2SbUIJEnuAABMoWFmYkYpElHc1lXc5GaR2LMn4+RVFKHHuHPn7Xrh4zbXNXR+ql40463jJA4SmxogoRs4GgLIhAB7IA6EmM36vYhO0bkw90ya+76PtkMiLNNz2dGwr47paAo8bbKkPV+0e1lk3d7pcgIbIgqNpoq8Ebz7/Qu/WuycCgOIAAAlrGpnqqZmYqMwBUQkQAzUF0ymVN4QadALxILlD7k42jjtuWj6DbgwmgEN9k+PMupRsw8OuwOJUbE0GQ+g5bBVhsOjHNlqSASqP4zWw+HrHT4Cv7vPYeSlfPf9D5sc8JitfAj77chGB7Mz47KnMQ7fHg8YBQ5JtAAg8iCIfYDOEQc68xBe11DChTS04RY/pYgAyPxAi9KUgAAOSXwZB/xQgB9wXytldrKJ3wIpJBUFMGL9IfdXhIXHiUIj7cfGEP7Bmw+N5u9dh/Hw4+lAA1Bp490OTgNL869uJnDTfvLnf/zlvN4l4zoTguSs09vl7M7PV6HxqRPX+NxlDgGki37u4m2HwXPuUxVYuuyakFZWkRK3s8l+XvdX+z7HlidbXqS30w9kr7fVT/L9s9lnMuvq+nXMGkiibRYLtKwoKADTUycgfXv/TdxXs8XJ02fLp8wkOdktMagCVOwICACTCaJKDKcmnWfwksCZ8KRtM6Qu6Z663NhuBltb5s1uxqiGgGYiakhGRMxIZqBoGkAtm4EQsSfEzmK/BQN2vpqcOhJNsetzjgCARsCIQIQoQ1XLp2TEpC6Zr6ZqRg2YR8GcYeIZFb3w/vf5ad+fbFEhjyCT+boCUQUDlVKxKZYgAMhkUDpaxcDGCbKDCZkZgDtYQnlXXXQxjnoGcIB77JFBPWzl8aAuB+fhgLBDdasoxYyEQmICHKdaHhv5uH+/b08/suLxHPrvwQkef9JgC4oDyHD0aeMrEBCA8eFne6DkoBvrFMMCFqaeAhf9VTmcsKYKR/QoVLIMCjV679gKcdxEQRRRlUdHKEBghRA0nN82BlGEhDiFSCiUZMgSDgX+7793GOi9WKiPxZbx2P5/4N1uCCDGEVSHl9Dgkg/jh4tqNfl+g3/n31+807iuX15dvxBEiRkwfrhdne3eXirmPnNwEiPVXmNnVeW076raayuKNeSkHMImrOVpXC8221B1lX937+VW5i52l/Hd7NJp/Orpj+7sQ/jryTa9uPl8vldiVMY/7N9G837aUUDRlBCobs4BRWN3/U0Cbk5Ozs6XzUskTSpwywkBAU/66EJlEXumaC56RY+ITqqz23ay3DsQ1k3uE8POTbCtC1fFJWRPTLhXVclgbEjEQDJQIyswk2QwVOQg5tyt1GxK3s9OvROVFGOS/fCA3PiAiETEIFbWu2laMU2XIDFPrE/Os2H24q5+/yxsXA4mlJCIkTCTrzmJqlnhEg4SNoQIaqWciISYEUERx2a5wYgeuufMFEpGikg28j8QBn8yQvmHjSKFejjwBQDVrOzpsj1w3L3juwc5/KKHaUWf5JiR+/DJw0C8H0gBxi9vP+ADxtphyV+PIhZVQ1IlNStjdR6/Lw+8Ii5wAOZyfKMcPFTJ0WlgPR+6D0dxweH5RzMAFOABA1BQBM2Gta8cDrhKoQEAmj1wpnEYwjqmIFB8o3IZy13F3pmQpAwOsioYPTq/xx+puFU4VlI0eEgJRhTyIVJ6fDkYY4dScRmzMxxRgMIBpwICIQLGi7/1c3/dLbsJvHJPt0wmSciFu7re0jNouk2qppw7Zc+WUz+b476VKtS03vKkopzUO4a0mky2MO/yT3d3T7e/9aeb3tfY9h++Xp08wzZ88aPTO7qQb/Nm5r7J9R2KKiiGdHODC+v3RWcVOaEigFnF0xMGVes3X/y7jG46OT8/O100PxHV1Ce5hkpbrThsWq+TsHMRPAqGdFNd7rbITebGGaSqS5m2+82slwAJfAVmktUClZgqq1mOaoxEBFgUc5yZg6KihEiEoLCHIrA+JR/qmQPS1MeYdDvE5ZGcUzHDyJXcYe1yn0wxaPDJyNRlNly9+7OUpt3ZXrEyADVFQMdkZmbFCcSiSQXJOQYAS2pAzpMSmhmjDujOiPEdcrvy3DVCcRgD/2P87SFXedhoNE4DKxiAmWkhv+BIPDlEEKWgONSgh0rlcP6PikcPFvz+lrTv8wAwkAa+8+oheQcFtGMPgKBACMolxxgzn4PxjMWBIuIBKEhUCu7lsBMiRLWhmoCoA8cCTBEJlEuQNIzUVh2VeAwZgVi3jA4B2bCQtWJMwABHw0zNpNBJhgh9/G5UEqw2koq3rMggKgfY9vD+R4tz+L8EB2yjrM5ADh66O78Lov5nMFI9hshBRa3UdQxgnB5rpnWfGk3+6pM/+UTvcZ5LYGW+24sDajKzCYWwzdAE7ZOyd6gpT5y1O20m3LfZVcGlW56Bt1W7CFFZdi8TUNxEF+92jVuHF19CuIQov/+7e51M4t228iR93/fg2N33Hyz/G3YOCVGHMHVofxzSUiZmJpSUN91q04Hzl9Pzy4tl4z2YxCiShgF0ToEcqHhiAgPdM4GImDlLMfW9I4iN3nCVTzcTValMEFBBYNLOW7evenEW1bmE7Ce2mqohgBmxRPB0KPf0AIqKOnW+qauKo8S276LszAYdYjBA5h4LRbAadgNv5nzzX6S/e1uKeejU0KGqrxuXomDSMQo1EQXkMmDDPBASjWlBeaqIAEpoAkTi2bI6BylzobwXEwil1wZY1Ygdjx4ArdBQUZUIRfxxxo0ApIKEZo54SH8VCVVpwE50zK7RrAAHYkh4JDV3sGMDAMiDrxjLhwVy+D5UoHyPol0JSGrIqKpYUA82ExUxMVMVHT5PNeOotGADuRmJBxqlqRkNTT4qioxgQkxgYrUYksZYARggEyUlEEMgddzrJIkLIMqUhQJJhtmTpxMgxszUo+zffL32qCDj/QzzgUCGbMuJGKEZMla1uNPZ29Zp7vt7LKboHtb9sAB4tD7DeFgcihtoDNkY8iBIhjxwfPLo+KzkSM6GuE2HR1Ae2/DQyjKjGlJ9P2lWof7mT//g8k7O+S5IJo+S84bq7Oses/mKZN9zHSBm4DrIPrpQx32PdUUas59XcdefdHJ6c30+3fce+/BiM6P7jWpcXf+U/+KDF//UP/nRiuWLP8jB+/VtboKl2IqFvt7dNj+R/++AF4/fbbj9h2VRU0JAd8afQuqTfHv/WQ+h8R8unlyeNoHq3LV9VjBQTarqAIiZ6DTnDOx536oLYmyQauUPv77NflupRzGXOJFStffv5q0Hx4RslCpzt61ZC0BMBFHJIw4LrGAVlPaxPtqdmcE5+3DqPXPc7/e7NgmiqRnUoAC+ph7UwNT6IOkv8MVuPA3FAISAgpe9OugaYVFVZTMVA0QFMFF1oCBjMI9Q+HsIwKVahSQGaiqIHkHRYWGilVAeEJAID/4fhiFRCFB65GCgDTyctKKGyA9HixqCqSmNoNyo4FckpM2NMe8PXO4Qoxx2NBh89+Q6WMEAEljBZo7cgz1kHEcXDfyAjIjI5b5B1cYsvhRGFQampzo0QUPs1ZCRRjFgywAZ2TFAhKIeOuBwBKgm6phABSkoqYGpmmlpKX1cXh3CmkNwZuIIwPkuCplq/n6U5HvW4f1lseFQLKv43ijXo/U2HOHC8rWGk9XGmK6MKTO+W/R5dhP+4S8aJeucK2stsZ/uuvO8mfXEjjQm5z10HYaKtE/gqtS2UNeUu0yBpdtz1/B1v5QuaMRJkJluNgl2K/74uvt5/Ivzs/mb2eu3f/LkruJup818l7o2ovfQ9cvz5j47BAOlQ/kU4eABShG3dE+SmJFntTMC67fb+FW3bd38bH66fPr0JID0OWXFwNfsXFZRJGRgp45dyDFS4I7u4embpWjbdyFNtI6T3STfsG8SJ0tMagzSaKULqagF0AwGlJHL9GckdIhpqKAZEhIivkVCAoIJhur0WcCt5r7dt9KqAhRjNQSC2R70Sz5Zj+2vQ4GIgTXzRPpOVQFU+0HkzgxQTVWJiUqgWlQkDuUoNEAizYCAIoiORAdFWyTqB8DQRplbLCxBG5k0RJaN+AjBK+KZZfnRxjSgKOMNKCGM+xqNCMsw3FJq/0GDLrA2HPQMCgQGP1RFODaAA/tgMIHiBI5oBvbwGz+4Nqc2APojGljOQSl/WckUho1mQuxiYU4LVdhn6WP/vFmnmjo2kyKMVqqjLgQ2NWRVVNKcpPwOx4GJQypUQnMa55cjKrIZubteWTWnIeX6QYd5lDI9wAAjxfqg6j0c83ZcJCmXG8/68S2FTWYHhliBPxGabbDr5Z/+0t/lKWxhCmSQpY/T1aK+98tVqCrZRfIzyTlqVYX9Xqsada1c1dR3qa6xjeqD+d3NYnEncxcxcHv6dkVuu6eTXT+JV3ZR57Ov2j+vfvsMt3d45tvYthnRLOfZC9z4P/lLADus3hj+l2dHNDw+RQNLvQA5l5GwCqeYnLP2/u7uXbeL9dmT5Y9m56fBRJ93m10E59YMWRQh+zruO3BJiSdYf0j7hqGTzrq0hlXqWjlbT9u6V0cCCObuuD27n+xmYKpqQEnNMnJEJCYsPBAbmHgKdgGqpmqtKqiqnvmqngXvoqau3XdpNdThb3j2+fXL6mHfEwGQd6JYMWcMOYMBM5qJAlEegLBIjnlwAIp4EAYhRCQyEzNkNENQNrVkA2ZPQxilxcDHCX1FjhINCRHIaID7HiDpEj0gEg6HNjGMlODh7wIAACONraqI8J5u/fu2PHYomo0y4D9oAHbANUYm40BCHIqug72Pjsy0nBGFfw9gacC4RvRydB+KOEKjAAAW4KDnh2AGnWGulq6P+23td3m5R81kBJEIDYjYB0ZAFFVUlNiL2SjVOIB0Nrp1QKQ83AWbYwW2fSIwlTzY8xFP4midYAQAy9zj4TA/LrTg+Pvh3r6zjo5KtRZ4CDXIxrpsWRBTUDBQxj199Ccv99lzT1PtHFBOWWD3rFvN+9tzIInRXO1jqxw8bjqpJq7f59AE7btU1z4nqWptblandjXhVivXVYvXe8Ld2p1e29P8Rf2RYHeVfzl7fcGbtU5wu8I+ezaNu6fzlJrlZrjlYQMdNy1hiV5LBmTAAdVUQJJiqLgxE3/5nHvTuNncfvOvVHHy5OnJ0+nJM5/b3kOKqgqdxk5chSIh+f7VWeLJfGJU1Wqx73C7zKvNQuYirkjPWchhT10ywnLKk6GJkoFZMgNDIqYyQsrMoC/GbMoGaKrvyjanU1fX8wtGzP1+v++zn4S/pMX+AYgb6u9O0cE+IULuxQA8iGQDcoWsUSTuVWzM0/3AT+NBF8uLEZAqS/IMolDyFSoHr5k3NQAmG0zEDZPpvajxgxDQmIWBHcrEeAjaB0gGDo8GDKgMBicpsP8PGvTY9HOkkAT4XfXrYysoAAE97IeyQ4o4ph1RjQ97hQyjGRIRdgB0oEzj4FCwdGkqIElBUMCQoPiA4lFmss+Ty0uW+OrbGKhFBFMsU3IVEIwYDYkUzMwk9QOVchRHHb/LIYUZ4FUDIvE1ZCA0NSGAB9z0e4YmFa9wCHsOnrmEYO9xKr9n3d0Q+o+/QYESpMng7crkHMubhj75B9NrJzX2RqgJICdB5+/mi9v6WTdtOw3Bwa7NoSZLt/WswnYf58FJ10MIuVeoncm3/bzZI+659ky6WZPsO8KdXdzfP13apNu9+5PZb59dfLWyc7/awj6qUhK8XGr2S77XMmp56Hoc/CKMySsAQplWLmRkqgBcecu5dzSwO4jD9JlY1n6/uv48Zq4Xlx88Wz5xC5QYxeX1zoLtZkJRVusPJxXO3InYxCMtva+h3sy3izvMHSuwo+1JXP76spv3Q+EreocAktywrr1JBgQgKvhkMlAQQzEDVNF5CeH5ztSQGE/YVydPA7391We///nyTT0+KAFkhKxVBkdUN3cpRkOEPZZAuUcoW7rUjW0kjigSEyFGG+s8RkamJIZDBQxNiYbB2VYpGiCSAMAwX8wAzLjIJthhAMlwugghAvKDgZqAoQ3EH4Q84HdaNDOHA+m48//xNWoEjgzHAdT6QdDAYPy08ZgrMcED7epxCsADcmxDksNmYKbmS2AOaoAMYA5Mxi+MZtAjoJkamYAZoQhNZpVz8LMf/fVv12YOtQTvQ9WBEXXQRjcDjf3QdFDiKUAdrHqERHSo8gmwWdMkZFd6vQAO1dUfWAEcz3w8eiFp8SojYdvs+2hAAE6AAHDAerGEjjg8h5L4CDKaTdOf/llezfZVB9725JNKVmZO8xiX3DZ9Uq68pNZ8gJQs1BV2nVW1tjFh8BoT1U46uV9Od3R2319MenKrN77tMpO0z191i2bCN+/of7L99uerX0dusOuVekWJUs0vk859u/6qWL7hKPhWsiocaLAD4Q0AA0g28hwtRiT22cAMBEjNyDXcab18Dqr7uL3/+tdRqtnTZ8+fLCc74GnSDNm03rsP/BbVNrPOrZUbqNntaq5dldVZRkmuunb++saWQEwgxhxRe6wLck+IUJuqqlnWchRNCi43NvMLEKAC6qTsN3wDCAQI9bf/RE4Fmu5opzNoYoDc1No58lMixJ7AVAzWzKBqkIZoHA6GYwqGmNWQCUytdKRkgayKJFTIvKM2YG8GZDqIBg+dJmiGDApGwwACBIYhCCAacuQh/FZFQLRRHHSImQva/RCd2g86gDGgP0C8f9PmP4THJZg+yNaMWoCjE8BDCkBY1suDGZTJQPDgKBDFjJDM0pA8DfcBw/AABVMzArpvTs5PZ6D8xcmfPvvHdx+vqXgAsKL767wDUTIEVDPNSZFGv1NwwLISOlYBRwyAPVjgFRuDlIlEY/hi39cLMKzBmBKPgVlZN7WDADvaODD4fQeAQAgIccihkAhNRf249CLEaFr9w483UsVSBa0AXMyCiFBHCFpR23LloM8ioaa+VXcBGnuoK+322dXetVQ5Z5K3P5HrOmzlee5J7jawanGiu/D02/bJSb+HtxdP3oSnb3vVC363C3ZNyCAwe7pppr5fvftqWp6yGVIBUXA8lMbQqvRlKTKblRAK0HIZmg1FWldbZTNiM5tOz15qzrLaXf0u1ovpy+X5BCOdZO3qzfb0tTisO7+rpMKQQbmyxWranStlhRhds6Anf3my+wi+8Z6Qva9DvzOuWAf2PAEaOoJRu6cr4JMREAMYxALZQUZmMJWFqqkqrP/h+nqTq3UYdzkiOxPRYKKweztHRkTVJyb9PvaycB4lifU2YBElsUVGQAWDIGKSVf2ADZiRJOWQiXBILwgBoQdEU8FxgHcR+iYzQsnGLg/biwZ0novwzqE+z6LAiDIYcMETDSFj0QYr6O0PG/WQwg3aS4glkvobMLDh0oFsPabJA/V6sJxjazGRrKY06h6Vc27MFKSkH9o7R8MwAEVCclmGHadq4OjHk9MF597V9mr79H/6r389hyI7pgOSWwVHhVmMCKAiw6B0Hu5nXAB7AB7RACCwz4q2o9Lb9d974z+Epo45jwzVPT4UPx9fLpSB7Di0kpqXokEYEnhICQkDdbqY/8d5bSQKBpKcy60gEZB3CbgKst9jVWEfjRYO+4STKrNGqFyMndQTiu1uOclJY/vBPV7mW/98Hep4s04Z69DtZvW3MDsJuFs/+WA3mWz3EZ/d7WnS75BdbKdPZm3tJ5srf4mfneR+Eds5KnpL6MFMsIx0J4KBew6DkMUwuwkMgIes0pWEjhXRsg2QB3k/RdPU7bt/9bN5DWy75u7pfvr0ZkLRurOv8rReP7levwzbvOzkd396m6fvnjhdpv7prqs//jf0FTexucVGbHfZk1xd9O7zDyZ9XLa+95BCzuhYCbMP5u9nsWv2Edrz25nC0LtXtgVnm3TJgzRfrHcfvj67t+LlGMiiOmcMbLuNNqgBe6xgW/3L0FPdrab0cpZnm5BjMpA8fQ1121duj4DOoYU2KjM7zQZqPhgxmqS2ljIvU4iZEEEAkJwjNDMFAwakjAXEdIhAGSqngjImsr06dkhOBZjNMhCaAYugw5wdE5sCcZIEXFgCYKrmitU99BTCGMYPWfEA8OqIAgyRLCAhqGg99j2rloEqpSs1+5LWWDYAZJCCYSqU/0ayENGv11MRQx8qQmREJE1EBsjciZgRI2kmRpMqK7MhRmJthci5xvtmWp8FEmHLXYPp6+d//1rSy/qbN/qsyLWKgWMlNFJvmaTLES0CCsPB+5UiRRFQUR3k28yh0MwnS2yiffLwUMLBocIwot5w2OdDLIbjLgKEhKCAmvyYGEFhZT5kU8UhOIVC1qLhJUCKiEARUBEcdDPpjD/6DzaiwGJmjsyyFJ1WQjPnsU/iJqQiyBRyn6HyaNvoJ5RiR01lXbbn222t93S2neZ3uvCrRbfa3fWQ5GSTnsRX1dlst0hff/Lk61m4uaWpuzfXJWOqtun0tAY+0Vfwcn3zfPYX7elOF4yiCcCyA6CRuQAAY8x55PXLb2QIyR8pzaCVQQ2KloEouDqfP51DNqb9k93qNJ33HLo+PUtIu/u8nO7uXnyFy5PfNC9ebWbTsMOpLm8+ePO3330QNh+/fr6aJQFA22/76ZpWdH+xRiaPwLmq9m0T88kuKQFWHvzp6qQ9kRG994hISJAxYwWK/O2beVelUFK8MnOCGCkJZEFQQlRwlDZ/+ednv+s3U9ue/OpvuatJ66cgotBdeDbK+0ZzliT6LjQTkpgbJCZDAiqsNR1WqrJhrBwgmCiE4fyUA5Q0ovlgctAGRKBKgBiHShkCl8zdAImAAUHVALI5qoYUvLjjh08cDHsIcR8daN89/wZqPuEwz2Ac8lsevA3qxQDAqmaqj8teBibZwNC6CsVip+aI2DkiYMeIzE1OalmAVRISAmNgSUrZBefJu7MwaQITivXC3lkC1/fXy//Bf+Xftn/09PObhQoAkHMMMFCcAVXywezeux97/I+YgxmlQahE9TDOfXzJoCd8pJo8hvx4VAYZ/vYPY6eHy1mpnRuXZA/FCiOSQKMySNOCTP/+z1aJHBooCLEmyRKw5IaVo9SJr6uUMjrmPkYKHnLqsA7tXjjU0LVU7eZ6mxa0qXOiqnEO+80+AhGveN52DUL89L978+fV3TzdCE18v3PSScB85ecnNYU63cC8yxfT6oNbTfPqvjYFDsOYl0LjLFWMYZ8cKJcDWUBgBEdhBJVwXFAjwxKyU7iYQBTH0J58BcvXz0nRz27mndCzaZ/auMzkNvPri/Z1U99U6NeTNxe/+fmuchHuTt9+8u58N9EJYtg/bxu721ZvPsnbLdjMdLOA16fP7qucQVuhutbg981uaaZiSLvhSQaXyMXk0q+vnnRV9AmH9I0YSleYijlSQxMj3f3mxZ/9h7/+Z7+eXf8d+eKLnwUAZDT17lSTQg4XMYuqqiaQvlPkPplnMDJCBGJMA0omw8mkxMyHoBQK43KIAAbua0ZDNiviob13WRmsQAEwol7ABVVEJwKMIuIcZMVS8EbCPCJWhzLHdyxjcDGPjQWHhEWQcODqFxR0sIaRecigJiqDf3tIDBDB0HvpDQgDAKokBQQmR4CICxUkZkSHAJolQTbByVSrOnjnnYVmUllOrIAukLgkCe7jL373WbN9Pfv4r9DM1IIPDGrj0llOWsjKj7EPfPB+QyUAqWKYuL6OZZaY/XCQf2z+j7o1x9/Y908VP1pPBHOEAIhsw9mpRX8MDVESetCcu1/+D92bKSMZZEOyLKoj5MLUWErm6qpLCb0DvSdfOUsxVRPfbbObg6UIvsb75EPCWac4bQLg1SoCkwntK1zxM7Qnfw1/7vIT9/nmZIH9Hro+O9acL87IGpdu4xI3k+Z29Sfyzc3t/nznuBzegFjIrwNsaYeQEQZbR8By5hxKLkdx0IBzmVMwEWCn2TxDPtP+Ex+3J91bf5Lvfaj6Nc+0l/Sc7qqTxTf+JPSQqn5Lr/RtuDub9nW82MxaF2LDNt/kRTe9e66npH1WA1xPYL850dtnwHWiRFa9Wt4FGxr2kWYjDsXZIAG+/iK4XlVHlpZjVhnANPIohqBq/Z3v/i9f9Bd/+uL/+qN//eztJ4ttkB2Sr+tqJglXt1tWDARIkTElMYsxm4qBYBnEzVBCoy0FR6YmKMyEhzpwLqAijB5WADIW+zckpt3EJSBWV7REBwadgS+nsaCVvuhkcojTD/w0QBvrCePoKXvYng9eGsanBIfniyPPb7CkAf4v8ugGSsdNgHCAv8wjQWiWPaY+ZikzTRER1cQAEbfA7J1DX1JiRXQ+TBaz4IMjRIxIklDBqDaG2Ps+p8Xm2/M/+prmb9un530GhgzOExgSkaE5sRxLmP4Q4YxffWACjPfBxOamGKvWtNg/PERXRynA+4HE4VOHdApHZPSHwNYRUXQFmSnfFkSVDUrcZsqORHv/P/qj3XYqimqqgHVKRojm1ICcI0kJGgdxb+QdpGhhSqnPFqZ+t7XaUx/BBc+WOqiQcD8PItDdrnfgVUDb0+3tSaWX8TfxF/UqtLs0m0grJF121Jv7ac06qdtrfr66e16/3T0l/kX+1ReZiFHjsI2Iyi49MEfxga4yHkswHmojZjqePVqAciNG8lUNQIQpwbXVb+CqXezr1zlf6ka6OtuEM8lz1T583Lfn9LWcvPv0V5+8u9hNtrxd0t3ltrbsycI8LpnP5/dPe78k6Th2P79792T3zcXrCNI3xhn2laB25Bh0KL0hILSsqDrR3+1+jBg5D5QZJCIwM9s1HkwhOQAk7TYnN//IfsWvfzf/F79+Xu9q5C418/mkIn/fnU7wVsXGahdWZPlU1VIvmBEkpSw9FgELAxVAAjITJSIaIbSxr2QIs4byUNGeMyUsSoE4VtIVCAAJCMDYmUUiMyMmEcAyvogGWx0+aaiB4yPHXUz+eJ/jAPQPnPbD7ETAA5AGgDBW3kS1qCgf4r7RbwDVl00vqe/7PubeTLOIehMFQjRUzQBopuirpmrq2XxaoTXMaCJaq5mgQfZsmlJMSuxo9fsff/SrsLy4P/06siMzcGRGTGxQUoARkDy+QwM4OoxK1Y5yZkydIZiIjcN+fxg0tQGsf0glCjOAD4WFH7zQAMypWZGQGpqbHAIoqmZATq3h5T84u6a6K62gCJjaiAEJXClb206xrqDdA3tnuU/zyqUucmhgvYF5Y9todUPSr+s647R/d0auyu/20ZGZJDbaxqqZ63UX/3j31SerV76ZyU6l7dRxitXyJEMN97l20S9A5uHJN+5J+OXs31bKhIYsBf87ALrDItihR6D8U1EuHIraY0F0ZIubjieLa4pQNLown803L9bxzk1vA+Vr1zi4TqckXaz3rm+ojs1+2dSn7mP8+N1z2Vx8fXkd1zvckEOD4NL06vlewHvzFnwKaKcnV3D2zvr73dSwztXdxY7vL4gBkLgbnh+quczV699Pz1tVzg5tJPUSIkpfs4miEQCbZF3NZ3d/8PuPlv/mLy9XuJtwtrA8bRjwn3/z4Zym51+COjTD6ECcI+yMvPOCSmQ5Z40qSSRbrb0BOzQDZEc4SNiCG9AqhTKXHdAMIcUZEoOCOM0IeRxBSqxYKtrCZMRgxKRZiSknYAKNiAhqRkOoToN92nsYAI47+/GGPXCIStkLh17Q8W2Dtzc1GQdqj1EflGoEGeYUTtpERJZjjppj23VZU0qiKqX+T5Tqs8V8WruJ9z54TRUSipn0RCamGUlTNpOu4XjX1+vXba/559MYkhgAsGcEJARURcspj9/mYd7G8L8lU0IgMgTmoFxJ11olYlKmhzxahO/BABDhyFWOScPgCH8IBShkDAM3Yq1sAgCDOrWqsIAlO7n8D+/uJn1P7QQMCVRiVBZkZ4hMFkXZU85RK8eWMta1tjFz8LnrqKksR6hqzjE32+ZSXsWT5U5De5cWggKGYPXVyZlkd6f/4HP8w990z1RSFosrxyTWLBd7X+Guq+bt5ry6bk67t5NFfzt5jt9u+sZHdIDMXFriDUpeM1Saxt3wgCyPVViDcY76oeHJnKqacZPNwJD9uubXtTUAi3ASrLX5fjMl3n/2oxauuhPh7aXp9cVsPYem6p8IXuY/kqd/fSa8qYVts4zxIq6ySbYukzLKbT2Pi3P/TFqm0O5932x3tpe1c2ZU4aQMXDJKUkdOv7n+yJL4PLKcmRCAQBK4AALkKAmqqk/V/yn/j1+xrE6e/rWs507cfFlJclev7PnspvU5G6MC2MnlrKJ+/3azjx5BEQk5GFSaU8pqojmrmSUgNtMiXgrDYEBTQzMgJiIAdKidcPCMplWHgYWcEhoAmQ06m2UGFkoAYDRAKFwh9AAGdBDBMhxP9iOK8WDhUELexx5gfLLDbCAbFPMGyT4cyU7FT5jJo09EAAKWmKUPiIjsaQalBLjKMeWU8tqyQGiqZnF+OmU0B6mPEByVIRqYSjnTpV6Sgooh9Xc4W/31bSUtX74609aQwsQzEYKJaiZLKQ3DFw9zSocMZ/iaUPp1EIjzdCo9gGlOUnzp9/dHP7qO8qBho+uhF+MHPUCJAGAoy5CZAQ1kTzMjMeDmF3+8nuYW0aaiRqh9z+Q8mq/2RATS90vP0iaqPEOKUNex7yxUDtfRLarYq3eVz12C6lzftni22E70as0N7VoJgCp64d3sdrW4+FfPw19r2Jzd5SBrm2SWWJ/N2SawkwXu9Uncn7r7vMRbu8jyh9k2RJbMIxEhPbCkx+xn3A3F/s1BYWg5gAGHNhhJloBGYILoJ8stkGXJLNDe/MHb2WxSrWbI+uO2OmnWeXbfXDcGq/6kW7cftFvIs9U85sXa7TWebz72n/aZuIYVh/1u+sVi5+vGAuWuv/qUd9NJ20UfKqm0DU6bu2fb6YYZMHhqhy9P2Uhx99u4aCVP+jA4AGI0A42dYRkvZgkoi7rKP8v/3fJf1OHkM3DbfejmVU2R6uXfr/y9W+68KgMa/OnpwoQw/+yrL1aAamClobhDxNAQZULLfSyyFRbLIYKIAqX07U2UhAkRHRPBKtSVQ1XfK6GYz4RQOMVloclUUEEqMWJWVXYgChRUR3BscMBjn/8IhB3v6odt/xDFD0cWDn3M7xnCQQAbDQ1U6b2PE/bq6kn0ORu7hjpTAEaozQAlp1ZipslysiA0EaTkA2RCNjUzySKYVME50ZzBum7Z9bB2i+2rOeW/vbhKZ20C5DBxPIQ6ImYiilZUtg45OT4koUe3hjlxWPeIMceUlYpb/BswgINnKD1Zw8QhBCmH4t/gAYa3/WcDhyshMWrOdTbWrJSb1H/y5ye3g7wyCjsnmz6gogukQpPQrWM1BZf3ufI63+4xeMJ9zL7hvo3VJGiKuZn57QYdt0/StTvFdta1iXC/6wzMsthTnVS3d/OPvqmgk6ZhfUP1Zo9a93399My2U0u9m1g/z67Snhu7rXwC5P8aC9fFIROC2fFsvTH3H5FNOFoIKqf+IGc+jI0FMNej2NPziBmR3PbVxXq6nU1vXm7sIq0Cq0/AKEoarFUvHd5+/Hq+dama7RZXp+dv6sCrmc5X4NfTBX/5JOasCCqym28Wqw/f0ll2MZ/r13N7wuumayQaao5Vu/vo1z+/Qx7OglRl3538y//7L8sZhi4FiPNFxGYfp3KbXqiUuLnFYNre380bNCLbxj14q88c/O1ZP+/Wu9mcs5L/ogUBt/zxi60XnPdd2NX/4mbq7yvWzkIFenHXpngqrodGW5x2uYLW+41Pba9gyoNEFhkySxdngoFjJ6DATa2xQQRER8AOxJCcKjAx9aGybD4IABKSRSCPSWBnJskmC685AyH5lNCR5oGUDAaEksknRlMgjEBs4kIqvQ7YDz1fODw/l5VN0IECS6YqGQKYSA8ImkVMDRlNeYz3mM1+GSgNrf+mCp5zJKdJiZTZOWbCXLEoEiRDFHGVmeSUsjZmAKYqJH1GzdZDyhP9du2bs6fz+9dn9Zd3Zxl+dupJqWLjLlG6/vKdLxyhh358wEOvNSKgTLmTUCHoxelmm9s67nYJEEbJNz96D8Sx1Fkqn8OGH3UBRhugY+857P/Sh1lQTzI1AAIHVmAcB6agBqLksoVZ+7b+e3/k11jnbOTM6j3pzpoemwpidJWXTaJJ5VKKEiYc1702DfaxDQuWtpd55XMrbjLrVskFjfN9nFTJZitykvquzc5JUucnK9p9++yTqx/dr3gWNL57cf/1dLL3aT/9ZLLmp3G9o4qgjrVPVtumWzSbNx9M/ovpCFOXquV3PJuNN/0dlwcj/ProSk4tVKiALnehutw8/91H3e/+8NfTT77ZXkISdpYpONjueIo9z3endJEvEt1fnbxz/WdTabsnLV5PwqadXncnrqtmuc8h2ITBNRTsevPJTsKp+/KXv31h+9l1O7GZYOUqas92zZgjgnPaTu9+W5OWFofMRIz7vk7GqKW8jQbGvoiEus0tVNxtKkdkiXMLuxPdvrt99/TZtGnSdtt7t58+P99NupMv/ukfXGIdlre9ettT42dLP9+Q666iqKFSLR1CctMABmGGlrKuCCUJYM4ZQ101Qgxdl8zlTibLqsqIxMxcpEVMezBUVjJNJmZKUBSHBVHzvhMBKkAduaFxhwAMqBoDdzNyCFR4dAZVUeaWQvRTHCM5f0B4sPTgKxgQ5qPGHzNEBrUy2xlKfhgKNdecAYCaETuUlpo2I1YBLDuHot65ot5nDISQoyiUrpgEgCY5Z5SYUTP3TF73beebJr7tvFQn272bgIoZZDMFB5qMMyAUoVHA42JdMemBu4xI6JymbM5UVR8YP+Vkf6heDQpI5Z5KA3nxAEdNVA9QABxiq8PfLb0+Cq6UXxBBTQGQM8YuTPMb/ukffZyv6GTNAdUQ08nqbgb7iTGpoa+077CuIUcQV3tJe2oa7Nrs6lr2HU/mlnvlqoq9OspUrxsyDjlFj2nTpeQRNGI1axf3/c+r9dn+bt1MUheXX+fztCVuzy+8TKlft7yoRbj2kEwknqX71cvdP67Hev+BAPDYxL9zPcKX8QEGPCwwK8zq8oAQfTPBH0/ffVDXL5rdxH/t/J2rA2yVzsg0t4TziZy9XWwqsmU6u24X87sVtrCfnt3i7PW3Z+/mItSQqve5TpVvAvpKLvwenn8zfRO4t66JGVK9m7U6SUfd7qh58le/Pxu+NAZKNqmoWQFS6sypDkLWrCl7tIzelOog3kBl759sN6nuES6fLH3lt1dpy2cpvCTY33usqrAjXFgUb3n51DVze7W7WOzpZisIgqy9efaNpUkUDOgyNFw0HzuJMbd7qIiw75QRPVqr5sCQnKNGDBlEHJKZIVvKZpBGDUR0apK6LjMiApFq0Ss3RS5Y4EBjUQWHqkhDIkuldK+ECKqmvqT3heM5PC1DMEFVpDJ0dygIGhiNE8CH1TQYhgEObbtIGNFx4TtXLrBk7yQbshblkNKaYHEA8Q0SAmiKCUGTmIllnJhkm1ZNiFucZn9xczttBtYwWAaC3GcsI9jUuFQ8Hhr4iv1boQ0QYeVzTM6pZDk+wMrU4PfOraH596hOYPDwL+/tfzR78Ak2aByqo8JXHifMGIiR7aP+8afP9m2DayOKrVYTuvLN3eLpzUnacgik24xVhV1LviLs+n1V1bbbYjW3ros8m2jbYlNZF5Ur6zTEaRDW2NVpv26VfdAuY6hc9QbONIX2TpYNRaU++tzW/u3l82rrTuPbvjlpRKiZbrO3CHO3ufvR9f8nMFiR4KFDpf/Y1Eeg6H3fcIS+PvynBFeq9ZIicRKqXFx98OrTFTxfv+Tr5eXGXeQuwzSt4vR1Ba1OfUTofM6IdLo7dfESZvtn92cy2a67CyXb3oKoqxxonvZL8FbV6Nx0Atez88+efcPSz1y7Xy9vKllcfZr8/tBOpyIh/lqXYmBoaEyqjjRk52G/x0qtTGdWlWxes3pMnXkvmsF79tJ95V6eTl80wfbd+uauuY5LrBZvw9f9u9kfulXfdLAnB1Y/OVfqV/+3F8+1f2JbMjAxC81Fzb7tZ1fbNhGgM0RXAcCeQFIUi2ZABHjjXWFfD2l4kcRRzQwmSlzmIJiVwRxIlNRUfVVmiJAgDCEtkakN3YiAGLIxaTavgCZAGcyY1RQNkfkA7qiZEZgN8wpMPeWCBoKBqtAABA7znIedgGBiiCqkYGjAmAmSqmXvHCEYExOAglimkr0j0zBfFEr/kJqkmIu0AiAyOevzZGq6I0dguZ69IfYeCjdXjDHHKGWf0lEEYI/qF1yIVajBxazmREpW9GhbH1k1PWAkhgAHabxyOnz3DByEAezhg0qM5MoymZEZmomSuMnm/oNf/kG8M8/GTdpto3N6c7reP+H1EgwpuBh7Xzvoe/HB5y4pz7VLPdVT2u+1arzuMlcNtW3dZldZv78Unenb3YLiemOVkxTFNTXnXEGrddrjSchtSmk/3cV5v3t5mfs53XY4nbp9qiZ1F4GYwH8z/YN/89vFKhAgcRmQMd72sfkPk1e+2/zwUFYZOrBtgFWyzaZ9nCsgpL7dXM+/Ojm/mfiNv9x1n4a7uYDkZlpfOVDpU2aDmO/rrvXt4nr+ZHeTz3mpedlX8xu41MXdJKR7m83vbQtxkmX6bq6X27AMd39w97y6q+L5fnY/u+ud9ptK9CEEMJt++9W5T1CgsbbhKqQ1evKpjbO6nKdoagrO9WmWEjYg0QWfAXzDJ/Zmd75UWPWx3XfmLfUxA+OivZKzyjyu7zduqrCcWQza4rRp29MJcQZQmMynJ6hVnRp/f703x9QrcGDVKZjWwNymZNpHC5BTBOKsxg6sqI0YuR2jRCE/KY5qiFxJu6yETB4QVNCyghX1YuaiQIAgIoBVNmADBEVGAgaGMizRzAAJdaj/40OoD4amCg6zDfMPVYS1TDTWwdGMW9+DoklJeRWNZEK7ngOQqzCLBQBBJsmMKgoqCQDQTMpHmKlkkSySDQANkQh63bSAHnuuKHFHk5DVOzUiAnRJQUXED422aiP+P3AdB541FQoTiMdkBKAiQEdMCBowjCPTtgfgtOzkh5nthUBw7AaO/1j5vBL2OCm+yLwVlBO93blf/vSlYmWpc82+7XBR6TZczS73k7N79BOWXcp18NpHaALlvoOq9vcbnNSeb5M1M253Vk84txGoAtsJVi6krZq37b5X7zVm5Wbp+v7mRaInb159JLbfJYqtu4NF3Jx8ujfXtJs0r51INaOdNF4spNXs6X/79aRftAjsSvvKEfD34APGpoDvMKEOAeFDSjQwSuoZKoCQS5tE1abanPh7Ywvr22fhatbOcasn2L7s7SRtegbjnle0r9+ebK5+vHXiYvVl0/1oP/f76Vk7qxwyqDPG7i73SpjxzZMesXMrUJhDd8pNs3jRWj5bv1xND7kbS5X/qj9L4z1QJsrq0TNp9hOWsvvNKXkCcNnQUgbugodsyP6JtNevZ1glDJCo7tH17epmul2uFrvf/mGet/e3nTbGC99qxbP/YJEi9+J6ZKXJ+QLTrp3Mcdegao+WGlGwLFkRCU2g4sAooka5S2q5FgVSMSE2A+cALPXiOR9meRgYKkRjApXsyARYMhsAMlFkNjVCIjRRwqRgho57ASZA8lhKBG501EXnQwdNOlAuwr3ZgndZnZSynvLDk7XxIDAwyEqsgC6aMSMAb3qZnlTae0cYASsRIFXTbNlQRTULk8TSRWOWJWVV1axICMgRY2e7LeOyFkUy16NftsCkhYnr1UxytkGREQ+b7xCmF90mLmClkdNOGSQnAdLHB9ixAzjslyHgHwsFj838UdAwMCuG8q4VQWc3gIdFZFoBESN/+ifLLaRo9STdibp6gvueTiSfxLtp71j7aK7G3EeoKoy9kK9421tV+9x1vq6ga+M0sLQ9urbBvqXJZDeXezdp1zsVspQzV1VlUXB29eLyunsCVeqVwajz8+36kxdXPHX3bT0BFqxr7vtpxZJSTj/9z/vFZuLVkB3jg897bP/fCwMUz3c0w87GhTQwcYuqt5AUgBgq3N/M2nu7cbxfLaqb1Kz2oUKfSZNy7SHswEATKUq7p9u4vOxotaL9JjabBVAVL/rYLDDF6bTFygy/PotXyvfMF198sNtP151PHL46q3f96ZZY3eH79YsvPjuhyKhopFhFhOhOeKcp4rTph6jFwMgBhNPXopLEO9lFnC8qXoHU863JFl3yzNqbF9r+6ken4dkyrk/X767vu/rtaa1exW/v0sVkp1XK8f4Uuma5NASOvZ924CeUgMWBxq7LtuMwmQSy3hAJCbduOiOU6LMUVKx0FCihqRgFITQ1hDxgTGKGoIqKqgRYVFIQwQajEOcQkFxSFAVHOQKZIJgnVWQYumptkCs2ZwqlNx8ByCymcBI0DyMAxnkFhXxbhqiOAi0O4s6rGhBajN3NJpx0FyfBmBizhAw5qWIGSYomKkmcl46gqAtnFTVVZS0AnHiBatKJtOQ9oUfr4bQJhGZAYGhkud9HU0B6kEEwwDEFMDAqdGsiNA0+turEUsz48PoHGON7LhsSgaGojYfY4NGLyvtx1FgxQDYokmClDChqSMz+dvK3f+52tNrIQjuYs0naCIaQqypGTlPtY8bKUe6TOQLpWjetrFvzosG2FT+pddtjM9V9SkAkXdZ6TrHZt8Hvbrs2IKSIOA9Od+oq+8X+rxDiadclkk1rTXOvPzlb68L1a1uEGHqzvnUL1wJp787+Swuu6QwJmQm0DLo4LgMcyiLfXwOl7xAky+Gb6yntXdj7lP0SMc12td+6iztpTs6vrp/95uQtnPobOhG3va/OKnEhTXqaIX1wHV5+dT57nS/fLBf2xbndfLKWs26HAdG4zjODuo1qli9n3fXHq9+++OZ5XHUhW+s/Pw3fnE4u+/ndfPw2kt2bt3+YQEtahyp1E1WjiSRsuKtLKKpZmBUb3q/zxcuLGrtvP49PF+2+2t49u8hx1zgQ9Nqhok7yb+yML9s8/f1q9Qams69Ss40J6d1fdn/nI6Uqy257gl1oeAXz+fa6DlGbhiJWLIRpvRGcxP1mtpgFRaTYG59oikgoaMyeVKqUsqrkDJoTApaxI0hSFPrQZTFQdIIq7EAFkUDV3KjTiwgGqqogaq5SAVUBzIVghJk8gWbRcQKrlrJ6keAzyrs4bcikwLijWPioDDQgDmbAhnl7g/WHYqTd/fa6V/ut/dHfP+uVneUoKl0UYrUUFVWyZvWQYzWUAcEMTLNWYgCCThy6ZRM7t90vpyDOodq0qg0RiQwxGWi3711Bnu0wF+EBpzMYprkiIWhwbY8ONGdhOBIzOh6DDgAHjvDh93iIc3BI9uGYWmXveY8Cs6o6zoKeTAw1Nr7l6z/4xdxit1vNFwwIkkzFnKNY07ZzVaBt5ytEWjvvspndVUtmi23la9f3wnPWpK6quN3qpMn783fprGmlWXdW95suMyCLIdcda67dmz94I5M8q9ctwS5BSO4mfLRs7Yzaez7TdoHry+nX08uVaN2vl/GfdA57ZWVfnOZBXEJhvMOiC48HHuBo+ONyDqDQuPxijMnYnjQdy36qcfbXZ+76R22j3UXIZwzc03Nz2btreP47d5a34fz+tGuytj50C5EFu08TWttd2PLrP/yLT+jzJvzVmVSUeOKt6l18/SLvfxz8PE7OuosFvfx6PvX0zp6/evptvXlKV5PE6lMGJlWsb/7bp4s3czEjJlNtAtUqDsO6n9l+nou6FpCBVrKafbx/8TM82ZL7yd//7Q13y7A/38nUnAg1WXd+PxN2Me2+xtDYvlPsar9l69tvZxe76heu6SZ+f3MFr/3TXDXrxJ83s8sGsWuh9Qrrs/ZNGy9e/Gb/9H7fdfFUfC0t1qTbq8m7s92TONc9evQRasvO9SoyVxHgLEYEhp5EGK13FSUxS+xYWgAsODSYJnBkWkEyhUhKRGB5X6PtkUldV9oknGRiQmZHOVlV7WAE8cElpeqTXe8ieNaYCdRCP6htOVMDUCNVQFSlXtltT+4nS3F3r7Broi3Pbj/73f/h41cUurDfSM6iUb2K5CxKJopkljSnmJI6YiY0iGhGNTM5054W2rHXHBg4q/JszgkZBM0QTCVlEzQjGuiQhJCQhkkMZSf2jEiqTZU6cJYZTRAIOA97mMrkAhv1C5NnBZZUQWEXEhaSNlmRJVMyOG64ZFAjMHUAhKBCKkBg5gKIZNTcN7Okfaz+vWenkCR1y5qH9vQo6NVYBKeVh11CF7Brs4ILud+6ECSK4sx016VmqikrE6YtLTHt/Pk3sxOyWdoZad/tIvqQNnZSyaS61pN2+/Sri237zN5is48W97Onv/7wud27xez1zclJFy432+dwtZhtkz77cvPTV//UlaKRcwyjib9/oB/9eOT2yhAse/xLsKJl43JaUganapuz//eL09WP3vjF/uk7vDpxWdE57zOdvVnIB4uNf/Pzz372m5fXmGkedI1wcSXvzrrZ+dXZ7PoXq5fm9jJ7Xn0VMdmWMloTdjfVj6/SLZ6l/czn6eZMmuhOJFuTdxK/fvrl5asPQYdUzv2qXySXgyiYAYFzpsBkfXLsypYBYMDAUTjQ/E84zFrBzjcfu7uq2s3iPZG1DUDGHHdzlqRRt7LvDZG8zMJKz+oV71/10w8I0Pqb1SZXfn3Cu462btdu9WIxabq7/WaOsP+8XYb/5Oy/udc/fv3bbvsiEVCtqX8bpctvYtekxjsTrcEMs+jUciJniTWrmlpnqc/kwKfMJpizCgIiDTdiGRHViPdDLwyalPJ2YQnqOLZbh8kCoVQMFYf+9QmakCI57jJ6E2eIpnJc7Hl0RfUOPFAy2Gyzi5tJneByf/9f/qPL3V1fxxUAWEqJVERVLaIhWU73ZkDVlGpEKO3zqojDbGT0dbQcmV1pkXHelW8NAKipT4YJh4h/yNUJ1FRLrwURACERAfkpKhBKHMoOh+/9fuDKaAplIsNwo4cwGGFwCMcLME7SecwGAHDk0CGbhpAS1h8+/8Rbl6mazsqXl5yFqgBCZiFQ7Npq4iCnzjOjpCyzgNKbr0PXZqjrkAFcRTHuPnBv0ym8PgUI1O+64LrdtifX3PeTAHyyzTuYgvNwNX+RNmi7Piot5N2zsyrWtb7dnVcykY0/wx3NU1y6f372y1/9W3IABkjelXt+r18MYAyThuLgI9AEx56xYv9FBdcIzJDt3Akiaq71Ilzz51J37pvFK0u1khPNMDOrm/0C692P5aVN6zunfa6kXchk3+aq8/uXXds5P+kXi7tF6E89JiFF32qm7v56SRs+XW/OddpevHqWllXODuq4d0GmTFYJEoCaufYveCqVecoKgKgIMTMobVPNBLEQ4gjVcZc41M/mLd695vjC6UXeVDxjO7M7eZGfLPc36xCmLiVNeu8BsAretXW3sbkj6N7cnV5UkuLufme+qiXJ1d3HdOO0BwD0Nzfxvsm6w2q9+NcwWd5/tN3i1fISFELa3MXMeRHreCvLpROlzgk4SX4HxASujliDAUJE6TOSSRRBULM89AcD4FCJ16TkaCBuyuAH0qFLtRiSL1CeGaKpIVZDgF8hMCtQ5yvDGqIpqBb5B9RRYdDGnQ9o5NAFYPW62YFk8SG62cR98V99+nzS3vstAIJm2amKqgKIaMTcK3lfBc+lDpDFbGhMUhBgQdKsgGgEhuw9K5S5SIrat8lIGEv1YSjuK5ZZzIQ41DQMEcH5Liqg9bE0Th+3QjyiDxGogQ6ipTCE+EPVEMGA8KhbGgwAy+ifUWfh4ACA0DSreEvTi5OPn990OTp27EwVRXPCKjhIPZNz0O9bbibdNoOrPcc2VzOvKVpoQtf2fhbyJqND6dv2/BZmeq/zedI+t+Jy2q4yB9ru3GLaaV7FKd4vTq5rm/EbmXbbaIGy2i+2m9kk36zPLmJbaZ66d+E8dqF7+7L6V5/xPAoiAROpgSHSd5J/PPxcnrce/fYRPDrYv1PgnN1smoVENOHNH7zrnrz6Ubel65M4SV+nydzEgODL0+0UY++aHGBBz4hSq45TflXff5DWaf7l+f7bv30Hni70bA1Lh0nIJLJvq5O7d40LcH8jabN59s2Tq+frfqUnTczNQl/ix+lF0wGYGCD//s0TB0HJnBoietZsDBlbV6E4oyGlFWBnyZ1etgy/uXRffJS2ZzVydpVWkM9/eeJy4v3udYvBMm7Xz0QkJdXT+21YSpztJeb2LYppNvOcuHJ5//a0fvaUsyzrzde3u6rvuxxbX/1H29evJ/vf/cXq4xC3AYH7+9vmqW2vMPSuX3EA9uIZfGdKba4rE+mdZwAmc9iYWcasaCmX8hZoYemgGRiV2Pwg51a4rkMzUun1hkHTEw22UEAAHXUKCE2BGakKyOC3aCqGRf1Ux1rPoekLfbLsgrjaISoILbN43FWXk8+vfv5j2E9FsiEj77X0E2uKyp79xFWBTTSq5pSSDkNSQcSiIqipaA+ZF1hojKVai6AIsc8A7B1Y1gGNMABCZHI0DAw3VTND9tJGMEOIeqTwOdr/kZ76QPV9aKIuP6DaUaF//ADEwT88lMAPDuBE1XKK2IXw458w30Qwh7mQFnI2YOcw55iCA+kzzpj7fWSPTnPCpq66PlHjod9CXQWIrfPe9jFTlz2KTS5fn8Ob7WKW3sZWQp271fnE5GT3lusFpsSRfrT/TV2tE5rj/f7pTzqaV+29Xjb3k8Vq+mxzHRba13DtZ7/5N7PlelD/Qz0y5SPzP8oAHtMDRhrHwz8M/WIug4+9PwMlVHDgqra52P08zZerF/unbehFU4ymkbdz8FW6eQpxfne6W67c1Ce2rcNlrjdXF7f3HC+3XdfI1806eTADZgaiiUY4n4hMoHPN5lpv+6s9mI+6nYmiyWy3SPOeTNWAqfsLfrpn9QJMZoBzEPaVSmvBp4Q0ynFCrurYu/Oep3ff/vGVAxURU2vPNJ3+/APe0z74WaOve/PUaLdOCULtMbU8m8etb6JOYLMHBxQ8ph0uDWd3fzV/WnuH7fr+tYZKdzXm5KZ68dN//ifpazvX/lrOneBuG1/8fbz/l1VlV9K34lRMNe+6XXKc8uRJo47JTDOqgCIZsXdOo2BUA7SU1cxMRZ0pOcZDBCvIpYlmeGo0bPNYUj5skX1gsHbQT8jMCEQ2M19Dn1xOklQR5FD6PkZ+AEANJtMNNOgIUjK3A86d1ssfb7+4/zHfOBElI0wqogoQ1XzT1M4Ro6aYwFShKOkBmBma5GQA2ZBQIzZMBAgySHSZoeUMaOwrKuwHG2E/QmZWQitZPCKyD6mHABkw6XeR/ONLh8HL9OhVgxewwcs8+oDRH9gg9zQ4gIjkAoIl2y+WMa6miAQyyD4YMBGoYDNhsNxb1WC3k3oCKffZTyttY8Kq0n0P00b3CfyUoe+1qu6W8tY/43fNtpN52K9uM9QT7NrzRZ1014qbJTy7v3vpb3dN6PcpTXENL57C7my6u43zSWLTGe2tPuu3tbaL6r9ev+huagAq4SJ9T7/48N+jOjoCjJNlygIch1CHHQaghvUk5YDGLsXQMu6f7YAWmLW2RauWGGTPl8JfP1vve23Ddpbgzi6dx+6ir9JJml48/erHMX742fNtXH7108+XNkEwcI4nG5iZakU9cn1qXXXx6qf/+uNvn4bLtIUmt51LvA3aB1NDRPji64uwYQNBJgNA1ycXKGtf1YgqNMIaLpqXnCm7rpu//befRF5Ca4LV/fbZi7Pq6/TUJre4+LR9E5maOr2eXC5PFxV8u7N9qgzDTdc0oVcAULGcTpuVTdKqezfxiJY6q7jlLLh5di3/z/Ci/n9Mv+6b61ytTzlKq9Vsbh+en8abf2w5ZSetF+p3frr+2Uv9i8/359WckBRMUVXIIUUEBHTMQAQmEk1VJQmJCaBIVY5zioTD8T1wCMwU0ECIAJBKyR+HgAABe8dErB6z1T4xTqImwJHbcSiRwaBQhlFqrCc7YrO0ayP37A1q1/JJ1d5Mn7YMSJazJBVRAJxAaGomAo05i1oEM0MiA9AydzyrSjFpZoIEaMhoRaJK1Sz3CdCAvEcBSoMh0lACdUUbFZCA2IValCklEYHHp5zZ4xQAC98HRxR8YAXbsD/s0Ds0Gn/pejN6PwXYmyG5QDNLLGniNYNDAoKYDRw5VAHnGaHP4AyytrmeuKQJfMXSd+y9lzZBHSB2VoXcxyQs6clVt1ymjTXv9vN69W5L4Ctrpb7IUu/f6TSKgg9hZl/6i+uNj6iClx/Bm6d+s7JF2PO8Teeb+/NlypSz4T+zegs1OsRBHGfod/7eFOCADTzSSXjkL6wIBlsiizCbgCGgetuu5KzdVvez/OrUTbbze1OGWVWllc52be6N8POf/+rD3740QsneJYFeCGzZ/WQ9r7+9gOV+et5maBMCABJry1obqlUJF3lbLfDT/S83z4IhRhGVgFbv2LikbUn+Hc23CKhKZkDMudeAsRObVuZUqWAZgISiSbubTzte/LytL1H9/T20NL+GFxdtfDv99rM/kuUmn173RMjhJycX04Cp//mWv/iWJgrTts+9lhOKfFgkCzHP4a4DcAjsIa2mztp73C35/tcf54mcRsFO1bJka779J7ufTlL/pRF0WwQI0Yv/5Nnt3VV1cna7vlRlI2dmjsizppyyoCEAMQI4DAZmmgU1S1bigokhgZoM8h0jD9YAEGSY2osgWdVsMlgNiENjdokT1ITC3rtcRp3boAcEhVVdPsiI//+E/UezbEmSJogpMbPDnFz2aJAklV1V0zXTPSMzAxGgRTAAFtjgL+CnYYsFRPAPsMCiNyPTjelqUpXZlRmZweORy5wcYkRVsTjH/d4XmQ24SITc+/xcJ3ZM1VQ//fTTlEpec0XDkRQgkIJ3xR3G14f7jiIimOSCBuidowtwAXMGk5LFECaAJbqcZwurKjpUUysKSFSIiJgXvo8pWhqjIeI81ZoYTmQdBJ2beHSxZURkn1OpTPK06Cs8s/lPxwKRKILOk5bgCe9ftv+p6v8U7NvPooGzA/giDf1YiH669JcXD5WXIc2DzacEgYldNiObMo3atpDjAM2KpoSlaXCaFCvvdRr9ytkQsfGGIlQ7kx1fdKQVfbN5OX3op3xZGIcxXErg6WAkTdnIrrvY/fBl+mN2I7363n59tdcX68e7vF5D7B7b1V5eUD9ep5+uV//mMRCbEPlFwy0uY83PHNpP4//zz58ISsCTwMRJczLXEnnVZFJU0fK4KUP9uNrjf/Xj7//Fh5u73WfOi1jsr6bc7d+61c3xbXop4eq7qTnuq+14aA+/6Ns/wYt3m/0N96vVo/3ity8v0yMiqIr2m83XR3fj+uscm939ayq+bCZPGotvHnAjyUuYPBEoYZnit9tmt0YyMwUg9mboSZSxdslrAllyS8SSVafba7kYVpe/+tD08d0OYx7tolNu5K66L3GNdTJFy0X/dlVDMYVcLt8etajbNn2fgGoHml3TWrlYfX+8mjxkBMCKLPYd47D++Go/vrkYmgh3t7TZM1gRAXf8Zvfg71a7a4Zx72s/9WUc6rfh//w/P/w3//x//qr8lRkxmr5qV22F4xD3u2QA87QucGxARKA6fxGiaCJFDMclGtYZHoOZ7o8IpiAwDzIxIFQzRVQCzGbI7BB6aG0MonMAMNvCiWO9GCRCUJx2brpwDcRx7dTl6BGcq0bdpI9jBUVEVbUiDlVTeSiglgUHUBWZ9QUQEQsYIgEmQIcqmopkMfTFGRA7XWpMSpqnpAzOMZk9Q/WQcK7UzfMidB4DhGUqTlUSIJg9h7hOx9byE6sqGPE8yeu04/HZiYhnK1jSH9MzO+Dp4Xpe18dSjkP7pbsdpxY2gSSJFMxDfVWJ1jpmhzCGmnMW3ShDidHWjY1ZeWU49qVu2HZEdR3dXtFTyVLqELLAt18+HjAfyqaE8b56s46K5cPxl1cf3eGxvQiHDzf9wfs9fvZPL952kVabDzu48YO72PlaUuXG1h7wl+//P7kyLbPaGiHIPC0Wl+VbYn9ctCwRQU/UOlyaJHBRBYZMDDrTNE3VjJP3pd3c1SVEx7f8akz2Utrqq5vyTy+GP/4Sd1hpbDd3w0t7ZZd3ei3lVW4iXDY7/pt//QWO+fblR/ebH7/+P3wIK1v9qfLV2ybKtR+bfRsDbejlHfmvb25vX+6OR37/xTcvHtofwlvjbgqyq6kooBKyRZ/Cv03X1ubKRnYeihg/dvm44WxdNosUoBZVJMSEFBLg3bcXH72YrtPDRwmHdPe3P3zuHy78cfwffnv/t9q7pPlQafjVdc7Nd+8+y11zF66/bzOsEzay/eX10VXvE/z2sgqxCw+b7FzRUDOM5aKCnoZun+nBySELOjnWLmyGXaptq1cat/y6uUe+5c9G0Ad91b376Wr6XH63I+jXuXTZ/3r9i/dk6bOv2/ri98h+8CYGpKA4D500AwxgehmLw6KUTVOMyGJKjCrJoaKDEmCWq0ITIGKcABEJZO4tFmwirwBWFx9CHva+YgU1Q6YytwsaLkFw9gPQfXb7zWVgnJqCjEhMB2j3crFfTYAUnCfnPZkWIVWzuSQoakCsADhjy6qq6pgdI4BIySJS2nFcXThN9ZyiY0IrRijsXFHn5CklVQAEEwRTMVzF4GKzGnbYYAEo80YnPLf5LgLDs+ipQQICdKiGsxCrItrcmgBqYKiEoEAzGeg5IWgWwTBeuFFuKn5zNaTVy1cXlkluPbpQNd5/QEPWMQl5Vyk0gVlV0ZPHnGDlPY7FOUCOfWlWlDM1YP2ByxXubMWP7Yt937xPb/bDMMYcGA7p+iKM40Z/0r+xnzbfboy3Hx6/HL/F6rhufnrx2aqnK/hwv6o0NbhzF4d4o4fN0eDVf/4PN3sgI2aipbxqz7zbHPbgkhIY2LkeAgBuFrQ7uz1vclKUNABA8dEu/eA9GAK8dA9VYwqoK7xW4nXsS6ZjlcJjalvkYbcq7EVJb6rpJr//3wxFg5+iHKbXv9P4IxQC7TWT5/Hi9tXtdnwpH9xvAm0qdrqD5pvNP6y/+bWTqkRh49onRlMVFLBmWn3/9cabmZBDEAPvrKlYMRd2KIYopQKchflUERh519/WrGC7EsED6aMOsunzL9rLX173dWP3MhjFdpUN7u6c54sYXeCsrbnLzWUb5Fd38Rf97V/t2CGmPl/fTd6xjLleoYjbvEemnMwCOFYE21qfJBbXYkAEs9vBO4Ridowd9EL/tpY//AOv0sF5K83lhgeePnS3ckPt64+jOTZUmAkpBnMVdj4BAQTRoRNbB40JVFVFJBOAyTLFFxC8qYkIOF1GfOGcGYjIMddNU4PkqI7mOT2nMrCeOCPGZFBMNe+Db6qgiICmRdfHUutDaCtm75lRyFTVDFXVVMTMZoCdjBDUWA2QGQM5ZgLUOasEVnMovhICMlV1UnIxgsrR3Aj5ZIifxKLKTKHCXFRASpafH/1PNvyM+P68LDijpXM8gc/+bNELOEUeMxPJ4NRF6XqWxHj9xYuOBnNGKDHnwnjpUUT7/hZ9kD76FYpYFXyyOEFV82gTtq7grUJVyfHYUdBUjC4PvM237sYdQ/6q+sXHcTxOrqOcS9W5wpf6Dt+GyQ9tect/cq8/jJvhoQoRf8ETbqrdx9qwskJ11+M6czvg9MU//Mf2oS4ITI5pmWH4aRMQwtM8eTAwxP/iOHkuCkTnJjEAyNU1D13yUsedJy3OSwInuQtj96Wqry0oD+SmttT9YGPLGXw0i/VweHV/kQNJ29FVHF78KDf3DDI0PTpXzAafzRirZrS3hte7ofI/vsybhHcPBQ+FhJx4HxjEEBOz4Nc//LWfKbMKqt5TcUaUjtlVKso4t9eqmdHc2F44x4FKUWubmMWEmtsf/znEFyH/6tU9pYcdHKAaeHXA6n540XrNBiyxzn33crOuRvgxbkAvu70JtCtv/Y4vVms/FAJB0NiWQr4oRXJg6KpNHDOViD3NjMspszGIkujwp/tfv40P7/K2JN3XwabLF0H7EHfrD5+B8Ks7lblnF8wWnivCIlyZ0CkSaJ1SAmLPCCpiMKIVRZCykHrn9uKlnG1gAmaLLiRkVd0oOUczR2AhA9osTwg4R9qmiYjlFpGhSkiIJkbHwTmo23UgZlRTp4uU1xwB6JO+FBPK3BiAzC4QOyKENMs2miMEB8ZlOXkhT1MG4NYDItpZouyZWKcBABRGDUEHYwJaJnTObYyzPdMzGOsZuHd2AWK0lATxBDI88x0/JxSdrgFwh00ZNp9//hr2EOrotpOC2JDih9W68XWzfTsej0OqurpMhRAk7Ae3CmU6ePSsybBtfZ60qQxSpNBOAfbaVRpX74cVf4z9MPnODz2tGkie7YO8Wu+g2a+u47sqPA6S0mX1o/vv7UA3+OOhvigGCK6FqeuO6sfq1f/6lbcwBENielJHey6nDHBSml++8LOvXBAQCM6DQsRmws0ZBIi8rTJQDuLlIeTL/aGDMVyo5wLRQRgv7q92q8c6Jx1ddtCrH7mafNzkx7d/ArRAcetjcFdH/iIYGpXQZ12XCYpBqes67Har+kA2tdC8HN4Mb01eUSwGRTRdAJsiESUt/sc/do0IoKI3AyCSSIqcRvQ4s8XY6cJfMDOwXBrWoyAUQ86pwArq/bdXtdkUVyzx46P4WGkChOwTN4kOrpIp5Vqnl5/lPscfgSbEC1uXos439PLV1Q2EMKR8OGQo/PbjAwQvEMBMfde6nDEw+slmAYsGEBwK7HRdHR6+ncp/ltf+eFAeN5pcM9m0yiwcctEmGiVapjgvPA48DT4QhyagGbgqCZ2PzAREtEJTM9XJVETU0uLi4wwTLki5aXa+ZkOJ6LZU5i2gCxIwuwqY31XRkguZDq5kJadAYAraV97qX7YVIoJKkaoUBSvCZoA4j0VBRCggiiZqYMzsZ0q6AYjOEiKOg2MyQUQCIwMVDFRzwKfRpfOuPVP4zAygeNWa8qCEaipnHt9J8ed5De9T1zE/FBBAn7oDlyfN4FNloLL8uEyEBJfv+M1ff+YGSGhkWooLKOzrwxCNqiZstk3VAMM4RucbspJ528VYXEMSp+guAaYxN2vJErPXQpCKa73ix8fr6ptj22eqYD/ZDRN5OzymX7mHOvY3ejy4ejzQlDd29+bz0q+2+u6uvclrOfKVG/JN6df97uL4+9/R5b7UhksGsCyfLnWPTyIBgKWc/F+uoRbnIIstc9vBeLi6zrlWByVCtcpTzmMINP10XdJ6xCZhrGXlV5X2COAv2gMgsyZx/kda/akbp0CR7G78u9sf/gb3L2FAv1ZJF/eXf7z6+mZ/MVayF/2qvR5v3+BYjeyKrIJkh5yKZp6lLYjAlfp3P/zCxGa0yNCz5Bgm5ChtVYhMkXwrZeHIkKJqOly4/VhX5hVRh1wPVchf0cU6lOnjkT96Liqm464WWLlwTL7W3QHSpLCqM8j9V//t7k9ftH27OpoVjW17ddNGZu/d+vb9kerWZEzZuDjmenPRibKbt/ZMdBdT1zVg7W6Aqop/chdkg9uMw5hMyQ0VCNzItSWvaZ9qwHl2JpSnTTqfqxKnpCo/bLaVc1YIUVWVvCGbAl6aSlGxAioLR2fe3USMQGgixmaSiRqdyjxob9bbWCzBgBAsKEI27P1YEUVnSqJshZBd1TZeMgCYKk6lGJoKGBDinIqDGZDNNGNC59kxBZhDixpgnpxgikx26h4GIr9CCrM7+qQOdVYFnT8mqzGkrCw5x+mZmOk87/Ssa7DkAE98n/lBzKcqwakhcImH8XnSAHb+dV5/5x6/+K/flkGkpoiV7SotIObqjYMUyxHvV4HWTqcKmBvKMWJX5WOktpIs6lscsmOwHKViCsna+7xpcgz3D5vuu127Axe4P1Y3q2yujHLlc+SCFaaHlXsH1fvmRbq7+E34/cW1fnd40U0+QuN0ssrYRmzzt//4Sh5WBwZ0c4x1DoDm77k0nf+sAPCszPEzDAA4mCrSskPA/Ko+qCtmHsOVT+M2PdIWHh6bEpve5eQ/vHn35tFH3+C68sSg0LBVxyrd/+LuIj7kirLiAft36/DjlXJiN/mN8Na/9C8a8iOBOD9ubx6nXdvjm49Xv7u+iLZmI3Aoy81Q1VAOX9t2mFncQsoBU6GQzdS3PPm5nQVs1gRTJADnJRfIiaAEMTA170YlPaQD0Dg5PG78SCy6//gZ2w1DT40+fswuAnV8nNr84fNjeRXGhvveAhZav6i8eJmQ1G0VovFNe9hH3zbOITkG4gIWxlwQEbXYRE17Wal4OxzcqobpKu2OEiYsGSVlV3iPVdzG3MlxvL+oMqgJmAU4aXvN3x+O+zEXoGnaNRdbzE5nUZeiSKBACkBeHZCBmiiIqRZVi0RECBRMMiJiMRU7jQTEmRSCagizphCmEsyY8hEKdymjCqESlbroqs1TBQval3VWHFeAZUb4XJBwCkaM4Ii9OwXqNp+85Ji4SGFEUphnE2q2AEhWdKYFPjPFOSxZFMyJgQIkNVZRETr5xiWLf8bdmff/Jy81LyGeVNKeUgA743/n6sHp91MKMOqbX6WPYZ6yWwipxGzoRX0dnCmk8UH8ql2BiMnY91UXxmTBvCXxFdYF/KaKk+6cZ/QFdzey05vjH/f/df8H4EMNiFPpVuvMmAfcXMbvqnZy9f342e67erprLsfjl796ePzCD3fH1RUe2qO7pp1uXd+6h8q++uam3wz3v/phTTyPW14s/5T7n/7/FOfMPQ8/A1HODwY9HT0GZqAXVSQspsUdrMu6rhsGn/nXTT4M+/XHV6kc851WUvlcj2jiAYJJ26B7dbH/7LEPzkiprd/Ziz+h+1DtmvWHpsK+ml4fXvcXqWJozL/1U6x3WvD21mzopnCI5IqhhrlLrTAa/+PhRRbHZoTmEnpJsCYE4LZRNAMm1VHm2McDmjmk6RFDV3mIkKfsayJ8HF9Yfxi9uaAh6qP3ysOeGlz55OUh9ZOzgVYMFJA2v/yd/+yQL/v9o2crq886nAB+2N381UGqq/ioEqr1m3pV/xrz2B8f9xgwh0uM0QjREHyzuuhMq7tcu3wcEd/v62pyK6tJ4oeLzTHceVtl8eVwCENuIyqeDzMzECBAEzk+Dt6p4FbjJG5VRSN2BIBZDMCFablrguQQAMRUVc0GUxUENGQoxjgqmKkudoVYAACQjAwMCSgVZ0Aw7etjRaCos6ImY2hdyYZFRUpRnUuRJ27yfHKamSF5Ykbyp1Rm2XEIiydCJFAinqEaSDEpogrQnIE8t/+zURuAAbkgY3FcFNR8Pk1cWlKA59AfwpkAdH7BZYoy4s9SgLMrWK47EYFOV7hbv1odVu6wzuZgdM2Uo7maIMhekeuaY9Xg8KCpWbVuvU3HLu/tko8hKzYcIwFomqTKCCJlxCbSmnYP49tBm++ny2klx9Rdh5I3NlQXdHfcxv5K7uLrH2X1OKyaD/zl61156+mb4WV7Dzdj65N5hmHd99vp999eRr27lD++yXMj9pz7whMIeE4ATm1WuPSMLF/45xgAaYR5UOO8DWXrhpUOIYi+l8/9Kj1SCyNcw+jqof3ldy/evXi8/OkmjZM/XgwkfgMiY2xefrx426+krQLH0WidpLn//p9/hZbXq28wgYxd3zxy7/lYXYi7dr1++T609U+b+198+1H8pKuVA8xFjRhUKxb8rb4+InMxQCNAEvHNZAboXe/QgNhKNkACUA+lADr0g//8866uUn73x3uDNH2edwOJVUVDgstjHKpgpPL9i7FtUhh2GIjjuO2Ply/gLnw2/tXu/fqN7Ugga9lePVbU8Q/wOpn3h2NZD9nCzdu1HZjcpm3XXzuwuuJ9UTHwjutV24UJ/eff7gHAcFyDYOZy0/k8fLgIl270u4vUyvFD6lgLwczhLfNEZ8sIZCpyt6dtM050DJQOAQOJAoHqYUoGVNfbmXcLBRUXcSxiQuhkisWY+7pyWgRG8MFzgbMMwHIIEgIioa3Qp5TjUHhfzYPEEZk8+ptNigD7BGgmasYEC5qMSxcpos70Tu8Y/OzEbGFlnXsWJvDeqZkDUzDERVfUGGmeZfxk/wCnjwgAIsicYkYrWUp2P09h8Vlse4K6nz/vEMCQUAH+4uF31pxcDJ+X65yzw/G+ijQSAlflcABiS0YfOTSB83ik1lddg73Hh75U9bahLlMiyEIZKB29LwX18ZXLvt7li/YY6sPO/4Ye7o7UaZuH+OJNPDRv/7i/vLRhqmPV9vfh9eOIWtbN0H3m7kLH7T+km+3A4Yhb2tuFO3YHuHj/n8ebESvMdJ2r2ZPPNwJMZ44EouIikocz/c/N3NGzf3DnUNNwvh2zWJ0VBWdFL9FT5Fqkfhg9+x8hYO86l9QzdzRdD9f5lX0ZNG932h1e/+71T6uX+o83L/9U8f3l9xdVGL0HCsmv3eG/QbdJX9JPAe+Tr9+HFi7Dv/3fSjNSSAIraapV/Jza6U2JlCsWAgFCswSAY5Cv7i8QMBdiRNYQlLp877b9uA6xSeQIVEmJwMixAFkVduj+xU29simBvH39zVdpTcfNcHh1PFo9TdtmjMdQDy389Bkd6K4QQb0/rKd8USgefnx74z/WetGE8f1HtJ9uSqwKUIIfD79hcbGCCd5f3W0/W+mYp7fjgaHz00+d5Mty+cv7dfsZhJLpT0PTKPLL/NB2OXFy6FWurirNbX37+Hld8cupHG+nfp1qZcFZjR8dmYHkmkSB0kPv6V/+4n169/6YPRzqzaDeax7udlsZLvbx/eZqa3lO+Wzp6iBUU+ZVk2LOl/1jVSERWsqAVDhGdCyJAc1U1KNB68ZEFV2s01jw2NRIEyNSkFjC53bQOfqfG5HnobmEcmoqMQPyjjwxz+W8OTo3JEa0k/4ZITkrhBo9qhoojr2AgjeT2eoWa156mwxFDQmsQfRcCtdReMqz3pDOjHeEuYxBeBYHnxtF1ZB00b6cT3+1RSz0FCCbEKKeHcepnojnONgdu+FbDugQQIy8QySTdJTaORul6GcGtpuEW6rqriDfH0R9G/DW0GEcxhsHKZvRuOJJtghDy/t93ZZp/xhdhXZwrzd9WW9ue6BjqlbxZbmVl3S/337cveadfwttSC/03zRv891VHi/aQ1m5GOsfL/zHb3qaFE+w0dkTntH+RfIAz0wo/BlCAEtfKJ4mpjx5xCLAlpVbpwIIxla/hDz2K5MYM5aKCdiTQXYIXOxNvlrFtvkl5Bcin91+e6Efk6T7qunysSoHWu1Xrml1vVMNl17Gy8fBd84du394c9e1dx34kEPtJsRWEzWuJkYpIn4J8AjlnzSg11PA6W0ADoJjQkTIBCJnAvRMEnMo2Ny8vMz74n0kg83VXXG+svGHI5V6i7pTc1Bntznev9mX2vcSYsKpFPYuPuCwulk7kWMajuCojCIKwUqpX3Q2+SBiqelpe8ng/N2/79qWb6uW0QNQWP9td9xq7vZd++4Q1vd8aTDs0TOa5vrilUuwHifuvqprJksRDSe4qkQXSabZRRObiiqUAh4ivUz9m99/J06mMSFBHMd85T2n+ur9g1mLpkozqPUkdSGGnktJFYI5PxuAzSQY0JPoLpICOsyxGDFT5W2X9lPb4ARiguTbZHNDnsKir7fsMVpWnGAm+zMSnZqLl8oAIZy453gm3TDPlTtdotG/DErbWbHIgfNaeG6EMICfa1oyzDnIM/XYT18J4XmzwIIAfPLrJ1efrnT5ev1+Q665ZXKoIo0VM+fhaJBViR8RTKBu8jgAOoYv948xW83Yrmo9JOwDx0I+5EmjrJrYDkWYmL/dDVx5yc36Qkemhz+8eiE77w7XcXSNDNG+8m/zbvO5S/3m6uEnvIKKDqvr6YhdQM7DZf7pm2PlMwAS/0UHMC8rPSNCLkXf8xV/YcHtlHuqMufs2pZEEc0su5eWbdNwAQGVAQ2cx7Ie1xM1qeLHzt91UMkFlvIyjhD7bqhSvv9S0qq/dSWN2+Nte6gcsgKTrTvfP27da/nu877H/ToBVRT3r0bPGKqEcyJCcMYsb/9QVXLecOAgQ8CRe2mYIFameuaGm4JTdlB48+v40G7lm//8rzjB6vKQnW/oqJurV3UX8scfHprSCDer+1/wKFpcAJYpindCBR+HQwtQ4piIiSiLHPfoJAqXqXOwP4yPbya/6nLCEH//+Q35/qKGxJaovXoVPcu3L97Ey4vffaw6DRcYx0MuVnVue9NOzmmJqZdxFGDQtYShXIV5wOhco9eZvGGCVkrxh3//YV3/+Nc5M6Rh8in56fE4/upvf/XHr7ovph+OjmtENzM/7TRZy0SUvAPYrVzKiJqJ0ea1MrNFTBfJzMhTTORMlIm4dUNJFSQHxr5qV9FmlvLcyEuop0N1Ka17JCImZDhN15lPHj655NOmXG7fEnI/DSn9M5Od/2luAwbk4puUmAC0FMOzA/jk4mc/P0/0f3aBPUHkn3iFJx4BPuEArvrNb76+/WMMG/JVXbE/ELJjJgelFCUopoaOSUqhCkG/5vYlj8OA+XAk97bascUMqO0dbRNAlXpYra0/vNPQhZLy2206dN39u1evmh93113QR7mm9zv3WK2HwxdfDNGTj38c/o6OIfRQx2lblwws9XdfpSYI0Pz4s5U7rcxCDFjCHjstwll9lZcUYJk/DydSKBKiYlgjwDxmRcmh82ykXgkkWlGUMtHR7WG7vywZ3tOV5Drsq0Ivx8+OY5MtairGJQEerx8uPvzpXx5zVUFMoTNwpIGOtdiax6vbKYIrIwEfpJa2fFgDAgDNsy/MAPNv81ueFn0IBABuyAta9g2ZWzYi4VwDNKHCpEIrV2D3TRkSw4QdUwuOqrC5vt5O3vDm7f7bHdfi1ve/b6spU/7YkRauNBeCtshPTpjQgPBgK1/K7U8vqo0H6hyX9OGY99dgKqVknNafv05TiCXBCmJ18zLFlSsRIfPFzW2/Gc1fkIzlRrpGOH/MLY28jh9emZoBkaaW6k2yeTCAWl7aNAgQ1ERCq/td2AzTo6tzpOMl2vgwvbz5KBpWMnEjB4c8zwtZ7uK8zZeA2NLcmT857zSn5IBmIc4Tmi7IKBDUTJWIqmqlKn4NrgqOWeZpyLPVz2N95/tzms3sl21Iyx5CnM9+XizpRBSaWzXQwEwMTMtJA+AvGKzZPFwAABA0+OMEYCpZYGkRfKYJKPMrP72AnW38RHc6GfdTCyTYYhYn8uwT6Hj6PG7SapP2/fEPRanZruoXLjgBkZWBbx3CvRTwoRwGqloPU1S1BOa3ryH3fX/glWRxHvVDv659sXS/WovC4R+4alyK2LAd9Opw137xuHfbeOzuAvUx2b7e7sdf3Ry0qTb3f2j+TmLXw8t8ew3xyFK4+ft729Jeqnn45xMGeirILID/aSQSPIvbFgdh8HOXeVqVWYbCknLdRIdkgmgEozIrEBAxuBpE0SINybRMMR+lvPvV8cD40NSx3L/sx1AI1/FFDzTIjd+lNVp9tOPoMRd1QxUKXRTtfvoX43qlKzbGh9vuF9MoUgo+vpiZprMsLCDw+/94sTlYWDANcMUCi/gRQsiFOMOZHIYICqUwmhH3FIb75FcmEiBLlS2Gq9eXfMBN369rfJWgnWxFO4qJWy97h9g18XE9jvvASFIgBDI5YIco+4MOXSOe8GGc7rn2ArGP7HRYXa3yXi/jcYBO08WNjl21q17dHNbjYfN6fyRAsfrVtcdWB0q6p2I14bgjxyTZ+ljX5CN5PFXkzgq5plpKLitKcZAH6mDUvGvYjTv/V//DH9Mfpu33vz+4NFaVR8GnopYBIKBzBkZuM0XnERyxIylpapc0WE9sOdNMgq4HQHJMlHmNU0PFOVRJ4ueS5GxipngS70JkZkZ0cysyLHTgBfpbVLbsnA6cogYglFk+VPRZyf/nx9h8Ow2QMjlLmQBUyskBnD/72Wyfi9opwgn8Py0I2rlNGM5Z8GkQATx3HosiHoCTP1255pdfkI3H/WH3LrauarfbTV0AteSYJwPHHgtC6SdNeV0HSGmEyldNYwaPOWroWN5vGwPub1+yxbs+NjXCGHGzxcwX8N3xfxgnWDUS37ODxwOSW925v704lOvaPfzgXrpDNXJjVhmQluAevvs+1BrRk3sa/f2zxwLvn5KCpQTwpPqNZgB2wgDg2T/P1ICiWFWkyqQGKA4QHZaTmIARESIRhM5nZ04RXfXt+MX9N/99Mv1uM0xt5lUzydQ26mq5/PDlg3z+w1U7HdHhcCSdDh0lHt4Ol++2Edqk/rKQm1aEA7gbXG7ybAho8qf7t6VULi9nCOUCLEqjD6oKVJARdJ50hQDzZGorUzUd8Ffw+IOodynLQKqXNw3s28dhnOrj8equ91Dquo30+VUXwn3a7wGqbeXKoaOCIiqCJuqdmR/y7q5qq/Cht5yAqR79eJg6b3ndxWOp8BCziElojqn5Lv2y/rgtQ1fLseNYaN3VsGvzw3B5+cvHD4Or1epRgTh4B0dmHas6LnkvEQAQQEFVlZL0wTfOC9YSYyQ2Kn1y9OHvry52Dy+207uvEczYhM/H2wzhFyRQYGxjwoCAlQ8goHoKgm05NVSzgaIhIDET0qDaErJhESMzNVzCxIVMDshz+MnMPEcC8waypRtz8cinOv55U85ugGAu1hU5c5Z+vonNDJbCAJKsaIwCVKSIPfNyp2SA57TpWRnBPnEHz4CG09E/r5KSPX/2mSXMKcDm3Z++2K3ZvffhbUUqH8fD4VaQO9+uNuvKB2LypHqpJY+GgUvf22YTJN4Wblq/sZINxvzyuhFI1rx9d8jHO/8ipUKd7yqMrf+Yr13qpgd3GabtMGSY3Oqx/WX9cf3Z0R6/wV/J+407XLaP1faY6xCn+P6bDnOk1pU50HoKXZ5NPJmDszMigCfXZ08Q4LMlP4uhGYAZCJpWXW3BhAjM2NAhz6EWAEBiVGRwF0hNYx5eav3Gd0330Azgxqth02o41rs/ri9gdFzSRqq4DvtVGyZzMPWf9ffxJb0Lw2++cfp4oz84bNpNHHhL4pXX8aR6M8sS4Mf/dF0PHDLM4DNEwORQptJxQSyeTnXokxKiibDlHXTjwP7mWsmNfcbHC+Wr9SRaf/cDVit3JT6TUwJ//fmXm9znt+Xhxw+R29Rwb4eYzAXKRbEKBR3thutjOR59STUWn8ZGLR8fUqjQdGMufndPOkxUJIYi725wjNcHqR4/xJVFuXzdHD5uw+FR45Gvhx6RG1wp1cFVFU9D2cWWZOnYBJqn9s3Hmmo95eSCcRknMAwrjiWxfPXb1a8ujnD1Ur6hMrYNi+KSws6mOAv0oAgRlVJRFjZEpHl0nJ0cgKqBZUeaGAFADYV0UtOJSYXIkeApm1xye2IimkE/RlzKyDMlEHFpNsEFxjvJUOCzJhVThVmm6VPz/LkPmOuIBB0eomkYRdXO/uZJ0OI8TGz5newZ2e8ZN/DsDJann9DAUwERzu4BAMBNxV5+dyxwMKja7WrlACQNQ97r/U/FtfWqaXxdOxXnWAXxvjKhsoueXOfsOE1tVztLaeUm5X28HhilepkfXaaucxbbQrv7V68OZXJXOiUlyJMEzJvXNF3Z/uruK/4C8xqHV3pYUV83e/APfzg0QlRrVlpa+85hDCkgzIqoiGdq8OIDZqlPMHjK+U8YwCd94QhmRObrSquUwaNomwpCsrnd0AxrsmxA5OXIznyuNLn9JRxvfvN909z+11+/8+klXP2wu3rd/7hpJ/7w+jH4/Rc01Y0itW1ar6bmbve34Q//7H/53/37pvrqn91I3xsRZas1qTdVU1vmGiB8+Oa/5bQJ9/USzBw7p+DKESpOgfKp7vzEHkETgNy/exHQa3SI+vBodGhSHfCw3n7YfXldpoeq5YKEpbz58kX63rF+f3Hl9H10w7o9yOQCb1Zw2AtXno1LPlwBS4+uyr74cbySYuPdsb2uL3d2j+VPL9RScqUMipT9w+7zkS7k+7SNNfuGkevJj3Z9PT7Wq36HK+upub6pcxLeDgUfcD8XzcnKHAgoIDEKwt6HYfLKVaRGRugS07Dn7Xb8t6v1N+Xte4CUXF2dY+J51yNURZGxFPZVUo/TIMAC7GaNbF0geFVkFiSZmZdM9Nitc0ak+azWfDpoZrFSmjvPiGfaAsKy4RbUFgn4WYq5HD6nUHS2MRUBFNFPovgnOP4Ugi+IAlltQwF0orawExYMYrl+ITTNxKbnL3Vyh0+//tl7fXLkf/ow/N/r/+nv3t+j79/1lWuvNs47z1JUco55HKdclB1X1WtX1YGXLnxTi+SCA5HWnIsDN951fPfOv3jP08NEoAcNXQMufG/rNQskIy8h7bbN/SBD8rT5xWNYU/P9T1drEIfazePaZVrBj386hlVPSHOD1SmrOnOfDGBGX+fjXw1mMMZOy2HPhULms9/OGhFmJgpmfoQXXQlmIVbl3Xbkbe+7/QqiOUgYeAxu5BDZzADUKlFCMyRURQ9luLhPrw93L797dZywrr77BVmhpoK8VCRcRh4Pbg0mCoCQbvEaHsKbuxYTdxRvN12ZlLmMm0x93f/fG88BoMK+ajL7qNsMB+q++rJiNYJ5uKwBRiQmK7IZM2kCv3m9NbfSXt6pHerpP1af07/y9/X6UI7Hv44J+Q8/dVqPr1/+Ykx1/c11qD769PsYNPmcaP3qanNo/N3xx8kMUR4ffoMlQaBSYRIuhe3Of9nu4BJMkqGU9j/zJtn65Zc1Dvu8XgPht9Pd1/9VIfdXLw4S3O62+gz3uJm+/6las65frDg5+EN89aa37/uptURVKY7Xpa32GXaqADaOP87MW0w1TbJ5fTHq8BiZrZmp8ngQCRdXtcxlYQQyVSDCzKRFkOu71ARHZVdVEJNiXhIAAzM1VUrGDoAKoXJlJXmWZWInABicTnaHxIwEM+hHPKcYeErygRePIMu2etpvi1DLPOMDXTIrrMeH+8RibJlOPYyLn9B5shEcQnXkjcMX5d3kGcYyDRnn7BMWSWRc2poJngRuPjntz98CTqrDOGsN0jPV4Dm6EQIxAjmNonJjU7U3GytbeIwPdxnrCZico6phB5rTmFKOfRn/A/qmXXXBuRCcA6tM8qBEBozAdV2n7x+7X/CxesiNe5TVuNliDl3327eXkhVglawoNWEnciytOxyi8xblcdtyMQhUyADBqJF3v49bt1uE1WlxsLAo+iGdWiKWZbATCHgKcRZ6wJOzw3Nb6FyvVUNUg8ma4AlEQVRl6FeHlT+UYx0IjPJEVpKQGKkRo6owF2VSIQArJg3X3tfr6rqWFq16efRUAMyfPpkAou84iJECALoX4nKgY59RKKMMZEykkVyhwYd/f+waRSpTqCmh02SHNho8NnxubFVCVFmpAQJbNgTyIsfvP5APkjF5dNgfVjLc3rR230ORR+y6/5zhuBJrP3tobvp/3dyuf8GJNrvsFMrb7k1bkxW5eXHx+1EJArkfm9bngXxPANhpSgFHdmWnKuJq78eqDhiH8VC6VQPs+sfxrguw73SalCwH6y7qgXwYBgslthd+7zssmx85Jn9RpimQZmi62rX8U3kVfRwmoIav+kMEctiWxJfXTWauq35gP7nKg8RCisjeUZ4J/ihzgrvcYgQVUQPTwGBIz466JWJaKAE2Y/wiCKaLSgDOpkVIhOCRmQmRF4iPnsbPzeTfZTfS+fReTtrnCPT8xjOQv5QBHYKhznX8k0EagBVAdIEtWBJinLEdfFb+my3XBGdVg79whp+igLMTWP4OzhDD6blFa+1kMQAAjq8urbjaVZvs7m+pKSrG7EioCpVzdF3Ecp9U0nR8+FD00lVVWwXmUFOlzkWyDDzFnVFTPRz2xN6qFzm9KFMb5KD3v2r3xbFPU+OijUNKKSOCskAyX19MpkUdkACCgQp++93U6OQQaeZcLZ/+ZOiLs8MTJUaXvOsc5iw9UeeFwDnTPIE0C/hmPIVVQE4hA5rosK3uXb7f+gw5YteW1Gj0mIRFCUilVGRGrJlIDBC5OFewsSutGxz9i4OnlFSIly2nhEoNGi6VIt1a5hZsA8IWDbiM3jEIcXFxPfxHC1U0JNFGYs1jriWUynbXjHPQ7wyIwCAv4I8BKrHGdUlEKuRCKgFhi3l4X22cXky4uSrph3uCj23Bq6FX/RP/q2/+9AqA7SjrEvC6vU6PeeO0OY6vPkyYuZUuxmrdttWxlFSYY42xpwb6iASYsozBK1rMf/JtV6Fk9zCljrhQikMJKrsH72LkukyHEvJ0teKRq2F3vHwp5K8PbvIoWK0veHLDPzVfYjNgEQfuzZ57ZZAY2na9DtBT1R1H5D0NhGbgwLVtIHVLSC04c2ZO88lV5wWqAQxJ5YR+z01fJ2zHjBCIQUuYk3hcuPyIyI4I0c/bDpcKovGio8kwT/A7FaQXXAqXvPOU/Z8wwBONx8o5Z5mjiDNEMEcoWpg11C41OhViESh5HhP87M/AAM9NPH/ZA5wc0Gznp+D/XAd4cgq4GMHpdRyO3/R9tWrzA6/55uplLGkcj1MJNiA5R0fgpqqYHwCt5CLfy+ER0aM2bedDcFahEqboBpPHA19+uAgZasqrti7JoDjOI5qFPrdwkDG1B3dJxb3oqmxYNd09AhGaOEC0ksr379LWH8tKF/7fCfA5Ma10+RZLRAazQuCzWsgngwJnsNTgTBsEOdVWsV1RQfEMhLwVl6efcLB1IcmsAc2E63GqgAlAjSpQQpslGI1mxkkEL6yEQOAvyUIxx3r6JAQFnUY/33MTJuYAucuFJKrrRFUAHCCIC3//7qZWQcVgKBAgc83AcKS1zFPhkGfEiGdhTFNCSUaWJkSJir64pDzu2Bk8VOOFaxw7iHfvoNGPb9RXd+uKP/wK7+qoZIfb9VDiZVUe0urHQfKNuO4xoomrcN1trzqbut3U30fzFWnsAYrHeZhfYOrZpexi3DnK2WtoIFUrwHwcukqjr6lQTXfDmEw1uOLpMerwqt6xYTSiYm7d+YhlyCHmqu7iaI5cWGexHLu6daCmrNhscsqdiho76pvuYsWmvIg5LT7/qTBqyExAQYoamNrCCZvdv5kuMwjJkNBUKxQ8iazPDB/nmBA8EiEB6iwkhjT3XoBDO58+54MFT7vtyfrO+27RPS9Ljj47Gl6E6WdUC0HVHIpjgGaa1FPOWsqsGPxks3DyNIAzs/VnjuB04j3VwU5/jji/nyGcKHIwSwec/9zx/kcL9Dj9dAxt8bV2oJpTligpZS1wEGKP3m/ZOShFXudxPE5JdH9XKFSuqoOra4phvB9ovRqavQvykVfipe9e7r/6Z6tiXGKolIeDYuD24tpiqCr0KLa7JyQHqEaIaCr5B9eJUCWMxOeuPpsFDHDB8k/zlU7e7AkjPP33PIL69CHzNBpI3NaTeIyMbHwjClcH5KH7YL6F/hHaY6plKBtlNgFmHiRQFgY1mR08U2GXknEE0oLFsELCCM/f2oQXf8sCYJMpCThHUCUpIkKshrkb/p6uIKET8JZLqCK0rt1h2XcKOkeEhdDE2AWVOaogFAPA+4smJvJgRnXT99wo9g+P921gLneZQ7ZSRPLDiyTFH//d8Y1L41QkA6bPfR67eB9rHY1RI1khhs/esDFzncPKvY+tkAc9qAUQ4MphB1IcjdOblMpkBlNwnHK3mlD3t3kFN21wo8PHj4w5GSROdfmufrPr71Io/WO/JdF6E2JZa/gbUh2rbspFMVZbyJKjTWPVeYU6StjmXSIEBlRZrS43/lQgAzBe2FwGaoCIaT43ERd+xXMpEDMzY8K55I4IYnwqJzoAJHaENDsAno/wpbg/ny1EaLScOkskiufhYwifHDjnm28GCCXLySpPENWz3aFqSk6LM3MsyRiKyCxqSn+2bwGePM3z94FP+/3nj23nQEROycbypM7/O38QRxefvxwnrX0+9k11/CNSCHWz8iOYpBg15SmPxfgD+ypUnkJYg+RcSuqHnPO0J0AXGEZst1X8qBcaj0oV052u3Me9+xUdurok1zNjnTLZ9rKWVWPuXjg7K2tPquBYCBDY2ef7AUg5LANgnvvWU7PfXG5Z1gPnHO1c/X+6L08/oJ2b//AUwpWuUkALwmqjrVPkS+ZmwnVxraFnGqLm4vXADhTZWQLy7BygIjlY+MMGwmGwkJVFHVg+48LztuSAS0hGxRwU4CJWQLAUcC7nmcdBf/jxGkR9mLK6jBVaqJEzRlgJKTAZoC7fdExjNHa8IvRqXI9opTCVEFNMsWl9j8L58ZFdwrF2Kxl0C3D87s2xuv91qd+ql4cE9u4LmhopUP2b/eYNTbv41mX0MXa/uOQUiXTvqL7pRwO3tjiyq0IgghQ1sQ9+Kg8IkgG55gToNoAe+9s0aSKRZMN9ah0lKo89NRnUqJY6jP10t1IpGCjW9H7YsIa+QQYwcCzDmFPpBbjqtmtjcMG3fS+qxI5f+8ZLQa8LuEegy7EwE/hicbM4ps3qfacUYM7FVYHYAMkACEUhmM3KsIBIzA4rXCL/Z3HlXA9QJDbUhfSfl51V8JNT9c9sc7ZDSWXp6vWmZ32SxRmYqiqTAClWJQmyCpSfDQQgeHacPz+6n95p+bxwAspOKQB+esX8T6cq0jkFePvZb3BS1abuh7RyqGU0QuYXrnKhFtNUJE0ZRykZCJF8XVeuRiLUNI75mLMUUbrw62YYrX1ocGqufR/Ctrv9fv3XkqjxVWOlIbeOd6XWkhCQyj2tsvlLnNuuGeaDmf/qn47BjTLXZXHui4CzhZ9OfTx/Qz4FhMuX+vnIIDw/d5KfMFUToK3PyGAOs44ZHi/d4FzpWjBAWiMVvy65DZOUCQnNcud6aHwENSTMEwcTsGykxIriWImsKJ4FShQRhfzcuYpoZMYVqKGagaa5W8VAXebDv3Ob7Gc2MkLtE7VkY+jTVVcQAUkUnRlRGeKYp2zENIWmcdl5iBN2lUeHj3vlJii7CL5M6B7bptsfoddrIX34p0vcrnt3Xz3KMJHuPrN0rBLu4U0dYaxd1AEvNV2tErXh8BDrVzq129voHRmv63rT1AzpeHzowSutZHRkqExKGXzrNZCTPGq8D6pOJuGIDZrs393E8NkwdTdWHQ+92x9Y05S90f59oppcsDxGZHU2PBxA0xYt9YdhWpMnuuiipFiwbionAMQAujTWz/tBz63f2YhNmebYH+k8GQjNTFWRSAwXFSNxlRowBlJEZnZEzYLiK5wKcASASLPwPuoJiMbldQsywbMj/Zxmn4mHCKA5FmV4fhydZcFt6T0E9B6gHkdhTuB6RUJ90rSkZe/SkgP8uQP4RPLLln+Ye1/nkOcEEp5t5jlp1v2rdtVfvhpK98vq49dxt9qIFCkR7nxds/NMWLFN2VYqJRfVHI+M3mFdVaR161SMZQCXr4Y/PG78Q7UPl5uyl5Xc/tD+Gr7vhFm8jVeuJA4u1Ed4yQOtH4/Xm7EYOXRoRi7OEyMxXeaDrmXfKs5EDzjlP59+9aeFt08ioFMG8CwSwHNtEA3UVEULtJ2LDiOiTU5UR2qnK/vY5NJ4MUpD1zRx7PjDRUzgIaXSuEO/8uOlGVoZ+mtv4kBZs5FJ9lEZzcifTggyAzVyc+MlgrIkCho9kaIHo5hBjbhgWn/86qYaWhvVey9cYa7qKEOX0lsCmqc6gyvKND08BsMKTeWuhoaAfHgoN59dtCH53dePDkZsab+rSEtDmnhqLdsq1qzf2/e/eq/rw+GbmlEpDJB3b413l19MOeVr+2m/89ceL9d9ctOD++JD2w/rbTsWLClcvewYJCJvOp8ZRvW+iKho4bxldnUYHHl0zianozbZLqYolc+Q7tp+fc36i3QsP/RayaG1Mk7sykDb2rtY4dBPlULRccTAJUVxlQ7jX9WUxTvyC1UmqZHDUhSNDMwKIgKo+ZNhoWMEgjR3/lFZ9sTS+6Fu3kRkgKaKPiGBq8iQ5uTfLzvGlk4AxrlH09mcUDiYwUSaCXwgbHiuL/3lByKonHJTNQVgongO2U3VDFTB+Qx+n9UhAKstmtXP9rmZ2Ymgdopgf+4I8Lz1bQHHaeltsFMQaqcQ+hMQcOzwQifwq0J/89+l/RDZRFPKnspEBGghoIBzhRyUnGQAFYMhV8bkvWfrvGjtid+9G30vlq4uQkrV1d1QX2mUUSoHItzg0OdYLoJducwNDPVFHOtD7sI87UUqA0sR8DgmAAWXyYBxvtuAgDK7PzRiel7nt1PItoSG+lTnmBd+QRBnuNbAnEZgLNemztSjuOzdOn02frxu7icxl1yotH+o2nGoUqy561SVq3Y38iZH/MilvpweSazP25K299t9vATnM6EZQQnJRahGxxrgEKqBEQlRRQy9ZfDLhxJEZ4iWSTz/w3ABIaMHM1EXDuzuGqt2slIH6FQQvfmI7t1dbf5oV1NpBrYP8W2Vm+nzyzfbKTcg1xfv3vceNmmTvIp7YMXoYJ+3Pg/1/S/e638K8G10YXTtXja+8HfNtTbrQ6HOT+P7NnxcebGC8fVPD//jbzeSSiE42lrz+uXFBKo+Qru/wT9UNdxfU9VLtb2a1jr05nKBcPlwPzXOH6hW9H1fX6tQPerXrrltaA9DHFKT6hDKdPdyK07X6zqluvpwmB43XU/x/eG//c39NOX7KaSDHXJXpVSa8dR+y5rn+YCqSB5PwhY0hHoCOPaB0Kkw6OyagioYLu0WiAjFmBkIqGStQiLpWkBWwrlB8QQjewQwYDIjRFMD9AAAbDMLcDlZzdZzAsC2QGzzgCAkYBXyKOCKsqoJKhKonwM+EUSk2fQtG7siXCzDmkYJIRebRoBCXnNYQuI8W/ciSvhk+EaMJjo7JgCY56czliUXWBya0vyJdYkkABUJ5Kk86D5iAu9W60eE475gdV1yKaXIseTRKLAkRgViDwDoOr6yElVTMi0lIRMNOCYitElcKQVevKjfTV/iv8HVqirHKb5IR3Bex5iSiCGn1YUr5hu3f+iJnBEgEqCU+/uEmrMrmVBEAp2gmDmrOYfWz1qD//Jjzv/Insi/zx+cjSHRepWj82ImWuuFNgifNckuaVfnQ3G1NVMJtex1o4ZIQIC1D1TU+XQf9xpaF3elgj6FfofMWXjOJyG2B0/54liy80ClKTIXKk83Au20iWbEgmL9xz9t5iY/IgKtSx+6rvCUOECW+YQzGwP8FMPD5cCbvq8IOcg4dljaL6/hUERrdm7b2/qobjtNoi40QDjeGiKEoAcyiUd07BR0Eg9mNn3oq5W4GtL+8YBZrEg+UDM81M2D571c4Me7tClj9aIrRl9fvp4GTdU6JPQNNGHzesMrUpt2d/viVbBxOOSNgiiB1cErxSyFZBgAQNlhQFitY6nyt/nKXyj7OpeHXd/HYiwJK526L7+73I2bH39nB5ZJ2KmSGoDaTHDBpTj3BKYpmhhaVuJ5iOAp9F+yvqV1lxiXYrqJEdksaUpMDgBhzsdOeBMCzP33nwTcJ/MzhDPTZA4q59B66Q2am/jmsqSp6NOePG9PASAQVFZUQOGAAFOZT4Ynot+zt0WAn6mCzWinGZ4H4+hc68DnvAD4C9HJ7MaUFsgA3KW9L5vw3fGXvqkQAHdqgJ5tKxpTKpIzMTuAQoSQEphDrhvWKCmmVEQNjYkUW+knaTdvP351888//on+etofVm59eVBi6Id+MuTKN/U1FA11HX4ode0xJUNkR6DD7nZypGLOMyh7gkV3YYH9TwtBRE951KeGv1T850DhDPudn53zM0pQa2m2ZIYq4Gppj9WeU+WsVJUZIRREdC8fjxpp2zwoBQfsEwYPSq64a3BxYhbVBLlgiXWJB67nNj4K2EwQYtnsEkL74ColhmKO1JBQbckSTxvFAKvff/i1S6RI83ywA/riC8W86rCcukjMBA401f/Xw38Yh7dxRGMc98D4qpOxaj7+sX6zok2apiq7NQyVv7i58Vl3P6RC1rk4HthxKoUyN7AfXQArw0MfBvAcY0xSj8VBSofpsssXtl97Ydo9jIe1SX2JQxV/RPx46Rro/IAYErTbm1XGHCKsQ3XXe/Re42C3EIoFTFskxoQuBZYoxNYCcoxdFZPZntJ25bL4tDses5IJaFS+H+sQ68zXO3PHTsUcJASDeW7WDMzRjOmfqN2gjAUwTxi8FYeLeK49peJmqgpwgg9YFIjRFJCQvD3V9ef/zVPHaekj/mS07AlkxnO8bYswAcDCJYBTQoqmSlpy+eTYnp8AREIFIjOAoEjFubEoIpjk5fLnGPaSBvzMkM1MgUjxhHPT6RM+JcB/4aik57IhYODWn9W7/T7B/4Lty1crKsiGUIokdl2nRYaSyiRFg6sCESKYQFG24FsrJZaoGcAz0HAcqFuH7+Hv+N8efn2lNuLKeoTald1+SOycD3VdmatXvuz6h+aqAXPWIAKjUKYGDQNnx2DInPAEbJ7td17LMyx4wjXPFyyVm0+cwrMfbWmxhFK4bgdXazSHP2KjYuZgn1ebSV/sqxWqZhHyubrE7+oMhYwD2gzwEaFBqHysrnIojRfeNHY4hBmtY64/fP7BfvH1RmtXijNWcN5U1fCsCWnL9zADM6nvvq0uD7lSJDPVZjrebHZKItTW0YKZoRkoypC8vfjCbb/n/8v42zf/jwC2H7tXr1zyl/gIj69L3Kzd8aqAucub9YuWdfKvX909PGZ2cBHZCDSXkNq2+FDAp1RC/0jOknLwZbQaQfvvpNFwcbwZTT7uoPlmvfaOS2rumurHw2s0RZGQcbh6sdEepw9D3dbVVR7J2InhSl3jqKXeTckwoA5E6NB5DLmEDBfJyYBt+e77jc/g87ERCq1LIoV196EcSz/KwwPxlJIHNWUEPHX1PBHknt1kb8pUiq+8KIPA7CtOxz/Y3OiHC/yGiOCcAwNy3phnjv8pL19OmLkr2MDwU0NcYg97Iuc+ldfwyTvQvA8JrGT5M9gOT4oUgKCGPpKVEAaZ56KWBej7M9O1nz1xqnCcs98lB16S/j97jdOnkKc/BgMAd+h9W11mgMcjTaKyMiRi51RTZPb1VUpimmTQkpArHxAmHVGBQvDcwIvpOOYicB973G71eOO+evzlP+uPQ7Ninqa2Sw/3+8xhXYVQVYFcU+WHY4bL2pUMlfOGoAayymNJGWhjc5efAzgt6tkJzsEaICCS/tk3nC/hT9b7Z8tvZuosWbfC4lEwYErusT62QwgHaXSSzpkAUMsRPEGlsM65JMGJi3lPiMbOCnoFqGvSmqBAhaHz2cAUicaHdU8xy8fLMMSp7ga0rEYUmU0MSZ8XLA1A8T/dXueRdG5sMydGjGaDVgEK+GRgaKbmp0xt+b/9y3/8P8Lf/1f/0/+7ZPTp/vIzMu8fb+Nn1WUvWqAp3lJ4+abNMDkYiF7rQb3iqh6PWtVraH+KXDfwCK0NqdGBHAIwFoue0aC/HV+HUvnUl/RxWPtpWkNMa4/j59fHy9UR3HE4bhTsouMEzPztb1b5SHU7Ys5i3WrragcNHKaHnNExJEumJplSRBf85mPtBiHSlEkNwAgYPBVL2YiD3Kdb5lvwGcempoRBAQ2RIJ+abM5H8HKHWYA0Qx2cGcBZDvhk/wRqBsQzFECoiuzQAIjZYFEAOkXxgGcHMAf69LR/fn6Un/7ZzsVqMwNlJDQDAgOYJ4z//A8Qlm4UMwVSQ/LeEjKj6ixPB0/V6mc7+dPtLkRof5bjnrRBZuLBp5S48zWf/OauhmP9Zp1zXGUoGfBeBHyoqTYzQCtRDBx73UqZcik5oSUjtmwDBu8d2Ho1Pj4Mx8tNymN7OXzf/V28q8ulRCu8du8OD5Nrm9DVTai9g2q8P2a3arAk48CYkSmAcJiQKp9yAmQHWarTYp0RvlModJ7z9rNvN6cA+JQGnuli59UxM/FS/KrJtSULIaW3dPD3OhYh7EeT71YCTGTgFDEN9S+jTyO1pApFDE0jt5ycSTWBDw5SGwtUq9YETEQB+/Vtje/rY50ed6sB3q1ZJqsCKRGQIU5LoLikp1bd/R42k3MABArEWHcHrLXvKdhUWM3mQYCqupJUvv7G/evv4Xd0W6FynkaRQvn+h3B1M8QWHw48bLNub4IB7kIjY+6abqgK+Ayu2l617L8YpkOm7b5xZXQURLR4JlDo0AD2n+2yr9flG+oVbBgqTkPpr9q0XrnLhml9eNQHrMytUqwper9d0VTWvojTrM32ouOg0+BojfZYmPUypyQKUKP3Fah0ni8eD+2FRCPJVGcowITuOApSS8SpqXrDCVMCAnDTueg7I9xzzovnNNDAAFNyFRoyzqP8lk55AzBTMBXwcNKWzDMIBoDMamQEszoELZHAbCGIi8zsJzZo50j0zE9ZWlTmBBMNjJFRhZjNQER+HrnP21ZVydRMiTOxDy72QGwiKnN2+Oc412nH/xyVeDoa5x2O5y5heAIonj1oiaVO+bH7X1e1/baE65t228godJHHmMtRsw91QIDOVE1UjZvWimgisSRF1yqgMeOta+sSp3j5qnl4MFf9/a8vhaC/iAM3Oj7c94rNdl1RaCuPFsv7JNVlSHsGrioCdeQdKeLjQJWDkjMiz4zrea7vs4MeAWAeBnlOtT71AM9Cm/OMhE+fNkATCxXFbjJvew2IK3xJF9wTp7Gp7pxisFjMrWuuht5LzUbrEHGZBrsaU5ouLuljIdc7LikhlOBKmE9wcH7f2L6RbXmcXj2sD9LBYOymSgo6lKI0t3fZAnDwPz1cca5UHYEiVyDNIVXHJE1VCmCa76MZDuwwpi/y4R8pvMdQ66TGesiBYINA+xFstxvL1I667Qpc8NeHX6y6EJv2kL0qXG03XeUo3ZTH9x9zmx10OakzUCsZKWNNfYAph97Cg8Uw+sYOcRNyLB/aIFudWo4+fjjW09hFZFZi0bTR/dRWuwMxgd9sO4csh7jtZGVpp2Q1UyBf+RoDxhz7ukAj+xSyKCBIJFbfoADnQibFUcsFczYAKIgoaMtcPzxhYT8L6lQRYgpUjAmMito8dneu1oGCygLPzBxqdEyiM8P3iTMLixLA6QCdp0p/8lb4BACYnVPNEwudZk4aMDKLIVNB1VL004R1CU3OBk4OqpIbTEoEkouchoL+OQaAnzoARjADWmYtLpt76Rg///FfzCWemw6C++2qrWSfNnH1+u2Lrg05uLWkmFDy0djRI3vvApGqFDFyzOYyoPUuEKhol/tDlouXlnbpctX/8b/Lg+GaJvAd/3R7fKzbbddWXQWVk5TGKKHxOlBgCk5SaIrGKccpfwBwljEEBAD0NMKs33JOz5YFcACq8Od+9fm3tgUGxL/gAViFAoMWCdXuffNFknZY9VXZjrXu2lp8zMVSsZfN8DE0JVWEBQ1KX1VI6MmcK8dK+yM1+UjrcNdscciVRmICQNwertGa401uLlLz+xdf/qcbP5rPx1dTdjWn0cOyg5YjKv6uXGT1xwBkiC7AEJq67DwFn9RT9rA4NEc/rV98m+xiYPAsTcxjFeDxm8+31nZRtIPdbar6cTq6OiT3sB3T6gIesaMjbzVtrl/WeTQ3xYKfNz/ElZYO9wP5tiYpKTNVFNEN775Mhj23xxA0ZVy7wnYXrmtW3/ZR/phwjRZ6uHuNg/fyEVJbQd8XQTLfNZSJp91YXRzXq4oAYALnu8urlVkdP4zTpCq4dvvb1hDYmYJz7Srts0f2NpV2XD3GOk5rCU6QbArLxj4hb/QzH2CmDDk3kLgmW1zrmUtvEEBJ0IdpSfWR2IEg5WV/lIUAtBz7cHptWSD9MyPnHBzM94Pg0xgbT93AM9dgdjbnAOApFUWbGYyCgIDkXLUfvVOns3yY8p+7nb8AfAAQmBoRn8uhT/Dk6eJPEoQzWjEPOV5yGwN3tL747QVqeSzvVq1tKYTaN1RAs9g0Wh6RvfOBfAWiiobBAeA6jmM2AAzT46FeFZdymYJa70w8TIeuhdvbx9JcKbZbX7Vx1X89XLeyARBwPEsudOUB8tAfY9LAQMjMRGSmAOtZol1QYY6nljU2gDnLOom94HmVbLlxMItnngD0GSRVBEQwTWT1dUht2K+z/fLuP11z4aNHkMqss3xZKiOCXHqZDq318vL76Qu+a3X31o1c5aFa77uux/KGynTF6aGdHmT1cXPz/pXp/joVUZ+gKtUgLyz9dUy/cOlGx1J+MgqTCLyZCwGoVVTOZf3vfvzM9/5uC1pIheustCmyfv+a1aHOHYCmRZLGFU4voyZP7JgOB12VsNZvbapqx4Ee98cRDT/WDhEz2n+65K408aI8xHaC5C9To/ju3r++2ePFT7kZCPL6JV5d14rrb9zvkneN59zfdSwksRqssRyaI3Kfjg+d9wzTNJXK3V1pX+3ev2keND7kNxHXeujhrpF00VkhzbxhcuuHzcUxT44R69ef+Wn140Nbcdu8i4GH6tUD6GGVCXxwtetzaOPVxxxUHqsdcsaVrzcXLkUOBed9rQaIxJiRTI0RRIlJpcmBRuhccxyBseTZuSoYYTG0BF6S1jZ5MfSYkzZegSXqZafKpjPBZ1aXRsQzmu/gCVBeomwDxLkVFAHK+UReulIVzMR5BJuMSECKadG5ajHD9AYzekhgCCRKdQkvdz+9PYB/KBwyNONYFzMj0BSWVBYLOCjgllBijkwWpSO0nE/zMPQcxpwBy/lzLXawnIamyGYAp3IJuBWjaOF2lTkedl5bF4IPgS49U+1Bs6SYJhEC76q6CpnZJIua5zrnYlhi36vnsH3c815elwxEBbo23/1wz5drqTabmiB3336s3obsioEj74mnI6e7g/bzrLtTbqYBkAERBYEMhAwMrJjyPC3HaPlyas9zsicvefJ0zyehnPyfmRoW3rii3F8eqXlI12PZew6uOA4UzAwZQcWojfr6MnH9EbswjSrhMDqXM9rdeuDNbgsGDXFdh4SxWbdeI8BusmaYojWeoYpHCl6njSMP3sXsvQ2ZqmU7AIi5VKrpmyooQC0eCcl5DM6ZTCM7RnIwzzMxYvCSLWaCGsAkiR0plNj6MDwKVWwkMSWrCDD46XED6l/gykq1kccMERW+8NL371Z/c0djJPZhYm+xebmljRONV/zPv568H8ILLHszcya+3It3JVcchxf4cQWSMzmPIg5ZcXi3Ciuxqhtt6Ps+PrxogSo+dFLcquFpIJwOaAK8vm6nKPI+v3FqdT0ZV+jg0LaQ1PwaWh+5jPV1ed+3rczcHbKLBszRQvhCADawmVRp9vyMFEMVBfQ1BzKz+QR+OvZIBHk5q83UTvMlPSMAnIt48BceP0fRzWyeMvg8L/3kckQkQzIiFENTmSFf/DQqN0QwcojE66tq7LgWIVBT02VuzbOXP2e1aM/K+//Fx7lYcKqDn15IPxUQnE9PBHAmRFBgPamkQSscQ2Dk4G59CKEKzBRqBoNBShx2pisfvHMeC6HkbEAd/7pPIjg+wov9j7IpUNFowQtWG1fT664lJsLHva1CX1piV7FJTtv+q11OLEgusCNFQkDTadFiQ2QgNEgzwwENDPXJ2g3RjE7GNBv+J2ThJ/j1aS1V1bCst5RQlaRJ/UVzM2WZDlyNxMyg0niHhp6VWw4TN68QHXa14DFtYEg8DTCRTlwV9azcesjcUnrY5Ov7z3/c4KGQxj7xVZxcCOw8FwLngZ03YFfPI6sNUdQXC19/tfYCVmdDNfZOg7MiQ95UhkRkJnMvMPJEJBOFPTFKyYW8N9/4DOmgjIJCpMRmIjTcXRPEhj3QZIcfs0wkTRUdhodmbaDMChmCYXfx8jLJ3dpid3g7fp8cyvbFoTDWndcwHoEMWwptmtD2TMAUXC7Zg2Q5fDjWhaza5dwPBn5SyJFckX7kdQejOht33Gjx1cYOxOmQb+rJqtqSM8M6oN2VmPG+bLbU1ijdK3iUqZCg875pr1TJkZ5y4uX0tCX0xnMsLgAlK7M5cqhzky0CGJqagSElJUdAADQXUxBVzagJsxyQngLnOc2cY4Dzvnky86eQ8wmXeu4E5vobIYIhEdJkZFJOzetPzKUF1lbBYmSikPpgw8BBVUsxnVORZ5v2DOp/GtL/meXjqQ62tDniU4D8Mw/xycOhoI9jcZexjDkpZENTIQfOOwwVVy5UgR02ACaxlD0QoHPcIJtr2rplkiylDIcyvH/klxMxmRXoE7RsuUdoHNthNzQbNyZWnQnSFtI3/+i6mf2QPJBbUjHBDICMlQE5QgjL0s+UyNmNKQDwcjie79TPPMDz8s28OHObmPLaJ3CleVx1H/jFPjGLRHdzn6MimnpNZsic19zvC6ZtzKOt3bgWq6AkgO6hLj9t75pEnc8WHioOGNRCym59A4dLX+VhUvwAVpIP7sGn4ITE5+yrylCWgrOBAtTyj8NrExInAAhcOVPOpQhfs4rAMpwWkNGIaysFMjkGA6ok+fWaDxUgoRZGH7JqGtuC8nhbi0fpJnqYHu/Xsq8NJpUmrKYfVkaNO6bDKk/h1Y0fJX3314dU5cPl/kOzmWKtYVN1a3bxUPLtoWqOzc39fdcdgAw1lSJQQxZKOt1+WDksYFE65zZUpoeHF2vQY8pUSShTiuq8BI+TdiQrZZXClaYgSpYfjoeGnLd0KI4rIGl/dXjf16pUN+2qxSRL99688WcOLRjDPK1HcT4TjUEKOJeQUZdWK4ATxmoAKs7PtUQENWCa4+DWzbDfExEI8XkS/dzC/yyRn//pZzAzGhCdpSkKgEmWecCIPRmiGYKZQraklBPoj49vmiE2pGpZaPnwfx5h4CkG+C89zgzA5Sw8sQGWBy0pwJIWnxEDFxKBFWwm4arKAMghaFEoUgjYewJ2zEzeV5WvGrvWNMUk9oEdu7YUFvZsKvFPxxVeugMzZPPewjTupPJeewvNynl2GnlLOTCrclXDP/5WX6VdlebpGJxpHt9IS5QkBsRE4BeKpVvk1MqpwLv47TPav3jK0xc+gTcz8cFOq2/WdRIrH6GE/XRx7Fcs3Bm565QEwLROMRuC6QRC5GyvAbBS5NZVU+ViU0ul5uiYQ41R9eF1ZT3Q1XF7WD++uKs6hkABbXBY4lT8vlIkJPJaVEyAlnujjMX7d/+0bY7EEzgkpMqziUou2KxGM1CaRZ1nLrF3LMdYAyoYoUz1RRegO+ZApOzJu5JtHF+p0PDB+W0Vm0P4OAEEmcym4WqQ6dU4BgI3HfOAlbqmKQPbfflYyer+shENmFJzc9MEB8QOopTsFKsGk0LJWZEdga/UrNon0mNkQ2QjSP21Zdj/GFba2RgICY5DhEkC+BrEhzFfE0dDZRAgaslGQwABAABJREFUFf14214US0hcdr6t2Y1WV22CMRt778gcmxU4O4B5FQyfqeHC0uApQt6pJ1Q1FT2BLGqmhja3UwMygigQE6AB+crNdnzmyC8YwF9mG508xTOtrp+Z/7z/aA4v5mxDS9E/q+cvjFQzVUM9SjumG2dEnM3KHN+Aop0dk86aHso/f6G/4AHshBs8C/3/0oXPHYNTBYXm4sVdFdRQLbMLlM2ymmhEBmT2VeBkwOiJbwjbRhF2ZpIfHojFtzgO5Z+qv7v+3eGKFdWcJ5XS76RbV5cORJX8lRbQVHXkvKX+Yzp+1E6zZgeGiGBlmcTscC4BMpgYAGQiImRyy03imRcKskT5+LQdPkkDfhbqLK4TzRpXFBXH7fTdpvq6u4EIHR0PtfMzf9MUkEzpAW7WOcOeQprEdUMOIJUfVscXA14+XqbCQUvKr9wDaIg9lOZDd38RbdqHtvbT1XyTZR1K7cQ0YmU5c6VmgAoGxslPv9//BotnUirCgcXIqeTsaxVFIgReuN4EgcCpjnMfO3HTbC5AXH2U5NiAUFRErWofmMrIdlsXv2+zw1rNg0zfrnzIL1MOFOPjrqTxpSdUwfb+3U+4ssnloklTlS+u2rbsJHNj8DJ8E53Jpts/+qrxSIi9MBiT7x9XbRlyDYYereRWIAwf2+LrGzMq6fhwVAaCPGUxzrf4wg3GUIYxJsYSe/rVmz/iO4116kPfNqmyEi6HHaFoGYi3wUOWkwqewdKNZ2AKs1DMqVNUsjpH7EnsNIlroU+CGRQiMDJjJDWde3jRuPLLlOH5wMFTpekvWPjJqGYxEXpClj9NAQjAiEhMCcTETEuR85n0FNIv7kFUEDnH7aa4rKgoplnnV8fn7YCfWO3/zwDgFB7MH+2cGc+PEwZwSgxORQ2XlAjJyudaCUHSI5oiiV3mYpoV0EqZjkhbRHCZ+T/6uqpDoFcgklIpeX8co6yu/kdZDRVTXxeqcBplL9EzS+o3m7Uvt/c3rpJpgmoix+Xh63dxu5nuXCMGSEUzeAYDI4s0a/8082gHy8SIyKQwizI6Y1NblvHULHRa5WfL9kw99RzBISKaM6s0cq5/yl0B/FMzgoLasMx8FWpmNNiscQC5lDD0E7V4KPXgGTVRqlxVNQKW2cH1MATH00D5xX245+KJHEpFSYEcKVzx6MBUFZnIscunRE1Z8f0/bttEaAEMCnuXteZSSumayYjR5hMPENA0+EIX9TioGTnPl9D46D1cuVxqBINIqugv1VgyVaMUAeYqHPzBtiDTj6v1ykfCgofpIbHutoCpGFFuhs+9HtfxOJWg3LzssqXb4vJ1Yy1/6NmsqeoXYXO5ZsvyOBwTeITVFJ0YZifEVqALE3lKj6mpataccszZueBzvv/YqMZDUyQGN8b7XpLDaT/Q1W/Sb959dNuffjvt6XWsvaX+8d7neeSRNKsARqjPDREBVQUQ1dwiBgZWsgQCwnNxfg7lzcDUSByDMurCAXBkgEguoCmhGRTAc+7/DEg/N589M8DF4ZwKjH9mjXP7nhGipuxspgHhzyL6ExwppqDceP9yrHaCBsU0i9czFHG6nkBn9ZM5FPwvwgBLCvAUECP8BQjg/F1OD4eVtzLefgt8VUmofOeCJ1VRUWYSADBRFfnBhdoz0Bq0P7JzP4Gv2sYhXB37h3Hzgi5s11isOPFK7n5KueuuQuWp8l6Qby6/2lRCDR82Uwz1xU3Jh+g9sQE7x2amYDirr8+/gAK7WaQdFMDyMqOJAJDnMoCami3kacSfrcxf7JtGREIhP6WO43CJ+c2Qttgfcna1ZRH0zpyfhVlvaHjsGl0Nta/xob855tKzFag/rHC/PQKgYdPgrr7pRtxu7/n933z/5vvVdOnc2Gd1nkAMg4IgAnuOyXtXRo9mgAJYPOjHH/4GikMLVAKG1hnWpahKqAYmBhFDr0u0GxCoWZekqsBMlWKmFR2v4l7Ym2ICEnCVVG2Z0EkwKIFy7/QRNgrGPz1UL/crm3hfxlC7ElNIKrBv/mV49WO3ypIHunbDxcbGRka5vqs3KUE9iKLu4Nebqnaqajd3Pz0CQ74eh0fpeFhLIUl17QoiYt71AoSmiLUn9m50D7vEgM5bKq3FPhYwsHx0aTccX+ndP7uC32f16LJyvB2dAXtShdst00m3CwFQYG4EyzILJJxkrcGkKKIVBJlbxRGe2HkASiwGaEgoBovQxsIGBjATRCL4NFLH85Gx/GZPIOCiAmI/u3SJPxe6vqn4hQWw0FOfbUEAsDlkMwodbkIl5r2JqejiY559nHMVwBbP9v//gcvbfCJWdsIATiZxAhWdej+Ru5XPhtu6vw8v8sXFC+wTDjEKkMcIQAoATsuRiHFP3nksNnrQAZmDSM6T7y8mLQQ8xC2/v59kugj1dtMwVhAH9aWH7Nmyee0EtKw3x9Ife+GKZrFlOBN8dVkCBM2CGJZ2bgIQLYgLpQuRbakMLQ+YOyxOxBkGVQNAnjs/TRhSIURLHUVs0QJ2wccL1K4duNprzMQwYMVd79tDiypci/rtPle+XA7yZkhXcb+9e3z98sPt4zpV2oBWwngoVZu1gy/TK3mRfHr5cFzvp6vefj0OwwvRYOCyGhNkMCyAqAYoIVYf/6G+uQdEx+hS14l4Lpk/Tp91fVVEEAlAZuIYkZkHMIcKyKZCjADZXOZLkWy5qciBkdeKwuGxhOS8gRocCzaqYsdmvPuI2hgDVO7R1+Dzj9vrrHwpt41C/JHoY9OUlSXGj49vvw+X0K99Gi+OQeVX23Uuw2Xvpkx/9Q9JFdRfhpSGa3cJUHh1rJOGVYl+UmAVrmQAq3ysdqv+9xfb7nWciG8Px8kVkTBMbmz+8G39/2zw3T+8w1r1p1eTQh5z9y/SP7H2h22tHyvfN6K0BEFEJvPwZOdQBQQZsqI1cVi3Bg5V1cQyzo2ymTEKQkIzD0pB0RSZzEdwTpFnTiwuhqIw64OpFU9mhKonGNAUAAnL3OVjZbEjPO0zUzNCIwUkSQzgfMnqhChPBRZa8jkNMFIjAskRyIMR5uZ68iNAaaeDoTAAomb0NkvimZspCc6WYePO5g+0xL0LldkgmKo+FTBsESsxb2ZASBkMAAl5rkKePKu5l/eHrjpWrz7//j6SOxx9n2Pn2nAlOcVhTFspRQwxqIrIqCuLeUC1lRkhOfjBSC14KvviLEprY0pW/Ou1qxpPBOvdYTKH7kuTbGaWzJX98TgoKPpSpKZP3Rqigdo8egkBMRPBrM0GCLRINiGCR0RCwpP564yrwCIcMtO9ATEv35QVvBNFFSFWFXW+j1mNM1cr4uxSRivFdOzzpU5DC2DAzt2uYXArN14MtbOqkk3VFeqo1ymvOKmDgzRtBmtUitGKBwXyrsJRt+/w/UWiPwvaliwsA/54eJkLANkcaM1bN3PLoomfLQvCQjwxAzmlo8vzjOgMEB0QWzFERGLUDCIGiuA9IpQKSwEVywWb4JyVvGaV3Xejr4JzOk1xPzooE5dcvKlfVxeauHHHfepR+GrbDKvyzXhz75vEV7dZMUHdXHawKh1XsZdR2GMyzX4WQChGTCyiVYrV4cjBm6oUIXWok5SEJffwHst1KqUk4B37uBur9b/QTfXD0P54Czp5InVEyxyoT8/QObVD0lwQFZbeGjtXf03UEA0Iz0H7DNLBQi5eiH96WmA45Q4A9lS2W/p6FBadrT87buf43iDPQwSZFMY4UYC5O3/5qJ9uAjMzMlADSt6RgfchWpFzkm5PKf05lbVze5LBEhE9fyic6clPGpkwsyYWXNGWQ98AwHh5IzdaXWf99f+Echx8C4P27/umCoFDXa/XAO84qIpZJqDKVAdAAlB4ZEJywft+FKqadmWRLEvyCq6rQ4dcVd47eLjbhQpDPbDrApnVU7WqNvsf/+gcAgHKnM/Dp1HPwmxSxFlcjZAN4VRTQUDISERE6JY5jGKzHOwJGqB5QdDNPcDmijpMhdYB1NBM4Xri7AsNRdTI1uA8qVgYE1cEpQcz9N5rFUevE+BUd7GqHrGhGJoyUi5iE7gRL/GxX7m9c04BsJusdrXLSN2Dtes6KyCCPY8xEcCAYjV8lX8xATERzieYI9M0UsOG6p9fvmzJZ3A4nbjRBrOstQKxohkBcBAUMhVCZkcEgujvRgYmBhc85DzlrSRJ99HXdYCShzg5D1BUd8fLINWWtkrm4x4P6VrsqhWF/taa91+A4dV7I3PK4eIl+CodeRsyPnpvGUkZBRyoekRPkksVc5kGrRwoEDEW71VU03qeDsYP6Ai0pMza90r5Q928Plz9Kr4T7R2d+nnn9pjF6PHcDgJIMGXvkJwuV8IJZJ9Hgag/ia+YKiKxIJoCEc4DhkAWq7cZB5g5BqcE32BuIrKTBrB+elidkDk0I0JTASAX0BCpmIouJfnnuDsCzE0js0dRhTJGdlgkFbPZ4Jcj4lOnsTinpZ33z1zRic8wf3p6EgpZXM4SFJyTgJOzcftVNdnmb//m9xef3U7ZoIIylNFx9sE7X4e3aJrGKbNkUUC+URM1wF6KGThOfQzb7Xp1+9nF3Z8Ovu43eNDGjpUnlIQ0Jl8HyarMgUyk+uO4Rhw/Fklk7NxS0nv6IvPsONRTLrR4rmXKL56mAeoi3+gRiQnRwRzzFFNVPeu1lVkyCYEAMUdrXqGJEToXUSvesN+ZH0fmXsg8MrmtFG/degBTAy3dtMt2Wz6jlkXHqd/UResqOcOpVsMxrVbvDnw97F1gBMCQ0DMGRjqs+rcxqxj/7OhYZAn8799t/R6IGQ2xZgJAsDhUDYuDnx0bS4FoThFPkm5L5dNAjWXmmDtA4CBYGJSR6TTMhr0olOCMSk4FrA7RwPH06ByZEQr5ApVj+LANFa7rzBXEYbevx/KqaANDd7i7SD+MVUFxI4bSjGG18orcv7t41dR+Kgg1YaRA4AmtMSAg5FSJmVNMSIRWUGu0bJCPzOwZwYqqgVmFaeImf/h/de3xp6uH5Ise3drAFi7rGXU/xQILKsZZq4Dk0ywEsACDZriM3nIzkDD/zgxCqOrmuT/PfOxpQWEZyjFH3Oc3wqUx5ZnxL8WD0yRft5jWFEzGEsxM82LmcEoZlp/szPhD59DKGFsQk3LKYuE0bfSEOQAAyKJDMDcpfeqIZrvBTySMTmUvWf4VZxEj42c1QgMA1/npsHZ8J9eb/W6/209mmStPDiQKOP4u1F23vuKcU0opF7ViwIwOVIuYVt6tLrpa3vbf7fm67CvM+x1Avgy1RxBgoIKe7YKdAVb+8N1PLQCNG1VF0xLm8P65fSDAPBTtdIsW34VGMIvyn4jNBlDmkU7oAWme3DJvAzE1VbW4eA0BMLF605QyK/d8wMliapXZZV83I/x/OfuXJlmWJD0Q+1TVzN0jIjPP6z6qutCNRoMDEjMLUkaEItxTuKTwp3LBDRfDB2QwFBIUygwxAIEBurvQXdVVdR/nlZkR4e5mqh8XZh4Ree6tHgy86p6TJzMywh+maqqffvpprCXEyh6qNY8qbaqTL3MaJb/528PiY10G1IpY3LAblEmevyrnctjnH+/K7JpM17pOlRMQ5X6fz2viRZ/o6gCCjLz+JX95KlAwoLITQiVYYcZQu0VrOgCMywiaJpGhfYF03CtCxIYqEFNLAmlKy0Eklfq6lLJmcyAiTYdXp0mOFcKlMGwaB7HHOib1z98Pu92riR7L4/On81SxLlqhXOo//LtP30aYn58tFy/Dm1HEnrG/v5vLdPdUJCU4dymlZKq11Boqcbc6k/k2gRuWvKrEKmpKkWFe2RR7aonE+cf3dx8+ffqrdWR91p31tppOpZdL+e+aEFSae1pMYqtwkS36FkYg9U5CCUJNSEEgpTZ7g9eOsW29tWZtkU32y4iAiF4my7xwAVeLI2BTznpGnZcQU3r1FrMIcQ0BQ9CHFTdnM4pXmLq2WSa8kb7ZoPwXh/Vw5SfVgE3y87Jibj1Btx/ZVtV25kTK4Vl//DwD+fUr+PqHep5XjQqBGARxfPpRcrJvJN0lun+OWms0kYUMQENwPAnrw1d/8vl3p7R/+vz5qeweFhktCWDlfE53o57SoDVCf/083pWzPrhmU90msl3PVwRBiuQ+rbXnX9K8uFwk0/vABWjPtRZp+12CqIqIIxjBWECGk6yED/vD4mLCiMq7O9o8s4528uyHUsMJoJ53KXgUNSiBMjxw+Dr8cSgl1bJ7okgr8NUkuhvkKN9YWe+HUlzoq2GuSzw48Pp5/G6IiczqsJuBIQ22kd9/d79/z2QmITlTFUKv3E8QVvviAVMuD7KPKO1S1X4RQGAFqB4KUROBJfFoKgMKySezRYwhOeVp0Of7aT0/HcZFYXlQlzhygoct3+v4MNaK02KSHPa82sf7w3F8ePgUf3Ke6vkYzyMX392B89PhzTTxzLv905LMwXG3H1MyMub5tEKyyHMh1pEk1CRrQgrLO6dEDdSlJrVka5Z6TtMbOcWn5fT5K2h6zBHaJ9t0Y90EL6CbAg7DdKlpfruZDDYaoJCBfBkuCSIZXASUIWOTkNLt/r6ICDrHgF15oEelX6pMynY23StpzqpJ7pd1rYR73Sz55cNkRFCDZLhbOVWBF3FvaHtzV7K5/5tytvTYnT95R1zOA73p7bLJNxfUe5wpPUnqkQWBNGsye47d72utabefXqvPp/l8LlFL1MWniEBN8q/SuD9MSf80fJ3Ps7eRVUoRRh2m/Pr5B9LeHt5/+DTbdH+Q3cMuJzV5v6gcHzGmxPX58fzBB6pBCyxlA6q8FD/Y8NUQjebxL2nLpXGT0kAxAWTo/jL6OJS1pwQmSQByH1FrcboVpt1Oa6ghKJ+Z9Pj66TzkgSmnyjadxKZUclpkhZqIqOScVu7i+R8OdXbo47RkWSd7TiUe4umw+zxht0Z5dUyjsCzVVLIUPOtU3uP0wGGFaEXGy4ukzv/O3x3NUzLQhul5HE2iLOUu03S95HQd7L1UknorZHvUBFwUFKoTCnowTCOkjdCKEKcgKMltsrMNK0STIeqodif1rEEYfZlthztbOc5Y6vmRRoZME57zXRH+4e6t2P3yZkxSj4/H/Gn/+pwnrvr4u3+SnudwVS2rsai92k1J4vn02g4JRKgMhwodBrUmbV8FEdP9XENRkWA5mUz3rqK16i6UO6Y7zFXChSBDyFbNaayApu3TZ/3FWoVLDb4lI2QTAyM8IKSNArbByoSoMFQick6dQXodJGlXYbBrgNGtp8Etbe1t4Nul5eZS54+6uHLIedrH8WkGPURuYYCrRUYQgKiayHLyrOH0GirQaDGeEvgi3pDu2rid2pcOgA1CbwN1dLOZbjl+yQKu4QEBJMga+/1wMkvn5x+Z0uuvvho5n3l+Op3ntZ7EEmOJqT49asr219Pd/f7OuJbzea0lIifG6vacDLvX5x//LpZ5/zo//vm4H4Tk++/nd6/KmeKryE53kzw/a7KkRNS4SCNcudItwpWqVJFA13MX7ynA5hpzAzLiKG2Y29bW2dyCSBJTVWCMRhE/laWO96OkGs4w+8zy/Pi/POwrrI5m6xGaJJB0yIllyKVViFXPRGTjeJ5eHV+PH3enVErO718vMszvH988paeTPTwtQDBwSM9T3vmMH795+5zffyv4vGDSinz38nnRlr8Z9z9MHgw6oCcZFKxlSRbJV/Wbhyybx4bQ2uNV9BFwpoIgo7Y7yeJZQQ8NQgqtJo1KTW77MSFxCCTxqFPFYTqf1x2pweUs47CTT7p//yYlW5bJbYSXctRpGeoPD/J12OmtPA/nj0+en5f8cczhQ/zw+unD/Zv7daklREKnV1lZTt+//5/v9lMt8OL2Kmre5TyN4qU+nR2ZUh4rTETTAjHY4fUJoXl+PifFq+OS/y7JEKEiWfSK7Tf0Y2P8CMBYfBCqVaJJgG/3twXUNmz6N9H2daqArZ1iM+n2/xcRAK5NQtFldDeu0BV9l0tUTRFGgFHoel447QiQvpFzNmPbfq/bsVjKQ2akcYi01Bq66ZJg+53rMNK+8NtItGYPLw7dlNBaBLBBiDSSgm18llC/dCz/24wF9U//9z+UcXSPs3nOeniwBOG6zOXHMp+WGpAITcpwiGjeD/thP8i6lHU9VzFRG6as64cP5Q/x9WE9/HKXLCVbz//m4fUULkmQB/N1+Tidfvtx2GFsWuyy+ecO4nX8g8hQoSijUxhCFSTlQgARREO+25PTft828MYAsWRKt0ELlKtPr/JythAtpyJpuQPHJXIa/lC/rVp2z5xmz+fIOy0yHkkxVeRFxFMOlxZ601rD6vnBP1Pm5c//wDc46rjIYU13VY5v47Pkdd4nY6Wl90UGzpFfb+ddDVXknP7ZX/55fH933onHsI+z3t2dVD/FLiUJScnZy9SMVr5qQcCFXG49Ulq0MaVSG6MkqojQnGfVVu+KUBPGYoqmjdd08hA0YfGT0CVn7kXCa+Bsw5hQa0xJGMt5WNRP92/qq93DDst5PcH19799+yfv/b/4p8cP9COnN69S9V//8OmX6vzzd/M62Xff+V9Mye8+/83+qBZ8eMBoSoegPj/OQeJ0/HxyANDx8OpuMF/Xzz9ERgVJNaVEevtVWqbGA2mqSL0hiCAioYbA3wfgbuNrjeIoyxBBhoeuniLSrt1FIjyNFq4xPc9fv9FhWzc9OJY2E1C3bsIeeP4k0r4ac1+n1cRpqCqAQjTXGmJAmT++X6DXumTP4KwSdS6C7NyNOuTv5jEJSnw+QytybS5q2D7iWvBtx01KcONYtgIArq6xpx/WMwb9ud8jkGpRseXxh6kuxx+e714/P7ybjo9PkW0cx90OX8V6enp6WnWd61mESMmifGBSGab7w/4Nw9f5XH4pWOfTcXm/y+FvX48wjTx8+Mu3U2JQYGZS7O7un/ybv+Gb+dmoSdHGLQdENs3WS0YlPcR/Eet8UU4BwO1BbpBJ5wkISdRVxUJWJVE1ZzArA3QL+pSfZSBm7H2kySCjJELu1zCvdSFhUBWJGmXYxZqyCoOubZLB1/XD8fXrcizT9Go+zuddrMtcZ72fT8fdbjgUIYyxPBTJHK9VvRBBQOVx2ZlzNak1j3mJQwJ8nS0lhYBR2wbXDH0DSeTKKesOvjWgKSW0bVHRqS0t2VOFKkBikAYzFUBDBFCKMsleUDUlqIiAglHEKQFjjWClZNDW0/jx8YfGjk3U8ZCLzu+/H9/kOcnuYSznNdZ5SdC0UonpnqP6Oi9zmIXvD6N5nJ+W8W7Me/dVlK92h/NSPaY07KbRICXdnZ+WOrS5GVIx3t0l3XX46mKJm5BFVAQkIgi67B6EXqIVewgADoWYUpt9o68Taq2W9YsyWkfMt/26oXFXDPZ/7NjWYm/0aQ+mC4G8PDqGExBpZ5eWClN42cTigJdt7T8N9X/uuPB6cBt1CLFpKP7Rc0/7VUY7rzOWu2/vfv3jd8Nir+T+3h7r8VNYTkMav/6WtT6tx9OylFjq7BClFJyfPpimYXfYvZvyXI+fPz8/z3U32t3Xd7Cq9/Hb7/AgKBTL85+XH+9y3f1ffvv0MBZOs3nSFtASt1r/0qMxaaCrdkSke7YvGL83EqFbBNBQ/6YKFYECwsRrvdurU5OSFGQp03q6z8c6nnLZfc4UT7Zkc3emMVGPDLAKHqxW92giRqQOEXRCjtNhuh857kTn83Cfji7wZRbXYqPMlZCUNHwUGshcro/QQ+i/Pd9Lyb4XYhhZyiSEn9ddMqGQEb0xTG/9Ob7w4GAfYCGXhsfOEWhrWNWKCho/IiIa+EtRRhaqQU01VLORKmQCcgRDGj9D0jj44ByX44AagZRztRp6GFapH39//3qadjCbn55m+nneQdQTqt4NJiLGWNf7tPibiQirxzP3wimOkVNgN70OMd2poa5LGWUcg8/FAUKTKQ6vD16SXdh67T5sO1eQMGENEY887teICL0GiK5wSRapKfyBYgKAw+z7yeK2XU4aGCDXYbSXjebnDUduAPrLK3rHfqA189A94nbGbzfKEIQHVEMHhQ2PYcmixlJJNH7fi0W+XfTPP/8v312uJ9KtpffJ/ZFYBkgKluU4ToDd3d89lz/40cV+WN6kcY9al9nykLPZt0Cs5/NyOj2eKwTVRBEL3ZLpOAzF1+PTWuNNwbuvhkiym/D73+R/SA9oHvPh/f3rT7/Q//pfH17ZIrlGS4UQYNvH22OFQNokdwG0I3/XC79S/jsgG8S1CVIg0A6RWS/wVEV1rcsuGReaZYA0kzvM9vrwWe5qHg4/WsX5rp73ab2vwQTWfTgAYikORsUYHgyxh+oCiH5OvpRk+bt0lyZNZVfHHGnQR8E4rI+rSYaJsVYQjsvEF4lKpDr/jb9Zl11JYdMe53NIBcO562yNsBbM2SUa/SPLsTVCtDUbhCQS0kgwANoEqYhtSwKHhpB5hsBB2k0LnIlI09chAKimpEfzPEbxRRRCx6AL6jAsgeXz6cOb/SF8Pc9rDE2Q9/Q6x+wpp+e8U9Z13o0e0zA703Q33O+w7jM8aRSxaX+/HyyiLM+fVlqW+/T0uHp1WBr26bDXoOcW2rTQl8KNuaekqPgaSYeUtGiICdCI/yQpdE3mPY4m+kQpXbkb9aX9X1A+brUBXMLPL3W9XwhPXLE96S18ZERbm/QvsPrmuqhCJ0TCMqHiaIy4tX1QV43/srXl723vvb57d1831/YTBOIWAASB5IAXfffnf7vDH86xO7zB/SuJ+ekkImYpZ8Z8gmA/7KZxX2qq6zI/P57nWleXJJo1lscIJEXKmqXcvzssdfC3/te/H97ICloes1n+kH7x+N/+D78Y/MQd5mSmKm0MjzBgDeIRdq5/p7zeQjMveiQ7wskvf7ZZWrnyCJSllG8HVqfYqU18x1jTwwF2l4f86vV8XyQ/nFYt9al4ysJ4CKiqoKasNZmvLsqC9KFwGCzZL+M4jVIwKotnn/cyKJTprp6l1Lw7pZwQaLVEvZEqqy4pnT4+3u+f1z2KDPt8OtV8rFONSFP0EpS2QPGLzeCmC2VzibE5z3b0dQQRRbAiQ4KgNhopLn2tlFYtM2mrli1sElMDJGKkCxEcqWksz8ts2UAPRdDUmFiW+v7DQ1NzsFRtMK+n94cxGesqJurHx9PprYsNYymm+YGTrBCER1lh+fDqflTUyPtdnp4Tqr65G2evlZrSdBiFIzYr4lYd2ipvRoiwLoGcTWXJQW1ysQGSoVJD2/AdgE4xAyGMmnaZ0qiUvJhLo5Zcynyt5v8FGe9y53kD00GuISiBYFCowSiVtwzQlls0z9Dqt4O6aHWRxgvZ2uAupYn/lGPD/aWDAZeehdtF9OJIDov88NXXnz4/L89lPVV9eNi/+frbZT2e1wVKVUsK/Tgcc1ZRGw6G5bSsy/F4WgpOq5CD6TNFE3I+f/XVruo4pM8/ftof8DhqSjmJnl6JHP8///obeS6wxUZt49jZTZxVREUVaCPyblgN/UIuac12rRRBG3rY14igUew3sqi0C1Qtq9sOQRHxYhJU4XvJelxjX0dOmkfl/uC8P999ZCscLUERFYoPSVUKNA00Tyy1nAJ2d9i9ymsdvl7X01nSUIpWxCl/G1I12Tg00JKi+En8pf703fTAKtA5J/XV03Rk63RtItgN2e+J+fXB3dShXyC50ogvBpEaLRMVUsKJzBotJqCoECRNJRREBEWqMBARighAlaImcCfVGNChMNnkkZQuajqPlpIjjUMpgx3XGKaU1LAMu+xxfn8v012KldNanz+dws+66vneavIQDfrIZSkaqwwPb+9yrDk8ZdynOnulTA+7NvBCcNA1FB7sTADZ0vP2wBUGellF0zCYl1IddKcGAyQtQlPHvshgan0kqJx2TVlTrvdTRFQ2tjy6ERFXN/vyeKGud/1ym00HIaPWSr1Vpru8Mrw5eRVmm2sgPErpjr9hXz/xO/9RHqFnL5fSfwf/tvj45490gkYqP/7l2/cfHALm9eNHe/N5dz9+lWI+nZ/D6wJwWItAB3OznPP+VQFYlrl+Oj8dz3Vlaq16+ubtHWI3mPz+w92+LkksZxPF/vd/fv4/fviL55D9WI71oNqsvWszNiITAwIh/bLw5QLJANGSpO12b3/JJgrAS8hDIvVySRTJ5TQcvIPqauo0xiJpPSnPtHU41tVD1cfdcsiIUmsNixZ0oq5WRdevimhIHu+OC2Kp/nmGkw/ffk4P7+alhq3ZakQ8ZdHMdR3d2epHwlv+SMDg5eN3D/lRdtXSmLxEVq+DRQB16LcDXatCL1WvzSH26+9/CsRMfIN/u08F0YixouFtptnFSwpVFFRoI1uAYBOeubwjRNzR6BRMsuY3S0EEKaqGUWmjvj4tKQ01JzVDLWW8y2Fy/sNyt9/TbX6MxzOyYinx434nrNRwHdLy+XlR1TXd3Q2EhoqUsGl3KoPPecptJKQsxVRq0K5bAHqOTrARoOjV92OKAklrhES0wUDBIAvzID0LJyimHiJYZRrc03Yju6BURwjxkmXYntaXVralAC+xOm6LsWt+eW3e/PqSXjFEEzRQMWBInytMPeq6qZZtHulFqH77Ll+ez093BAp62zK3hff3gIADqUN5/+//6Yzh6btnv8P9u8Nw/m4ITbv7w/03dS2lUp7MAIm0Kpw2pIPlPOQ9v17XdT4f56fiKY373ejrsBsRv487KTJZG+kkePzHf/XfnN99zh6r64SwbsKptSs2BmY0UEshatyW+8slf/1XJ30Dm9sVCpF6T8hWNmIVqXWaKqGbixcFXp1ZY1+PtnOsomC2mspzXs2GDPAoaq0MCBSxlOaZHlN6Ovs4JmaUM4bl+486LPuw12/9nGspKS26umXzdSk6ZUY0PuNlHHOospyfPn/Nx2E8Drs9l5mZs+UhqtBtayBtttxTS7nciMv79LsgIqISor0M2BdEq56LqkZAFLQgtBHBBC1OJVQNSoVRg8KQkI19P1YXuAg8se7359ZNo4q0aESejg/5w+NOM6JEDFEi71LRhM/rh2lHTPFRCgbzfRV/Xu5zcU1RdbeeH598VOM0Ja+Si1p4WB7cx/KMu6jLvIZqleneCnMvYLPXvdmHWzIMCA9OWdZ5mMwqAKh69wDqknP0mkiLiEmBuA5pfZnYb/eVACT6XqRsicBPTeblRnOxwW1D6kbvHl8W6/uLgzSEiIokK1BLLuGdmPST+v6Xe/dP7F3+PhNnR9V+imVsR6Iq62j/ov7y02FY8vnz7nH96qD398J1/Z0z58NuOhimKLVEJS0nkbLOFBvHIQ82UIRcgDg9ranKtBPn+ptvXz0td/I0pT3KoI9/8t/9q9MuqUMFYcnGfgJVAbiYb3tX24BYTBBUvYZiW7Vvu3ABoZuDYTSl8J7191vDgPLkmPa5Aq4Q+TvRNE5Tqpk7hA7L0ebgJ8JOgyxvNdciWb3uq0tSxALoKDQ8vFaCOE7ic3E48i7lO3ucyu+ONtkbS69GQh7n47JW4fi5vs1P8dqFtVCNpnSHxfhpyr/9w2t7mrKMOPizTc+cdjybKMrju6d1N8Ya0QbZtDE3CDE0IM/7g21UFhMXRJFtmnUwa79hAbiPe5EEBKy0+0GqilIpIBQSTXEOMrVKgbd/RRAKpCgpU6Y4QggxIlLkYCrYO/a10KfqqMhj5ohptvNDKaeAGGUY+YQ3Xpb6/Jv11STusovHT5/q9MP06kzfYc6t+Y0hriqljuPKp7mc1YqNjx8f7rKWoMLFrPM+WgwDJDnLfl1HmDHCtYi6i6rDA6JahmyuWSqTuWPIy6TLkB6X17tI0m8fRAIhaqptRTUxim2hiXT9/C0cu4YHnUEkEDr7ug2IAAmkBnStTYT+YqetD5+slQBqBvb6vHLQpdJPqZMKCToa30gAIlojyeafWjTEPgv4xvS5sYD7H7XbU+cB0KUJohuDG/wBoIlRyrqSKY56gL3R9HBfz/YHM0sPYzqVxx/CUn6Tp4PU4l7Wk+QhnQGrsynyuMvi/pbL4+fnYax5FEs//PpXZXnA6g/7Ukc/7b/6l3/19Gp8rodVRdTSJbJq0Om2vcsFk/6PREI2Jy0iIrE5gP4DIRhVpmma4NKe0C99Xc9P5CRmllRfizCCWLXNnjgkFwVgUEmGqB0KWtA6yH6pEsWJ6hHraQVn6v2gcSxueZimd1+Nuh6f1xnnOHs8KSBZFYu3JF19vPt8TA81UMTjnFSpeShnxRopnk45xVlbPYtQpJ6Ndnmp7tuuekd69fCXJikBUBPXmA756DCB6tCG5mKEAAgIm7DS9Tm0J9FIFM2jKgjv6y612tcmU8wkqgE6zXTYDVKgtDzBAVCMOSrBPBVLa5l/+P5dSiJczs9LSqPWUk6LJXNPvkAt4unRJw2vj+fqCNZK+pNPO9UWRfVC8GWzJVR8jZEUS8La1Xdo0N4KLB3WZ7grzNBoPjkhbtrPFGxqlDdQDeVi4S+M7EUvwJbvd0uN7kK2LbnJItz2uTUbbuELwrIisYqmqIxqWyVngyS/2Olf5BJ/n0FsO/4XL5beFcorub4dqc1bL/H1rz59juQzYtSpyO5MlvkI3KXJ4DV+R2LYTdnGrCznUwbcCYrqOGbDj0+nfHc/H1/tV9v/9rdvdyHqq47TmnF6Pfzrfyn7WLIugJlaejG84fZWb8jfFe/9+WN7QD11a2yxlw6gsUaD48OIGtqxURlHqMinKHNxjzWNwzgMqXbu/ycRM5UcoqoKMYKNbEIXEfk7yynlbDkCXhy1Ho+ig7wulfV81t8fHvY5f5WI8vlU67JWJ2L1HYNA0N38979Nd6sabA8uptXGgWammk9P3727KyvEEwmo6sYf2Iz70iPAbWFwaxKEUBndPELgMk6WjUoPaYUI0dLsiNY5b9sNDjYQq6EvSqIVtFqSpdgYctEpsaGaKPCUFJba7kMgLXRv4TmoZvmcg2X18zFnFS6LujCJR53PA+ChxU1Rzs+PFrmsy2Opko2WIFo/n+dXg6w0vZTzNjK7hNp6ijzmZImNBSwXbaiG6wGgiEQNVVXCJJDGjEgWtwlmN44LsNQD7wbnbWsSfSP+maXY+P3YytcCMqpTcDukZLvPEa2HeBCkOIsOpeS6pM2jXCuSV3PoiAM3Ln93Iz97MpcN4VYEVABjvxm3pBEACV5CNEd+92ffgWs5x4mcwEE03Gt8CkgacvqViNdy8gK1IQ9TFVEopEYp56S66uuEijHWO/n93w3vPu7teE5jrONqb+Nf/7d4m5+XXZ7NLNlNba9X+aVvNH0qynUn+2MeoC3jzSlvmeENRtBSx16H8TUTEtpaQlQE37auXJSo63IK7sy052UqmoykguhdPIRGyy4T6gqIjDDLadKq70K4nFa7n6S4PMvzow73u8Ph4TD7fIavdS1LXYKSTEI8Ld/N3+x/HISisdRRqEktUbNa3n0f2O2UDgYZV55Tmxstfabcti/0S5Ymg95dpgACoxtnyYAaBErViABU+lQ74oKyAJf3adFlQ7TYaesAiSIwUUE0DBG10QoiJaXSQwUiWZJ5WUGyaspJIHvDWGmHZW1liJGLm8Hq8wcdVFKVnPT8+bkUaKynYx0mjwUDzzJGrbPeD2Qj8m1Aezu9MF1mycmUEuwjOIIeEVBItLo/RcUDlgLUxLVOU66h+oKh+5O/uSkFyYvOe/mZ12+xat/AO/8iosYNMoBtLyO9VgCitAhZTiq2hvqSNkNti/9qIBunvz2HDoPKdRv/0gtcymft/OViEs2XbU7s4j2S1ypCsf/vm/TtOOQfP+EU6xRPoipp3MlduDO4/nXajeOww1TKUp5JE4qYmmlKyuoT6jksD6NPH//y8A9+t8uscj8ty+untP9//T+/uqucyjkd3JIJeC2QXhxAW+DX09/aP//owdsLYcglJOs/7E6FdW2EWAiECYwaQYiqmoilSVXNFm05wKxKb+oaDAGqiIm2aoWAzHSPCB77FOfdMA5m032lad4Pu6heaimflvmQEodBBF6dcizzWta1TFifPkRe1RJUy5yUYQqzuZqGvTp/Xl/f5TRGA7NaXE7StXmv3gR09QBy2yqMS7fUcA5bPseoyNOgSaAa3hC1CAZzh/u/4JZre3NnbyhpFYK2+7rEdWi2GhkgV6q26IQUKHZRchXTyNkU4YPr/rzIQaISlhNZMSZymb/jXaRpNY3T09PRRVjn85z/7Kvjdz/YL5+rC0XWH/EAQXi6nGdfKRAuPhk8gvCKrWrTl0zTWYK0UYKmFYCthbuskNt1sxWNt2io2R57SvUzoNz1i0tjnhDaKG2eBSAZTpGIn9+mhWECii9rNsKkltbeLC/rBv8ph+MCg23M4E2IuKuXXPrpAADJkUUj4l/d//JhvQ/fDwf59p2fo8zzOQSS88RlXn9Vl/moKT0Nu0OG+1OUWteAqaacgOfK6c0rLffx69+/OzzdTefV7vZOm1+d/tmv3zwsDMWkntT0NgTZIoB2J69wdy+I/1EHsFVw28610SxubnK75K6nbGnLrhZRTa1ORlb0Yr803WhAkiqFIk1pDlygqiqygimbcAY1K0nxEoiYzzV0vNvtg7EWKG33YJzXkKAvPq4pJZOUfuXLMp/PZa3LPO3wGC7K6lBbkVR2cM3m0/gnHx7PUx73Sc0sKyoARpCmbKDoJcUTgkzAxgVmF4VoLwiifDgNFXk3aB5yHpJpThWgV0bvu7rcs2vExQsRPsDWgElhbjpbMKqLC1ToseXOgUho9NyEHEFTUThFlKG7eHqOFDDStVDSmBz74+nj6TkfRLCeTmvUNNZlCeHX/2S5303/WX2/nP5wxvo4jqMGujZEf9TNWmrREWotBGQEBUGlOhkYdVtYEZJSy6m82t5iC5Pa9bb0sa+/G4IP+g9frqmfRqQXeGDDUNrS8os+ye16JM1bYDpSUy2AVZrXjj7i6pCv67z/ek8B2g3/417i0vTTU4B2jdfUBhfTaUcKNVLU7n6Y9/zm+TlR9+++lRJlXosXP/pcxfavPqbxgLIuw+kROgz5dYR7RCxlnTWZpq+/mbzG8D1+s/7p/PiPH13HIZjH8+e/+pd3v/qw7GTJe5zV5AW/71Llx/YIbm8ubzz1i/uNSyjYM+JrDfXyqy0ojNBk6hdxTroDoKHNGVgb1C4uqmh6AgIYVNHkyeGNZROSwhATA4jq2USg8DVN6vXTe7FhFMnjlFMeUhqChHupuVahVK023qkIfoz1efe36fw7gHBXIXUwO4QnpLGU8VVe1/kJk2oahmyDmCqI2ZQear5dvPQlta1Ybn1vLZiKBNiw1BrrLFQbU8553A8Jqpaaum1Dwftt6d2kqq0704MURlwyyY7UhngLIxWOpr1AhvhmQ65iJm3nhaEFLlpYQpRhwEgbyHQfVpZnOYiEFxfFMNbn2cQ//a1NX0HS1/sPn47KstRJQoZNGax9CiGCWvNIS1I9YC4M3UB7AAnSFkV4iCnF3MWx26HC4JeVIiKi2orIuMafXW3XNz7NJTq/rtTbLxtQdE1nI0ol8AIEbEd4iFDSDnksHDQX6lzs0r/f4/TLQVwdcxNGkesLfsYPbO+zXdz2+KQVQvt1XX8xqUTQhuG/+Pj4uE67HOu6Wz/TXk/3wmVeXkcpy1zmhBmwnKsNIE/x+zzshqzy2mtZlrlkP97n9Yfvj8tf/Ol305/+Tu7GKMiqD//s3/yF/vrt6+e4z2e5d2ktW9eFh6vCyY39b7b/c4b/4imwbQ49ebje8Mt4FUqyukyd5bFNeCrNZKhmAgpVm474xCCxYhKIg2yzCQOJIaVUP0HzoKmJzSrxykNSCpTwo7uNMezyMOynPCQM+3XNpYbCq4iTEXiA2e5VLX82n9f5vNRHhiTVAUkXG+Mp7h/Ksh6PNZxiZpPlIac2FTjiukNc6gAdnevwhgSgFIpnjentsHgJRGE8CQjbjZGGaRiTjkD7hcv7XJYfgMYc7DKrAYWsTTRHuiYdVSLMjHNKIqbq3XoKTOgAsyVYcJBad/flGDUk0jD5GAHHsADCEjZLmwWr41DndYT8zb8b/0w+/fDxm39c5vNOJSjikhfpEJlsqC88cnI3U2dEQwjQMgJtmmnNE7onQZh5ROg40O0lMtfA3uiZ/GYw2hpVOhGom8ztHtNTgEvMwJBGa2rL1iMoIvrljl6KmyENw2q5SEZaRYpbA14uCcx1T7w29v30+Lk4YNsgrikTOkomQHRtpVvv9b/7bPfP8Y++LqiFZpxO6/Dum1fZNFkep8HLvHpZaylL9VK9wWRmzlq9Bu/SbhpQ/Gk+Hc8O+cUwDonV75WSoHn+5//hF2/ezw8BERNVu9yzLZppnin360lbPra53IoER4qbIP9FqN9v0IaOX4IdUhAR8fTLifdzGToOTlOvzPkkKtv8EwnNgwSEglVU26DiRqDNaDMKvfHlpZKilpTalIdWUIQMa01gOIqKWrb78e6wMwEYpdSgWlIQEvdL/e1vH8ZPk80ry/l8+vTpLIfd+p1/M3z3UWxIcESHEoqLClSTTZpSHszGCDF4Hb3SmsAtg504FeTYWZMaEKHHXEtELdXp7oEmQ6ODjcNuSGY2NKil1f6pEn1CUpEmpWbRRJ8oLXejqFACW9WLyWhDk2UQESxQExVKZUaVpFUSCxXhLmrWeVqstSAZSCQ1iygmy/uP+c2pQ/2naW9lDTx/8y6LoebGcmJq8iDCYfl+ORxkl9YzxvI4Rg0yqCVQq47JmkvUskQelErD8bR/91VbNNtmLZSOCl8PAlcSPzePeMlABISoX6Ly5nY0ooUSCSs4H/+wtuezVRe0MKFSzmsMiGGP8nr64XnK8jik7z6bACoSEQpREcGmlq9970/RZuGmjt4a+324OWlB2xh6SAxuBOrNC7RLEYAXYlCa1Yq8uddRPDsinuvy6Q+/fvfql8NuWJ89HvK413VeUUoNenyixxrEpLoDnDE/0abJfhXL+XRaYzckdSLNr4Ya6o//VX1jpzQsI/sEkC8suJ+WdK/eiLPXSICqkBvWw4vfA/ocEXQk5sVbt+TuOLwZjiVyIqPtVB6C6oMIgkbxgBeun0zTkFTvO4TTNtR2u0qNOEAM4WxqnbXVeFR16KUIgVIAvJLw6i5PjLx7eLUbh2lSVgaajFWdHy1Py6fssttn5evy/PnT8+LHTx8+3RtO79RdUuI6PAyynOazMIqv+CRiQzadNKWch7HYJFHDB1P0yEAki8wQMYWKUgQaOSIi3LWs1WspDpYIqMI0j9NoYnnIKqJipIqYSoAoPaIgI9RskKhRIdLrXZekFXSguqfWuN0izRChRg2YtP4cUWgb81RFqISkYtEkS1qqmhRp2iGyu9NM3y5HzXldhtS7+Fp5grFFi14hagL67C4p2g7AIEVTyk0yTQCKWdMUD9ow3mwaN5vIZe/YNseXEf6Lf14KEbhm2Rs80NREGV6cX2AAGkDLKRvAmq1WwMWkiYcitCs9XdvY2m/yNukPtC284cPXwOCK4dxEMtsZcIPJIP5Fj1MqpnN6u4+SbBCNGibLsRzLMY+7/X4/HCGwPO5UDXU+zX8S7tU9Hnu37piVWB/LH0QI2w0wc0fKYx1Q7r//vz++Oayzja3Vp8k1vIhmttgfgIjeBAf9Z9HyHn75K7eej2gkjxfgiLBpuWZGSEoe4bKKZIqaRFsvMIoAVUR3wXqsEVlTTslsjAjSo7a++HTaWAG9v17BEGsyO+2iNnzcRBzIXsvy+e9U83662+/zfhgTvTofQ9MDU3KGLMOk4+5rrEv9/dvvjvNKC+hg5nUSuk0DKfSy1HKqq88LA5ZUh2nAOGZAc0szg94NtoHa2wanpIARFNYCiXUhoqzVw71UWs4QG8cxyaQ5mQGjChGIARFBIVTAUn0iYWLqEUSYbJLXSZUqoi7RVm9rRSZzcgiqMhozD62duGNdSFYDDJiImRilgsnWp4OIdg7nMHItrwfdkEqBoLcHKtXXCoEmxLL4iNqj9BIhYinVbpFOsT4RNJim6daaOybeCVSXlo2XJP+LdbWY9LIwXy61zkPoZha1+AWs2V6kLfZpuWnopPMKBJPMRdSFTbOEZMhlyvi2c1/fZ8sSNkf4EpX4qXz5hvpLRz5fvhuQVFB3e9YiainBCT28LfPK82fX/WF6GKfMWFUDmqdv0jFqXUv1N3WdaxBHIFme5GM2g2V7WotoHgbd/8hf/vqff/xHZZFEmar0COBSr9/GGfdnewnL+o3u0X50ruD1ql5ewgX06H/I9R0BiLzidy5DlkEHEwYrIhzODAUUusKQk2gE1VOwshSQnGBpSFkYRCyrqFdAtcFPEFGEAYwjRE2b8YkCtUsTe9pL1NWxzkQaht10uDscxmHMr+RHw6s4r7JW2TklDTvBL8+ffvz9r3/zaVKlKGJa56p5SIBq3lfouqz06gtirSE6qWoap0HVVE0lRUvjVQBvq0zFRBZrSkCOISncaSzFw1e6l7V6kEdRwZDTOI5D2lsySZBAVHeyiGlKES5KRuUOGs3doe9lraLqvQBNtOE7kUSScR1NAFF0hdzGWZZAhgQYlqLpt0AceZhXMcsqwRiV8+rD/WTowDqVnZcgEFmXMDOzNv+jycUTKADF0I2RCIc13m+USENGxxGuu/cN9bdbyJcJ961FbaWpLTXf2ocuTqqtUfdWRWU/jT7eoJWXRQBmnGtW1iFmlwv2J2TIrVzBZVDIzSl0C5CXZ9ZP/EW8cPEAtznAbXyANKwi+7HawRQMRlpW3Y1joTTO7DwdDofD3XhnyTgfuZM83kEQtaxLqbSyrPO8OKZRUI6cnCmNWdP7+/Ff/nfrL3nm/bhGNJ5dP8uN9rNdg0gDW/hzwIa09vXrZb5wwIqfb9loL4yAHleY1EMapsEEZilqNSEaydekFZCyIaMtpVpL5SeIJhOMecwaxTNBem05tghcVYBe74VQRdqEAxKkkF4FOoqroK6nZ1B0vHvY8fztu/QqYzhXOT5ymspSlyw62euHP/tHf/U3jyhLtZyfkQegrgykPIySp0ohWWqttZQq61LFTHewNE7ZBjU1ERS0ijyBQOi2YYlkE6ckT6JJ6BUCX0uttdYazicoUhrSMOymPGZLlvZKysnXskK0p5yytg2TW5RRG5k2No1CQastci017SxRjRTWremr4VCQoBhoNAYAhplIJs5Hy9lMJGM9nfXubp+vaSOlERUgUJQVyUB35pRRuhk2oqLqhpfTQ1UYoojKnLsDv+wUG3TRx8xI01p+wUDdkugXqSm2LWx7QfMn3SFKqwk0FLLteN58RNNmMQXUFySN0LqEoE3vJIt1puULC3i5zzey4ReWEt2u+5nemEF7bU8+egHuphdAQ223O41QBANcdVKETied9gwn1uffL0xpf3j75mHK9lmTmYqG7vZRih/TTsOX+oF0m1JalGnKqD4O//6/xp+d51FjTQJRkW6sshn/pajZL/gyvuwaG7QhQfqiPPplCrFxAV/+jATo8fz1Pf1MPAKwpJrGKZtNeRUwGHADOv0w2ho1mwBWL2udSx3E8jjmdNaUjE7pHJEQU0TE1D7Hra+k1liuMkWtAUqxJDJBHLUeH/9O/sMffvmn41ev052M+/Fg+9Vr1Aj8uDyf59N8eFJLgbIW0aR0EQ+K5qYsriLuIYJS67pU97XMQagqsuVxyKbJTCjJ2rg8EZM+TVkzWVvTlZrUEQHsI8Kr08NXr0tZV2UaspnqLu+m/ZDkoBJlXn2stYZmfW6sWnRZPY4moYiwhptdmpZQllWXXXIDSa+Z0cvYAFsyIF3Bmmj0WDXIzqPMhKl5lf3+bhq3/bmv3Qvzs1RJGgH3pDlY0aidakpJxsaBa6UA8Q7UjfnK8we2WK51ycjF0q7sOfw0BbhsNzdRhPSpISJtMKmEl+2sLwaqWwQgEDU1nWsyiMq6QEN6GEFtp3SpHlyIMTf+4CZauSU0cbuALzLm9sJbdOwWA3CxVYcTFmsMqdMwwouocqGo2TIefsllqacP30e6f3v/F2qqglA1kzH47fI8e97Z18u8ihk8S8pSi//F/+P/9ou77x+GjBJIrf/xJgi5cQAA2pSLvntcLFmAFuO/qKZ+kQLwcpUvbjhJItz1PlSe1cPXWj3wXRpyHsZ8sGQmwme1kCwxC7TDwYwgxxj2YPC5zEfXlHeqOaesa8scA/AutBVbpxcISB9ga58lWQa5D68hJuuwN5Zal+/mD+vrQ8rDq7f3D+/0QYS+Ft+d8fk3fzgrPGQSLGOEU80KQwNOMQuvom2sXUag1RdOXt3rWleIaDI95KSilsUULWehiDDCVwmAluCRRcwFhIaRECJqRFlKsIpEOTuL5jwO2e7294f9HRG+Luta6qGXbSlNVcRMRFRD2caXdekuCMt5eX+4v2Oj8TgAMpA6NtbkUqxRGUQZRIhN9m2dl9XD3e52h1GR2pi3XtTlpgwvrJGHppEdwV62Y0Qko6ZOmhWENk6wksFhN3a+3dV4tSfePQL9KQjwhf1tbbubKW3bbrd/CTLg69rSFZXoKUCjbUQVAURNB3VmqzCs1aS2AU+tq1PlJgLYkt+rod/QZrbzxiVOafZE3prMDeV7ez7XHyY3q66xtumzUe/qGZqyUhIoghSLqI7DKF7Pz5/4L/av3717cz+Yr0FNWvXVW9R5WcddkvJ88jwkeOVf/J/+9h+yfLvIYrtUi9gLpypXGW+2G+ptH5YL57mfsff5x1fLRt/2+5vdNEjIzfdBkhHx9cMnH0erieG+1rgvpczPtUoap2EwedBAFOFrIiKCRVou39Jp8rUo67KsJy+h037MmjvyB0AEMzaacftQQzBQzWKmmOic0hheY+LiAct3b/7B4fvyKbL8lsP9L959u7s7jMNOdf3Vf/70u99+/uvHT/Xu4ZDOgMJrVZc0pCRFTAOiSaLWMPNkcBnldVCizIXlvKwr5GPKKpZSTjlpMstNAYjGKqTTvE0cXwBNUuktM1MxJT0QYJ3Lypl1PksbtzQdHg67PB3ES3GvpTYeoRCU1bTRpJv8LhwKBCFIdvo8vv7PWrVcqapgRO01HW2AvkkrUVMJhhgmj1rdw1IGQ5N0JeToVQDrkCAZUITvXGMR66oLZJvIydhaHVtRFxIg0pjFX5gz+hZLNocEfjmS6SfHttiuf25v05MJkl5Xi5eRqijBCG/3SjVrwBCirJFbfEAVa9Tjq3xEm3Ytt/2fZPewQPyMA9gGg39xbA5gQ9QvWNn/Zqjpl18bHW0Ot/YCGFt+1IRKe49DBHBez0sMw/CnD1+9SiRmWFYTrV7X07KUfWE2yvB//bzus3vW7i8TesKl4TCh9H7/izoTGoiVux+m9Ol8fUKYdl38rsN++bVVNgfcFMa2R2QRKuU03795M8K9oBRSGKzuwuK+ruviNaYh2+6g9WGcxnXRMQngjDCyTZGgSKJ7kOW8rE5J024yZEsm7mEMwkTWFv3DVaGdoddjHFUwDvMg61T+5v/99au6pCkvHZ2fxq9++fVdHtI4jVrX5fH3f/lXn72UtyWSFJfq1SUPQ2uch3jSqN61vkUl1VDUEJelWln0Y3h4rT5CLA+DDdA8qomFaaySGx7VdmshoCpeJaczYCok1OAecfJSa6leghQ1TWnYH/ZT1nHSsno8R3MXKSUFsoVKkxTry3QdPryPj6ev//Nm+FQRBkU0XEyF1rAUyV4qRbVCQKi2MldfokHeTkkWAWpL6e30w/zmnSyx+i5+9LuARgnzdUlDUkVPKbwyZ4ugYp3lq2/y3FWGG3bUhgSbNNIPRa5TdbfDgoKtni+4lD+rNDiwuZsIEGoCJq/O84/v+76G2oJcgmyMkEGq7Qe+mR9Pw8Gf98ePRwxRJqBpnqu4ZY3eu3rxIuzJ040juJ7plopAUFRBMSv9fm2R9R8VBBFRlnVMiR5USytJgUnGReUAIV1nWiCv3Etx8l/YsHvz7bev3jLCl/DPajqMgo93Gmn+9b9dY9xZjVRu6/PbBDbpLZi9AHMDBzbuO4jcAB3p7a3crlStuWv0Zm+7uLLmwjfKb0RQKfLhX81/8s3+zS+edqP5fF7HUqpjklJDwLU818fnFaw7TQNk2i3D3f1hysqcpBQHIUZJBnCYArIup9NRVXZqeRiGYRUTMGh9JgmDQRGx7nYrIarBD9PJ9+vvvz8kwpJUF5UkqvXp028Prx/ud+M4jvvD3fjun86P3//17x49PE85L62zzA1kUKWVRQgx9QpJrXhK0TxUdc97RkStcfJS1kfS1NIwDGnPlDSybQuH6Fz/IFURqXfTqiYDg4O7h3vQy7pW9xMgmpK+HXa7YZymB0XUZaka4dBSjKoiqi5kUIigBtIo12yu6ZVfOMztQZXoDbQbmf5yfi/32NbcIptNxGPNWbjOjMEmxzoQhBNmF2aogEE3AFArzmEQigq+JI2//EJefK/Hq11QlRuo1mfSv9xpL5F2V2PrmNYV2IogJEQVSBKhGlTWECHNm33/J/cCbWfSxM9bkXtDCvkC1Hx5JFWPdbYECBi1lVlN1dlitU1gYKNB0fLIWvlfzo9Pv/0bkbs3v/oH73asyYYEuu+///3HDx+XrPudVUioXKCJDYRst/iL/v0G326eSqDBgDb6RO9h5IbQNFi7+d9ryMYbanz7BsWG+uk3vxmO8vbPdq8eDofD3Wl3h7qudSprCG24U9RleTp9Pq/zPIdlWD483E13d/e7lIa8qNDdYxQg2ZA8avXq8cgWkA+WhpSy+NZFAxFGSmdKJxSGhpCIk6Tf/tvlq+RuFjW1ZFBTKev8PI2vx1Fg0/Swv797/Sd//vj8+fsfP3x+5E5VRxVUYVWaikogRCSpeEDcASi1QE2howEM90h1XUupfmI5PUtSiI2m03hHaBM767FABJRe2lwbNJY8g1PTLwiNWkrxoK+leOVfJrM87ac8HPb7/YOkUgNeCrWpC6k041jnJQLj4SJQ1DI83cqB/bmiAhvfnkQHw/pyuewKuKRYrSsIgTmNGZqLODF69aYGHMyt6t+23z6CI0IRVXY7iZ6KXjL5Fy0kFwbFz1jhlSfA7orwIpS+ScARrd3khZuhgl4DGpIMMqBGsohcl6IStNj8x2Ysf+T4Yz9gBzbaGJ4Iuz2DL4rot0cSBuiraEoS1RsFMhqC3EDbVk5tcqWCChHNGTPevEWZV3z8Tey//ZN3X5lZPR3n7/7V7+5fTzrYZKci2ii+Nze5NY7zwmfYImXvn7bd/+7D4vJA2K8jtnjmUu7ixdVd6iVtbKnYYG/ffHp8fHqe/4VAh/3d7k8Pb+/3+1d2IqrX6ktUjodvtdblfDqfy8f19Pie2aZhd3d49TDdD7sxD6JHgHU9S7GUxjHiwIi1lLoENA1DOsBMVGQRIFjZdKcVIEJB0WNJf/vf//5NJWgVvpMWBq0Ok3WWz+OYYMOQpt1u2u12d7/4X5SPv/vdpw9eQix1CFVlEkT0KckKhHsjmbXKUwRVEaKcfEeyei6nY6m1zhJr0OwuJGXNadeED6TrA6iLCAIyWKsbOCkClZBhIEmJWkqtPEVZjs8mJmncH3b5ax3GLLUq6KW20ewQgue5VBzuhQhpeg0XBsi2Mimk3hBatvQBjbfCS3n4Zu22jlkWDHnFNFoqtRI6NowdeqWbthwrJwE96J72U1NTuDGJFlEIIHFZey89wM3yg0BQu/+41gRbUCPsexpBL87rGV/2X7pTtaiZaGb1wSJ0Wd20NvAfFHTlk//JkcB2+tKShy8i/j8ObCTxmhQlRjFLOVhIulOy9MeAHpepSIho7rh3IkQGnXj3tiw//Ka8TVNmXcp3D/84xaR6FA+drF59Ny8FCRAXAWC73uRrpUIAdl1L2x5mu5HsaZBseKG2ymLPGrUJOLRbAYHpp/1X45tBzsdyPp9PH5Z/p3naPTzs/+HhfifuVC/rusxUGad3Ev5MP5+ejsvT8ZNrVvlmuru/f3iYspkiyB3dXW2Ihq2z1HWtyypnWEpmOqnCA7KCDFQkBiiIWNP7//53d/nRFJqMVVVTNtFYxU3ldAxJ025Y798uymH0YZfzP/imfjp9fnw+LzU7neoxUcSSaGXIwAjp8PdOVtthFVNjBFAJU2p9VceDpnVW1Plcgs+VBmrKOozjkFRS0tCcziL0hs4LbiMzgYiEMOUd3ePrKOuyVo+6HN+r6TTd3+13U7oTHSaonOm1logsETXtpzaVB5JECNwqUjUDShEXafhLMEBs4NatHcj2CogvFK6LjyJWCoNDaRSbbZAQW3cQxFrPV7iMU3ZeVYLRUtAblvmLDejyzVviwHVpbTFEA6O4VetaHuPlMgdmM3+SdA+QImpmtlSqOmUpF33cG1v+T3EA7X/Rm5LQb7P+PcYPAKm1mDFQ15RStpF0htMhihBYpx93RCJcVJUeiXTRLBAVjxqfuBboMPyvj4vlmOekMWqOFxW8zqJi71sR5cZSlpvmi3Yrax+NZdc4i61wBZFAA4tuHpi3D5BoUZxE1z+4i9ipuT54DS/zMpfz6fTo8n/ev3n75s3r/X68/1rWxZ/C51W83qkwaq3n+fm0LsflbxEyTIfpm+nh/v6wGxxG97IagyqmBzCiRsyIZQ5ispRSArQRv1kihCBj8L/+N3cPRZiUoRZhZHiKsoIuOtCAtWjUdad6Dzt9WmTa59e73d3z83FeZS1m9BkiZgZzUYVXUZo4leEirQEAbH0XZljxERXTbr+olPMBIvNSUc4un0VNRTEMQxKbxkhZtBX1GKR0A6RuIZgklYhw3cG91JleavU4r0fRvBt3KQ/jMAwGTZoiAhKyO9hWlG5ICbo05nVjve7XbQxcV9e/SJ+96H5sOaAoYxUbtBbIs651QO3DviRF20gFbVyzSFAkBT3tBsTWZHoN+m/2+i1ffpmI35zfxTnIF/++WiAAMEqThN9WLUBIhBNAqIkm49JkP32ONi4yrgD9bcD8k+Nmj3x59M9vROw/PlnoJykARCSq2dKgXtsLTEDMQCd/tbdvg84UZ7MkQtSUwaDkcA9I+tNoDZDHupvOj+mbZ/aYrH/ohorqJkZFgtKJEZCLltnmhrsBaZN6uj6cbXsKbVJ4l2agTfDkcnvatEytolJKDKIUU6nh9Xx6Xuvx8T/8Wwf+QsZXr99+++Zr4+xRyikKkSa1WKOWtXxYz6fz+qn+2sb93euH8d3ubp8SoB4RcDybJR2I13Sv1fmBsGSMd11I5ASBEJHsu9/U0ecBFDOBiYJOX0+zVAYfhmlIqlKX7ynDq4fD/nAvUs8nLzGKjbWg6ijiJEMQKtZQBKdJQFZVBFwEDA+DUixR5TmLz2kYVtQ1hmn4ZqmyPhc9RnitJRYVEcuW8pDUhrxLJmjqZxCQbUSZsbIKQE4tqQ6XiLqudfSylno6f4RZGoZ8UDNT0+e5hB3uWswvvKB8fSPHln2XrUTeHrxWoOO7L8G6bQduCj6+mo1TqWqf7CSDsm/IlrxjjABal6S7moTHNFmj4W1v1DAn2cKBfmYvW2xaO7AA2KYSbxHARnjSjYDTOeKdftLf8OaNmkogmROQLOYQQlBXSEDpnbP55WX/xx9XmBzRqhnyR63+5kiUJFHFiorETH7WlHMy2SMYEagdK2kATegIuKjYAobTrEA0QfCsbe+IiZ/wlp8Hp5BprP3ju7SSyIXq0x60b56r199rdwG9iUSil4suPdwBRVAYDVQql9CMl37x9t7tjcqk85pexZI1iruSOu7euKflXGN+ev4wz+52d/fw+qtXb+73+NbLsqylnCCahwf9Rbivz0+nz+vp43eaB909vH718LA/mGX1iEOwQgVHgaQMfHs+Fq/L+l7TMA6DTgQQQTv9h8/vdvOu0ghUZBUTNZ24FqracT6C+bBLtWqq7z/KtMuH13f7V2Wp65pnP86UpD66B+gQUwlCjTAl1VJxczNVVBVLGjCt4UiKiDSM7l6Qa6Yk8Wxf092rx8e61ijn0JyFSGkcD7tBm4hkv+FkgFPDsMUvG1VWkn3g6FIqa1lX0R/U8mBJ/Li4TlN7FgCLSKNQ4iZ+JqSIagsymyF159B7B6517s1imwNgzYEE6Kj1LPeG6F09xjZuttX1ARnWAOiFaRCnXHL9nzl+PgLohyLAYK86tatgdGm7jam+1aGDlI5db70Am8ZqqAGqURpn3x1aRdjGR8fFZfxP9gAX5kAb/mBXBYMrfPZzR5IgXfFs7q0sF/NZzCybJU1AJj0iGCYiZlYJMgQWFBVhdM2D1AwQmZjomKqakMFDdbDChuZBicClchcCbQws8ur0GwiiXaOWoggApfmFJtUlsg208Ya0kwYliRguSV6jRKQKHRHIoAwtq2ii9+NEADjVZT4+P53/Q9bqw6tXb959c3+/i5le6rqWCOTpzTdeYj09Hk+rf15+94e0G+TV7u3bXcrDYOIB0QxTVaKOgzPAY5QyP61+4N3eY8ry//vb3ag5kiogSUYCAq/JTyprPmcSUctzmGkREfUzNBnf3t0P093X8flDDKKVrMUttW3OCSyDlSomO2StMtmcNSTv8qepPk2v7DmSLWVyIHSXLI0TYAuRxjrJilTvWOu6FJehfjxbRqaNu8EEQyMWh4iEQpZGKlQPyXTJRQBjYIAQcq8nVvcgnsXXWbwOtdo0VKsNjWdu+AIQDjUVVDc4LIMUyVKkDckzIBolBn3IZ1sRTay90YLoYekwMGutedkPq43FBYri41e1guV8HiJp9UDJCKtr6GGfWJkLREBt1KemwS9CRBOCu2bM204SG+ogEFM27Xh6pB6MiIiHk6YCzSyMCPdIzaXFRVBEU6wVimEdRkCOlZrScp6dMAlJq1nvhCfEECpgRC9obLCpXBMQ9t6E0vgvABq5MrcqdGyCICkcKr1JgjfNci2ckZSiqkjr8BIRKSSEjFnbuISdiJoIiyBiXUUhUBUp/SZZD5m4uZpOFbXWOI6gCO0SQfGlHGtLADo4KKSIY+szA2/4371ZaMNeY+vNuHrK9jpeiy8viYHag9FoNB1u/ugObZDbEuX549Pz5/+Bur978+7+z226z+K1rsf5mUCaXv+jOJ9mOX1+OrnHj/43eZoe7g7Dfhqy2qqhDdQUA4l7hjvBp/N6Pvlu+PX76XVCTt6Gn7Y0V8AqFmtBoTVJEdARBA4UigmfdlPOOSHXQSxblHl2YV1T8YCaGVyyemlxqoqBkhOqQpJU1wHUNKZgrcjDNJSkmDI1mSGgcs+2k8053sxe5pHg6cmpKprG/ZDNklnSVYU1+uBBgAOJIFFSMiFxB4ARfMe61KgFoB0Okyzt4Yhva7cxZy7JWqOmso+CV3bq7BYHy/YsU+v1h1SQ80pRiboWay0EQBInox5h42E3sH44Hc9h41BbG56krNHVzdvyomCTWPy541Ka+JlDvmDod7Ziy42C0fUAv3jDtnipQjVWmDHIcn3PRoBqLQMi3gdAxO1ZcJtcxAtjdrtR1h3SZuMvFLd+JqLYfj8pOxm693W2MI3iUBEVVFFNqpK0668C0K2GL9Jirxt6YXSo3khQVILS2fy8+R+gwc5nvMx9JECJTvWsvQSxIavab5BdiwUX2ORyhS88QnNHF5HEC3rQooy+7lEAy6OHkuHLeT09nXz97Xd3/xz5zbdfv5nuH3458PQ8f15PrsOwL/e/Uj8/ndey1rr88EGG/W4/TLa3lJMSs6AN2wVUk+ndwvVpQZzT66/jJOmNNDWxcAcj6MHqnrmoAeLVVBWiMruRhrBYNY9JPZwRlu7Hgyae51SWGghydYzaBDvVnVIQyhIaGLTUPHBlSlGlVoyH0Z4nCzuIL4AmNZsBSIIOiTtiPamiLmuNc9QaljMs52Ecs2pSaEvF6BvXXlAoUBCLmogIduI7ShRVUFMDQlVEosd3rUJO6RjPxljZpn9vZn/5ou8GvKBAzuTzqklYo8zikgcnWjcB67nApvu3rx4On75b2PVn6bRptArroXCDAilNt38Lk3EbKYds6/LloX1d3/zOZYGpugeiVn/Zq0fiKuBhQku+wlJU+vziZRdr7/YkV2blrd3enugl8mcQqlKvWXC7jrYl/qwTAIDknaTdZsk1lHbDaoVtfLeKcqdmklQc0fTlqYBQvLH5JHomtJX5mp8UQMXQUWVevABbwRK9aIw29rPDgxAQ3irfXTGsAS7dnW20oJu449JkCL5wmNf6SpOiuGLOAlBJWFccCFKH/YMnd86fl/hH77//27+k8H7/9quv3r0+/KnHMp/PJdErhq+kMGo5Hdfg6VmTpVeWh2nMOogojDg2F4OEaUzZ6u8fGYdXg51FhQimqE5lqKsSrBIEJLSamaqJhxEqkcpieVVMqkRI/UTJKmncVw/WedXVK0jXaJpSIiJwModkVEzKmsckQm/yAqmHWbW4MY0xhHu0sptK3t2FWQQjPrGu61pjFkDUbNA8DEO2UUQkq64NppWDCKimIRAx5aJAShg0oVZ6WId/t96P5i4QrSGgb6ZsOiutMUi2B8pLNZKAi1KgAkp29zzqUkU8RCwxgAqHWfUalekPr/ZfrzqUJlwqUam7UUNt2x+3PVwlXqyX269vrOv2IHtl5PLqbreEIKoC4Tdvyu4qOloCZoWlUqnqHlFvDLm7iLYnbrPcf8Zu5XqCvTMYbXJUU89puPulqnZRJ37pSjo/V5KbpcbLIYiQi8hmvwPK1sm1miU11ZEtzCwIiqNLqvWhk3K9cdHYk7Q+2uKmyaJhtCHEpu928325cVb9KxJXsUP21XL7SARdoooXGscfk1fuAx+81wiAzKCQ9PAoQSxD8v2DRrz7B3Mt5+Vz/bt/X3Qav7376tu3dw92jlrWWmUKhr5FnOuy1gA/iqQ0DHZvacjJ9E4IL9VrPZe6z+V8PPF4uEtJWp0qeh8ankLGNZZd89ViDoeoMhJhGh6qBcI7UUsaDEvuEFuCpslyinV2BgrEzBCrJolQYzR4f6RTk+Y1DzYk5W6NAUvksYd8B6+1BpjF4Z6yKNws6luAXorXKMtSwz8BknLSQ8opD4O1mXxtaABUzXpLfVI6g1WoHmotkQcbPnYDTUvvoNrYr43Jze0R31YHW/rb/gChyhoycolpyHPf4toeYQoZdizHJ/nOWGCN+OsVeZ+22K+9Y/c9PRzsKfYf2SW/OORmzfZl27fdCFLg9bYM15cywwkRajZJLAEBIxpjr70r+2XSurHyIph289HbOfaNkBs43mSZ2ffhm7PrH/+lL9t+P2lKwmoNyWN0ptUtH7GDIW5VoDKLqJrJrueAtYkQXfKAK8DXwJ+eLd3ys/qHSyeC9eC/Pf9GDWTPGfqJts6zfk5sMdilzbI5zOYsehywIbm3F93VgNtUyPa+IgKpLfAJ5p0EIachTi5Cz29yinV9VFmOj8/Lb7xgPDxM/7Pdm/sHY3w0jyoROx6IWqO4l5hXPYpZSqavNCfLADyOx3L8MGOU56fR3lrKKWUUqQQIPx73+0wog0FsXYZSUEOSMoFYAflEpCHR72BODLnQaZrTOh5qrXUpLVBTOjTCtNJbLhECeqQ0mQwKDBVZKvLOaji81i5f65ZTuICqoBLjprRDr9Upz3VZvSzxPie1IcldHkzVbM45KRHRkkMMfeleNgUA0twECcKaF1AYA4Lom+VW/0KRW8Wb626g0kigBMpaoEpBomk0qIWwC1YNo+DDZK6pIdQRNk3iaoxGuW27VcfGXhjKTV5/w4a6NUFly7S3rWo7QzFEHw7iX/LwCEREiAhMxZIvoiCjlOv7tg8VsnVUkWzNUy9fAVycD/sib+ciDZLfTuuGPyFXD/cyMQEoSMNgZfEpewcCAFK3aXNX02Nr6RZZIWomcoBsQhrtgW8P6vLB9Eb6paC1n1/OX67ReKOjN0yORGsGaq9qFxatbiibd+njDduky219dKmBvmq2DuHNF9zetQ3VRQekqBRIECYkg8yq9xGRlFGctHcC0Gsp5XR8On1+/28k7+7evDn8atqNJEuBJB1qeUUv1QPBKAUiT62fXmOYXj/YbH8j011gSh/VhiElTd7W/vx0uptUBo823+4kgIgaAw4aVogibBjIGopYUhaxnLJEuIkUER2yDw5ErSTKmgTigNMEVSuNDmpStF5nuCYN0YRqcEJNTO0TOYxCLnfTMiMZ3CnUUMkARN7WtZSy1qNxXWb6Y8qmeRwGb9qcLkkAoGiTFh2E2vnJIDbGZye5aqPSdriq54pg6+lsK+l20GvfMTY9m/nsKYeNocWdBQ1iMNADEh6EJtMBtCTRKgl5P9I11UidMkC26cvy0iSu/9LL+b08uunHxg+ISxSrrAgQ4TWu7byXFKBvhqJiaVksgcJlfbHBC0QRquo9S24x4mW5oqEI4E2Iv/1csG3cxBfb/ebLeBvibC9JKcEXTxloXNBGjRSpokIGU7813ro9FWRUgZzFLCXViQhGn2F1EzNIU4/VNh5JbcNFLp6pV3UTSIlN7w3Yxlii1yzYz3y7j9Z7Ra8h/Yvko+/sG73oxTPk5S/Z+EkBAiomMkSEKMCqAxYZVlBae7yIsaSDKEtd/Xk9Pj3/h19reXi9f3jzKh/CCTGpomNmwMMrKVrqGWqm+yGH7iOWwsh5Wb4iyVoRpOYhSZiNw4q8Z5Agd4xSQ9oOKtKqFp7yEVAz0yiuillrGgcRQeZc1egZ4iQ0qsugKkA4DT6GiwrDzcKrqhsWS1xPi6VsaNrBonJXYFOK4N3d2WdARUW8YicI9wBsd5AoRdRPs3s9ei1FhjykPAzTmCcxEQSTMISMqoQliXNbxN3sIQsJhQr7YPKeigvQ5rBY73Tu3TaXtVxFFabi5nWVlH2wkKjVoiQzsirDoLZKUmEUISNnLREkkEarYa3GcNmypbNQfzbul5+z/u0HvO77bQ0KIFoR0Cqtd/wnv93hKCVMqqfsFNZ6+8bsmISIRFfHUKk3p8dmP9xyYXSR8ubSgnJpib8ZkNHKnD89tt//P3B+1vu7VFpSwsSLvfXwrf/Xv+jw/3YLZTRLKYmUFuVQe3OFkBA1cQGJ1KbKchMA0TbChT138c6EZO9JbZex4YnX2AENhQVI6+fZboHK1nRg/XTdBAG7Yo/Sut/96qQEArTIZ9tupIGal3MQ2e6L90Qzh0dZzuvx9Hysmuyr6eHV/T6rw4NiWhENVmvUT+G6Gz3X7z6rmajqznJWITQC9Ij1t/7tbsV1wq0HweowZSV0Ki5CUWtn2cjuKpJEVFU1tW5g6cS6MHqtUSOvzImQXVmqmMLcqQoyc8GQHAkUixJ5zV/FZ9ov4ukku+MrOylLOmvG4knqEGUVM8ZqVgTrGNVFyyLFYz0X5EX3unAYpsmo45SJZPDaGpQ8EomG50qjdYUYKCZrWAbFmqISXYUBNe8VwAYcKPrIHbG+XkTL4zP2U4gK5/NSC6adhlcIm6dSFYLYrev9PSkR5Sxf/4JogUZvQYGZmgobe0T6aPkerkI6xx/XHGSjIm8jkC4eoOkxi6gpa3GX8/efXOHY4DARhMe6VgCaxilN0/sP4+ASp8dTqKiAZGIE1YyONu4Y2Oh3su3sQJtbgYgLQepi222Tv7DjeZvFX165WfP128mVsv9KH1M3i+hb7iV0BnpRvn3By7/bK06qqqqyg4ilBuVEkLmXclZL1inBV7d5Lfc0LUTRPgChZwIthgWFN6OOtjNiT2qIVoy6RB4vWN6tAHSFY/vnXIokW8DSWg5kSwwvmUQLI0RSQwiaYyThNBt2B1d4XU7P8+ePfyfDfj/+Mg2DYY2k2RhNM4ckZcZ5maZXD52q2PTEuSGe8vkYn47Vkom0sms0x1wRCCqCYgqxBQBiG2nWDaq14CtExHpSlWnZgyxKYYg+10KlyqKKAjUljHQgwpEQdRz47HVankgp43Q8zKf87s3zZ7UcXGGqQ0rwOUmlJWsNhCntK+GrC1a3WFyPy2OEjWO2YRiGNIRS0Do3AJAVoirkWNsAEhU1CUcj/zOySiuebiXAbSW3DVeu6s9emQ1SPbzWaNz36FnzNTIkVMIBMFzHm660ttV+OfiDFwuTy1Lq6+iFFUG++LuFvyKJgWiF8oiXCpZEswmhiJjkHDImSktZNj9R1IwRbbQQbz8RLQHeduwNDf3J8QX290e5fy9ehySf9RfTcR3amVwgW5EbauY1amI/m8YVAIg2jFmkQszM1NhklQpbl9ekQvdAblnN5ltiu40KAMqLEjJ7+Nezpg1cvOZU1+hwe4AgYuNQ9XQRtEbZqvoiFaBcH3wrEl79OTavdgO9sjfLbgkO4YQIclQRUTqjnJ6fTu/r38pwuD+M+jWDCHIEolZ3wshVMEhjuFWR6K3bFCI+rimKRwFUG44HaVr57XmXJl6srk1BMwCJViVqEZ+aippom3uOtcfaiYK1aA61YCUkDeHVdIYkVE0JJMKSmtS1Msoj03IKm6PknZVZKsYUKUQhJrVir7NmXUPNmWQoAbUhZGzQCWevpbifP6csoinfq+WcEpbG3IuJjTXSCKdqDjWTVvoWiiRpu8+GKcklipULgUwASJSVOUHVIyLgbahbCHmxO4KgqtBFGOuaDrsX0Sx6o8jNI7/Y/+Ut/thxQZC21cYgqNFoJUJ6Db6QsScYnRwkqszp5G3kea0bfH1dhxQzxgvrbeSri13ySzTv+qqbjfDvuQze/iTV/Orr08f6rs82wGVn3ZjMN7+1uQRBy+EJMDMIiiwERE2zqJqqVAoDTdNM05TOJEX7bDnycisvYF93+X0UEi7cJGwMgO12thRAukfs/2rI0aWUAohHIyP3CMpbCtDv3BUZJa7lx+4EpWERvSJ7uVVt+QwkI1RSLS5mehrufkUvPp+fzo8fSjEbDw8P9+MiqjkDZ8u8o/CIVqNJjbMDKgPw8hzjTktUAR0Ehs5zNqJRU5VgjTaGSHpphS1Ckl6DV6iYimoDBaEikklYiIxDG2eehyEogFVVrC6JUDJkKAU51bNi9bLWdfcjvj0cj2WaF58kZRdSYznpYDHlGjSpoYiiKtBAZKUY4hXJWNd6RJRSKR/Ecs4qb0RNWysgQYZKQMIZIQo22QYl2zABbggdt42ZcjHRjh6zhho8SRIJ1jY4mJQNRe4lL9FkQoh7KcOUfQsnCLCb/2b5Wxr9BbW0HZsu/y2hTG6INb0FUwMhgIp7dd4aIS8OoEGAsDguyUXgrWmwfW5meMCsJr1Mtbw12Qvz77KR/hHDlst/f8yJvWApJf7J4enTTkoiX3xuv42Xb8VN2M++C7W72aw0gQGGLCJq1oQYBwiU7rVWa5iA6toqM5eeiy3k33JyuTyXFiZHdwBxwT/bL92Ce21jvA0eW0kWuICprT9cWv4AIaxTjhqKciESbUOFEdJx1Ws00P9UGEQ8AvRaX4XPlZDD7o2izmspy/KHvwO+0jxO05jghYawA9gXQc+yiCDK6rUUjagTmoOtLZKX2iBUSYBJClk7yUd7gtZ9qLhWERFJAjVNrR6kKiyRVOmUlAjCxSVL8L7CaglfIaBD6dAK1mlwpjs/6nkdok77VOoKWB1EoTHUNBWO07kia3U6BzUFPWpKhCIKJOnk/s6LRxRfwsvKiGe1lIdsA6WRBQKK4qFk8SY/IMHeK3s9tlLXtca+He4wRAS9llI9VBWXhIubG6cqVBUQ0qZJfbP53rvXV+8twtYSv5tH/bPHtUcAl0xFVK2V7QjQgzezBgm0gn/7bROTMq/iRpbS3+RmQs7PfN4lWwauHupnfuEmit3+exENvLjQy7/Sazw+ljG3IpRgK5zJxkq8Xf9ydR5kF+vsIZtEV1julU3JoqYGmQRRaq0DmqwQe+Pn9VyboW4eYNuHNw22NtCA8F7yp0Tf4l9W+okLC4ECwNEaWhuqen3dxkXZ/FmTLIM0PHajoTW6Mzbl+suj6I6QoquomjBWQLKYRoRIylXppazFTwTUTL6xSKkcZdQ2N3vpoUQVMoR+/+FJsiiWntJHz++N0aZeuNBgavQIAmsP/eN6D2SDOlRMElRURfJKpH6RJCQcpsm9UAKZGmISheJ2wGMMaTYXy1Ke4U/DqKvqYCrCms1SvncOHxyQ/XOVCEYNMwMRWVUBtRLOkJytDjB4zbWUWt2fOhh8gKYhJxGmpAYJp4hLqmhVA0Pjd23R33bP2TffzQhiLR089KU4zLVJmTq3xd0WjgpElRDqdDdpXJ5gJ9kKrrg2cFk8P7GrP4YBbMln24xUhyglnKTXymvvareYcPQzkhFrIASsxTskDhCramKwatMf/YmBb3b55fldf96uq0cfF2/w0+NlXJvy45r3tYy1hfK43g9cHOYl/Jarz2xtlRf+hkdTx275Coiiaioij3kc06j6HA1bb005V097gRV5zes7r6CnBLcPggi2+sHFI17CoavbE7SnG50wJAJobxWKfitr2/2la46JbG+3nZWgwxyNp34tq4h7AHuviwiQRIQekTwKNA2z2ggGi9eylhp/PUbePX2SP0lDTtpUkNuHNA7l3YfzqEhWWw4vCe1sB0DA4oIIOnToA+N63+uluamjQ6htHUoViIrBq8BFLJSMgKrTqZBjVooJqWJQZGgmkFFXV4/Da67cpXqaq8EjSVSQmiajnp55XvcJQTMmGweBL3OEq2J3qF6KU7SaAS42WBpJ8m2bJclPpKgJ7pmHnHIKaoI0mjhEVH2jAct1/W0OnFcwuM5lHCKyYANqVUBowUY62bbIoKgHHbtD2hbF1nxy3RE2j+/yRaTxR4/LJ2ALXQHA2EQ/o5YaL3ZekWgMOw2IeIpZ1DNZSxsW0jbSnlBA4FB9mQPc7O1bhHv5uVz/JjptYEsBfi6ukNameFnO6fM4VYw+a8u7Lmjjzdt/ySsgAIS2zLwZECP1gGPtZSoIq5BIrLPmbBPBiGjzUZvEa7/1bQu+UX7ZGElyfTxywQI0pHGWezvgrV+8PVERoVMv+uGtDEjdXuVoclB1o97hwjVs7xWNBqWMS9DSLlEFClkgIySiAiKaUNLAqOH7qB4QGQCER7g+Vxsf9nNmVBUk9kqEQETD1FcYiREknVwtCaBadRgnRdhSvNLj2MtF1nrwOXaHX9vARTUGJUQIldDQI8wjbIAmgZlqeDBExgFrKIs64C4Y57MwYU5kmo/jq+F3Pg0fbVpyzDFYTIpgHtKou306nfM+KvMoXsaBTvp+JsIHO4mJB6DZUAOtX1zAIk2k9F0txavH5yJmOuSDpiG5cOjgWKs/bW4dnWzXNurLgyPgi1takWZCzWvRDiz3Z39JgfsQnvCiKbfRQN0Aeu602dRWTu7L5HbQDPBTDADy4i+Y0EUgHh4QkRoet7l0UzFoXlsEUqUukFBvCWHPtINDU+W25qZfbN3X2IbXRHR7wZc+60VujP/xI5nU0FPJqQTcbVzu5MwxjlMrtbWmfwStEw2uNySa4vXmutq0nHZBgUa5FYG7iCwiGaIpJTOGhwe9jWS6nKl3NmMloa0r8eqILjsDYcpwNACZ/UEqENsC2e5JiEoGL6KS7Zm0yTQikD7iWixcVCJSXxO5Q45tuAxZRA24MB1pLBCJkN6e0EVUkZquFyuSAY2qKFAeOLm89rVaEneISUDV14Fi1XQtDyopquWlCqjDKaK7hvUIG/KEgTGUqJVKb8UNBRAVSdxhoWKIapJAkqsIqclcCyXHGZYEEG3T2YAMpqaYTkdGPEUZplht0Z2lyX+8n1I8plTnkkdG4ftdDt2/OjzQ8lNNR+YkLFIF52V4df9Z98Hnb/Gau+No39f9cdUhlcqsAghbXzqFwSCj+glR17LwvaVkZnYnamaqOk7hgZ5MB1VEWCPGrhhYFUFROzO1okGEB4wtkosgVKIUHiTcUqwgvNagyzBZ9aaWvQVNwRj7euqNPOzpRzOzThTre1qnMXd+QIdxto1nrTQTRkiqFaxYVskakb0xC4QOkqiQSHm0nZ8KG2eg0k0tCNUEBhK8tWHLSrVozl6b0DL8C8dz+bvxJFAaFbhtCy1yakliv072vbal6BfbkZTUq1TXoCWWiHS2jJq+fuwK3htGdwU/2t8OIcQ2ZiVqT7XjNuHuPkkgslBgZppFRZPo2lCTdi0CZJJe2ZuQ6dcLRIe9WmjQK3Jozvqa8m37RbzIf64+cHu/2h3KNs8nOudke+B+eXXTKkw9ONlAn+CFNfByZ+ip1ZawSucSrb3ved/4UKqsrlmswhi1nnU0q7RaC4fEKKZdSD2C1NWeLCWTAauySWlLw4KdGwsiyFbsEAE5ge61yAC6UCIsKSAqmsA2BEM0AaKkO5uAjAd2iEpYbsNOIetoGdVjUPjp8/vx1S5xSIzqrqICK+6xknaI9av/ksv/6h+fPu/v+JiOj6fHx1M5kRFeqfRavXLq53cn4azBI8PrHPGoasm0TZy01FIyM6kqKqmxA0WUSgzJn8/PMoCjpdQioaYCfKkZRslJBKQKqUnAsHHYRmJui+1lCnBdLTf//PLoWxH7BHC5DONUpWWzLLV6tCGH2ICtzelERHT/IUOyDIZHKQ7Z2oSv66hX1fXmM/lHzwrAZn89dv37k5gr/HbZGJMqXCgCtQSjxepRa7oEMcYAVTUunqQHyq0awi0kiU1OpZdINo8DQKR3GLqoQGxIyWhoBYDa/a5LY4QWEe1MvI3ywMu1NahGL4E6Se+3O764+CvR88sbBkAEIdbSyA55lCsyIZ13JRDAIvpYmO0Tebnt23/tDjSDvNzgINkGjzoRYh7R9NojqBoORJTl+HHZj4ukguqicB8a+ijJA0L32jZIyRpyKV2060uirbgCpUSftreKUCFSFQGRqOHtenJGIGUELBuCKpuWjAAUDY8ATS3lCrOIKhEUcaA8R/7+/mFUM0tLhRQZuATqEfWpphhf4+nb3e4rcXk1IBTu/OC+nJdS4WWZT2s9ea3rWmoKimr1b8IhrH6O8JMHJzHVlG1QBTTpQNA9IhMIIQeA6/l49LsJMmQmb7OfLZlQNJSEaKw2ZmFAm+sr7rvDqPVFT410Hrq8RN9/Bnm7+f6WZbKvqtudWPMw6ry06oy3ItfNW4XX6o3Yr2IISVwjylIvZ3DzYm4msy3jvr5fjMe8Obay+gsW0M9fCAXcyuwXrC41uhtTosCmYUiYn5iWZ5OL+2HXc+0rvzUKqTREbmvD2cC4ZqZN6+/aihOtuR8BIKqKyCSiJiZKIQNcxFRbfcsVkNKrd+nm/lyhoYbPIdrpkC1323bk/rdArk0TN9NWe84Xgt7qFJtJ9TijPwjp2ahu8QB4eSBxwyT78j6jv5DShm2UVhcSIkqtSSEsVYmoUtbzZ7kPap0iVteOELb3EFWGCasLMbaC+U1viJhA1NEUtjplOU6NhiHFhCqKJJ00sTqIWnJQqXRpGK2owERUVhUVL6uK0hGYjHNFyjnUxmfPZ9OS0zhgpqASg1PXs0g+DfG7/wr5+c1dDRtRVQhV/8XFYnxda4mplnk+L+W7+Xw6n48nNH9YX7dZrPzEShFVqkE056yWNKlUUElHUZwfZ6T9aGoKtDFEATPtYXoQwjpLUoYoPdRQK4f9cO0uRgeye0R7o/ghf8QDfPn9lj7eRJQesASYqpq6u8dm1ILOY4ie0qipsczFBGCtsc1U1JtltGETuJBatsX+88dGndLmBTpVDzfXyw1uu0asbLVoAkjU7kJUNI27rMiH7N9/yE39RVxEwOhDE9nD27bEia0iz0715QWtb6dxpSfVvmozwApgEdPUmrYECVBEVBK5aTi0U2+0h/7J0rk/F2xgG9jcSXUbcWh7zrxc9PXGXmyr9XReUAaRTahwg1e2B8+mtXaBB7VHedtxAS95SRkJSOchUJxRkdrgCRWxqn3XbaM39M3j2dVDmLRGpJbhEFIiBGB0aERWqJgqtuGWQSUDtBYGw3pYSjRsSaFkkxVpoG9UmHhMBIoxxmgOcBdQqEgVVWr1GlJnX2VSwJBSqlRRlUmdLkVY3MSLuzOFS07PHucf/e6H+W2e5H56ZSYiYuyxsEhK+8uaiMjrMtf5PH+Y53lZnpeFbeDIL6O6R5BCDyZbrWnSPcCSCuKz+HyKcdi550khBZJYQlQlomWqVDPUGgkBiQhDrZ7GUZxXS7+w5b882jr4WQ9wjcZ7uMQLXEyAXkQlisMkUEqFsDPOyDBBG18MiFpKtpaShdJGOrBRWG+4v9pW7qVrOdrO9OWkjxf7PdC5BNx24y/DgZ9elvf9Lakqq7hzTDmPGmVJr+IPv3mckMRUZGgGEBtTb+MX1MZLa7xWbJpOl4SlU5wu01YZ0vxu3SBwutc+H09VdCDD2Qp9rb23ua6b4iTRQb22798gGzcOYLtkXNzozXPcThFtbld7Cw2iMRQF0rTVcIkgwDZq5kJckjbm9bKlXOmnfcH33DDatbQJqBbxySstJd2pu5tZQAirOgzlc1YZlmFI3kTT2/WJgtHUZ0hQGrV9o7pgq3/0QKgVKlSsDd0MEhF0+tiQWuQaoupxFhFXwUm1JV0VWQkbgi6mNGiA7mYpJbJ4EEVMfLVqpZ53FGiKONIcTFhWWQ7j8nz8Z/Xr+6f916+nbNObd3vrKeI1325frLo7iCAUXrys5ViX0/E81x/LsizzUg6+rqWsfgDL6sSTpiEZeCpVp5xgVYadup7bG6qaejMnAJaSNwdNgoJasd9ZhFzrXiHdonoKcF0Xgtud83q8/H4jv3SrIqgaEkUjfA2hR1SPVsm6bCaNLAwVVUt5/f/T9ifNsmVNliC0luo+x+ze+xp3/7roksjKpCgoEISiBCmmDPgHTPhhTBAGSE2YMmaICBNAalBUQZJUVUZkZsQXX+PN6+41O2erLga69zF7z92/yEKEE+Hve++aXbPT7K3N0qVLiWSyh8hSUWA18s8vKMtRt4/DHX6Jq312aPrl2+77uTeOk8bEQgYGIKdZO59aQ5zNLt//3Yd2xW70mmVoJOeTzFuMMr+bqC1RBAbOeOs4q5lUExA6aOUiUrLkC2lu4IIiDmywEulKGFG6/zPzFSSfIfb43Enoi7HXZyQyK4lf3gt+9veCJ1I3i1iaiEcoNcZLDEJSfS449Qe++Ly7+4wRV8kguS6fPpgZsvM82JygI4m4vOl7LLDMSHqN0an7aDhG5kTmY424CR5RYRXB6zkKUCmre4hm1MWHWcykK8QEErLdHRHul3qslh07AX+IgFdMyjO4O2v8dhqFVdqDzW3HAqQt2nJpGUa9VntRbB/+8t97//fff9X/5X/op/x0/XB+cl+XpQ2O9owMMxeACGE3LMsZMGVmSs9927bLy/bb7XLdLpfre2RkCHu/vjQz0JbT45qxnJbzqW3bGLrm7sOQVZzmQ2tVFB2Z7dXZQs1vWrSDKfn/cwqAYQHmyqKRucXOiv0jSoV07pMEpkgozZtXuSL9skWDZDPevS2eAqlu9S/MnP0nj0FkHStxQvQ3izVTAI7ncDThjIXaCCXNfT2dmruyP+5/968/rQ+bCAX1oSIXW1l183krnIbUEN8ea95YVFZioukzXuAoowhLbQ3sFbbQQaTEjXSv8XpQKHegV9dbXd1EJOoUNPKBsfuJg/Pvo4w3veJ88oG7K0fxAMZygAS28cpeIfeRu7gSuCt/Fuh2mOwfPZhpKBwsI6RE7u+/fzg9rtp79uYrM2Kpsk30X/P7LV/yla7dzxUvUeTVnQlaNxpMmaZEItq4iIBDQTbSDakoIipckRDkjS5TX6JLkepDyNW8ZSTdaZFJPHQERY+EuSlPsbg3bw99r9lNK3dbdj1cM+DkBdqXBVrPtqWbLi+v1vP2+LBteND716/x5q9fKQEYLDrgpJfqJAnQ0wgZrEHIgAhzEngtENlj2V62vj2/vOwf371//7xf+mVLssax4+R8ew60fiGVCbaCMkA6Q+Awm5LBjAk7L0z4jZlXuIf9xFb/08eMKodnKHsjlbKlMrujsLpBbEWhY0wgqxOwvvq61ybd9iHEXaX0YxllIRQW9btjAMmfPK9D4fSI9X/uF46dWv8QhGYbny5XX58eHqCe8Xj57b96eWovFThKkCJ20s2bN7c2vKApJAHr2GhD/gVZZcuRSBN7g+ja2/jObm7KyJMkpLENxfIwU+7SyvquFVDEnvLSnDwNa3K1pSF7FncnipsgcNHYeyN0N6A2YGpMI5o3+HgLDEXS5BS0g9BUZnsbdKa6VzFDJiZRbTuDlj/bwJJkFhTAoi4PtMJkfPmE6/b905vd//zTD4+PP/QTl+47+dLOV38857Z9pDdPMEwQ3UvgxizDFoYstzr5TDgSLvQOMJMWZlZdvqncI90c6RHwyrCk4p5ClDI7hFAjnE5eK8jqOwtt6Ngd17Z+524C2x5ks9X2B6iPdvoIWzK5LFDmw9b6Cr38rVP6wZ6efv12BY2mYAMQAWPGOnIoY2lCUJRXdR5iDeyAO7A8QRD2jO3leu3v95dPzy9bPAuJzDxTD37d87L3jvN+eUNSHWx7dw/YfrJuhmjhdtnWN6/QvUZQEqhxbm4TILpLEaOho6EvXxSOpjL/dCT7/HeF29mVMKivBlE9n3d4DfiQSGdHCDR4ZGsm9fDc27KFR7AhHFXzllNJMmhLSoYooOhHIPZtL8+fGFCioMRocOBxxqPoxcMhfy4xRrQwJ9r54at+bS25/vCHf9if1sj11o8BAOjWNwJ8XV6T05LEGEgw6//FRpi8qjkKLKe8oVJJJnChG8cYYmP1hQrQBaQZ2czovsiYPXLvWzFli29WG85ozr1ANdUnTdRfB3Y6jH+2CgsPK3H0gw5Xb8OY2iA/V9V6WGTM2s8sm/GAOwTQBqEzb23ONbkMkmUarh+udMaLzu3P/NM7eyiBainjpTmsPZ4vmT1KFgDIq9q4zacUlDimWnrdxBsRpZ4vTwTZwNa7mBFLJkmVFEOpjWCkVlCFnhJpDZlSai3CLU3dIN9SqUBrIbMGEqbeQ/EggJaMpBMVcPdA7uFIgf+Xv/rDP/+zr9+2y0pHKE+tATWCbq68WSKe2MCsrY7nUtfWCnpSRt/2yAztfb/2+PD8/v2l6+nZTni5tHVlwIkeoDJhLcMNsADVtTwCn+3oQlRvoNo9NkDirlz4xUbj3Q949+oo+BspTOVPUgdBzFKRItMXclnbdR8jDUIKTct03AQaUbI6/20Ojex7pMw/flkzVf5RbNCiQVwfzzpzf6Hp37y7nu2FT5VIg0ebbkXVSBqdxmXczI1elnWG6VUvlI883SoeRx7JAkctrbQiMkVZ7WFqAm3kxbyZgXBHg0onpxh6YEWNOTw0KU0fP1OdUgYa3HBmYhnC7LzDTCo3mgZhhDaz6stbPkZwNhHxTsFOIIa4+YgoClgHRvhECGmGl/cXP9kJLxbfPT7F75avVM2UGX1hJNXwJnqP3Pc3KDFOGsGMbAJgdM02j7kghwVO3Iy+mTNhNFOG0WwAJUaZDVhkHxBlHgpJgNGQJiSSpxCZu5mzbzqdCHNnCEZ0wMYQVstLX5rQgsaQyiolePru//qfPf3iz9/+8tXbx/Pa2lZ6waNZpSjqw96DKgLPF0kwa++kEQZrp6eRwGZG5vvLd//wd394d0XfYd6elkw0j0w2CLay99VCLrNUe3ozDSVGWarcCH8Ellm1i3wOEd295Sj7jgWjCQlNmACSMnoMz+OjO7EpIkTbT6vZ6YRLphlikzXMuTfje2rWFsdMPBy+6R87ao1P0vFPvj7hwZsF4PjoZhTXx6c1Fzxrff7Dh809drdOYiqej/8IVb2ZBE4wq75fEs4bPw/VdZ9zJ2WKqtB4LGFCwKosNrBlJeG1JLXU9lRndCOQi5svNFNpr6QyaYa1kHEC0IAiygwOmHOOFWfJ5Uep1Io+nlrl9HcFUmCivbOWMl8SRz42nnRxOoY5mUIVYQTd2OsTyEG72M/57o+Xh6dHnKP5+uFf/tOn9uH06mXGpCfsEepavDF7BPctadA5pxGq902bEwmnwXOeLAd/QRLMuIneaIPnqJIdUMp4qPAPU1jXuQOkO0OjqYBpJmUme6rDBHP1budVaQ0bav9juyyWWLiunqIZAgK0QNv2/X+Fr199/ebV268eH9bH1c2cE7uZhnfMlskD4p4Pof44oQoZhsJCg/SFwEP+2V/+5b/613/83cf+8HrtfahLlp6OrY7ehRScmX56/bjfIoCbNYeODXB4TM1dPY+58O9OC4BNlHZup5rPjixXkL36128MmDE9UW1NNtsEEtn3NLt9bj2+gv7LJOR/CwOA6bb0uQG7ewOmYb3DPuqHzdX99PoBvu3Wtt/9m1/YNU6v9vcnc69h4+Wfa4ga0Yb//IQKBZ6QZrZwx80tHq6VEKKM/gy55sXW3cEoXdgRTscoLDioAJBIwNBPNFozhDIjAheURkZhS8Nlc5qXiaWpPLaX6MS0UbN2obvusdEvepx2be95TdXDP+wgyfHYWc2bY+0Qs8AEHQ/D7MPvPi4nt+2SfDjHp7/9y9fvfp+5lumqqgOlj76sy0p5X0MZcQGK0UMwe/B0g3BuS7LQFpHEMtokU+obgXM5F3pSkGU9P3AZ+quNJTu9pBK9E1Ya+r2PJxXiQnWTrGvvsZ+I5nXZlBagM9RNTCVdE5L1xa3v+z8sv1vb+vR4fnjz6unxtD65LW052BY1GEQhTOzlblmOmIawOUkI1dqcELj88u1f/Afv/8W/+psfwl+/3eBQpNUjMsstMhKw3O3x1QNHdXc81ypYGSZx7A4tF2qU+Od3+EcMPN5oNoRKZTTHNQnKvQzAoVUbWbKu3hzG/uIpZPbeR6P5l58fZjQgfnon//zxczyBnzMiGv81bbmcLaBtWX/42x/Ol8Z9W7zqqgMox2TYFNAwTImUAXSYtdZsgCfagRryOKxSpdWTJKPD0l6sObELgLnPj2b5ER5lOY4QIjq9uXvB9gnsCSl2NBKz/3qElBVCzr1bhV+zEa3NeURAOc3xz1FfmBXAuZfHAx/2ShhNSyDaWKkzpRnEyGM9FZoLrdf3L6+/6s99+xTrEx/+6v/T/+nDb+M3x3cQSSg8YmvL4ljOztz7h8xEQi7qwFzAAwMY9YIBdt4e+bAp+FhSYR5DuWH0SGQrpDJbpVyMumXcExTN9lAz0SzghugrCMBhppT6nK/AviBEJZHKZEgl+neOTwmnmWu/vvu2XZeHx4eH0/K6nZ4eH0/t7MvaFm85WRUjhrtVjWq19BIsHrxvAUilUi3SH85vrv/0t//yX/ybjwyKLCJHLdLl3BEyIVPrU9vqFgsz/sBRNb2lIABqQIF+nAJ8eRD37F0pKtFkDl2DPohGU3dCxQLSAvmC/YVkKvpOlCCpZlw+Kt5Z9IQjNNWfOpm52I7n/yeKG7c62vy8SgFe7Ti3/er7ou/+ze/a2++ezrzo/BilqcGp6uhffMMyWnlehlbVU6HmyNL90qjUw2r8w4FqmBK0ZgtKBtc1lb1rO5ThNPS5BSXRxVQESTTSvfTxMrI0qIEat1nZyC3mG/zdrDU1UNL7zE6DrqFjZh2GBajP0XzH7YZhyKXtA06wcZpWDooa6N9cbrav//QX67tn7B8vy+XZns7fnV+3j39ZJs/cyZCkUk7afG9LM5KvMmuAYAImax33F3Z7EnMBR53iuI3GS4luFUhrRJvnTxmZNMBSPDANpfYAzEVAtgQYUkbU1D1fajhjtOHatmWRWm7LWPpeo2z13bKeqO0K+sJd3rbt47I4Nj8/PJ5P7bWvD09P5/VsvrbBQASPnjLMjGDK0Y9gDkdBjGlK+ON//9//n//Nf/Wv/vB43UFPYlyvce9Jo8zW89n35VZmV6U4Y5XNj71tiBuMdbx4++excT4j5kqd1YVQJd8xFOgmpAUqu4r3clqtb5KA7FsbhAAdH1sDdElk+pc81j95CBBMnKf/ma2YEcD9NMPbFQntVztP+/t0+Ld/8+lte/cUnY9EX6quPDz3LURuxbKqJh6CCw3qmS90MyMfHE5llXghGGHKKAIIAA+k+9oetpeXTm9NIXWp1cItZpTlGAZN7Ilkm/I/YpdAOhdaWyE8A5nVCgPOEXTksZCmlQ7c35+RZGmEIwM40BQiwVxuGsvvdvfmJtwKYstpeHYrf9XDhvUjQLH7r379zadFV77/FN9+x4evPvz26fU7LyDUPJiiY05jzobtRbYuq7M5euS25R4WPnKPiQHMlKRmN94yj7JqxpXMzGAHXIVwkayt78MtctQyMzPX2NWDPKO4td0sN9V2C9GUSuMMmoiXVwvYqjIIkpkRZtJjXp9Bb9Yz0IEWHb6Qn7i009LsAWznVw/ra394eDwt9mCttTLcmOFYxX1lQYO3ki0E2ZIpX7Rze/pnv/5n//Cf9wvdKM8iAcCZ3Yx0P62LFQP9bt0XZ2jM0OH9nAoQd0IZc///Y1uwG1CagIAyg7MoNYwXkQEzWsoaMztFKMIjjJZ9qbBHHOUzozLNGP/I9352CKMA+BMw/50J/QzjGGFMe3w5r3/8ZGv/t7+PV9waW8Zmy7JjjG9zpDyCbsgQmYHqaqvIYAFSXPjiwHZ92f30+LAu6xLNlZn5TAs4tZ8kj748e2u57+57dfx31VjTvCUXqHoeqZCYZHb3LHJn1emZ7Kx64Wks/IuKhONCSWUPsS/SQQFeHoIj+VSriLHG1wRwKvZs3RqN3gVhUoNVz1S5jkL/mppU5eLkJVFDsIMg9PDtX3ynJ/9Ob//508Nffvf9sv2Tbz89fXy5XLp929v1xAvYbffVt02AOSOay8gG7fsVtNaWhpMiUrhKCSMXhxIZPpbvogy6thWKpDmnbgMJQ25NUiR0msU3YMB1Ff46iBqpFQ3b3s/71Rc3MmtM3GXslwYQYSanIsGHCGLjGvX4rKaSGq+ACREQNpDZBfOATrZdLk/ev6VsWdfmj0/r+WnFK1tOp/PqT2ZuZoOBJZjNyKt4XTAzMKUUF0Rm6tTW9dd//m//9oe+X1M96bbvq52k5MI4ffUq89RB0oTdqGRrBVAPsn7J1w/XUnZubhGrdThgn4EwIDVmVNKUqYxwJMzacll8D/TnQptp3RC07LmnQ9naWXzcX7h2sF/6kt6EsCUHhusVPMhoPhUENcJRDWIQdWPC+tjA43XsQwpuY6kozdRiTHGuGmnlL1W9Gvh5+/T68fr438vvf3dthr5lLmvLiO0cvYebEZkwtkI23CqilGIWwwoQw2KEou8fvLk39zfL6dSaIQFFRHrsOtGMCCSI76SolkKUBxk3PobztlLlRNbMgBgWlfsMyFEOvwZkEI/IjNTQgaE1hI16PsGaVSBizqpC0WjJboRZKRzJbm2SM/uaprzl1IgoV4FBLvMy/aMMeqwXfNSHdcuPJ/zml7//w/L2n7d3/Oq7V5d/2a1BWM+hJOlth6UxVDrgg8xZQQk3M57N6M1sqYEz2EiCfiCaqcygog8/UKcxh/Ec5l7XelRYhmE7qRgYvYJfuhp96bmqI8uS3cAfQb1IHYA5QVaVKKW1ZraNOSr1bZVpFxrhKRehxVL7s1nLjL5ffF/PbT0t+MraaV0Xe2jLsqyLP44BKlkCX5xZ+jbSQSveQkRu0fcev1h+db28+/4TPrx7gZa2E4vStK8PJw/N8A5VU5yFkCN/qu0goNKQH2fa98HDZz8flooSshhlgTtOP0f0PCQ6jILndesLqeiJL78px3jd3YeLmt8zilGD+HGczvF6pa0VweSPz//nYMD5znZtH/+AvzzjL7/59PxyWfgSW4fAzrYoKzct35wSrTpnKu+ZOafXUEsKhJ4yIzv0bnl4Oi9DJtyBsEjkHhAJN7sYXegxSZkaLRYzDsjjf2HIRMlk392UYceCpLmxswaT1HQG5c5CmEqKk7CS0RyTjwgYFUnTyOJ3UfcDAIYJ0D3oM1J9HvVCDKjjLqSc/63nD2+Z+uf/ycd4//D7b3//+Itf0R77vww3pj0+qFuotDhsaUw6vFjkVYOoWYXA7u7ujrUwE3wY1ulc1THuvFu1NYCFt8StQvZ5AeIdJbo0Uy2poUZIwVYsWJpTxX2GMsf9wLhvWUBsZvF7YeOe5Wfl14qcBAiJ7CZQwL75iZlSd1p/8eu18SN9aaub+7qc1qWd2+m8nJdm5oYaKi8A8FGa6WM/I2OPjvbij4/97W/2D5cPl8v1+eLKMDNme3zwriMqNsHsiJAFjQwoJ7drQLk/QaS5a6//cgMqpYCTQg8hYx8fN5lwiBQIbydrj9YDBvXYStduWgmgOttR0dis6t1v1C/+efvhAHbG/daPdvow4GlfvjA+r/1PMn7z3cd//Q9+fvUVr9f+nPveA+isjkZPG+a86gEBleLELK6M9DhBmi9ZTK7Ia9vjasTJlmVtTvkJrUf9JhINJaJYrkyZVbUb9n5EKmRxiCbBnnWhHCnPsLEAyaB7KxhCAtETyhAazGCgD0SwaUj1mIXCSpsXGF1ExAw1ChHQDEFr6kPNKf3Mng6JLtsP5uREERH4h77Zf/Zny/dv/vl/nZff/vIXOj12AHZ+vcKT4cvpGpCZnboh7YCrUdg9hT3DYFYTPAdimJEISayOPphBXkwcTcINMM+0JBMGs+RQex6DW2Aj7pGyh2CG9WHFLk8l8jbV16YrzYGnltw/ewVYR9Q0OxaH5sbRzRkdrs1wFeCetntzXxYzenM383GgndZ1Xdra1rYsi69Gc7ORvHDcYtOpP/SePeLy6bqvpzz1X+7b84dP+/bysmfSTg3pqm04bCEtx7B6ltkq88Bab58jaCqQZv5zaoccG3N8ck0jUZqF5L13HAajFmekiqaQbc0tjZa59bDDtXCaKOIz+3S3SY8S0Jd7e4bFvFt8P3kcqvn3cIgAoP0LfPX1Y6r//vndd9EeHt8q+vXlsltse9ItE06IdefK0WVWY1Ch6+UQKcBai0u1/vQTjEjxhW5uxvZghNZTJ6CMThAJWlSgeXRrDN2AYgaUGhqMnCOCGdN2D5/stU1JRXYQC0H3Zg/KiAiZYh+djCTBGG+/tia6t2LGgiBn892xB+d/tdF1MAvrEc0ooGz9VDGev/+xnfbr/6u//J//F7//P77+H3z/6n/9X/7f8Nd8/uq6Q/b0iC1Sdkp8YET0dQHpaYN5KTFGdWEhkEF2qzLoOvCIF9VYb5txegkFD/CoyJ9CXRygQy0Ow2ZvI6g7VxwLAz1FZs/a2VaFjbo/gzww7gukJEBzszncbh3XHxh4+KjhlAUxZs9mLeMFQ7WY5u5Lc/PmbjyZ17wwbyTNFltaWxc3X9b1vNiJ1Sq2gIBMsmWRlOj7HpcPz0+XT9f1zZ/p4/X5+eV66TBtJ5sPtAydF9epNhWLYz0f4hiEc9t19a5ZZdExlevu9Vp6MSTsRGTkkXijbnskQFrrCV1eBEDR+3DIsptrL0c4279vkcHcDBXJ307g5v7vtv6PqcCjuiJVe/FdZFEhYfsv+Hhef/GN/4a4Xj98/77DlqevnL+DYt+23kPOovUZkdlmHl0XiFlabamxEWhIa4g9KvXKDABtz1zNHpzmvkgBdB4F+ZK7u7USo+S7K4cEZ+h6ZDk8kp8A5uqfCR9phhNIc5IZPRN4VpUrZ3mpoKBSKSu6AAGNagmPPV6SjhKWigZmMUQzJ3AJuFMIwoy64vzhd394+3ev/1f/4n/zz//HLzr/xV9+998krg8p89PaI4pJtOyRfY9Ms9F0eCQdSgALoBRhzL2TdDN3a1zGnIAroQykajgYt2OpfJ4C6LbGKYJhxsLU6opoqzXR7GV/ztUtRDNT3XcJfRiAUJluV2SGczeb94wE4fO+EVRKDqKqhEEQvUnqmVhlUYMUWnMjl+o2s+ZmhBNmIB0wb0tze2WtrUuz1ZfmrXnSjYSrnWBx+RTPHz7tIT0prpfnj9fYemvO9PGkXDAbovQYN0F3D3zoV/xkIb2ext0+Gz8u22pmVBgI9ZDVPhiiBIMHCDPjyi1XR+49bsKVn4f4Urr9CMC59yufn9OxF4YY3U9BAOP5isf4iM9eaX/TXq38u7X/5uHp8emf/HX2l3fvPn649l+5oV9ettx2qMuYSq8+LozK8cxYlYNKj1TsRd1B7tEKF65J0/2yK7HxQbacT63WSrFUPrvnh2QRxz4rNmuaijod04+NJRcz1xoenpkpgS9mrbkbYCuQ2AEohGBFL46E0GfgV4BjPb46j+Hry/NJXnyOnFlW3YXRZTHjR8wwUTgr93+9/pOP+N/+6j/8m//hf/Sf/qdf/+Lb//zP/WWxJpnvJpMy9fgcYlw7eismaEVUGGVY9JF+tYpBeK2uaT6MFM1MPQnEMfWMd8HkXQow0MsgRrIlVPdfPcvd2OxweTn8/LjJ9bBTwFD7zmjyiiuzDN7L+ObTQCHL2WYR/0Ft4r43xMJMZOKSZoAtMisZAnd3b2buzZu5FbnLFtZIByNba25oy7K2tT20dVmb29nYO9tTnF+/fPzh/fPJmi/nVz2v12SLXsIsla0G3Q61inlZIwKYsvg36biD8zdMyOemwVSaTwaZe4YSrKlgQwxH0GgOqhDAH2y3lVv2Piped4G9UFVPTYb5sVM1Xe2PN/fc2rjPVX581OCF27Idfxk/aF+9+/4U+dB+//Bwenrz6K/4+Ip9u367XXcsrxe+XPb9KtuVImFpqGrlcRIVgUaMwgKRiWYYjXgJwkSk8fwmfrhcI+x0WvzBmled0VRzv46c8XgEgkYjbuRpmO4ragRRO9InojSViyma1OhWzL2DQGuLw/VKGdEzN6uYtdWoquwwDvhX0g0SmgZ1GgCMiWY2mghs2K4QRsft3YMRsLdcv/vq4dv/5t/8+/vv/p//3j/738X/8vG9L0/djQKyA3RXRt/JfdsVjSarstTtFrCPEGsv/gMcyNyBS+XOfLLcAsokhyoLpmzDrKiNZQDcVt1cF7CdDgDq7lSCfZc3xn4u3EM2GJE1+g1FmRMUoAtF4SWqpwAAquhtYLUEqxp/lNvKPdJzq1BUGdU2u5lnQHAjQOPi7jDzU02dtmfAbGxGwtCdoKyd2rKezqfmr161tjpekJH9+rKJoD+0jOue2ffLMIXBylcLm1ARpHCIydKLeHDbIMBMCnSsiS/MgACONvKEhB5jLOAMuXRbzTAb2F+mpo4Wbp4+AZCWUqlVfa5foRkT/AgHsOH9R0z84wBmlP1+Bh1g+9QI933X9s7X86k9LqfVCfx3iP35/cdncjkZaT/s23btLPl0M7u0FltwCVWXSWOIZg1gU3mU3VeXlVy5eeTH9zSXWX+5IuTrsp7Oq1bHfqQ4CUs4UlZasKlF0A6gS6K7LQXOV1kIZBsaHDH676K80twFsusFdOdCs+Vs3BV7iL4bIneU8FZknLK8VlQurYmlOY6YuniLo5GhRoQBjtIDsJo+KFd1QHqsv9ND/BCnT/+Ph/+93v7V/+n9f/L23/61vfvLf/v9KS09ZbHjUdtlT5y994u8OfYqa5YTSdAVgtFCCUMASUeaF8fVbTUzr9djj+q8ImoKjQHsKLCwcD6wGEgJDQUHH9weKkgH2kJqT92maSb96LUkVJbWYNjDKK9ELJcBBEa9jy5OzW4YoEfF4tlBZvop9qX3q7uunsWpbDJT+lLDg41WsYBl9ShQRGtQrlsElLl4M2+LNWutnU4LnHr58OHSrWCFZX005eWC3Ht5mREYlUMs0uBI3YobaKT2viLTzK3X5ipmq5DFHxgqE5AIkwYXJBItAgu3DV3MBOihyS8Gm2c+8mPkhVB/3t32EaWZdq6eoqeUkJZmEiPWSn2rLH0ruddEq5shYFWOZkJwgOQDJtPhyEa0HsOWqRLZWw8GlozeL86l6rH2N8v59Pj2z9fv9+eXzsbz6wXby/P+Apq0Z9MeWh7WD8OGumBEy5JlHyPDOOGQCoMIG1NtJcSnTNLenB9P3tZlB6EIRT0fv8JgbEU1BuAKRQCnEdfaMACzWQRpSMyG7lvWlACpwE66GYnWFgj2oioprQTZWG3yqN4yVCz+WUnIhoXNYRs4DO5swCrlsJRpNA9k0FOP5+u7b/7ZH/8P/6Pfv/z+/63vT++54bQywhzBJbfldIo9bTn1bY9NWEGaNzPNidlMZejM+narIkslnZTlmCm4gK1BvGBELKhW4ZNSUgylJmPncYvu19G8ixg1Fuy18Szo6iPwGU8OMMfuoJhhYxy6z2U4sJkrzRSQV75YhJTR8xG7aOYlFs8KlilJMQvBhmKGcjSKmC0wX0zKDFAZW1tqCGrSSeTaFrPsnbkR2fP16dSc4kP43kfhB6zzQSV7cEtY2ZuRbzZZ9q4URaeQWkDdpkLMmzQynzHuqxDmGlRwQPamyQekmVlj7D2dmVX7KgdVDVg/9tw/QUi4rcMvw4C77PN2xDB3jp85xiI+DEAKQIo7jeaLP16fI6z5r55++YCP332y6/sd61cnv3x42YLcrC2ITx9O43R7Ji1rsk4N8Cg7m8OGCTabvMaO6ZGZ+d16Xr2t6ytfV29NCDF72lmZIclHCBE163EuMGbp8RxPJJkYxa66teMygxyrluVYvTXS1CpV1waRfogCH6jAvNHzvtqIs+4irZldFsaaEmWVPFPJiOWc+ua366+2l8t/zcv2e3x1+e2+Rnt6XFSn1gJ2Tn++xL4Zz1RmKBERNDPzoeKlSPSRHEICAln9ybIof4k2xrI/SqmEdkGhW6WpzdQXI6rNca5jDR2pQtVXmRQS7tGYPa1prjQJsCIOGHueMiUobQ7HnSkhUfDloCkXRkO2BC5XO/sgM1UhfhgAlKAGBHUYKMnMkTIz+rKUyMNYVWwWAU+Ieb2uVpgvk2Z53bfHx+aNJb0diaUqtsUay6FRazQNzctWCkxE7BaSzIrcVHiIRqo7UFTM60QlnFYJfPSD2g+AUmRoiAGfsO8hMGOPatCs5zA9y+Gy6mNNP5X1Y4Jtn+9jYa7N26847jbBT3zSPNHDAETlWhQydtC+c3e3sL9JLW9/+at/9lH9+vx8+bT56TdL//Sy9etuvo7cb9B3BbZ66DkmiYzhE1nEnlnBK6PaDJlX63vA/NzODw/rYmfQKNpLlbiQY23OUWIxMY8kgOQkvoytwXk+7Sis1JJnOVMirqA3XwBnFf9CiaFpOg1jdfPdH/2GPOKzujiqUEhLjWxElLQLp6foX/3SvvnDb79q3y+n549f4f1XzpM/nn3NrrWB5315Whqen5t8WbBvizJTXZO7v5BmDu7VJ1YjrAQ5C2USoESil9QdH8YoqRqhLe2FVqKKnNKCwWsY6GXRT6bcCGekj2JiZypx6LKiGJvFf1ZWiM/Z0VcMrDZSpMZJrKnw1UCYkQhDf1nOY5bsdF9Vj0hGjsJmN3eSiNhYfHpfmk+VXOjs0RqNG80o2TmjdxFBaxVUZPTdKzihtFpVr4pkbIITkPvGWvbmzC4zC28RANUDvGszneXgYwepQH43oyFBFbw3LimI7H3vBKy15g2RJmTse2Yh8lLVzA6uxHFMEPAnrYAO7LLeqtse1806+OA5BPiTFmAa9MMAsC5OYiWg7o6egpP63W9TXz199fabX6b2jz98j/X0wL5nXJ+vZ2UqCjGhNfaag5rDpE8G1xCAGcxhAqFEKmJlAaDv6W1Z3F9jeVhtaaITmerDiuTABBzTDFcKMLMcAikm5vTfHFuVKpWmGBvKM2QRU2d/xtnYkVSxXaufa26NecNGWqBhv8Y+nE1SGI5QM1ZO4/L0/Yfzf/DfvH/96B/Xv7aXZri+zZczzd2f+eqNf/q0vNCWtbXLdn05PZ6agu5SqGUNSgNg1tzOmalUtmKfjqE+xWkXE1a1eewwMzOehvhZ1jLVLlizoy2YI08cU55nUWyQIWpDZ0LJCFgJBoEikxPXD4FgZFJGOcoTzkhghSR6dVkO/JAk9nBeNu3DbKAY2dAWApKoDQ119+ZGaN994b41g8LIXsmEurmbu4e7Um7PtVEVrmugLY8PpZCQIJtSjRUC7CrUti9NO7xtEujk4oZQLWMnEenZM+XVgYJRn517Z2hX15jKQQvP3vPgqEoY0m30ZWk0yddERI8sqswIfA7217EPjxJu/ePHW/eIxubJzNO6yxwm32Vul587PjMAALhbVUSuIOnuHUZy4adPv+Py+HR+dfqrppcPz8+2rE/s8TF7dEtdq/mmxJlJppKZafOcKigaKSaQIagmpFKARVNeNzq/5/p49mV9PTzrejBPDJVS1PWP6tsxy4/FHa9BhARzcreUkt0IFxfSDD19GISaTSmdkOVLi9hW9+4OOz2M8sgMeMArIySxahaqfyec2d5+/LB+/ReX/Rcv8Rdfvzu1a0brsWoX0J5+9babul82nE6v43efPj73lQpzpzlOvfeAscLRZk2kNwkqZ3rY/QFGzJpVJ0EjNtLcDCvKWUUkiMheGAsncWmEs2NMSjkRVg2/GvxTpElxMJ/cxkNWFvtArKHtMBJlqAGrH03ByMIIJNboZM/LAPeg0k9zyYp8VM/Xiv5QUqdjO40mFySMkQrSrSG2a67nveRTACjC18fVDapqBEogbsjiFfZWShSFucOaN7fFJOBqgSRxMlNc9j0H/WmEMXXTpwdWyqzNIDN7n5KU5UWGsJu15qWkGj2yFz/ZSUnGHNWJY52NTf9zKcCXcAE/+9t9OfBmDX7qk+bKbZ/9kHXTBOgbxdYj00dc+yDl5eV7+vrqzdtXv/Trp3cf38H9QREZqUXI4o0lyAxlMrOgksJJaoXNdnnRNHgCR6GCNFy1759k3nw5nR/Wtlc/UqpGdPA6LypJYY4lwYgoVeEFcISeFbaPeIjjblNKmAhqo7kbWeqRzn7c/Hs7i2Pb62YIAN54C0yBkvZBorfY/VeXbz/FryNe1j979YfveepP6onluin59Otv4oKTFluBlP3q8uHDx+fL9kqRoMFly6KSwVAEQG+LV84J0HvtWAtMaFsgxg7qREcVE1q1GfMhejJ7p4r0NFp4DhRFksTRHUPQI2lWZOCoOLLwP4QSRBipXlVeDo5AJa9Fsq1y8UiVlPIxKgUGLQ3azSCYUaIbsFiaQXYaN5sTeZMjKsDJTLEBmWYtHRSUF8S+Yd9mIrKSaOt6QhRhoU3Un4QlsAyb00xsYPjI6hO9LQ3y2C1CcHfTQ+See0QI/bC65bCHFiTpLbKm0xU3c+LCUpSimZk5gYg0jY5hDkEigllkiVsEcA88abSn3y1DfZnsHy98sV5tLIyfSQEmd/gwAK4pXiYAxndmbCD3gh34wZoRQD5/+HsuD8s35ze/wcunyyfBbQXeZN+3fQ9IIiOomggtjPs/dCCP8pJZZL/199QIso6noCm6XZXydWmvl4fz0qQOROhOAMMKRfUjYqo7l2Of50hss1reJZiM5Cki0Ka2nXhWqtPsXYUCPI29sFdGfKNOTkuDcro1MPR2x6tdWbK06mmI/eGbl0/S38dbnU5/9+77hxO/8lC2vgE6f3X6+28XJ08nRoe1N3/eP73/uP0x9h4iuzUapQZkSaKGAsrXAAlaaUZwtDgNet+EhJBYisaLKMacHiO9mSIyIqfKMIkVo64K6YCURCwKAdnplj2tDUYdTNlBMharU6pzgSOlBFaM8IxGZdaAM1kl0SI6U95iL6zSXBKDFHbJIZsYwgTZulFb0rox+y6ulGQN+7I0syQz1Kz5Pq4ilDzbc74W5FZYZI1AMSUFr5I6T4ItUKyJzF1p3Bdz56lf7ZKJvcPb6bFl7td9S32YfKJBEJNGsmQV+0E3hmyloBk9EjZ4DMieMxoiC9sCZvvxHf+gvNVPu//xlp9KDWYqPH8+231tVgV//CnFb/iPUZWI2SRytP2MaGPR0fEuKbUAgDcz2PL06s3J98vLy6WH+eLo2/YP2x7MCKXkD4+nEA1oSw4QRSKyb33T4TXqfDJpJrlkzgyOBIreTueHczuDb/PaPi6RsuFzDAoLW21Pr/BlxO4DSR2jSyAYu5sS5t3cUGAlAOVSt84s0rwGaroXWUeZmWnFdd0GuHatSRY1wRgcmsipVSllj3VswITA67d/3N2YsfXnx4f1/Lggru3c169f/zNd/vDxzeOzXRWP/m5BWyz2Hi/XTy8vH96/LC/N42H98CRrCyp0JME0d3diMcte8hMCwT5CrLK4dnRWriP4MdG92djwwqVAbVyGkMvGCaxMpdVaVveDKYTZ7SdMeD+Ge91Rk/kaM9So3axGEI/7uNSA2eqdQdWzMdICSnmShpRygZmbAGPNgJeEPOPT5ghHUby380o4tVhccfbwcYLbiX396uuTCJoViOpG2KD5GFIAGUW6VxFVjZD5uhAPUIaUXswkphOm6+Wlb9smtF4TTtIz99gT9gab89pfVr7744f9lsMgLi+dZv38ds3lyd7tKz9c2+W7j9YyCog8yoHSGDSCx6EIcheBSrRSNsHc4rcoNG/P5pZIEIwBpvrYz4NKj/zcUaIdMrpHRngg6iPUqZXQx3fX5YcuAD9+t3h/ePPqDfZ+vT5/TF+e/jvPHy5bmH0kif0lTqjYCComdkEnEQQLTT7OeZ6CuY3LIgD0/Zk0e+X+1bK8bYuPhTQy0oWKCMqEoKR2uzlZrWv1L44JX0RVFKu77wh5RgxHXEdZbaWZN4hQRg+tQMLAx8yMInvRzLhXwIxUyUxoJAQA6Z7+x35NWx6xSss3b/P52njNx6++se8uT1+duHw0Q0+uD+p78KG91t6v20vP7y77h48vSzD3neS6QHWlETSiuxmasVeyWSpSGg96hKsS0DEYMEJmsKjQJF9Dih75JCn31DKgqxVjlN2ASKYewqh3H55kCGZo9GDUBSvV75xagUIQTbKkcCQZA8OdcCqFkelrzNHmRNxybqc+OmYhRJYiKZrpQwZPrizWsmEJ+MODjy0lXkl3GwxATrdH+Pw7BntUwp5Up3lb3Vo7NaZ0YSS4nl7v28v12gc7coQzDhlhRKQzI3S7qikVg9aKemDoRu573OJ7zA18VGPvALNxZEFSP3Xos7dyPpdZry4S8mwO+zxeHcI6glr1cqrAs2k+bn65pLTGV9HI3TCbdS23jfb+b/P8zS9fP7xu2D5+eNn2ZXHt29N22eSP5xcszWDLlWAq5dJgUMESOnIQDkW0NDNOchogqXjWl0Xv1te4LjBvJBdVghyhJOg3GGtkqxJRlMJaQkoaa1onzNgHPJAasTuJSDOJSYCX8rRcQVoraW0FicwaogVJEZyWtDJj2rxfJEB/fV4+vb8oyXPY+fGxBz03vv7lL777I36zftjw3B8tInUt9Fngup4zgV9t/Pa//NZ2M8DWZTdzGLQoMhNIWGuWIJ2Fj1WnUmHKeTzDfVBNmpRh0JVVJYC5sVmelNEjkpk0ZHplgKVQOb0AMPkBmmtvhIjyycugEspML4pGRZI1RAk4hqtl7f+54gdnqR5eMo8ZTAMUnIMzCDcuZpYBQJFy9USaeNkW5phxTnLd8PrpzOHoagklSxKtuocA2hxVa5plXQJKQ650B5bGdn5YaLioXxPar/vptPdLX7N3ZWRDSEksDnlQxtz76CEGhdl/ieVhoZxa+k5iu/bDOGqUVTnTHdyFXn8iBbjb/186UM3tPsBOzlRV/Gz7l5OH7jCA8ZZj8vFU142BS9p4jMNf8moMg3BZzg3f/8P+eHr19Orxm3Z598d3z5n5laKHLBaRCu1LMmcGL2CW5e4sWGWlUta0jbHYAmikodv26WM+XERf1sV4LllLTy/NCbFivKOZAxqCoQMeKTXorIlAGhmJRv+8sLsh4T7N8aDkYjXz5gs7pJR0Baa0EpRQGzjLkAQZU5IJ1Dg8f3tan192mD+cH/Rip2Xbl9MvztfvLg/927/bHh631qS8JK01M1imLQZt39jy9Uc9fIAyTXvS2sJmq0r5CBnRLeNs5kP/bAZyZf3Gk4yJKkmykl8lQezWau42zFYBew8Yey82j9kttOQEO6W8SwHGcivd/UL8UokglcE4MLxRFZoYReVpOtpUS82cHFWUY7JTL6xSM/IwwOmmjZgsPAIR1sHYstJ8kudtXU+Mwv1rZugIB2szBDBJqkN0vRxfooYvdO62u3k7X56ezqd2Qr/2jN769ZT7w/aqX6979HS5SLE56PAMGxO0b0XiGhu4rA429iW3nchLTIek41lg+n4No3W3VTkmNv3U9j+sMyYCJsy272GJOJDv4U9vHzM1MtuwPOMx/bhpYJoioeDjejOxiOoSftG3Z7VHV377e5wez3/29MuTPnz7/g8ZaaeHk/dEf9mLLOBmW9VVKp425p0BSKDG9AnwwEQxITIRKCH7zH51Ny7WluZmYYzMzMG6pN3d1VGxUdUcRpRf00cLuIXSKutkdXLnkXw4yq/WpB3jSjfPKk0p9rRRSyugtRKaGXtAQBoRoqW/Pq3b+pTL2ghrKT+9ev3yw6fcv/3uuq6vv+vcnbnuW/jp5B8z2Rr66bRd8Rs/fdq3bd+u1yX7Zs2ZNLZRT0P0AGra7TpkfbYjfxseYtJ0htedG3hBxk7j1dzNyZMnnRHIiFm9oRF9zIXWfBjj9wOjxKZBmuYxL08Cwgae5WDloJqF26JgLuOdkQYoqudhVDPKiYpk9WuSoDqrJ3SkFQAN6ts1V1PA9vHUr3Zuuso1ByePiGIu4rs0uTjAlclhkkuuJKN5f3n+eH54fDo9NFsXZv/F9brFftm3rbU9emzWkywV0Sr6KcFMH0GYZUEXSUutFv18+tgp7SLvm47mYZUZyUZF7IiRfhLyu9mAm8OrG3fUIT8zFDoG2Hx51LDZ4xHWtxHVNjotP8rG1wkOGfY1Kyj8jm7Ept2XVfHh4x/pp1df/+qvt/3Tuw+XfX8Db+dTIHKPHMS1HKRRVEQ2LsCYKI+qMbIKvA0zVMgUaYxIJfni7ubNbG2ANw3CZvlhG0yMCoWGKLiN5LzSfh8in20uECXL9lTENNKeMj0gn601p7DSqIgMA5AqHHc+MuVs5UenMTpctLbwzTfaszVlND+9fuT73y/XT+l/9at22pidboA/vnmI68cgwpSE5X7+Rm/2rffryzW3y9a7UeZuxiJWy3KM/qy+fKvSHwcmnYIGBZhzOmOMkLplZvUSlCNcEganV8We1f+ft9CUw3NOA1AjVwDDHPM1SKyli5cs6PhQt6RG9814ngO0K21FWXqaRi3ltnwLjiBQIVchA6OEORgGOJ1XAd6Hr4hXj63XxnN3I4u3fKSC4/nqmOnEMqAw0xwcpt5pffuwrOfT4+lxWc7uD6c9FHt/uT4/X/ZrogObJx2ZmSGDes4aAQ+8EzDsRO4QiOyRnLWa4UsroZZzxlQaJK0618CQuPrJ/a/P/gVhrPJj4pJurKJy7vODqq1tpgB3PPcDZRynUFDKEVSMlA18HkHYUg41DdGT67Jhf/n23zwsb1599U3bL9vfC3QGqIjIlEdVle2WCNYpmNUMQbOkqhI/ZCFJACQ99r3l0HVw5p4wx3kRl5IeqHLYiFSGVtf4CbLC3WrdFdhHCpAcHOZS5Iqlbpb2WmTltQwFDpohSryKgSK/mlIqBUtBR/ItZFoGIFgqe19yFxFqfn6w5xcKqfOvfoPdScH00p2+f/ed1seFkeg8+wt4XddFysxP+8u2Rc+uTJixmxFsVeOEdKUBtML0MeYVqLoVj6byQkABAn2g4oSCAq7DIdroKQhlRqY4Qva6EfOB6dhGU8qp7MUowXCmjZqlH7jAQmA/h6NcApWyTAFZmEGFiBLyNsEnRYjoM4BXCMp4XBrQYp+O4uGr1x6wBKXsRpJjft2IJGb6LVbZe7xgXh3sHOM5V0L98slP69oenp58t7a4Adv+/Gnb9nzZL8+XvWuxnZBkjL7DbKYAEZEwcj21Dc597XtaxAbOpJMzIsIsLU5Pwnuo/2eOueF59+8bh2CYS83nNjHXu98f39BGyKX5uzY2+MGxHxDkPuJAVg8lm1Wd1xUJeovm6P26y9hf4nn51uz09Pbrx//oetmvn14iuJwh5Uv0HWHpOePleZTTDTkPpzJOlJBayhx2uowC3Wn0p1/S9lyaPVgzJ4vPIIg5hiXMgFgmQRxjt48NAAFhgic08lNJQx6UlTowDOfMDDP7QPPmzvNgPY66OmfEMSJltJ6ZAW5obto+PSSxy09sp/XyjNfX86Mak58u58ZEYNt78Ns/4u3SehcfwtkvbLsZ01d/6hH7tvX3/bpF0qI1Au6ouT8ikBEBlJqmGmBOspi5rIEsOOYdDD8TMdY/xFJ9L4VQcAG9HVMDCirNvIFGEzwbIQJ3AIM0WLnnIIC0QmM0b0/OiLlWrSqRGL1dmH3HI4Qe4gOQMPQJMT6de1eC+7ZGdl99H1I1ePXqkekmUgmKC9QFwmU2m39m8YejPJYEMh1CWNCbA+rWHFLvL6b29vX6eDo/EMbHvr5KAdv+4f2H571vUJAwg3oUi77WcaRA5/m8BB3ifk3L2EiGDhuog6+TI1y9D99rVxTu9lNJwL2VGBDexAA0P8yPx4GZJwDASK0I/s/K284eUXYaBbJLHCLzBSmNkx6RcRFvMfS67uvvyu39x2wPtPXhvHo7P5wfHk98f31+2bksz4w9+qeXiJ6g0rKTrdlOM8veG1MibZvZZOUfAJPIt3/1YahehKmzMQFkigzQl9Pacj15pnghS1GkMWijyc/MVOAMZzyT7hTdA5BG84ckwWvcdUNliX2Yi5H5chme0ggoUurVCzYuIwxS1FBOSMqvhxFu+Wv8cHpcv1t5Cvu6P788pyH2T/ZC8Ffn0/Pz20/Ar89/9++9/KH//esqjysNhlQq+ra/vLxsGSGaU7TmDjVKPYp+KTMYzZoNOY9KRyGSG4dAw0TvzaxSnWNRleLKANWW0UUpKCJ65gj1bRSLHoYC0/zlKj9WZG92EzSZC6+NJThTTrAahmabdZT9LcWdBIYFO1zBYAST0L7v4GtW0LOlObKd/uLxgQLi4Uj8y3E1aswvqCrI3GaTPzDPz0cR0oo/QKIs6Zvl8enV0+PaDUq5d1y+/917nbbthw/cXiT98e+vgPUhnYeXSwD085/F/lYfTw/vPiQv7z9daawZA7V527SOLvM9TucRsNnYUwo44pYqj5mxnA3KlcoYYjzoH6v/lqHxYZhjBmnzecwkL0ceMOEHG21fE0OcJ8wDrKhCEe8e/ogrfGkdH0Vri+PpfHJbGv7J+Zt1+/j+pUG0tT0+R4/MiO6PDdfn7QxYg6wkqyan/v6C6ola7V6ZzVbzCqiact9faLauzXxpDyqF5UiFndpSfoR2wbAswwIUFVbDkh0sryn4MQiABV4QY0gqSqq0uiTMDC5fI3tEIvcEzQush6my8fwD3dfT6sH3tjs+vWzGdfVL2qlnhpwATr/6zcOnv728PJzOcdqzXdQ5AGon6RKUD/Fm3/rzfrnu/ZInyYq4RMCtZCoyERBpZmvp83KpBYWZg4JHTp/SdAAjXhzFcrIWDI1YCHcBUkSG1Edo/qGyBk6Zu1lvSgCRGl1pdog5TkLLBCMnuGBHgnGACQaAV85E7mDlF/s6YwtrjVDNcDEoeHpYGySblq++cwikUkpETQfDFLYe0EbVDQfmJQAOm50spBn/YMvp6e1XD0/mdBAntP7u3bU/hCA2borIY6xJgcwE6ZFmPZNUao8ceVdFtwN1AomAYkbbw9zd+evPtzM+S/6LfMzbrf/JY8an/DxwQMtbBUK47e/CjrNID/elgZnizuwOR71xrIi6X8iSQ9PXj4/G5vZfLOen12/+6vxp//DDx13mi1luL9vrfv2Utp6XLJz4oDDPmOX4YhkT6ZMhXj3VM/KrmdcJ5MVIX5YnkGbOhtgzCmuGW3nkvM2wMCWN6jnaU2dKW5k1J8A1KMUDRGNZXoLYrFA5WXNkZo9tCwibUqJzrxVoyC3ZlvbVVx3qT9dnBMwu3+1uDVrxDGFDe3pU/9C+AvHmitO7plYpIXOMPXOBVIbvl8v1uvWX2KN36ATUeZTxKTNQ8z8HzFfh5ApCOSIAVAtf4k4Pn+CUkR4bhCCxlK4FU2wk2ZGKUX3JqOkKNqJFErxSo0WgJhXFCFEXzPSh/n+qE5Y94uzFmH6IwcIXTVNKg4Vvxt6xLGuvBwU6Mtbzm9UgcPrx23yJgUgox+RdA0kDy5DbTIkPA9WL9jJQcoMp0R5fPfxifXz14KFo7c0vru+0akXfY/HokaYsaZlM1JhrO6WW1pGRyNj3KJaozc1Wg2c4t+5hh4cm5o/1/I80//Y+gwaz+E/ABsLkO+jYxWUAeIARnF4BmH6V45URIvLGxT/2wTTi9QsQaMaUj8Lue7Gxr77iur1b1vbq1a/+av/0/tPL9fkl/HW78HXs+94/SRWcKQGTptjn3YWTrE6KYX1mqZsUEKCDQEdmwv2dWVuXxR+sLRldoKCe4w7bQX22qj5FukaAM6iZIyVLgGIyaTJwRACgD2pMRM1JT19aM6PlmrlH1kAuVRnHhefsyVT89vXe3/Evlgf15nr5YffWWjOurS1bjw/X9x9Ov/7mj++/Wr+1lY90lHp/VpmCHTADzRZ/UEa87Nfrtu+5FXWBjWZwp1AdBAmBRl5Hm7CDowMo512EAdzvn6qk+3o/QYRQbdk0a0OefBzRexdx8M8BAFGEzkTmTHTn1FTer6M+4sxhjXBABEN7aQWQoZl5qqS5MiOTZkPll0Qi5I+vX80VOy7mYOcXj/qWYA8RWdiI5DBAwtk23oeJz1op1gDtL9/Z7x++/tXXT8yX9rB+o4d9jebvfoilXSJw+1L2lAhv3nFGBi9diOoXHpMo6sRGiEkvkcmDlzNh1i838gyTjq0uA5iz0/ZHZfzjbeXIj9TvlpJ9cdgIJmJYpG6VFE5hgTIEM3iqlG+cmDByE/PZFi1kZqSF/bCc1hZX/gD4+urtX2G/Pn/4+PzS3WxpD9wj94gtX0WkVUjJaa/GpZOIvQEaQ3Iqax+r1lCe3eth82PFIlza+fHU2pKkotgIoJnFKNg5BGEOMz2CM0E5a6Iad97EWd+axX/ChAwYLHaShHtzbwpJse17OCRERSy574yXLdJi6W5upC4pWxp1WnB+nQ/bx8vTr99g33+z7NbsMamElaqvMELGhHShNTfoF33bt23rP0Tvve86AaS7pVsrZaZK0fdK6eGc4XFVnDfjZ5U3fpEj1uIRODj0hsBGwszdzbkZF440J0uSsJ6OJGWmV22/KNos8VASOE1Yfnz8PkDdNqMBzdXPOdbBZEBM2QpvtBoiXcsx086vH5uqibGqEzPOLjcxwsWZwqE+qRQOcFQJhgGYDmKUQPjJ3CRgWz5++vTNY/u4r6+Xx0VLu/7y7/L9InSZZSFYoEVKtLaajJHMT5ugyGwo6fycC3d8R8MMqv//dFQ57Eff0KbEkDA6ncrBMjnFNqp08oVEFm9/Ti9RN8pAuDsKLFK2UT57zO1FbVlkpyW+/84/PX395hv0+GO/vFxzWSP2PfYeQM2iqMf2xfkqtjbOIUWfW3M466NiYVIuKsjK5eu6rMvSWvPm7JmpTMx5WWXlB3I1dvywMbMZpUjsPCaLVz45kuR7+m2ZyupmcbKtvWfN2E4tnep719fbla9bVzqVptwirDt0XUJfPy6XP/jrry9bW33bGbZungmyqLyqawMpNcEMEpufkT1/Edvlsu1xzV4KKLa4k1wnaFdYpLbRbFMNcsYToeqcnQ+27vxURLrL6WvJagYOpf1bet7HNNsa9prQRkIRwegwIf1OYVEcZUcWkVkCT1nllDgSAgC0GsNutGPcjhJggwNGRByqV7T11dszbKhRHwuz1kY9OwOjZNYwuhvvqMBlSNrYhzYxn5mKqkosfX95992vvnp6/z7ffP3w8IiHt0/26Uqpy+wo2CsyAfNlxXKyE/b3IWWM7qipaFk3FAAQFsq8D/mFL5c/vtx/9fscxOvPQ+af+NW5bnH3vmZHVKZZ6x+llpr55hVyH02FR6xfCG0V1wDYYCC7CmxHGqTkdl3QqOxtdUihl/ckbHn4+IP88fXjXzbb3//wYd97oq2Ga+9JRZ9agp9dQva9KhDT3MgmKsqZvVbXmQzmmSlu26ZkO/uynE7nZmOwaxtLJIqtQh8fOaWyRqBWHKLSLZ+sRYJVfAOgvUo/6CjsPFR18EZ346ouIDP1Tmh+NuwfiEV/eHRGNKpfWN2Jl7xifdCn75ZfvHz79FXig9SXtjflqC7XdNPRBSVJHco8SzRb9aDs+97zY+zXbe8p7H10wIAEFtS9SSFHFky3odtrt5CwrF3tKeCWGQ412kEhJSFEz9SKWTQwN68pspWFA9l6QA5ndUcKOoaTbqMMtdAAGNdUKKGuyFqoB4Glkj/d1q650yMA2JjvCcD98e3rU3rSfIxuzSNELFM/BpZN53VfAT823Gcx9NxRLFl0AVBq2z69Pl8/5qsfHt9+/eSnp19+9ccX9p6NgqVY+C9Ba05fPeyUgmLvsixwbTqRI8IoNcHPhotO+OLzXYzPd7CVD7NDAetndj8HQq/P93/xAETdyoAGpKiikyAXAErGQRwYKOE0UDNUq/1DRlZ2qUoUaM3NTXqEriHwBBmjb++X5vnx4n84Pz2sf7UuH17ef/h03eJVhBRXbZVFHBaxVkOOiVOWg4Ry1CVbyQ/AM2VmeAGkDLmZact8B9LX87Is5/O6HEUAhbPaVjlLmQUZmzSI5Kh38nbFQ2yIIBCasCVH5GI0MDsqJTCQDdBTXK97AFhe7Ysub3r09FWtN7cM2r5kx+nkur58+PjNq+9xsczF0dJqMvbUU8gQmCrqLHLJrjRigy8LoF/kfrlcr/un6D2T9omDD0fSIdmo6vexkevlUl6uG52YARWmcWWNk6ZUMuKCOgsJGYKtA8YiTqzHfmYRxCKCzoi6R6rRb1CJVop4ptOGJisbsUbvSbIPWvskMtVvV4ZmbXFs0VGUBQJgLOurp4eltw4zme+zX0NzlHJCJrtj1RMcxCJOKKtGpg15+COsBcCrW+lHegM+XaxdYP3bP779D8Dzq9enF2UIkpqojIgJr1zWFnvDZlL2gG2yanAYFjbHc0iWxPBxcnMLfWkAhvk6tjATqK5/3l7+CQMwqkAz5Jnva0FSSc1euoZZoqG5Up0Y4vuV+c45nVPRLUrUQcwOpzIS9MWuPmTTo+9uEHeQC4FNPsb3dllr/ur0yWQP529e/5ovH95f3123bv4Klrlf+xhDk2u7Ehf5QxoufUWsL8zNqnxMz+xN0dmYpqJOnDJr1B2qGO+gcb8EgXZ+9eqU69klumUkCHUzUj1PY4ECzMSYcivAq1oQXplSBUAYmoe1nFSsjTLjmhalwgv66dGib/39y3UNP23unlq2rz70Xc0Rln5d1l/0//vbv/vFV8sf+bx9Ws99exBLXz9H+cKsFbMRpegfcEl5LBX39Skzc98uLy+XPa+xyd0ZVh3u56geFeQemSRzI90JzPq4s8DPEhNcNCvBOULI8iDLqNQUQezoDODHkUufI9gsg9bMhjGHwI8gJKpPNo6BvQpZNJKruFIZT4qUMtfexerZZDOlDEkl9sCCkAXNDKnl/PU3T4aTTkYRuSihEhYWUTpqVW2rLadhOZZh6GbA3VC7MgsVGMlBOUJQ8K5Vub4+vQvbY/tB/+GbazQsHz/gnLlGoNL7DHiz9dXH85r69OJBXHeTmiGwFPg//E6FjJ0effHaZ6nkEFE3TPFrCdAxom6CeWO23RQQGIW48vg05mE3j0KvpoWHgGYk0kZb7K12WqBP5f6SbqFFoGLGaYE0opgC4VkzFwd8Plwjito3CzNwE3RRhjbju2Xxdno4/3Z9eHh4+IuVlw8fX7Y9Aua6Pl86QPVnPbi1zOv1a198icxlWO7BaLIZwXv9/Bj7OKUB7ShvZGyf/mjrel7asi6LE4pIU9Ca2zauJVQitn3GS5Uo2S0uvUWMRSaupXIoFo3CmwZL4+Jupua/7MmIS2j19pDL43m3WuC7Tna52nq5Xh+7+YdsVg3mI+YhUQhAhVzVyaDZj6/Z/5qsIKSdX/XokT/E3ve+h0XuJLnT3aUs6ivxLJTmOmrY58AwINrw0tUK7bX3eWAD4+pruw+NKw0sCcSnSBozaO7NyFbvwzcFRagDUqSSqUzBRxnxCppT6MpSBzVPQNmyQDRPIJVc68H60L3n6enp5E4Ue7FATs19QE3IpxSUiPoJj7LvMSxhxuA29oqNMCjHCqoiqNmvf/nhXXfk7351fu3FadMxgk1ZeoanBc0hP2fxlkPTthyR7VhDOsCWAUlUC9eNBzMMESf6XVSmMqY/lfpLGLq8E9374vXx313Z4fMQYqhC3uMKPwMwzH6Phurnh9S8aYIwA5ibEloFgpSsdWQgnkEs6/J1e2m0xR8e3/7Kt5fLx8vHzR7O2iJ6ZI/UnoBZNJ8ne6xBQ21fePrRDDGuYtY9xxBPiQZE17M5bVnXN76s6+r2rFQE6NA0cROH5rSrMycbYKMIDF7iAJRxUymOMfcsBksDLPFBNyGCtofiQ8anvSYSMULMT89Qx4ev7PThe18QOMr4dR7D+84bq8wyACn0kdNgWHdZVeXfRN+3y2Xbs/dIgfTWDPKhGPOm9iN2ZUYYNQRRxrwRG4HqLIYc7bqzuSZm9H84ioIQShc6IumtGWmw0YBbrISoC9AORR/V8RlLuRFdcDfC6ajuzYKVUzQVEc0kjP50t9PrN+fWGG51BvcyGhUBYIYh0xNUGXc8VcdR2Zq5v451NtTehwkgE/H67R8+7suOT797bPFpc1NPEOkgqOhpgp9XNY9tfYyPQvY9fiKkH8+Ut3Odm31Soo7NV3vnblP9iUOaV3j7/c+/dxiAMVNOVQa/a/fQvPaKA3J8hEO4V80fOh4IN6XAIMS27teZFGZoBMOFPI9uQNJpGbDeQ3HB350ez6fTafnYvjufXr36mnHZPn388OLRw5YHu/Y9Aai5egh+k0iqnRhGs6Zu96UDHeqeFW9mHry5DREJ99/T14fHx3X1pVGZhKQuNOAuCTsYdHbwnY7vqP1WkUABoYd1QhUTJcihVBrTzFszd0O8bLqOdidCfet+jrTzvrR8v53ZZeiN02jOAKrMWmmgJgQpTRj0iMMblGIv8AhBscdLbJfrtad6v8BslAXr4RqgVcXyzQKVYFZigm0AehhCQT6WzkTQlrmcqGkYb2FejSyMqv8bzMiwEmEtkR7HaWhpXoZ8uTIzhlq5GXCGjUda5Ng+nGON4UMZdNDUFuNSXcF1EtNMj6iEdxvriOrKg1KD3zFBt/s/y97meLqkEpZ4efeYYVDD+3+I7e+fH21EycdkZ4PguJ60XdvJOhSR6Swt1PvlM+P22uIThB228N5i8D7Dn0pJuBWqPz/mWw9f9dPH5xHA3cquItgM/n/e4JTZYKnXpikNCd6wFmaOUGyexmCPlONR0o2W+Vbbp/R1weNXr9ytPZ5ePfzyN8a/v3x8vvR9/yojtutltwZXTZ8eyVsOYhBLg5mMg+hXD6zy1lrgMGQSgMFcIHtcP/3gzV8tDw8Pi5uhujYvZgTsLuTlXbh2H/7r7ilMJBG35XNYeJZbG3DKIlCJ9loq0mTLXU9fXdcLl/Vdf26WfQoXTmsNTELWzdELUgmTYCgt5QBl57gGsK0P+Dpjv257vOwv1z1SF4BVxzf3wYXJzNFWLWVWZW8RzY1aiy90TKbJ4WP8KF/zWIgC0Mvg5mkkgEMQs5TJIU1mYSPh5jZnLG4RVUgZehqbOamqNggFRoJARN31tAoCrts+KIWlGYAh82WHwaon0UZL+l257SAokYOjf8eLK3n5CrdL9sy6pfLv+ku2fXvyyx8vl+/3kEQjLDhjFYDa+4P27SwlMkYR8GeO2bFZUft4wre3cyTbPpdWvevQKP3RB4+4LMfS/fL1+e8bBjDW9pFzDL9T897njeSBAeTdZ1UMLCSUXnOT53BTWUZI1cpDkQlYqXMEhx6MmVIX55IK8Ifv0h9/8epTW5qfXj19k9G3y2X7bab49JWzORkv4cNaldqo0g1SZrcqjMhmBDVzgSzZOB+9QJMJtgDK7PuV9GVd22tf18UXbmalcj53OwXkZxa53N1nOdgsENRknXqI476NARhjkm+maNbpK4pEE3bZdP30cvo+8fyvI18hhlAZao7VfZyIA5waCdUozAx7IUmtZPKIQX4ytHbOzIh9v14v+3NGZnQ0SVntxUYQp5ES1ECP4oQYoBVFIJiEnmXempvTvxXBQWQ93EHWNDSNjxunPKoQCHMzdy9xUbBlzRpkpoSa6RAJbjQIU4RVGEP5KngSyb65d9UwWh0Rm9yKxDQrNxPuPhzk3T2FKiU48kZglhmn7ZdqQM32x6ti3foVeokrzuhdVBYqXadubqG0jIxtB2KPgU19hgEM9zpYDlMiDCNxv6023XVKYlwIjoTrp0MAHiHQLUj40hDcIoDJiDiOuy2u47l+8aObqKFngHXvwdGdkpAsI3OOWDrSKsBTSloalT2BbCf2vW/w1vL9BywPr5/W5t7PT69Ob97y398+fP/tx4/6p2uiiRtG7nv39JIQupmJgGdIYo7NM4IEq/YmM9tKKg5bIV96jN63Z+cPfjqdz6vRF4RqSn2RoyhpDK2/hWgYcWTdQk2YYNawxSmnLUsjTVuN5GV0LAyV87UG2vma/5B7e5Xb7977qhTVC4s46lRzRXCcU/31+LFUF1WIbrElW1Rov5Mg3c+Csu/7Jff9et0jlbskLBiNwOXlx9BwIVMQUhdUeLWgcpIVBb3OCTQ5HEUtTqBBcaMdarqwGmHGmj6TBC/mrOJJEZRWqNShh7gAjOqRuNIqUFIRuWpRDdFSP53Wh7Y0BYdvp4HVy5Kc6cBMSosXNZbOaHufJIOB/s94e4idcUbqKJ6IInOnXR0vtvCyr3a59nRlzVDpPcJgp0Vy9J5bXDL71mGHY7zbpprR5RFrE4PIcJfqH68PDIAjAvjy8+7ez8+2849fx2cYgJUpve2o8WCj7sKBDUwMYB5VgEo1FTUtE6AtS9XxdQiKWE0RLx2XyMGPQ2l+mPsVWwYX20yigfn+eyzn0/Jq/fStGf3Nq1/8Rby8bB9PezS3HUOwom5iyUOAsJnLVQRwzGo9uOabQCbZMmBGnpSZNI459LjoA31p/rCc19ZWH6j7jMVz4oBHdH/czFooI/dR5U+lmjuuOwsIRErIJtAl26yoy27tAd/Bl7+4xvun877DTGmtlusx3/RoOD9oCdOgYqyOGp+UQ4Q+EyymgzJTRJfoD49IZezXazz3/br11BA79SF8wgN6KHC72B2dR518q3boGqVmNcFowHgGYCzgMhgoYQ8SwAkYcELV990MqrASBHCpXpJ00LxKOmBVEXqPgjpIQ886vUjS2sPjq3Z+8ExGCaJXY8hARThjYI4wnrDgbVvx7m7WBufsipt9uJrwQCnHRbfN6K/sI0/bs75ar70LCrMKRCObuDRxid5j3y6ZvYdR0b7AAG52fKwlFoBUFO6bYl6yTlwVzOQMEkYS8JMo/58yFPN6+R+naMzPyhI4EjpCI/TCqAocnv9GKJgwA1G5Hjw/fnyJpDpM0ONXti8FZRujnhpyS2pPixExfdn1ZGOJLGzr6fG0LG1d2vnx9PR4fX+9fNgIWqNyy9iuAYMz2dhtYHfZs+Cn2PeiBFShhlSkvKSalQcs0aa5NShhvoG+nM/rG/NmTtuzamWugjh6dUxqjTSVikn9eqJBcB9zDQJwo9JppKA4tUgieAh5VCjPCUKZeSnZA5mhI+cboN0oGmAahj6LoEQOfgkGT2GG6Ec8II1WONxSvEDG9nLtL73vfd/jQYIbAHOjpAcAguTZEzCGQgK4NTOZt6S5OSdhHx4JIjM9t26lsFRfmJMWAWFKUgkyBT2u59oOaD3Z2EtTkKQNSnYb7x9sRs37cNrSbf36l+vTw+AozOr9fJx1A+f3frlJhqe8C+gkHWggYFklhftQGbH3JM29cVt1idOKb3/3PZrSOtWvW4/9aX14fLE/5x/6G37aerx/18GsvnxOLOdwUOjOTFtqrgo+p8DeB/l3GoCf/e8ofEjToLF0Fg7HnQlDph+/V1c/JcFuG+/4wvozy4TwZ+eM305EEMVMEL5ck4RpCD3wgCFGsiMzTc4Mj46izx5OxbzSdfv0zuyprctyfjz521P7BbH8/vLycoHx0Sz7dY/kvkuOF9KhFEKj0k2nlWrXkc7T5qAEy2HBNC1xOXw1qe8Xs7/19fz4dG70pZlSG0FF4jQaknq5vjLQtZHvGmIoSwQKmBiF3Og55qFVxFXO5RDIkJIW5qR5A2yoALsqyj6NOC3JW39GjoI3MHAhzoEetcUkxIBEpoRXr9+lE4jXPaNv2/W6dUXP7JkNRUB6GXTGDraqlnuFdACofdchsGE1gkiggwZL0VhcfQGlsTTqDgSvmLCFBGFQusUpKJhVVR11fGifj2iUxgwKmnGXufbLx7e9m0atXncrbRSzPtssP1q5uEW44yc3jKD8LA4dA6VRgsTM6Ka9f9ovTZ+26lDnOMPT4t5O5p2uvu89I0EaB4xUw1YP3PT27WMKG+xnTvenPT3mTEv5Z4nDP360yid//GUTE6ghhrzVVH7muIUyEs2X0luVdSrS5/3URCYwtKNmcyG+TI6mZRyhPT5587aclzfvz+c1+fDmFdVfPl0jM1KrfbSFQOp19BCbdcCh0DwGeMwpo3tUOOqUbhWsucoIy0hkv3wwb/5wfnxY3MfALimLrUWQzoRvw+qO5zegeLHmGtsYE0FWub06D0YQhsMM1NIAWIX4IvGSC8C9FpYuQ+bXrfIem8FtkQ1s5kQ3r1Gwsg+wMMYFjvq9JLJpgWdERsSn6Pu+733PzD5jkqragUid5oKLINV3KoYadkUoFb4oWmZ6u8V1fZhfjjXcxp1OqLoXKxbHTBrzqMIXkWda73mBNrhwuzVmf1le9W7g9Pi3dTobxL5c4DNK4HgCdb80MJWfXeaQMgcdixGGltdPu6PvW30MlZkCmzu1NGiFdwHbnqCJcRulOM/ruC9FJOPdFv45iP/LfXL8ddi//FFEPZLlHwkGtZlOHm+cKeY4bLC/9KPv++IojcWx9DiZwgCU0VjTeicaVFHFjFh/8kNnYpQsEtyuBKz5D+309q308Fs7Pbx682t717eXy574hfreewZJpHYsoCGkKmbOsYcEhEE5VeYIwUfriVghuwCFwcBGuygzdvLdcm7t9Hg+WXW/Jb1mD95ahHTr8Ji9gQcD+7iiIgbU7AwUP6AiYdTvl8L+xCyMje7NbTIQdS0ERpPSNrUbbe5n3d1A3FBsHx60H8EOAIlDbwsSmhN6o8jsvX+Mfdv3UEjRhZL9MWK3GkB6coCKdQQ7grJLqUY3IvOkgC9uDs41QeCIRLSM6/ZBEp0SVzCqpr4dZ0niUBMeJa1Z8avUJ0olZJD/5tvmurytJeDeEPD2rlEJrIX/0/t/7pyE5oRqEWIqQO2XSGPWGJ8xuMW1+ZoXNPQk9priOtEGDro4WQHGXDlH6JGccAA/swB3kcmPz++w+j++goqnf/xCG2JCP2tjgqXpMnzbz4RRdwc9DVL1sEugSgZ4JKeTKleCuYgZ1P04tCnbPOvbq6TM4Af5dVmD1rcP3zvxzfr4Jrdr/66H7HFdfr+cGdfrvsluCCCsYCeAk70qmmcgbCBEOXLOMRlARCRgCtKLeb9d0s8n87aeTmuz1pgJpBAIWVEfS0dt8D3H55oZIttwYUp3Rh7lw5GK8JZ2VYjvqhAjUEK154pb8IAaO1tz7t12jEh5QNfDD9xRSOt+T0Mwchy0Ym5opjI5NueqhUTGN4p92/b8lL3ve9Q4NDcLFlfi2RsDXDXhPJVkj1iUl96TrTkXzrZfjrLrrAfOoyQPXLovc2mqrI71MjEqzRQmS/0YzpDWp9cFGB5RD2ZEUbcXB9P2WKZ3fxtZk0bFf4aBx6vEXe6tOSOlNsVOLAsyYUDKOBi/llxzO1l8aBaXjh6DJDlFU+9qbLcTItiJWwqguSr+hN/94p9RH/PjlHpYky9/3kaQdLzwRd//kdj+7BncvmF+DwGO9lqBRISmFZspwIy4B2j1EwZg7IU5OaROksBp2z58OL9Erg8PjIhvz09PJ2/Lf3eP/vLxU/wq947zGZeQK7v26DlAFYE18YaELu4+anwzBqoC1dAJD5Qg6glSROhsZqmtu2i+NG/reXVvvmSRz6tMq8NxzUJgErw55mSl4TqW2D7GeM8uOU5kYMgwdpYG0T4mei0Y06aVIY6ykoQs7bYx9Hfk6Lj3fpydPBAEzzmeoZ5FKmGSes3s5hmQMnJT7NvW+xZ92zPDCjdVbw1ic02KZ2FX6kZFTySSvZcyMUk2DJHRAVrauFW7xAx6H5GECTCkbAwXGyTHI1QeDpo0cyjTJbRXb9+0NupYmFdYIefU+qsf3Nb5jNbGfdJIBer9d7tkBOU3fgwcFlQM6bOgvGEr/WhAUkTKDL703lrfFxv97fX8vXIa3mEAOq5peoIjCtHd1sLdT3585JG1c9rNH22o/Ilt3MbS/an9N9YSZSiJpD+VAejwP0qarxcvU1pUFNZKm/VUFhykocXxU/ZlBmeqNjGlWB2ILaWV27p/fMdl8af88IG22GN79fqb3vF8fe6iewsxzLRRgyFXfmd8bI4Q3TpLhn3eAhvkmzA20O0DaFxrMMgiyaCMK5DLaW3LaT3BV6/BVmVgywTaGEtefMoJ10moZjbeVfHx2QObXOZ9WMeBM+A6cuxm3tyNK5AZIR85X7WElqGZgMD4eB5fjttCZi1C7mMNupIsN05ICpBmjQ+Asu+pvl+u257XGiWoNTeI3YQxV2ME5O7VW570ZhLmVOgNVaE0mpmTyyh6uMwz2LYRmdSArYgbKAMyGXZYV9b1ESPYpj+8ejxbq/GQM5jO4vzU7MbaX+JPL2DeG8lpIyfoPV87UgCyNMlQ3g05YjxBJTqVKdAWp7Xz8tzWdQdz7yMFKIN0Q/l1+14Bt4Ep44HpZp5+dt8dfxs2ST+VVXMuuS+Ohi+MxcQAZhmwFuTPpwjH1w8sm8qkOd1MB1lJ99cwcx0BQ+cO5I9AwHksGug1qy1V5n3bM57Fk+WmF1/cAMb227Yu54dfIffLp+f9OdkaF+77tu09MqqjZdx7qY0Y8zapZVzE2DRmZqmIBREi2aAQlZ3mFbpvL8llbTw9nry10UxCjShycAZlxYMdkLTkmch06+NpLOOmH55Ltdzm1ILZjlxZrgDYZgAWX1vzTGIU+JGaoWulMnU+VeYp33YztSOHHtWdisMlpLBmpT7FvDdcza35kiZk9My975fr1jP6lkbts+zEYaBWWO10LUuTeB3B/vgSbrMbaPANHM0gch17MHvA0fvc6xUvBzkwg3KfRikyav+303mhD/31ucvHxlIMDAnT/cz1ih/tEgLg7Ne55fz1wlyfXkyPai4S4FlEj0CRgCraI1dKtvpGg0L7Swz53xwjjSoenvvqFrIXfVtaRsZYJ3078S/LgJ91L3J4Hf0oNagN9xOOvnlBLscJeO37kaMISqMNLndtjcJMNXx5DV+cn01tzanM/njp8ExTrPlyPu2tNvtQ2FEigkotoxKk+VBw20iYduMAyCHY1rZ9/VAEOUM0bRLJ3Vu8wNs/tPV0enzjl+3l5XlP8HTKjOeXTclU0UpBs4AZM/oqmWvfm1tGuLcBTTQMxY1BirNUElJfjBlgg5pR+x4fFmdbn3xp7m4x+sJMypo3wEiapQqoSynZWAN+RpwnAd2Z9Km9OqLJWiAGAn30GczphZ3P1lpzVUssNwBShA9XZ4O80Qm6NduNAObQT8FKDrEyzHo0kAmmVks4M4nbIBAB5uuU/OrxEvu+bXtsgzCdAOnGF8vkYrHRorXmC6ieQFEKM43oG5r3sf7XTPjSrqj5A+SyElqqW7ASlJwIizCC6OyRIUTYIvPl8dXZrHjHh8SdD8ijAWPlcjhTzgqJoFGNqI0JzOvVdGgVz0nVFIUEWiVObcxEI5StVbaYNEF9U0tlPml/tJclHuLiurarl1iMMJ0fbtsJHY3ZfW2j7fJWGZeZUofkWrVoY0rEkWPy8RgFJuWQx6zASyrTkHB9PmJ05N5oo9Pxi5CkygO3WGQwIYkqaX1pSm/h1REqcPYSjRXOEZlWDl5NdZ61+YsIVDZ5gLH3+A0AHP5LSvUBZesWvumH1gxs7VLTcvnN+tWvdfl0/W5/udrD6zdd+7Zd92tp60heQs0poRnbLI+xvMpcBT+2pJpV/cHBYgq7rH3nbVnXtT3W2G3rhEnI5cYKQAJTEosjsh+dprPfv4is9w9DRxT/xXkksBvNR9/uUu5Se3VHYWgGVlDGMKYh1TmIRZwesELO6i0sQz7oJEUzGFkFfRBptIw4/XVmRE+9xL5tW89QKgMgI6xjhy3oXWqDDVwjwICAomeNdxeAi1K2DU4DSeeYXj7rihNTGScWYEbsqZ5OU+fy+Orp1AbB4IA+5h8jox6LU3VzdfemuxB6PnVM9L1ocHc5wvw0Em5lNq0ypsNf1nYy8wg1XD6+9q33vG5ZQf6P8pC6PDue+ZH6jlweNhHe22/cXGWlKvPij7aleybAnWbg5wuoXpyzI++X2ABP6lrmoATeoWU/+pzjVk44WxjTfksoYqi8cZphk/pkAuD4gJsh0t3Pju+pJyAI+2ajkHoomcmdkdqt1bBXvIef3/zirx7ZP37/7sOH58cefHhIte25d/PWAbJBe1ZoakZRQ1Jwrpl7A8BBdQi5j0quALmnkKmdoLWlLb4sy7q0pWIA7KOwO1SWZmY797XGtOhj0s5cqHWlsrxfFbdbA2Px9KcB8LFfloEwdpSwdjk9lXea0Cvu+90EzHmimAA9ZIqK8yLGew+CBMmUj8fcM/q+93xWxN57bpnUvm/ypTmghVY4klWvZiMhGLdhFPeE1FXdjCAa64IMVrLJwEhWykDtUEZ0WaS7pXJ5/fb1ycvHT5AJxGyWGXv5zrHotlg/W8i18jRX+ghEa4EVxIZq1SEAOCVQrFGCERh1xHJ65qfcfcV2+Q0j7+v+M9e7gYpl/fOL85knOO3fZ78+HtSx8eY61eGDfxI10I//PkKmzy3hqBWN766Pn7OUaCRMPzYEnPjMcRMt692AYgqJla47WLVUFUFvrkwJgldAchAHj88f50YT9/28j5U9wjvxgchI5XPp2uBN5v7t92bLq7df/QqXlw8vHy+RPXR6NO3bLkEZPZcKasyJLFdddve4n7g7AwHMAE05mVoJAk6eocw9rJu3ZVn8jTUzc4tpEqd3mp+pYh/d/VP3L4/AK+cD5xcPMGZ1veRqodpoeBpo+1UANWcbc3bYc86Em8b6NhGq7uMcxmlZc4CmIR9rm1lecWhSAd4qPd+Vve89LvvWc79Ue7/TdtXU1qpdmCXdafRFhbgvKVCZs7g+J40NOzBA8YogEtJz3RnAvJlIPr1+da4wZqyIgl+stMyP/T4d+PDAd3yC28LnbS/NgsmBhQ1LOZ+Rhqw3LamMyOG4yqyZL2vn2jKari9BpWxEAPm5HZ+2CXdfdn9CUKkp/sg4HHD2MMxz5NqXbvrO2I345/PjXg+gfqFW3Mjt5yScHzOIPvu9H5ubYvmM8EGRUxNkgk4aD+rWWzD3wM8c8wpc6bG9jvpuWh8v7ahwKaGdAL5bzmsLZX784fTw2PhPXz5dtu2yX6LvxLo+ZN/2Sw8KFMxiGKE6rUNr9ss7SRuIWZkzaCu6H5JGA3FSbhuB77yt6+m0rNWXxqj85cips6Lrg5uRPHzMvK93AZKOP+ePYhSRbkSiNFDI0cuzqBqvNpQKZXHQm90ZgAmm18CPcY23HE4gUuEGKKq3SCVRZTUCRGOJiAAeMYQN+q64XnbEvu89dR0lj6wRJXR2I6SHcQJDrDT7yPH2Yj5jABOYy3+i8p1VdZCRvbf167evH5rdNrYNAzBTAB3h/N1CGpf6Zdg77u/MeglM3oGOnClV1Yew6n8QoIjjqWmI3SwmW/Gi13t/7rZfNv/s+++WVY0nnTzpw6OP9G2+995OAZhd7j/eMDMA/9Hxmdm57dt2UxY5XhgKKfWO5CCajJT7RxjA7ffquwXJYGl2kC8U2coglwGVJB/Y8K45/bHOI+4+DHcWa2L1IrzvPkkf1QpbCm8SizAkQK/6p3fyxX3/qPbq6fTM5c3aIraX9x8vHQDtvJ732Ku9lMP2TwGQg4Rxd2s1zess8QVT1a+rTIMJGjm29EyatbWdfFmXZbEFAEd+AYwAALWhRoggaDIIcVN5vHt2wj0KXFn5ra+8bkgf0esJdDfgYaxKqGTnZ5jGERjMstNE849FBNJGxRbJaQAG2Y45XWQCSAllgE0txdy6AOS2bZG9R/StZ6aYkU2lud8hTo4xDbJqK8Qy+ECzX/Dg3Y1LPNcAMuxQ7mgPv3p6ahyDsGc7No+tP0rRc4Xf2dEvt9UdBDBcZf11yNOPyH8OK1b2ecK6QwBwtDa0CHo897fe4YzAxAD45bI6zmxu3fu9KLgOhc3j5EcIQxxXfefAa9Xc8x1mNeUn3Wubd/c+JxHHHHdOR60Zwf/ER8zfGxlL2S+ZOxMFUlRtt+xymXVOFdIvfp93s/duG+C4cBAJse+WFXjeWpRa6QspjvrEWYrYt2ap9wvP68PjeXW+fvwNt/fff9q7urjirOw9q3ypqf3O0bp39zTEkklNEJK5spLqqvoLjUiJvIrmJjmUfb8YrC2n0+Jna+ZVoxmM0zIUB5O4bnJiBmFZ0evhlQZZYa6EZfiJIWxSU18JWUX12kF3Qm8KSMpK3VMzuLVRh58lXhs0mVGXRYAUqVUJmCdHohY3tSVAs0pA9HpYDJFE8zQ3ZGTrW4/tusfeRe37S4aOdtayOGYGreDIGCvwz2PFViA0rztpVIaU6ev5qzdvTwvAQsKnVBo+D3VnRHyLV3SzpZ+HtgdTCrfhCJXvSpo2d/h5QUNe5H6dlCaut4zWsHVfLkL2bBPFn+c33x9WVuvGNLylw7UFq/bz+VneLnB68kl4mm38P7FTf3LztpkrHWq280SGhwiydNDGzfsSA5jLYSRUM5WtZu65Re+rADNzVU2WnBjAKJ7PaQgTtjxOOodt7xQzMNoTxuULuCbMzLTWx5ZcNd3C1fdn5cl8OZ0f1hN9eXz666aX9+8/XXrAfBHIa/YekdVBKctqkvgMkB8PjACsJVOQ5S4WF1AQ2DxKdSxk1urU+vZMcm3reVmdj0e0OqGtmeWW/Wo4Yg/OL9awvbpfOMoaRVLRSrXHVkw6eRyRSKW5mwFw52ilraUlihRiyEovB72GRyhggLWQYPAjRStyp9rQWLMhF96GcgBpDMFMmbSVMKeh9+W6wbRdsW979J4v1U8lSyU5UjiSqvNlq0U502LO778CUkaqZ3v6+pdfwSEkYz0igLlDUCBdxYlz99/f1GkOMPbQZ4S7Y4kPN5i3TwWrA0Qo7tSI5jDjX6AIjA1K7Ndr6NrXiQEccfD9urbpFoHpqweVuaqx1I+GhM6zDaL2I8eDE2acMS6sSGKf/9Zt3zaNhHd3Q4g2w8DZpLFm0FhmCoXalRLMKMwV339qxY22MQnyxROINNC2l3MM4xwNHY6A4ECERSZU3TFHIHQzbIclKwOTgsl4uZw+VSYrq05Im/2vz/P8AUiJxQJsEZfobOviT+tq3s6Lf/363C2eny/Pnejbq4DFyxaRkXDzXv43Zz9+aQkB3iz3HWheIzYWohFsmLoKg7sYpXkGK6Ov6/Wjmbs9LuuprW005+19RUh04x6gcQkaq5srh18o32s6dugws1X4jUBjstVyFGMspeHnCyIk0Ej3ttrGqoO2vcvJXEbdeWrh5NB/aIC6gOuI3KYK8JwkhdJYQA5l+6ypxMmGPVf1EyqQJwxJW+3xAQIYUkaP3LNv+96jl1qxMtPcIMYOEKU4REJWIig5znsnMyJl56e3b14/LaW3wJa8C9yP3TRW0REEVD8aK1wAPyOgfRYJc5aBZkoqR4cjaSm0trceICNlEiLSepCK6DKDgZ+evvJvtzdPf9gbLlzm+I1pfg8LsABQ1JcnMJqzJkmYChqlCaLXuqZmhkgsKnMx4fDC60ZSUtnLlE6emdDcWwKghtGUclceGbdjxqijBHv8Pu6it/lxN+M5ruSLDFqTMg44HCbvkmhpFXje5QI/c/jwPSV0ETYnun75vjaZg7evHqkVEdedPyynxdt54YdHoLH/+b5HxtbfRQRas02pjNhdMCK1lVOtGXFGFos4K1Mx5i3jLC+TqB3B+9sDQMigkbu5e1v85Gtr/mAXVse/04eHCQ60XgIP8OvQC6gnq1nWatUEzz6SrIkpNHx+U69ASfjQjXQkHVTo2dxozivIQwUcLCryuK6ZNhDArBLMgRY1D6f0Pue6rUHms5pZEeP8qKlc5EMF+FPGtm89eu+RGUfV82VESKWcMt1PpXlcHpbH86tXDw3bWsvqR3oVt5z4/iczrBxr/ieC4jtmne5/8/j74aFYvnsUTkkHk7yQaqeVQWxhuPaIXjzgf7djPuMZmRfjhHf7a9Qqbr9wwzjAmbr89M34ieOoAlip5dyUgepMRrlHRXuZ3N5BeT8ipfuUYLisErUZ/A4pfJzjyFRGHmyjG+5PnOE4PCUUfT2h7fFnyxJlyu4e3jAAIBBd0TfCFrfRzPOhnU7L+oq/fLlsl5ctzhlk9t6qPz7PACK7TqVXzUVZG3/EW7z9X2WKZkhVaf3+QVmRbbADgjXHelp8Oa1wLxFDEErIJRlpXy7oHGWrW8haHx+JjtFRehfOlt79DDfrpcxgjfU1guZAVgipHhQ1ML+qdUdZ7AOUnPfbePhUYZT4pqcsUvIE9+5i7rk6R7GbJPdBhHoFZPbBJug9NkVET+2lqaCmupQYS3IFbHl8dXpzeji13KNh0iW/2Khf3D+NPypQOJbtjw598f7DcEz7Ic1OEoFjVEumLqCR5qspl7NfrXGP87LviezxI0T5Zw/NIG9EAJbIyeA8PuQL9Oznr6I+8SdJAeNoc/cOCeX7CICYZSoRX0YAUfIvefvJPGpfuNxNQz24ZvpVphu1I28VQN6kdP/EMdZOmpjIyxPz7iPujhpeeW++D3MNEmqEMoL84CfPdl7Wh7W1xb969dZ13eLv90x3a2tEKiPe0Z1s8po0BUrw4SiVIZ8mTSAGHpRTPfguac/CVKoPXJHbi5t586e2tNbcp9w1AKSS/sWTna8e2ev40sFjynb3RhDoLDbdfPY+NmMfg0bYmoP0BmSU/I4KUQSqIbBAr8lMnK55ND1huuVh+EaPbGrAxzZWzb0lnjpvI0etokrSGk8Ax8zCPaP3PXRRRERoK+lXrijTtS7r6XRa/Uw32akm8Yzo9R9bRbr9zwT5f/ZX7gyBbuuoUnzNSaUCWc7dOqTo+w5KbLqsJ1zzfM4AMoo6gWkP//Q51mOe1bnx3I8YfpzRT0YndUU/ZRFu+/rL7286gOafPoYK4w2l/OK9uvuz3j++pZRzgMLPe0Pd7qL+CF6jYJL/jilAgKx6NpN5oSF+0rAdIMf8d06dHghGdlEws4wAdrtiOS3eluX79vjmvDr+p5dPn54vLz3gJpn/SoqIyA0CzahIA4cE8fTId2fCz9bO7R8xUfdKXrRkh1H5wVtblrUtrTnMrdc8u5ze8+Di30BPAJoEn1qGNlVvcXg5qURYBhygY9SspKBhdyd8aWFmXMyuLFRvFZVIjhTieDa8xfR1nWXwcOPeSTLJevEKJ5fsXsgDoJpqapuPqsLgtMNRPYUa63vLjEoKMrO8tbm7rW1dmsFqvq5bx2c35k8cI8PSEaXiT4Weun+YQsExOW5BJObV13I3f6Xs23bZehNPYjbr11zbJSJ6/8c22ZffKx0GaszkzC/X+uefxfsXiLsVeeSKP3O0mdRohuXzIw+w0soC8PbpAOC1IjjrkfM7DIW0VCfN1KDLXlOBhiOOqjHczNI/fmtq2yFdnqYXtKn288X7vGp59+guLVlN/mCJeiJFU0K5ffLmvqyLY308mZm186tfLm5/m32/vkR/k4oemSllRq85ArW/aLxrlSlLB6vJB5xe+u6+QJKMJf5jAp2BDSB98daWxdvaTjWoRwEc4wzHg/z8fgwDIFPSht+9/TeojLPTm+iYUylKAdpR3TRp7nQ3B0sfqBJb7AOzCcwU4D4BGSmJxkpBLQVBsHTjbC6ai++wGSAIr/OpfbsMsdAqPZNtmJOlbhdKuWnUR1kDZkWzDiN4w1rqFH7sAL60xn+SbXZ33Gzd8NwDJhuqX/XXanY3M1sMaRCXC+ALEw29w/MasW+hu2E//y7frLEbwaEkmToSr8/398/EFP+tUoA6snbTkVqPuIppQ/2kfnIXStTTz8PvHCc0ojxvo/UMRAYrRpOPFVm8sNHD9e9wa8ZEQIcIy6ssRt7y5TELLcd5kiJsFwxItKRApRvIpvwKmfv2iQ/RHk6LL9t6XptZ+zUytsvL9Q8C28ntgojoPZtNQaiqiQ4UWTaCNM8srHAAn0fkNNxvUSwMG8zG5CGph4U3Z1uXB/PSHOPnTMl5e/+/lX3bjiTJjpwZ6RFZl+6ZPSstFoIAPekL9P+/oic9CDjAzmq7u7oqM9xpeiA9IrKqeuZsYNDTl6zICHcnaSSN5PSbcq2V81hY/di4u0rprHAHjqcOE2JYUq5JDGoMgVxr1HbkcL0k+GTQlWUAk/JQ3mnOEK7hlTzWOmDNFZi0+GwBVuy6VJwAoLXOzAZWs/Osi5qTiS7I6F/PAJ+eClNYFTtZVZvtw9mPx7hfsHe/zwYUnEtyZJk+/Bz3qHjpgeIDYFL7FUFDj5X01klr8lhHrE+mdSGb2fYTGkMWMTHAX0Fdq7ecV23pkd0ozHU85x0j4J3ftX/qlzqgzb7iSLt4YhBl6DxUPVDPN9p1wcfbpmwIztbadF2082zh05WqssDKV/ylCtjbKSuTN0X4+5AfzaCiHXyGPLgcyrYib4LRPINfPvoLjU7i58BLC9jv65v58nT538vj4+Mz4n/efv54ebvdjI2K0KYYkeW+U9h2L4gUq+53Mimn1cWW47eyoQjdxpITiGHGkGCmbbAt/0ZfLpelfUlezG7gqrsue61XZT1hDrCRtzv7d+jqGa6YO2OCEEYT3DnCEnDymzV3Ag46Vc1DhZmk0XRhUtyEOTh2UrysAKMkNgWDJfjKCUFEcsBEoIbn1hEioV4N3GiZBDTMadJRs1E3Vs6dbhJFDeX0wDRG9fYfWm19FOz9wPHsr82VO1zddxSQOwxfLCFBkRxyLoiI3gODrS1tXVyr27iuAzAvj+MfMHRZbUAO7AYlQOOosHyprvOTfBDuz77m/XvOq5XPbr0zKT9uGkEbhEmhlvRWBTPD2C1n+SwZGcjm+ALtDh0AnWjLiIBBXHEdy8AScUEjc3oXktER1a3v2MQ82HHk4Wtj0oioR8Ty7avQbAxWf/uYVYszfXM0lApwuV09kWSmiyKdOQy0vG3AXQhQf6cvl3X1xdfHBTH+dvnyz7i9Xvvt5eVN7uvC7aYRqEEJNyfg6iGacYyOVhOl877ZWAOsYaOgwIWgR+WjFUiWAbiQ4+rRX+l+sWW5LIvZys5FN0SXFXcPEK+0nGMYNIR5Nk4BvAS2Z6d+Bo0IhRsGmkUFI9GJuOXm5bAkjCITwpsb1ppbMFLM1QASERDMLIFwJr9yx4dkDg2/5BQi1GzJnuCodP/cZxfLknuRESOJSaNVPnvmtS3zoiQNoBdyLEWoManMu3FNdXdY2gxPhhyTggkAUg382PklJ8EoxUBNAhuALI/Mhk23AQtAAUYseVDDtgCiYzwE+HP886rXy+8/vy+OGCFbZ2xjDq45eUYAoXVsXC2HlB4lWsSgmaqWQ2T2DMQpK7O/ZZ4MxyHsacLPGK28C2I3yG3ihylopoHK/qTgccJXTOgLndoLl8B+gALK1ts7iJozfGyaCZOybQUqxnP86P7LZxAjHYhR0a37HzsBibNr+OEef3JdpL7RSS4Pl8XxBq6PT89fZdhev7/c/uMag6tDhv52veGC0aNxAHI3WDev2e77/k51sL+cwOQLJJeHdUwhCFlGHONa3YAvl0tbBghbCv/nnVYpBor3QNuLfUflxWuas+ZoXUCBkSMRrVJwpzjMJHqhmpDpyVLBLKlLddsbDyNIclT/rcy6pD0PzqGQqXzyOfO22/7uRfZHdiSeOn/qtll1enrVCoAGsgfMvdV73yEnydnH7mf2wzFyeU+tvkod657zrfrCzy5qN75KsbCzDzpj3hgD2G4v6+Pwdhs9xBOT5/Q156vDgDDOMutdnaVzs//Ne8R7xnzz1z9zM2o4zr4OBw8g9wY+RLMek2kkHPYsbz8bFp/e+7OuwqSbtHcnGbMpQcq/TAorUnHgDNxqpY5CuQ83ZsQtE9L7pKIPn7zf0L90vU4/l6Y0+PbSmvF3wJfl0r62y/L0LPzsP1+u/Xp9cm928fYNMjPpuazIwsT00+k9OHTH+x3bWdI/pUAAEApxENmF0ZanLysCl7aYQJu9GZPtZBN4Hb6sMsgnpVTNLrrYe5KQIlHFDhXbKVYHoBaUEHqt1l03s+Yt26inE58sLy8NMhUABUR29CZE+b70eYImozJmOg1ZEJYuxRGkYAWtNEMZJW+sczaDmnNDzxsrYs9JzBPVMsho6Vvf5c+EU3jsdF7uMmk7dOauFwgAg5od1YsRk+wAwHTrC+LHj+frDcu1b3PO6umn7w5c3eTunU6O/X26e1bpvr92Capv2c/Du9FhngHG/eMfyoGVqe49tMuzFkhzfWd4Oc/th/eiG/bTil74fm8uNCFbulCnfanXPpuA82UmYrvCbE/D7OcEx9bNRdR8k0+e8bNrQHAjESNuN+jFl8tq1G9mtjw+ruvTP41te73+gdEHgH9hbCOu159IgbHci0ydaELM+y0TddeZh8LesXVq/2yfDY0h+Fu3dX1oZmsbNRkso/M1Q5vVZRZ5QGrgArOxy27dVbg2+eOkZuGNMMf6AaBVv7vITiDWWmvGL0jIn8xtzXkGExzOkV+KEt85aiPq3Pg8P+k5T67L3kPjONZ7cO5kdbK8IUVhB84A5gHOAD11inXu54kmUq3Efx9bnT/G+bt7FV2PcRKciRKq8E/9nuclQGOAMjgGmunWsV27j97lJyFJeTrLTyZtDUGyJjrfCfCEKpw5Vxw533dXfs+94Sym77zsnWA1lpKeUd5hrhDLRSrPok7lvtunYGEN+fjscbIdRiGTLRxildLSpLK0OeDzDkH8payScQvY50SAu+UABAudnvcv7w1IQ0Amp7TdXunL2n74urq7XX77/eHhy7/wR79eX9+u/ZWCXx5uA4reh1alwRll1a8AoCMKy+MFay9Tv0bZgOknl0Ry7brprfv3ZTX6uqz01tzppDRGXMoo78zBhAYV2S0KcyEBIp3XPTZLKf2V4Azm9UJensMp4eodgF7Nja05nGCMUZuZjQVB6azmCJ2gOQlwTDCbj5GCLWQ4F/X58zqVXzGj52H50+/3caYpccACSUf5SxWzaefW1d9bLs/sI/zx0L0TnBkQmOG/ySg4XGqNIcDpCF/tOpYVod570I587H4C3h/dGOGLR8xs244bywUoPFzY6VTes19lYD/8/bv1Sj9l70txQgCV9igqGA6Zr7c9QIretTXmaePmZUE2n71vwS7OlusiOIdVasKoe9C19wj8RMYlGEbQhoBo9aATVX9YAH5st/TnV4Kekf6mvozet/7G3i5ra25+e3V/eF7XJ/ft+tb/vb9dgdBXqG9boGmMCI1pqmpPdg13Qizaf0fM7hdsadRjcvFHxNCAGFcFzM18WZfFH62Z0aK6BitmDEDpTyd5U+jIP3DANWPvE+eKGNmRgKO+L6Nx+cxeQioJ35obrTWjNUcq8QA46m6zXNp2xHXGB1M5HBpiNsdLEolYOHkKVbbf1p7EZk+WxX5A5nrm1IQ90FIY4e7csPTLXQygHAzOfPu5K/U8S+cnrmM5T76MM7k5N1kjQLlova140+Uh6HHbZDb0bv/vHg75XHRv8JS1o4XYDpg1+TZ3IYv39+J7/fLeBdiJO3W1aaFniyvLvqKRyo57MGa/Yx2PY4FIAPGeu06JrW0TryQxaD7m1LoE/NQUe1/wef9PFAugcCKGE4k453u9WxUVVe20zv/IVUG00kjCT/MHKPCg8T2suf1o8KevDy/Pvz+S7eF/3F5+XLcfP18MwsOyXKUxtjET4TlOHfs4+n223Y6gpg4o5WgRyQBK/0XDtMEZCwhFbALZWvPV13Vxw9X8LugFxp5NKUE3ZPovENVvAZnjT4Uh7mgAGTRLi50DT7I0CejAiKxxtmZUMyNhOUdlQtTp75yKV2YZjGPSiefsmEPr5woBM8qQAjmDFIVFSQgVmjrZ5kQuacx5jvPXv6cSo1n5CPvxKL1V+3HXiSl35V5wypXa8TP3E3KKARDgANladHtsb/DbtcsVYZYnYn+6+wMpoCGum3sqNJ+JPp2+dm4wPruiPCceS1q/u0cytGqvX39uMyGRtWiCx6BjjDPHjZi9hico09HUkPeu0v5FATffmTqcOs1mOCcRGOtg3BnuRBXvXuT4VwFUQkLFx38/7lG64Vcf+fTyQicWIs2wKDYBGGZrSGPrGrhc/OF6xU3PX/++rI//Zdl+btvrtx+3fqW1lTF0VdIHrVDiiZcg4rBluvuzEJLxqP2AN4UMcaW7Wx/PY0SPbt/Ml6U1rm1pRmP1L4BnXvVQ0AeUFka1EiOnhleUpmEubLEtWKzXUAOgEPpsehBD5sY3c0sGYe7+3tikhtpPxfy+4Ubu+o4l97SVCZqRhEIAJYd5q8bDHAh3EJiHQlVlVo5Ntyxrr1mi5/RgIiSrNbqz+J/h6KkW8g9zrWa15gFXQ6BZR1tthI1tILXsSeF9dv/eeHsby8VrAtSYicLDBcgXfOcv749XCYOJgn916nv5LDsi+F8VhPGCUGHUCJprvlP5Xqq+4go6K29KYNAQSB6AILRSLhzE9ftL95CAkH99Ypjn6JgQGCM0xlCMHF6fffI/DSieX6gbRdPtX//1Zvb22LdKOIXFyHnA9WAVW2JEaMToijEDbCyvhSdX5n06iVXffw8lUQk8yMnWLqt/weXLZfH10pbx+nKL77dbTvsCxtZHKCKC1qITm68DjQOuvhSndB7kyvNit4714ksPOHr3md7T5DokZDfS18vF1+aEyBr7nX0yFLqMLBVoEEDby3zbORgkALKFIYudf7hn8jAVFOtLEap21ORz56WJLRS9+kkkhbhuX3xdGwXpTNkxvg6qluNVE5HkxmnGBpcYMI6pr2DZh2AHOXHs4wzpTVX0DriKdh43tL84YKiecJb8grPhqMYclZMBLn1YXG9jGyIZZMdq28/bNvptQLEu/fb4N/7447dnu93ebn+P2BmFn2H3+V2tR0PvMXL99IxMw7zVo5RnNxGVOnPENEvu/N39p1NcMUGeYiV3V5vVc/N5LFNEVAB2T6wqW5LXmH5cabaYqGp+2CScqlqV1H3UtDyLzF9zm+vwnzDUBBhsIxB9h7oVdN9ND4ATZWo3Sh8g0nHPj9dn2mi+v7DZT+d/cHl8WNpiy2MzrPw9xu3t9XVrW5c9ugXGdtsi+nDPKdhpdJN3legg1ycb/BzPmEcmAydJuytnggXXheTD4dWaWVuyH3lJTrWmSq4lE11Xsl2Yo6xOS6KMyE+exm5J5iEKTnyZyiHqgX90Xh3wFUJOAwttqvkHAEalC9NV3KP0mlhetfdHS7rynSr0ZACseIIzrELuCpuhbMuoUpsVgsCe5z/t5YFg78UE8wd5IJIJQGfqfzdAPapUK8w8h85CUowBhqwR5hxb9Ju64qZf1AHsclK/jqC1NtCRVNNvzPYNS6mxaqCECzK6ciFURD1Mds3Jszx/E3XvQ9xds28E49DKAMGRqsPO0dzpre53K3qoDuLJ/i8kRPcdo0fOssdDEkGzVDAt0twDHQv/awhTWp0DyybTaPVUtUcJuXEuasi891kTfAaR7iBg/cVnTASVKieyY84P+LqYt+e2Os3963p5fvwaul1f37Zb6ItgSyNfN9Po2+1REGlzsHW6WnnTbKB/d1j2Xi9e0dhiU+xBdxYBkGbuvq6L082bEUXyG1XCn2ILsOZZjEP31JJGDWgBBO1jgyZRqfZaJ09fkLEPjOp/RV/CL8omKelnCqhYQxSgIJRgvt4ySgpPzU3Lpyw9YJW9TOA/x+be07DnYu3p5apB4ntRPwev0zIWQU2H6tgVwO7Znq3TSD5FZk28VMEYA72TsLYMtYtdr0+PfpVhC53v9PG81WALDNHcW43CC16F3iGko1UJZs1aiSxNxx4nMY77tTgW5VOlcFzNa6FZLIrCvLN44SwPuWCla/z8lzry2FODCDRv3ufPxxiNAhzKqSOpA+KQTeJXDKzzZRIh8RZrNbLDPCogQ0esQlPSOZH1fFZ88k3vV0kn8/DJJTBRu0m3G83+aL609dK2dXX6uvgzxnYb+Kbow9y+bhwO36II/k2B7M4DQEm1PZ5LpW2JUVTricanpQam8czwjGsMvZK0ZV3XZtZa8+jhZI5CSgCPnJMayrYfzHLTPPXByFTNFDcARdU9nEEVGPVgdUZJIzgi4K3ZA0hrbmNKkUwzVZZhhHy32XW6gkF7Oq8EUbPNYoGBQBIHEbAKVpZdzZqrPcumXMOppw8FMBMMO/dq0g0036neMu9aYVsdimlinyRZDTdplIqTwhQZ8RrxcLHR/+tDXIW4furT4ox46v5FxZqZl0UxQoErkwbtpFm52wSwlV1LPay9g/j7YPxfHeS293xKaFn2HHIFhfgoKJzqcm7O/e0rwM9hZGs7Dw0afSXEn9asAdxyauLY2aj8Nb/hbuGGjIJtt2ey9baj0ndXTAHRbBXJPwFCH5GHJpfmF58v4jyTq44+OuittVdzcv3yYE/Pl+1iyz/h9v1n7z06yXZZb2aGGMpgmie3m8cEmjmtdSqyOGwX7we85sEd2TmTnWAWOfSrGXmxZV1a+uM5HRlAQMn8CdkhKCmDwUgVkDGC2QBE++lApeZyf83CKsU6SMWirB98o1nzZgsAo2GDQkHmEEjAy/QGTt+DKvc9fIR9LwgqJBfkoWISFp9w6oCzZY8D4t9tXfEI0/VgnYzk4CCIvezWcbCORO1BzGrrDZqyHHhZt2u29EdxAgLCZleuS2xhGH2M61Xn3jd/crHgX4bIQ42+AsRVoTE2WcVkLkz8mG31Z9PdD+0C7tbwM8Q7rzbbSvdyAYoqOPO0B2TSzA8XUsCMquah3BNdEwGIgp9itWOECdYLXOzxg+kDG04huT9ZqPwObleRGG22FCNSSOZnpkZkugCzW+58yr/+orQZv9q6idYLj0CP6v12Bf7dl9aWb+vjwyNuujz894vfrv319ftbBNQ3o19c4ta3rlFBHU4S0DSIWXbLtAg5ZLB8MEzXfb4Ii4uVHFwkEx3YJLb10sxbM/eWeYBg8OClTTCkXMJAkGO25S7zHCfQtEfvtVsc5tgxIIfjBILgjeBKurvTq116CSlVXs2s9isDVW83mYtlSGx4M4AAAAdgSURBVKAqmMosg6NGN2XrIexu552frQkl79l9e9yep1VOVmyhMJ7Bfq4Jp/qd2e8cHxWDl0vrSfxJ8kOnw9eIt+1hsetNPQa5dQITvN9f79NXBM1g3ECQtmeFLkLNz4yILg0YjYYVIMGaZnwotg8H9awnP7najuM1nV6BWdcxO9ruC5iWgIKKA459hiCKgbF/kzFC8MMH0AiBXI0KAY5cvm1f7tzHv5JMlisb1yDGbU2iS8n/DCTwDk9j1wr8tTb8FOl8sqQVXc1WYCF0p2DQT8AWJzaOuEbot2Vttj5ex9dnW55/u/63q67fb+MaYYuJbYxtG31Ey9rYcpszS35aEngEybGreOIIxk5sI4AeEYbs2myGnLXjzUdblrasTZldQgqi7SSbIx2pqPkqlYFLC6ldmqb3X4ZhYlaSdMU2ZA5FNfXXRtLN+GAGutuYZMfE8wnxWVsy01J1a00NBcgTllZvyeJRKAamAlAImNmaiv18AgurUqfSnpx2Ci2jiPUc05zdb3x+Ns2Bqu3Ls/cu18gqUCKWNi5Puv5f2aK3a4wB13ZVbdeHczSfblZTgqRBCKKgviLXieYkFBERoSsGB4QNpJtj1AiL+1NzPq8fXufuqhjASR9FIBc0d/v0L3fuTEJF8q2s0ZzpN7/XMDpgdvppFZuJNLfRI8iTgvhHjDIw7SS1Cepb4hJQzHBONtIGj23mLif13Hmb9yt11vz4/CN314TmrYHwiKecmq2LAKPH/8tqPvzty8Py+PWiC9fHR+m6XbfYtmiLrauiD4y+DQHBagB0CLWALIs2INb9VOfbzQPckUdMEaQt6qm+udEXaPRuhNj80Ze2NrMly/2slzc+y0nLEa7fHxBNcxXPu6tA9keTwhCWo7HdKG3mTpMoRAB8cffWFmuQkWkWVOW51XPwHATMQWpn4hpnGpGUZdQfNYYpkGlBKBtuaC4QpvN3v2fC5J9oX+FZiDCpwfuw1joVM7u1341Gd9rTuHU0jYrAE414/A0vA+a6bUODPt7eNucMg35+3jh/rfjIiuQBegmPC6EhGNwp4kkRgdC1CBvNsgL8BOnuvyddmV+e4zaKDulVf595UPNw9TAF4U09vDhZbBHGyEouZCI6D5wx5BZAEGFgYPGNrSMQApbYxgPEam8wCG/aMoQE0XsSWIaHDEHjgKHKoJNIk4fzRg8Q/eF6+/LNvvYZ5ELOLlEbMIV8HqEujSHJOg0bJ7KqTjJgtuCH8Zw3EuDRrXzfikon8q46ZJXFVtwIBO0KAnRExumwguhdeHW/XJ6+Pj4+rjT0t6dHxbgNfWvXVzNeTH1UZ/zEkkMGsYVo6vDNh0xaqvz+yN/P4fS1kYOOCDK78YRaxdWyj/x2u8ma2fpwscXNG0UHs4KNQHZ2ElP9w0hXiFBkwwhjOIa8gncEEAEzYFEYR8SgWQxrm2Ezr56xJEePMW7Sar4sPtTMlL6/RFfvNdW0GIrVKSj/M0qMAKSwKP4FQGZngYyXV0FktnuQlh7OIevI5Uybn6IfMOuJ7OSCI+AjdUJON9GcCUnk1O+9ml6qfs8K12ussO/XZVwz2hl9ICIeW3vaZA/Ly6stGogeMgIaIk0DolUZNXK01YTwkjwapSADhjBXwBGwGwm48TYNfcOQmb5o9DGGfiBnqD4DNRYq9VFmULK4jcgBP4KYOZqUXYV4qgXQHmLaeWEF7HUwBY6Q3zuPugDhYZBTSnYEEBERJ+ZeAjJ9qh3/kWuMkSNHZ0LsuO7+0CQwdMf1/hPj/qcPo7/498+fUy/hbX14fHx4/NL4f9p6MVv4tNxe+u2tQ0JrRDZHERqyMMxqFNI7/036tRezf+AThwahGFC7ku7mzX8HG002eILg2ONVGuUJFDCQgD75n6UleczNCwU5pr0sTr+AKmpR6CfZ3IAL00eZwyqsUk8s4139BLJThKSP74HzoeFS4IVDghSeKWbzIvacYo7vfALulYgAFJhlyLm84iT7H/gI6SnBrI2fb5sCyvaAMUaMbrDtDy4Lbr09AdToR1BLp8X9zCQXvMD5f8CUq2mWeMpoOZuEr6EYQ/GDRjazHBH2y2Da9Oj2q010HBXPyq/ZnwiZQyJ3yd+flAWNCrPt/uV88pzjs39zhKJaeGXMBRWZxfTc/9wJSMLBvnBjjFC2xK4sE8rXme7kPFL0O+9l9zY/rs1fxyD/88rqghFD4+3FwfWyWiyXh6U1a8/teRlXfBs9QOgSiDGGjDnHe8Yy9m9WHktNNgw+fw993kdBnpEkXGts+RvdWmu2AigO6WyfLGgy7KZDIIKnlNB0uJnZfioiPPbkf5imooIJqOmr3UhtpLk3LiYRpCNpS44gZdhYWy0gzj0fq/dT8iLy3ZmWHBJgpgBCzjBMGgExeVAV6DwJpDSH0s3lVcVAAFT6NWsEhF1kQ4hhbi1+voVlAZSkGD3G2KTXP9gW3Prly4shej861uVinap87pby8Ah472nfFcUpP1DsG84HjyHppgHdyEbDLyTpkJ5Tjc3/B33FlRMLT7chAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "key3.convert(\"L\")" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [], + "source": [ + "#key3 = key3.thumbnail((64, 64))" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "key3 is None" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": {}, + "outputs": [], + "source": [ + "from PIL import ImageDraw" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [], + "source": [ + "key3.save(\"keypunch_gray.png\")" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\u001b[0;31mSignature:\u001b[0m \u001b[0mkey2\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mconvert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmode\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mmatrix\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mdither\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;32mNone\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpalette\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m0\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mcolors\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m256\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", + "\u001b[0;31mDocstring:\u001b[0m\n", + "Returns a converted copy of this image. For the \"P\" mode, this\n", + "method translates pixels through the palette. If mode is\n", + "omitted, a mode is chosen so that all information in the image\n", + "and the palette can be represented without a palette.\n", + "\n", + "The current version supports all possible conversions between\n", + "\"L\", \"RGB\" and \"CMYK.\" The **matrix** argument only supports \"L\"\n", + "and \"RGB\".\n", + "\n", + "When translating a color image to greyscale (mode \"L\"),\n", + "the library uses the ITU-R 601-2 luma transform::\n", + "\n", + " L = R * 299/1000 + G * 587/1000 + B * 114/1000\n", + "\n", + "The default method of converting a greyscale (\"L\") or \"RGB\"\n", + "image into a bilevel (mode \"1\") image uses Floyd-Steinberg\n", + "dither to approximate the original image luminosity levels. If\n", + "dither is NONE, all values larger than 128 are set to 255 (white),\n", + "all other values to 0 (black). To use other thresholds, use the\n", + ":py:meth:`~PIL.Image.Image.point` method.\n", + "\n", + "When converting from \"RGBA\" to \"P\" without a **matrix** argument,\n", + "this passes the operation to :py:meth:`~PIL.Image.Image.quantize`,\n", + "and **dither** and **palette** are ignored.\n", + "\n", + ":param mode: The requested mode. See: :ref:`concept-modes`.\n", + ":param matrix: An optional conversion matrix. If given, this\n", + " should be 4- or 12-tuple containing floating point values.\n", + ":param dither: Dithering method, used when converting from\n", + " mode \"RGB\" to \"P\" or from \"RGB\" or \"L\" to \"1\".\n", + " Available methods are NONE or FLOYDSTEINBERG (default).\n", + " Note that this is not used when **matrix** is supplied.\n", + ":param palette: Palette to use when converting from mode \"RGB\"\n", + " to \"P\". Available palettes are WEB or ADAPTIVE.\n", + ":param colors: Number of colors to use for the ADAPTIVE palette.\n", + " Defaults to 256.\n", + ":rtype: :py:class:`~PIL.Image.Image`\n", + ":returns: An :py:class:`~PIL.Image.Image` object.\n", + "\u001b[0;31mFile:\u001b[0m ~/.local/lib/python3.7/site-packages/PIL/Image.py\n", + "\u001b[0;31mType:\u001b[0m method\n" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "key2.convert?" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "ename": "ModuleNotFoundError", + "evalue": "No module named 'aalib'", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0;32mimport\u001b[0m \u001b[0maalib\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'aalib'" + ] + } + ], + "source": [ + "import aalib" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import aalib" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'aalib' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mscreen\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0maalib\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mAsciiScreen\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mwidth\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m640\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mheight\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;36m480\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'aalib' is not defined" + ] + } + ], + "source": [ + "screen = aalib.AsciiScreen(width=640, height=480)" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [], + "source": [ + "f = urlopen('https://www.python.org/static/favicon.ico')" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "im = Image.open(f)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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\n", + "text/plain": [ + "" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "im" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'screen' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mim\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mim\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mconvert\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'L'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mresize\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mscreen\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mvirtual_size\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'screen' is not defined" + ] + } + ], + "source": [ + "im = im.convert('L').resize(screen.virtual_size)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "im" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "screen.virtual_size" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "screen.put_image((0, 0), im)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print (screen.render())" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "resized = key2.convert(\"L\").resize(screen.virtual_size)\n", + "screen.put_image((0, 0), resized)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "screen.render()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "resized" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/working-with-images/img/a.jpg b/working-with-images/img/a.jpg new file mode 100644 index 0000000..208e331 Binary files /dev/null and b/working-with-images/img/a.jpg differ diff --git a/working-with-images/img/cyber.jpg b/working-with-images/img/cyber.jpg new file mode 100644 index 0000000..2c607fe Binary files /dev/null and b/working-with-images/img/cyber.jpg differ diff --git a/working-with-images/img/keypunch.png b/working-with-images/img/keypunch.png new file mode 100644 index 0000000..963813e Binary files /dev/null and b/working-with-images/img/keypunch.png differ diff --git a/working-with-images/img/keypunch_gray.png b/working-with-images/img/keypunch_gray.png new file mode 100644 index 0000000..c5aa02f Binary files /dev/null and b/working-with-images/img/keypunch_gray.png differ diff --git a/working-with-images/img/pillow_imagedraw.gif b/working-with-images/img/pillow_imagedraw.gif new file mode 100644 index 0000000..c0c5865 Binary files /dev/null and b/working-with-images/img/pillow_imagedraw.gif differ diff --git a/pillow_imagedraw.ipynb b/working-with-images/pillow_imagedraw.ipynb similarity index 98% rename from pillow_imagedraw.ipynb rename to working-with-images/pillow_imagedraw.ipynb index bce95f5..ab965a0 100644 --- a/pillow_imagedraw.ipynb +++ b/working-with-images/pillow_imagedraw.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "metadata": {}, "outputs": [], "source": [ diff --git a/NLTKing.ipynb b/working-with-language/NLTKing.ipynb similarity index 100% rename from NLTKing.ipynb rename to working-with-language/NLTKing.ipynb diff --git a/working-with-language/WordNet-synsets.ipynb b/working-with-language/WordNet-synsets.ipynb new file mode 100644 index 0000000..4ed7c88 --- /dev/null +++ b/working-with-language/WordNet-synsets.ipynb @@ -0,0 +1,433 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Wordnet" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "import random\n", + "import nltk\n", + "from nltk.corpus import wordnet" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# You only need to run this once\n", + "# nltk.download('wordnet')" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Access to hardware functions is limited not only through the software application, but through the syntax the software application may use for storing and transmitting the information it processes.\n", + "\n" + ] + } + ], + "source": [ + "lines = open('../txt/language.txt').readlines()\n", + "sentence = random.choice(lines)\n", + "print(sentence)" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "----------\n", + "word: Access\n", + "synset: Synset('entree.n.02')\n", + "lemmas: \n", + "synset: Synset('access.n.02')\n", + "lemmas: \n", + "synset: Synset('access.n.03')\n", + "lemmas: \n", + "synset: Synset('access.n.04')\n", + "lemmas: \n", + "synset: Synset('access.n.05')\n", + "lemmas: \n", + "synset: Synset('access.n.06')\n", + "lemmas: \n", + "synset: Synset('access.v.01')\n", + "lemmas: \n", + "synset: Synset('access.v.02')\n", + "lemmas: \n", + "----------\n", + "word: to\n", + "----------\n", + "word: hardware\n", + "synset: Synset('hardware.n.01')\n", + "lemmas: \n", + "synset: Synset('hardware.n.02')\n", + "lemmas: \n", + "synset: Synset('hardware.n.03')\n", + "lemmas: \n", + "----------\n", + "word: functions\n", + "synset: Synset('function.n.01')\n", + "lemmas: \n", + "synset: Synset('function.n.02')\n", + "lemmas: \n", + "synset: Synset('function.n.03')\n", + "lemmas: \n", + "synset: Synset('function.n.04')\n", + "lemmas: \n", + "synset: Synset('function.n.05')\n", + "lemmas: \n", + "synset: Synset('affair.n.03')\n", + "lemmas: \n", + "synset: Synset('routine.n.03')\n", + "lemmas: \n", + "synset: Synset('function.v.01')\n", + "lemmas: \n", + "synset: Synset('serve.v.01')\n", + "lemmas: \n", + "synset: Synset('officiate.v.02')\n", + "lemmas: \n", + "----------\n", + "word: is\n", + "synset: Synset('be.v.01')\n", + "lemmas: \n", + "synset: Synset('be.v.02')\n", + "lemmas: \n", + "synset: Synset('be.v.03')\n", + "lemmas: \n", + "synset: Synset('exist.v.01')\n", + "lemmas: \n", + "synset: Synset('be.v.05')\n", + "lemmas: \n", + "synset: Synset('equal.v.01')\n", + "lemmas: \n", + "synset: Synset('constitute.v.01')\n", + "lemmas: \n", + "synset: Synset('be.v.08')\n", + "lemmas: \n", + "synset: Synset('embody.v.02')\n", + "lemmas: \n", + "synset: Synset('be.v.10')\n", + "lemmas: \n", + "synset: Synset('be.v.11')\n", + "lemmas: \n", + "synset: Synset('be.v.12')\n", + "lemmas: \n", + "synset: Synset('cost.v.01')\n", + "lemmas: \n", + "----------\n", + "word: limited\n", + "synset: Synset('express.n.02')\n", + "lemmas: \n", + "synset: Synset('restrict.v.03')\n", + "lemmas: \n", + "synset: Synset('limit.v.02')\n", + "lemmas: \n", + "synset: Synset('specify.v.02')\n", + "lemmas: \n", + "synset: Synset('limited.a.01')\n", + "lemmas: \n", + "synset: Synset('circumscribed.s.01')\n", + "lemmas: \n", + "synset: Synset('limited.s.03')\n", + "lemmas: \n", + "synset: Synset('limited.s.04')\n", + "lemmas: \n", + "synset: Synset('limited.s.05')\n", + "lemmas: \n", + "synset: Synset('limited.s.06')\n", + "lemmas: \n", + "synset: Synset('limited.s.07')\n", + "lemmas: \n", + "----------\n", + "word: not\n", + "synset: Synset('not.r.01')\n", + "lemmas: \n", + "----------\n", + "word: only\n", + "synset: Synset('lone.s.03')\n", + "lemmas: \n", + "synset: Synset('alone.s.03')\n", + "lemmas: \n", + "synset: Synset('merely.r.01')\n", + "lemmas: \n", + "synset: Synset('entirely.r.02')\n", + "lemmas: \n", + "synset: Synset('only.r.03')\n", + "lemmas: \n", + "synset: Synset('only.r.04')\n", + "lemmas: \n", + "synset: Synset('only.r.05')\n", + "lemmas: \n", + "synset: Synset('only.r.06')\n", + "lemmas: \n", + "synset: Synset('only.r.07')\n", + "lemmas: \n", + "----------\n", + "word: through\n", + "synset: Synset('done.s.01')\n", + "lemmas: \n", + "synset: Synset('through.s.02')\n", + "lemmas: \n", + "synset: Synset('through.r.01')\n", + "lemmas: \n", + "synset: Synset('through.r.02')\n", + "lemmas: \n", + "synset: Synset('through.r.03')\n", + "lemmas: \n", + "synset: Synset('through.r.04')\n", + "lemmas: \n", + "synset: Synset('through.r.05')\n", + "lemmas: \n", + "----------\n", + "word: the\n", + "----------\n", + "word: software\n", + "synset: Synset('software.n.01')\n", + "lemmas: \n", + "----------\n", + "word: application,\n", + "----------\n", + "word: but\n", + "synset: Synset('merely.r.01')\n", + "lemmas: \n", + "----------\n", + "word: through\n", + "synset: Synset('done.s.01')\n", + "lemmas: \n", + "synset: Synset('through.s.02')\n", + "lemmas: \n", + "synset: Synset('through.r.01')\n", + "lemmas: \n", + "synset: Synset('through.r.02')\n", + "lemmas: \n", + "synset: Synset('through.r.03')\n", + "lemmas: \n", + "synset: Synset('through.r.04')\n", + "lemmas: \n", + "synset: Synset('through.r.05')\n", + "lemmas: \n", + "----------\n", + "word: the\n", + "----------\n", + "word: syntax\n", + "synset: Synset('syntax.n.01')\n", + "lemmas: \n", + "synset: Synset('syntax.n.02')\n", + "lemmas: \n", + "synset: Synset('syntax.n.03')\n", + "lemmas: \n", + "----------\n", + "word: the\n", + "----------\n", + "word: software\n", + "synset: Synset('software.n.01')\n", + "lemmas: \n", + "----------\n", + "word: application\n", + "synset: Synset('application.n.01')\n", + "lemmas: \n", + "synset: Synset('application.n.02')\n", + "lemmas: \n", + "synset: Synset('application.n.03')\n", + "lemmas: \n", + "synset: Synset('application.n.04')\n", + "lemmas: \n", + "synset: Synset('lotion.n.02')\n", + "lemmas: \n", + "synset: Synset('application.n.06')\n", + "lemmas: \n", + "synset: Synset('application.n.07')\n", + "lemmas: \n", + "----------\n", + "word: may\n", + "synset: Synset('may.n.01')\n", + "lemmas: \n", + "synset: Synset('whitethorn.n.01')\n", + "lemmas: \n", + "----------\n", + "word: use\n", + "synset: Synset('use.n.01')\n", + "lemmas: \n", + "synset: Synset('function.n.02')\n", + "lemmas: \n", + "synset: Synset('use.n.03')\n", + "lemmas: \n", + "synset: Synset('consumption.n.03')\n", + "lemmas: \n", + "synset: Synset('habit.n.02')\n", + "lemmas: \n", + "synset: Synset('manipulation.n.01')\n", + "lemmas: \n", + "synset: Synset('use.n.07')\n", + "lemmas: \n", + "synset: Synset('use.v.01')\n", + "lemmas: \n", + "synset: Synset('use.v.02')\n", + "lemmas: \n", + "synset: Synset('use.v.03')\n", + "lemmas: \n", + "synset: Synset('use.v.04')\n", + "lemmas: \n", + "synset: Synset('practice.v.04')\n", + "lemmas: \n", + "synset: Synset('use.v.06')\n", + "lemmas: \n", + "----------\n", + "word: for\n", + "----------\n", + "word: storing\n", + "synset: Synset('store.v.01')\n", + "lemmas: \n", + "synset: Synset('store.v.02')\n", + "lemmas: \n", + "----------\n", + "word: and\n", + "----------\n", + "word: transmitting\n", + "synset: Synset('transmission.n.01')\n", + "lemmas: \n", + "synset: Synset('convey.v.03')\n", + "lemmas: \n", + "synset: Synset('impart.v.03')\n", + "lemmas: \n", + "synset: Synset('air.v.03')\n", + "lemmas: \n", + "synset: Synset('transmit.v.04')\n", + "lemmas: \n", + "----------\n", + "word: the\n", + "----------\n", + "word: information\n", + "synset: Synset('information.n.01')\n", + "lemmas: \n", + "synset: Synset('information.n.02')\n", + "lemmas: \n", + "synset: Synset('information.n.03')\n", + "lemmas: \n", + "synset: Synset('data.n.01')\n", + "lemmas: \n", + "synset: Synset('information.n.05')\n", + "lemmas: \n", + "----------\n", + "word: it\n", + "synset: Synset('information_technology.n.01')\n", + "lemmas: \n", + "----------\n", + "word: processes.\n" + ] + } + ], + "source": [ + "words = sentence.split()\n", + "for word in words:\n", + " print('----------')\n", + " print('word:', word)\n", + " for synset in wordnet.synsets(word):\n", + " print('synset:', synset)\n", + " print('lemmas:', synset.lemma_names)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "for lemma in wordnet.lemmas('car'):\n", + " print(lemma.name)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "\n", + "\n", + "\n", + "\n" + ] + } + ], + "source": [ + "for synset in wordnet.synsets('car'):\n", + " print(synset.examples)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/nltk-frequency-distribution.ipynb b/working-with-language/nltk-frequency-distribution.ipynb similarity index 100% rename from nltk-frequency-distribution.ipynb rename to working-with-language/nltk-frequency-distribution.ipynb diff --git a/working-with-language/nltk-pos-tagger.ipynb b/working-with-language/nltk-pos-tagger.ipynb new file mode 100644 index 0000000..888ff5c --- /dev/null +++ b/working-with-language/nltk-pos-tagger.ipynb @@ -0,0 +1,510 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# NLTK - Part of Speech" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import nltk\n", + "import random" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lines = open('../txt/language.txt').readlines()\n", + "sentence = random.choice(lines)\n", + "print(sentence)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Tokens" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "tokens = nltk.word_tokenize(sentence)\n", + "print(tokens)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Part of Speech \"tags\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "tagged = nltk.pos_tag(tokens)\n", + "print(tagged)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Now, you could select for example all the type of **verbs**:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "selection = []\n", + "\n", + "for word, tag in tagged:\n", + " if 'VB' in tag:\n", + " selection.append(word)\n", + "\n", + "print(selection)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Where do these tags come from?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> An off-the-shelf tagger is available for English. It uses the Penn Treebank tagset.\n", + "\n", + "From: http://www.nltk.org/api/nltk.tag.html#module-nltk.tag" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "> NLTK provides documentation for each tag, which can be queried using the tag, e.g. nltk.help.upenn_tagset('RB').\n", + "\n", + "From: http://www.nltk.org/book_1ed/ch05.html" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "nltk.help.upenn_tagset('PRP')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "------------" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "An alphabetical list of part-of-speech tags used in the Penn Treebank Project ([link](https://www.ling.upenn.edu/courses/Fall_2003/ling001/penn_treebank_pos.html)):\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
\n", + "
Number
\n", + "
\n", + "
Tag
\n", + "
\n", + "
Description
\n", + "
1. CC Coordinating conjunction
2. CD Cardinal number
3. DT Determiner
4. EX Existential there
5. FW Foreign word
6. IN Preposition or subordinating conjunction
7. JJ Adjective
8. JJR Adjective, comparative
9. JJS Adjective, superlative
10. LS List item marker
11. MD Modal
12. NN Noun, singular or mass
13. NNS Noun, plural
14. NNP Proper noun, singular
15. NNPS Proper noun, plural
16. PDT Predeterminer
17. POS Possessive ending
18. PRP Personal pronoun
19. PRP\\$ Possessive pronoun
20. RB Adverb
21. RBR Adverb, comparative
22. RBS Adverb, superlative
23. RP Particle
24. SYM Symbol
25. TO to
26. UH Interjection
27. VB Verb, base form
28. VBD Verb, past tense
29. VBG Verb, gerund or present participle
30. VBN Verb, past participle
31. VBP Verb, non-3rd person singular present
32. VBZ Verb, 3rd person singular present
33. WDT Wh-determiner
34. WP Wh-pronoun
35. WP$ Possessive wh-pronoun
36. WRB Wh-adverb \n", + "
" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## A telling/tricky case\n", + "It's important to realize that POS tagging is not a fixed property of a word -- but depends on the context of each word. The NLTK book gives an example of [homonyms](http://www.nltk.org/book_1ed/ch05.html#using-a-tagger) -- words that are written the same, but are actually pronounced differently and have different meanings depending on their use." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "text = nltk.word_tokenize(\"They refuse to permit us to obtain the refuse permit\")\n", + "nltk.pos_tag(text)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "From the book:\n", + "\n", + "> Notice that refuse and permit both appear as a present tense verb (VBP) and a noun (NN). E.g. refUSE is a verb meaning \"deny,\" while REFuse is a noun meaning \"trash\" (i.e. they are not homophones). Thus, we need to know which word is being used in order to pronounce the text correctly. (For this reason, text-to-speech systems usually perform POS-tagging.)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Applying to an entire text" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "language = open('../txt/language.txt').read()\n", + "tokens = nltk.word_tokenize(language)\n", + "tagged = nltk.pos_tag(tokens)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "tagged" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "words = \"in the beginning was heaven and earth and the time of the whatever\".split()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "words" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "words.index(\"the\")" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "IN\n", + "1 the\n", + "BEGINNING\n", + "WAS\n", + "HEAVEN\n", + "AND\n", + "EARTH\n", + "AND\n", + "8 the\n", + "TIME\n", + "OF\n", + "11 the\n", + "WHATEVER\n" + ] + } + ], + "source": [ + "for i, word in enumerate(words):\n", + " if word == \"the\":\n", + " print (i, word)\n", + " else:\n", + " print (word.upper())" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'VB'" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import random \n", + "\n", + "words = {}\n", + "words[\"VB\"] = []\n", + "\n", + "for word in nltk.word_tokenize(\"in the beginning was heaven and earth and the time of the whatever\"):\n", + " words[\"VB\"].append(word)\n", + " \n", + "random.choice(words[\"VB\"])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +} diff --git a/nltk-similar-words.ipynb b/working-with-language/nltk-similar-words.ipynb similarity index 98% rename from nltk-similar-words.ipynb rename to working-with-language/nltk-similar-words.ipynb index 17e5b95..56dff61 100644 --- a/nltk-similar-words.ipynb +++ b/working-with-language/nltk-similar-words.ipynb @@ -29,7 +29,7 @@ "metadata": {}, "outputs": [], "source": [ - "txt = open('txt/language.txt').read()" + "txt = open('../txt/language.txt').read()" ] }, { diff --git a/working-with-language/tfidf.ipynb b/working-with-language/tfidf.ipynb new file mode 100644 index 0000000..9711ec7 --- /dev/null +++ b/working-with-language/tfidf.ipynb @@ -0,0 +1,255 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# NLTK - Term Frequency Inverse Document Frequency" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "import os, nltk\n", + "from math import log" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Making a corpus of txt files" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [], + "source": [ + "corpus = {}\n", + "folder = '../txt/words-for-the-future/'\n", + "files = os.listdir(folder)\n", + "for f in files:\n", + " if '.txt' in f:\n", + " txt = open(f'{ folder }/{ f }').read()\n", + " words = nltk.word_tokenize(txt)\n", + " name = f.replace('.txt','')\n", + " corpus[name] = words" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'RESURGENCE': ['RESURGENCE', '|', 'Isabelle', 'Stengers', '“', 'We', 'are', 'the', 'grandchildren', 'of', 'the', 'witches', 'you', 'were', 'not', 'able', 'to', 'burn', '”', '–', 'Tish', 'Thawer', 'I', 'will', 'take', 'this', 'motto', ',', 'which', 'has', 'flourished', 'in', 'recent', 'protests', 'in', 'the', 'United', 'States', ',', 'as', 'the', 'defiant', 'cry', 'of', 'resurgence', '–', 'refusing', 'to', 'define', 'the', 'past', 'as', 'dead', 'and', 'buried', '.', 'Not', 'only', 'were', 'the', 'witches', 'killed', 'all', 'over', 'Europe', ',', 'but', 'their', 'memory', 'has', 'been', 'buried', 'by', 'the', 'many', 'retrospective', 'analyses', 'which', 'triumphantly', 'concluded', 'that', 'their', 'power', 'and', 'practices', 'were', 'a', 'matter', 'of', 'imaginary', 'collective', 'construction', 'affecting', 'both', 'the', 'victims', 'and', 'the', 'inquisitors', '.', 'Eco-feminists', 'have', 'proposed', 'a', 'very', 'different', 'understanding', 'of', 'the', '‘', 'burning', 'times.', '’', 'They', 'associate', 'it', 'with', 'the', 'destruction', 'of', 'rural', 'cultures', 'and', 'their', 'old', 'rites', ',', 'with', 'the', 'violent', 'appropriation', 'of', 'the', 'commons', ',', 'with', 'the', 'rule', 'of', 'a', 'law', 'that', 'consecrated', 'the', 'unquestionable', 'rights', 'of', 'the', 'owner', ',', 'and', 'with', 'the', 'invention', 'of', 'the', 'modern', 'workers', 'who', 'can', 'only', 'sell', 'their', 'labour-power', 'on', 'the', 'market', 'as', 'a', 'commodity', '.', 'Listening', 'to', 'the', 'defiant', 'cry', 'of', 'the', 'women', 'who', 'name', 'themselves', 'granddaughters', 'of', 'the', 'past', 'witches', ',', 'I', 'will', 'go', 'further', '.', 'I', 'will', 'honour', 'the', 'vision', 'which', ',', 'since', 'the', 'Reagan', 'era', ',', 'has', 'sustained', 'reclaiming', 'witches', 'such', 'as', 'Starhawk', ',', 'who', 'associate', 'their', 'activism', 'with', 'the', 'memory', 'of', 'a', 'past', 'earth-based', 'religion', 'of', 'the', 'goddess', '-', 'who', 'now', '‘', 'returns.', '’', 'Against', 'the', 'ongoing', 'academic', 'critical', 'judgement', ',', 'I', 'claim', 'that', 'the', 'witches', '’', 'resurgence', ',', 'their', 'chant', 'about', 'the', 'goddess', '’', 'return', ',', 'and', 'inseparably', 'their', 'return', 'to', 'the', 'goddess', ',', 'should', 'not', 'be', 'taken', 'as', 'a', '‘', 'regression.', '’', 'Given', 'the', 'threatening', 'unknown', 'our', 'future', 'is', 'facing', ',', 'the', 'question', 'of', 'academic', 'judgements', 'may', 'seem', 'like', 'a', 'rather', 'futile', 'one', '.', 'Very', 'few', ',', 'including', 'academics', 'themselves', ',', 'among', 'those', 'who', 'disqualify', 'the', 'resurgence', 'of', 'witches', 'as', 'regressive', ',', 'are', 'effectively', 'forced', 'to', 'think', 'by', 'this', 'future', ',', 'which', 'the', 'witches', 'resolutely', 'address', '.', 'They', 'are', 'too', 'busy', 'living', 'up', 'to', 'the', 'relentless', 'neoliberal', 'demands', 'which', 'they', 'have', 'now', 'to', 'satisfy', 'in', 'order', 'to', 'survive', '.', 'However', ',', 'if', 'there', 'is', 'something', 'to', 'be', 'learned', 'from', 'the', 'past', ',', 'it', 'may', 'well', 'be', 'the', 'way', 'in', 'which', 'defending', 'the', 'victims', 'of', 'eradicative', 'operations', 'has', 'so', 'often', 'deemed', 'futile', '.', 'In', 'one', 'way', 'or', 'another', ',', 'these', 'victims', 'deserved', 'their', 'fate', ',', 'or', 'this', 'fate', 'was', 'the', 'price', 'to', 'be', 'unhappily', 'paid', 'for', 'progress', '.', '“', 'Creative', 'destructions', ',', '”', 'economists', 'croon', '.', 'What', 'we', 'have', 'now', 'discovered', 'is', 'that', 'these', 'destructions', 'come', 'with', 'cascading', 'and', 'interconnecting', 'consequences', '.', 'Worlds', 'are', 'destroyed', 'and', 'no', 'such', 'destruction', 'is', 'ever', 'deserved', '.', 'This', 'is', 'why', 'I', 'will', 'address', 'the', 'academic', 'world', ',', 'which', ',', 'in', 'turns', ',', 'is', 'facing', 'its', 'own', 'destruction', '.', 'Probably', ',', 'because', 'it', 'is', 'the', 'one', 'I', 'know', 'best', ',', 'also', 'because', 'of', 'its', 'specific', 'responsibility', 'in', 'the', 'formation', 'of', 'the', 'generations', 'which', 'will', 'have', 'to', 'make', 'their', 'way', 'in', 'the', 'future', '.', 'Resurgence', 'often', 'refers', 'to', 'the', 'reappearance', 'of', 'something', 'defined', 'as', 'deleterious', '–', 'e.g', '.', 'an', 'agricultural', 'pest', 'or', 'an', 'epidemic', 'vector', '–', 'after', 'a', 'seemingly', 'successful', 'operation', 'of', 'eradication', '.', 'It', 'may', 'also', 'refer', 'to', 'the', 'reworlding', 'of', 'a', 'landscape', 'after', 'a', 'natural', 'catastrophe', 'or', 'a', 'devastating', 'industrial', 'exploitation', '.', 'Today', ',', 'such', 'a', 'reworlding', 'is', 'no', 'longer', 'understood', 'by', 'researchers', 'in', 'ecology', 'in', 'terms', 'of', 'the', 'restoration', 'of', 'some', 'stable', 'equilibrium', '.', 'Ecology', 'has', 'succeeded', 'in', 'freeing', 'itself', 'from', 'the', 'association', 'of', 'what', 'we', 'call', '“', 'natural', '”', 'with', 'an', 'ordered', 'reality', 'verifying', 'scientific', 'generalization', '.', 'In', 'contrast', ',', 'academic', 'judgements', 'entailing', 'the', 'idea', 'of', 'regression', 'still', 'imply', 'what', 'has', 'been', 'called', '“', 'The', 'Ascent', 'of', 'Man', ':', '”', '“', 'Man', '”', 'irrevocably', 'turning', 'his', 'back', 'on', 'past', 'attachments', ',', 'beliefs', ',', 'and', 'scruples', ',', 'affirming', 'his', 'destiny', 'of', 'emancipation', 'from', 'traditions', 'and', 'the', 'order', 'of', 'nature', '.', 'Even', 'critical', 'humanities', 'including', 'feminist', 'studies', ',', 'whatever', 'their', 'deconstruction', 'of', 'the', 'imperialist', ',', 'sexist', ',', 'and', 'colonialist', 'character', 'of', 'the', '“', 'Ascent', 'of', 'Man', '”', 'motto', ',', 'still', 'do', 'not', 'know', 'how', 'to', 'disentangle', 'themselves', 'from', 'the', 'reference', 'to', 'a', 'rational', 'progress', 'which', 'opposes', 'the', 'possibility', 'of', 'taking', 'seriously', 'the', 'contemporary', 'resurgence', 'of', 'what', 'does', 'not', 'conform', 'to', 'a', 'materialist', ',', 'that', 'is', ',', 'secularist', ',', 'position', '.', 'If', 'resurgence', 'is', 'a', 'word', 'for', 'the', 'future', ',', 'it', 'is', 'because', 'we', 'may', 'use', 'it', 'in', 'the', 'way', 'the', 'granddaughters', 'of', 'the', 'witches', 'do', ':', 'as', 'a', 'challenge', 'to', 'eradicative', 'operations', ',', 'with', 'which', 'what', 'we', 'call', 'materialism', 'and', 'secularism', 'are', 'irreducibly', 'associated', ',', 'are', 'still', 'going', 'on', 'today', '.', 'It', 'is', 'quite', 'possible', 'to', 'inherit', 'the', 'struggle', 'against', 'the', 'oppressive', 'character', 'of', 'religious', 'institutions', 'without', 'forgetting', 'what', 'came', 'together', 'with', 'materialism', 'and', 'secularism', ';', 'the', 'destruction', 'of', 'what', 'opposed', 'the', 'transition', 'to', 'capitalism', 'both', 'in', 'Europe', 'and', 'in', 'the', 'colonized', 'world', '.', '[', '1', ']', 'It', 'is', 'quite', 'possible', 'to', 'resist', 'the', 'idea', 'that', 'what', 'was', 'destroyed', 'is', 'irrevocably', 'lost', 'and', 'that', 'we', 'should', 'have', 'the', 'courage', 'to', 'accept', 'this', 'loss', '.', 'Certainly', 'it', 'can', 'not', 'be', 'a', 'question', 'of', 'resurrecting', 'the', 'past', '.', 'What', 'eventually', 'returns', 'is', 'also', 'reinventing', 'itself', 'as', 'it', 'takes', 'root', 'in', 'a', 'new', 'environment', ',', 'challenging', 'the', 'way', 'it', 'defined', 'its', 'destruction', 'as', 'a', 'fait', 'accompli', '.', 'In', 'the', 'academic', 'environment', ',', 'defining', 'as', 'a', 'fait', 'accompli', 'the', 'destruction', 'of', 'the', 'witches', 'might', 'be', 'the', 'only', 'true', 'point', 'of', 'agreement', 'uniting', 'two', 'antagonist', 'powers', ':', 'those', 'who', 'take', 'as', 'an', '“', 'objective', 'fact', '”', 'that', 'the', 'magic', 'they', 'claimed', 'to', 'practice', 'does', 'not', 'exist', ',', 'and', 'those', 'who', 'understand', 'magic', 'as', 'a', 'cultural-subjective', 'construction', 'belonging', 'to', 'the', 'past', '.', '[', 'b', ']', 'Getting', 'rid', 'of', 'the', 'Objectivity', '–', 'Subjectivity', 'banners', '[', 'b', ']', 'In', 'the', 'academic', 'world', 'eradicative', 'operations', 'are', 'a', 'routine', ',', 'performed', 'as', '‘', 'methodology', '’', 'by', 'researchers', 'who', 'see', 'it', 'as', 'their', 'duty', 'to', 'disentangle', 'situations', 'in', 'order', 'to', 'define', 'them', '.', 'Some', 'will', 'extract', 'information', 'about', 'human', 'practices', 'only', 'and', 'give', '(', 'always', 'subjective', ')', 'meaning', 'to', 'these', 'situations', '.', 'Others', 'will', 'only', 'look', 'at', '‘', '(', 'objective', ')', 'facts', '’', ',', 'the', 'value', 'of', 'which', 'should', 'be', 'to', 'hold', 'independently', 'of', 'the', 'way', 'humans', 'evaluate', 'them', '.', 'Doing', 'so', ',', 'these', 'academics', 'are', 'not', 'motivated', 'by', 'a', 'quest', 'for', 'a', 'relevant', 'approach', '.', 'Instead', 'they', 'act', 'as', 'mobilized', 'armies', 'of', 'either', 'objectivity', 'or', 'subjectivity', ',', 'destroying', 'complex', 'situations', 'that', 'might', 'have', 'slowed', 'them', 'down', ',', 'and', 'would', 'have', 'forced', 'them', 'to', 'listen', 'to', 'voices', 'protesting', 'against', 'the', 'way', 'their', 'method', 'leaves', 'unattended', 'knowledge', 'that', 'matters', 'to', 'others', '.', 'That', 'objectivity', 'is', 'a', 'mobilizing', 'banner', 'is', 'easy', 'to', 'demonstrate', '.', 'It', 'would', 'have', 'no', 'power', 'if', 'it', 'were', 'taken', 'in', 'the', 'strict', 'experimental', 'sense', ',', 'where', 'it', 'means', 'the', 'obtaining', 'of', 'an', 'exceptional', 'and', 'fragile', 'achievement', '.', 'An', 'experimental', '‘', 'objective', '’', 'fact', 'is', 'always', 'extracted', 'by', 'active', 'questioning', '.', 'However', ',', 'achieving', 'objectivity', 'then', 'implies', 'the', 'creation', 'of', 'a', 'situation', 'that', 'gives', '‘', 'the', 'thing', 'questioned', '’', 'the', 'very', 'unusual', 'power', 'to', 'authorize', 'one', 'interpretation', 'that', 'stands', 'against', 'any', 'other', 'possible', 'one', '.', 'Experimental', 'objectivity', 'is', 'thus', 'the', 'name', 'of', 'an', 'event', ',', 'not', 'the', 'outcome', 'of', 'a', 'method', '.', 'Further', ',', 'it', 'is', 'fragile', 'because', 'it', 'is', 'lost', 'as', 'soon', 'as', 'the', 'experimental', 'facts', 'leave', 'the', '‘', 'lab', '’', '–', 'the', 'techno-social', 'rarefied', 'milieu', 'required', 'by', 'experimental', 'achievements', '–', 'and', 'become', 'ingredients', 'in', 'messy', 'real', 'world', 'situations', '.', 'When', 'a', 'claim', 'of', 'objectivity', 'nevertheless', 'sticks', 'to', 'those', 'facts', 'outside', 'of', 'the', 'lab', ',', 'it', 'transforms', 'this', 'claim', 'into', 'a', 'devastating', 'operator', '.', 'As', 'for', 'the', 'kind', 'of', 'objectivity', 'claimed', 'by', 'the', 'sheer', 'extraction', 'of', '“', 'data', '”', 'or', 'by', 'the', 'unilateral', 'imposition', 'of', 'a', 'method', ',', 'it', 'is', 'a', 'mere', 'banner', 'for', 'conquest', '.', 'On', 'the', 'other', 'hand', ',', 'holding', 'the', 'ground', 'of', 'subjectivity', 'against', 'the', 'claims', 'of', 'objectivity', ',', 'not', 'so', 'very', 'often', 'means', 'empowering', 'the', 'muted', 'voices', 'that', 'point', 'to', 'ignored', 'or', 'disqualified', 'matters', '.', 'Scientists', 'trying', 'to', 'resist', 'the', 'pseudo-facts', 'that', 'colonialize', 'their', 'fields', ',', 'caring', 'for', 'a', 'difference', 'to', 'be', 'made', 'between', '‘', 'good', '’', '(', 'relevant', ')', 'and', '‘', 'bad', '’', '(', 'abusive', ')', 'sciences', ',', 'have', 'found', 'no', 'allies', 'in', 'critical', 'sciences', '.', '[', '2', ']', 'For', 'those', 'who', 'are', 'mobilized', 'under', 'the', 'banner', 'of', 'subjectivity', 'such', 'scruples', 'are', 'ludicrous', '.', 'Academic', 'events', 'such', 'as', 'theoretical', 'turns', 'or', 'scientific', 'revolutions', '–', 'including', 'the', 'famous', 'Anthropocene', 'turn', '–', 'won', '’', 't', 'help', 'to', 'foster', 'cooperative', 'relations', 'or', 'care', 'for', 'collaborative', 'situations', '.', 'Indeed', ',', 'such', 'events', 'typically', 'signal', 'an', 'advance', ',', 'usually', 'the', 'creative', 'destruction', 'of', 'some', 'dregs', 'of', 'common', 'sense', 'that', 'are', 'still', 'contaminating', 'what', 'was', 'previously', 'accepted', '.', 'In', 'contrast', ',', 'if', 'there', 'were', 'to', 'be', 'resurgence', 'it', 'would', 'signal', 'itself', 'by', 'the', '‘', 'demoralization', '’', 'of', 'the', 'perspective', 'of', 'advance', '.', 'Demoralization', 'is', 'not', 'however', 'about', 'the', 'sad', 'recognition', 'of', 'a', 'limit', 'to', 'the', 'possibility', 'of', 'knowing', '.', 'It', 'rather', 'conveys', 'the', 'possibility', 'of', 'reducing', 'the', 'feeling', 'of', 'legitimacy', 'that', 'academic', 'researchers', 'have', 'about', 'their', 'objectivity', '–', 'subjectivity', 'methodologies', '.', 'The', 'signal', 'of', 'a', 'process', 'of', 'resurgence', 'might', 'be', 'researchers', 'deserting', 'their', 'position', 'when', 'they', 'recognise', 'that', 'subjectivity', 'and', 'objectivity', 'are', 'banners', 'only', ',', 'imperatives', 'to', 'distance', 'themselves', 'from', 'concerned', 'voices', ',', 'protesting', 'against', 'the', 'dismemberment', 'of', 'what', 'they', 'care', 'for', '.', '[', 'b', ']', 'Making', 'common', 'sense', '[', 'b', ']', 'Addressing', 'situations', 'that', 'are', 'a', 'matter', 'of', 'usually', 'diverging', 'concerns', 'in', 'a', 'way', 'that', 'resists', 'dismembering', 'them', ',', 'means', 'betraying', 'the', 'mobilization', 'for', 'the', 'advance', 'of', 'knowledge', '.', 'The', 'resurgence', 'of', 'cooperative', 'and', 'non-antagonist', 'relations', 'points', 'towards', 'situation-centred', 'achievements', '.', 'It', 'requires', 'that', 'the', 'situation', 'itself', 'be', 'given', 'the', 'power', 'to', 'make', 'those', 'concerned', 'think', 'together', ',', 'that', 'is', 'to', 'induce', 'a', 'laborious', ',', 'hesitant', ',', 'and', 'sometimes', 'conflictual', 'collective', 'learning', 'process', 'of', 'what', 'each', 'particular', 'situation', 'demands', 'from', 'those', 'who', 'approach', 'it', '.', 'This', 'requirement', 'is', 'a', 'practical', 'one', '.', 'If', 'the', 'eradicative', 'power', 'of', 'the', 'objective/subjective', 'disjunction', 'is', 'to', 'collapse', 'and', 'give', 'way', 'to', 'a', 'collective', 'process', ',', 'we', 'need', 'to', 'question', 'many', 'academic', 'customs', '.', 'The', 'ritual', 'of', 'presentations', 'with', 'PowerPoint', 'authoritative', 'bullet-point', 'like', 'arguments', ',', 'for', 'instance', ',', 'perfectly', 'illustrates', 'the', 'way', 'situations', 'are', 'mobilized', 'in', 'a', 'confrontational', 'game', ',', 'when', 'truth', 'is', 'associated', 'with', 'the', 'power', 'of', 'one', 'position', 'to', 'defeat', 'the', 'others', '.', 'In', 'addition', ',', 'we', 'may', 'need', 'to', 'find', 'inspiration', 'in', 'ancient', 'customs', '.', 'New', 'academic', 'rituals', 'may', 'learn', 'for', 'instance', 'from', 'the', 'way', 'the', 'traditional', 'African', 'palavers', 'or', 'the', 'sweat', 'lodge', 'rituals', 'in', 'North', 'American', 'First', 'Nations', ',', 'these', 'examples', 'ward', 'off', 'one-way-truths', 'and', 'weaponized', 'arguments', '.', 'Today', ',', 'many', 'activist', 'groups', 'share', 'with', 'reclaiming', 'contemporary', 'witches', 'the', 'reinvention', 'of', 'the', 'art', 'of', 'consensus-making', 'deliberation', ';', 'giving', 'the', 'issue', 'of', 'deliberation', 'the', 'power', 'to', 'make', 'common', 'sense', '.', 'What', 'they', 'learn', 'to', 'artfully', 'design', 'are', 'resurgent', 'ways', 'to', 'take', 'care', 'of', 'the', 'truth', ',', 'to', 'protect', 'it', 'from', 'power', 'games', 'and', 'relate', 'it', 'to', 'an', 'agreement', '-', 'generated', 'by', 'a', 'very', 'deliberative', 'process', '-', 'that', 'no', 'party', 'may', 'appropriate', 'it', '.', 'They', 'experiment', 'with', 'practices', 'that', 'generate', 'the', 'capacity', 'to', 'think', 'and', 'feel', 'together', '.', 'For', 'the', 'witches', ',', 'convoking', 'the', 'goddess', 'is', 'giving', 'room', 'to', 'the', 'power', 'of', 'generativity', '.', 'When', 'they', 'chant', '“', 'She', 'changes', 'everything', 'She', 'touches', ',', 'and', 'everything', 'She', 'touches', 'changes', ',', '”', 'they', 'honour', 'a', 'change', 'that', 'affects', 'everything', ',', 'but', 'to', 'which', 'each', 'affected', 'being', 'responds', 'in', 'its', 'own', 'way', 'and', 'not', 'through', 'some', 'conversion', '[', 'i', ']', 'She', '[', 'i', ']', 'would', 'command', '.', 'Of', 'course', ',', 'such', 'arts', 'presuppose', 'a', 'shared', 'trust', 'in', 'the', 'possibility', 'of', 'generativity', 'and', 'we', 'are', 'free', 'to', 'suspect', 'some', 'kind', 'of', 'participatory', 'role-playing', '.', 'But', 'refusing', 'to', 'participate', 'is', 'also', 'playing', 'a', 'role', '.', 'Holding', 'to', 'our', 'own', 'reasons', 'demands', 'that', ',', 'when', 'we', 'feel', 'we', 'understand', 'something', 'about', 'the', 'other', '’', 's', 'position', ',', 'we', 'suppress', 'any', 'temptation', 'to', 'doubt', 'the', 'kind', 'of', 'authority', 'we', 'confer', 'to', 'our', 'reasons', ',', 'as', 'if', 'such', 'a', 'hesitation', 'was', 'a', 'betrayal', 'of', 'oneself', '.', 'What', 'if', 'the', 'art', 'of', 'transformative', 'encounters', 'cultivated', 'the', 'slow', 'emergence', 'and', 'intensification', 'of', 'a', 'mutual', 'sensitivity', '?', 'A', 'mutual', 'sensitivity', 'that', 'generates', 'a', 'change', 'in', 'the', 'relationship', 'that', 'each', 'entertains', 'with', 'their', 'own', 'reasons', '.', '[', 'b', ']', 'Polyphonic', 'song', '[', 'b', ']', 'Curiously', 'enough', 'the', 'resurgence', 'of', 'the', 'arts', 'of', 'partnering', 'around', 'a', 'situation', ',', 'of', 'composing', 'and', 'weaving', 'together', 'relevant', 'but', 'not', 'authoritative', 'reasons', ',', 'echoes', 'with', 'the', 'work', 'of', 'laboratory', 'biologists', '.', 'Against', 'the', 'biotechnological', 'redefinition', 'of', 'biology', 'they', 'claim', 'that', 'the', 'self-contained', 'isolable', 'organisms', 'might', 'be', 'a', 'dubious', 'abstraction', '.', 'What', 'they', 'study', 'are', 'not', 'individual', 'beings', 'competing', 'for', 'having', 'their', 'interest', 'prevail', ',', 'but', 'multiple', 'specific', 'assemblages', 'between', 'interdependent', 'mutually', 'sensitive', 'partners', 'weaving', 'together', 'capacities', 'to', 'make', 'a', 'living', 'which', 'belong', 'to', 'none', 'of', 'them', 'separately', '.', '“', 'We', 'have', 'never', 'been', 'individuals', '”', 'write', 'Scott', 'Gilbert', 'and', 'his', 'colleagues', 'who', 'are', 'specialists', 'in', 'evolutionary', 'developmental', 'biology', '.', '[', '3', ']', '“', 'It', 'is', 'the', 'song', 'that', 'matters', ',', 'not', 'the', 'singer', ',', '”', 'adds', 'Ford', 'Doolittle', ',', 'specialist', 'in', 'evolutionary', 'microbiology', ',', 'emphasizing', 'the', 'open', 'character', 'of', 'assemblages', ',', 'the', 'composition', 'of', 'which', '(', 'the', 'singers', ')', 'can', 'change', 'as', 'long', 'as', 'the', 'cooperative', 'pattern', ',', 'the', 'polyphonic', 'song', ',', 'is', 'preserved', '.', '[', '4', ']', 'In', 'other', 'words', ',', 'biologists', 'now', 'discover', 'that', 'both', 'in', 'the', 'lab', 'and', 'in', 'the', 'field', ',', 'they', 'have', 'to', 'address', 'cooperative', 'worlds', 'and', 'beings', 'whose', 'ways', 'of', 'life', 'emerge', 'together', 'with', 'their', 'participation', 'in', 'worlding', 'compositions', '.', 'One', 'could', 'be', 'tempted', 'to', 'speak', 'about', 'a', '‘', 'revolution', '’', 'in', 'biology', ',', 'but', 'it', 'can', 'also', 'be', 'said', 'that', 'it', 'is', 'a', 'heresy', ',', 'a', 'challenge', 'against', 'the', 'mobilizing', 'creed', 'in', 'the', 'advance', 'of', 'science', '.', 'Undoubtedly', ',', 'biology', 'is', 'becoming', 'more', 'interesting', ',', 'but', 'it', 'is', 'losing', 'its', 'power', 'to', 'define', 'a', 'conquering', 'research', 'direction', ',', 'since', 'each', '“', 'song', '”', ';', 'each', 'assemblage', ',', 'needs', 'to', 'be', 'deciphered', 'as', 'such', '.', 'If', 'modes', 'of', 'interdependence', 'are', 'what', 'matters', ',', 'extraction', 'and', 'isolation', 'are', 'no', 'longer', 'the', 'royal', 'road', 'for', 'progress', '.', 'No', 'theory', '-', 'including', 'complex', 'or', 'systemic', 'ones', '-', 'can', 'define', '[', 'i', ']', 'a', 'priori', '[', 'i', ']', 'its', 'rightful', 'object', ',', 'that', 'is', ',', 'anticipate', 'the', 'way', 'a', 'situation', 'should', 'be', 'addressed', '.', 'This', '“', 'heretical', '”', 'biology', 'is', 'apt', 'to', 'become', 'an', 'ally', 'in', 'the', 'resurgence', 'of', 'cooperative', 'relations', 'between', 'positive', 'sciences', 'and', 'humanities', 'at', 'a', 'time', 'when', 'we', 'vitally', 'need', '‘', 'demobilization', ',', '’', 'relinquishing', 'banners', 'which', 'justified', 'our', 'business-as-usual', 'academic', 'routines', '.', 'I', 'will', 'borrow', 'Anna', 'Tsing', '’', 's', 'challenging', 'proposition', ',', 'that', 'our', 'future', 'might', 'be', 'about', 'learning', 'to', 'live', 'in', '“', 'capitalist', 'ruins.', '”', '[', '5', ']', 'That', 'is', ',', 'in', 'the', 'ruins', 'of', 'the', 'socio-technical', 'organizational', 'infrastructures', 'that', 'ensured', 'our', 'business-as-usual', 'life', '.', 'Ruins', 'may', 'be', 'horrific', ',', 'but', 'Tsing', 'recognises', 'ruins', 'also', 'as', 'a', 'place', 'for', 'the', 'resurgence', 'and', 'cultivation', 'of', 'an', 'art', 'of', 'paying', 'attention', ',', 'which', 'she', 'calls', 'the', '“', 'art', 'of', 'noticing.', '”', 'Indeed', 'ruins', 'are', 'places', 'where', 'vigilance', 'is', 'required', ',', 'where', 'the', 'relevance', 'of', 'our', 'reasons', 'is', 'always', 'at', 'risk', ',', 'where', 'trusting', 'the', 'abstractions', 'we', 'entertain', 'is', 'inviting', 'disaster', '.', 'Ruins', 'demand', 'consenting', 'to', 'the', 'precariousness', 'of', 'perspectives', 'taken', 'for', 'granted', ',', 'that', '‘', 'stable', '’', 'capitalist', 'infrastructures', 'allowed', 'us', ',', 'or', 'more', 'precisely', ',', 'allowed', 'some', 'of', 'us', '.', 'Tsing', 'follows', 'the', 'wild', 'Matsutake', 'mushroom', 'that', 'thrives', 'in', 'ruined', 'forests', '-', 'forests', 'ruined', 'by', 'natural', 'catastrophes', 'or', 'by', 'blind', 'extraction', ',', 'but', 'also', 'by', 'projects', 'meant', 'to', 'ensure', 'a', '‘', 'rational', 'and', 'sustainable', '’', 'exploitation', ',', 'that', 'discovered', 'too', 'late', 'that', 'what', 'they', 'had', 'eliminated', 'as', 'prejudicial', 'or', 'expendable', '[', 'I', ']', 'did', 'matter', '[', 'I', ']', '.', 'Devastation', ',', 'the', 'unravelling', 'of', 'the', 'weaving', 'that', 'enables', 'life', ',', 'does', 'not', 'need', 'to', 'be', 'willful', ',', 'deliberate', '–', 'blindly', 'trusting', 'an', 'idea', 'may', 'be', 'sufficient', '.', 'As', 'for', 'Tsing', ',', 'she', 'is', 'not', 'relying', 'on', 'overbearing', 'ideas', '.', 'What', 'she', 'notices', 'is', 'factual', 'but', 'does', 'not', 'allow', 'to', 'abstract', 'what', 'would', 'objectively', 'matter', 'from', 'situational', 'entanglements', ',', 'in', 'this', 'case', 'articulated', 'by', 'the', 'highly', 'sought', 'mushroom', 'and', 'its', '[', 'i', ']', 'symbionts', '[', 'i', ']', 'including', 'humans', '.', 'Facts', ',', 'here', ',', 'are', 'not', 'stepping', 'stones', 'for', 'a', 'conquering', 'knowledge', 'and', 'do', 'not', 'oppose', 'objectivity', 'to', 'subjectivity', '.', 'What', 'is', 'noticed', 'is', 'first', 'of', 'all', 'what', 'appears', 'as', 'interesting', 'or', 'intriguing', '.', 'It', 'may', 'be', 'enlightening', 'but', 'the', 'light', 'is', 'not', 'defining', 'the', 'situation', ',', 'it', 'rather', 'generates', 'new', 'possible', 'ways', 'of', 'learning', ',', 'of', 'weaving', 'new', 'relations', 'with', 'the', 'situation', '.', '[', 'b', ']', 'We', 'are', 'the', 'weavers', 'and', 'we', 'are', 'the', 'woven', '[', 'b', ']', 'If', 'our', 'future', 'is', 'in', 'the', 'ruins', ',', 'the', 'possibility', 'of', 'resurgence', 'is', 'the', 'possibility', 'of', 'cultivating', ',', 'of', 'weaving', 'again', 'what', 'has', 'been', 'unravelled', 'in', 'the', 'name', 'of', '“', 'the', 'Ascent', 'of', 'Man.', '”', 'We', 'are', 'not', 'to', 'take', 'ourselves', 'for', 'the', 'weavers', 'after', 'having', 'played', 'the', 'masters', ',', 'or', 'the', 'assemblers', 'after', 'having', 'glorified', 'extraction', '.', '“', 'We', 'are', 'the', 'weavers', 'and', 'we', 'are', 'the', 'web', ',', '”', 'sing', 'the', 'contemporary', 'witches', 'who', 'know', 'and', 'cultivate', 'generativity', '.', '[', '6', ']', 'The', 'arts', 'of', 'cultivation', 'are', 'arts', 'of', 'interdependence', ',', 'of', 'consenting', 'to', 'the', 'precariousness', 'of', 'lives', 'involved', 'in', 'each', 'other', '.', 'Those', 'who', 'cultivate', 'do', 'their', 'part', ',', 'trusting', 'that', 'others', 'may', 'do', 'their', 'own', 'but', 'knowing', 'that', 'what', 'they', 'aim', 'at', 'depends', 'on', 'what', 'can', 'not', 'be', 'commanded', 'or', 'explained', '.', 'Those', 'who', 'claim', 'to', 'explain', 'growth', 'or', 'weaving', 'are', 'often', 'only', 'telling', 'about', 'the', 'preparations', 'required', 'by', 'what', 'they', 'have', 'learned', 'to', 'foster', ',', 'or', 'they', 'depend', 'on', 'the', 'selection', 'of', 'what', 'can', 'be', 'obtained', 'and', 'mobilized', '‘', 'off-ground', '’', 'in', 'rarefied', ',', 'reproducible', 'environments', '.', 'In', 'the', 'ruins', 'of', 'such', 'environments', ',', 'resurgence', 'is', 'not', 'a', 'return', 'to', 'the', 'past', ',', 'rather', 'the', 'challenge', 'to', 'learn', 'again', 'what', 'we', 'were', 'made', 'to', 'forget', '–', 'but', 'what', 'some', 'have', 'refused', 'to', 'forget', '.', 'When', 'the', 'environmental', ',', 'social', 'and', 'climate', 'justice', ',', 'multiracial', '[', 'i', ']', 'Alliance', 'of', 'alliances', '[', 'i', ']', ',', 'led', 'by', 'women', ',', 'gender', 'oppressed', 'people', 'of', 'colour', ',', 'and', 'Indigenous', 'Peoples', ',', 'claim', 'that', '“', 'it', 'takes', 'roots', 'to', 'grow', 'resistance', ',', '”', 'or', 'else', ',', '“', 'to', 'weather', 'the', 'storm', ',', '”', 'they', 'talk', 'about', 'the', 'need', 'to', 'name', 'and', 'honour', 'what', 'sustains', 'them', 'and', 'what', 'they', 'struggle', 'for', '.', '[', '7', ']', 'When', 'those', 'who', 'try', 'to', 'revive', 'the', 'ancient', 'commons', ',', 'which', 'were', 'destroyed', 'all', 'over', 'the', 'world', 'in', 'the', 'name', 'of', 'property', 'rights', ',', 'claim', 'that', 'there', 'is', '“', 'no', 'commons', 'without', 'commoning', ',', '”', 'that', 'is', ',', 'without', 'learning', 'how', 'to', '“', 'think', 'like', 'commoners', ',', '”', 'they', 'talk', 'about', 'the', 'need', 'to', 'not', 'only', 'reclaim', 'what', 'was', 'privatized', 'but', 'to', 'recover', 'the', 'capacity', 'to', 'be', 'involved', 'with', 'others', 'in', 'the', 'ongoing', 'concern', 'and', 'care', 'for', 'their', 'maintenance', 'of', 'the', 'commons', '.', '[', '8', ']', 'Resurgence', 'is', 'a', 'word', 'for', 'the', 'future', 'as', 'it', 'confronts', 'us', 'with', 'what', 'William', 'James', 'called', 'a', '‘', 'genuine', 'option', 'concerning', 'this', 'future', '’', '.', 'Daring', 'to', 'trust', ',', 'as', 'do', 'today', '’', 's', 'activists', ',', 'in', 'an', 'uncertified', ',', 'indeed', 'improbable', ',', 'not', 'to', 'say', '‘', 'speculative', ',', '’', 'possibility', 'of', 'reclaiming', 'a', 'future', 'worth', 'living', 'and', 'dying', 'for', ',', 'may', 'seem', 'ludicrous', '.', 'But', 'the', 'option', 'can', 'not', 'be', 'avoided', 'because', 'today', 'there', 'is', 'no', 'free', 'standing', 'place', 'outside', 'of', 'the', 'alternative', ':', 'condescending', 'skepticism', ',', 'refusing', 'to', 'opt', 'or', 'opting', 'against', 'resurgence', ',', 'are', 'equivalent', '.', 'Such', 'an', 'option', 'has', 'no', 'privileged', 'ground', '.', 'Neither', 'the', 'soil', 'sustaining', 'the', 'roots', 'nor', 'the', 'mutually', 'involved', 'of', 'interdependent', 'partners', 'composing', 'a', 'commons', ',', 'can', 'be', 'defined', 'in', 'abstraction', 'from', 'the', 'always-situated', 'learning', 'process', 'of', 'weaving', 'relations', 'that', 'matter', '.', 'These', 'are', 'generative', 'processes', 'liable', 'to', 'include', 'new', 'ways', 'of', 'being', 'with', 'new', 'concerns', '.', 'New', 'voices', 'enter', 'a', 'song', ',', 'both', 'participating', 'in', 'this', 'song', 'and', 'contributing', 'to', 'reinvent', 'it', '.', 'For', 'us', 'academics', 'it', 'does', 'not', 'mean', 'giving', 'up', 'scientific', 'facts', ',', 'critical', 'attention', ',', 'or', 'critical', 'concern', '.', 'It', 'demands', 'instead', 'that', 'such', 'facts', ',', 'attention', ',', 'and', 'concerns', 'are', 'liable', 'to', 'participate', 'in', 'the', 'song', ',', 'even', 'if', 'it', 'means', 'adding', 'new', 'dimensions', 'that', 'complicate', 'it', '.', 'As', 'such', ',', 'even', 'scientific', 'facts', 'thus', 'communicate', 'with', 'what', 'William', 'James', 'presented', 'as', 'the', '“', 'great', 'question', '”', 'associated', 'with', 'a', 'pluriverse', 'in', 'the', 'making', ':', '“', 'does', 'it', ',', 'with', 'our', 'additions', ',', 'rise', 'or', 'fall', 'in', 'value', '?', 'Are', 'the', 'additions', 'worthy', 'or', 'unworthy', '?', '”', '[', '9', ']', 'Such', 'a', 'question', 'is', 'great', 'because', 'it', 'obviously', 'can', 'not', 'get', 'a', 'certified', 'answer', 'but', 'demands', 'that', 'we', 'do', 'accept', 'that', 'what', 'we', 'add', 'makes', 'a', 'difference', 'in', 'the', 'world', 'and', 'that', 'we', 'have', 'to', 'answer', 'for', 'the', 'manner', 'of', 'this', 'difference', '.', 'Footnotes', '1', '.', 'Silvia', 'Federici', ',', '[', 'i', ']', 'Caliban', 'and', 'the', 'Witch', '.', 'Women', ',', 'the', 'Body', 'and', 'Primitive', 'Accumulation', '[', 'i', ']', '.', 'Brooklyn', ',', 'NY', ':', 'Autonomedia', ',', '2004', '.', '2', '.', 'Rose', ',', 'Hilary', '.', '``', 'My', 'Enemys', 'Enemy', 'Is', ',', 'Only', 'Perhaps', ',', 'My', 'Friend', '.', \"''\", '[', 'i', ']', 'Social', 'Text', '[', 'i', ']', ',', 'no', '.', '45', '(', '1996', ')', ':', '61-80.', 'doi:10.2307/466844', '.', '3', '.', 'Gilbert', ',', 'Scott', 'F.', ',', 'Jan', 'Sapp', ',', 'and', 'Alfred', 'I.', 'Tauber', '.', '``', 'A', 'Symbiotic', 'View', 'of', 'Life', ':', 'We', 'Have', 'Never', 'Been', 'Individuals', '.', \"''\", '[', 'i', ']', 'The', 'Quarterly', 'Review', 'of', 'Biology', '[', 'i', ']', '87', ',', 'no', '.', '4', '(', '2012', ')', ':', '325-41.', 'doi:10.1086/668166', '.', '4', '.', 'Doolittle', ',', 'W.', 'Ford', ',', 'and', 'Austin', 'Booth', '.', '``', 'It', '’', 's', 'the', 'Song', ',', 'Not', 'the', 'Singer', ':', 'An', 'Exploration', 'of', 'Holobiosis', 'and', 'Evolutionary', 'Theory', '.', \"''\", '[', 'i', ']', 'Biology', '&', 'Philosophy', '[', 'i', ']', '32', ',', 'no', '.', '1', '(', '2016', ')', ':', '5-24.', 'doi:10.1007/s10539-016-9542-2', '.', '5', '.', 'Tsing', ',', 'Anna', 'Lowenhaupt', '.', '[', 'i', ']', 'The', 'Mushroom', 'at', 'the', 'End', 'of', 'the', 'World', ':', 'On', 'the', 'Possibility', 'of', 'Life', 'in', 'Capitalist', 'Ruins', '[', 'i', ']', '.', 'Princeton', ',', 'NJ', ':', 'Princeton', 'University', 'Press', ',', '2015', '.', '6', '.', 'Starhawk', '.', '[', 'i', ']', 'Dreaming', 'the', 'Dark', ':', 'Magic', ',', 'Sex', ',', 'and', 'Politics', '[', 'i', ']', '.', 'Boston', ',', 'MA', ':', 'Beacon', 'Press', ',', '1997', '.', '225', '.', '7', '.', '“', 'It', 'Takes', 'Roots', '–', 'An', 'Alliance', 'of', 'Alliances', '.', \"''\", 'It', 'Takes', 'Roots', '.', 'http', ':', '//ittakesroots.org/', '.', '8', '.', 'Bollier', ',', 'David', '.', '[', 'i', ']', 'Think', 'like', 'a', 'Commoner', ':', 'A', 'Short', 'Introduction', 'to', 'the', 'Life', 'of', 'the', 'Commons', '[', 'i', ']', '.', 'Gabriola', 'Island', ',', 'BC', ',', 'Canada', ':', 'New', 'Society', 'Publishers', ',', '2014', '.', '9', '.', 'William', ',', 'James', '.', '[', 'i', ']', 'Pragmatism', ':', 'A', 'New', 'Name', 'for', 'Some', 'Old', 'Ways', 'of', 'Thinking', '[', 'i', ']', '.', 'New', 'York', ',', 'NY', ':', 'Longman', 'Green', 'and', 'Co.', ',', '1907', '.', '98', '.'], 'ATATA': ['[', 'c', ']', '=centrate', 'ATATA', 'Natalia', 'Chaves', 'López', '[', '1', ']', '[', 'c', ']', 'I', '[', 'c', ']', 'The', 'purpose', 'of', 'the', 'following', 'text', 'is', 'to', 'present', 'and', 'preserve', 'the', 'concept', 'of', 'ATATA', ':', 'it', 'is', 'a', 'composition', 'of', 'two', 'ideograms', 'in', 'the', 'Mhuysqa', 'dead', 'language', '.', 'ATATA', 'can', 'be', 'defined', 'as', '‘', 'I', 'give', 'myself', 'and', 'you', 'give', 'yourself', ',', '’', 'where', 'giving', 'is', 'an', 'act', 'of', 'receiving', ',', 'because', 'what', 'you', 'do', 'for', 'others', 'is', 'also', 'affecting', 'yourself', '.', 'This', 'exercise', 'of', 'reciprocity', 'is', 'a', 'very', 'important', 'vibration', 'of', 'life', 'because', 'nobody', 'can', 'live', 'without', 'others', ',', 'this', 'includes', 'all', 'living', 'creatures', 'with', 'whom', 'we', 'share', 'the', 'Earth', '.', 'As', 'a', 'Colombian', 'student', 'of', 'ancient', 'history', ',', 'I', 'have', 'experience', 'with', 'this', 'concept', 'for', 'many', 'years', 'through', 'learning', 'about', 'the', 'wholesome', 'ways', 'of', 'living', 'with', 'the', 'indigenous', 'people', 'in', 'both', 'Colombia', 'and', 'Mexico', '.', 'It', 'was', 'through', 'my', 'PhD', 'research', 'that', 'I', 'experienced', 'and', 'looked', 'further', 'into', 'the', 'Mhuysqa', 'and', 'Mayan', 'legacy', '.', 'It', 'was', 'then', 'that', 'I', 'realized', 'the', 'devastating', 'reality', 'that', 'is', 'currently', 'affecting', 'the', 'quality', 'of', 'food', '.', 'There', 'is', 'a', 'systematic', 'problem', 'caused', 'by', 'the', '‘', 'green', 'revolution', ';', '’', 'from', 'radical', 'changes', 'to', 'the', 'local', 'ways', 'of', 'cultivation', 'to', 'the', 'use', 'of', 'inputs', 'made', 'and', 'sold', 'by', 'big', 'global', 'corporations', 'which', 'are', 'creating', 'dependency', 'as', 'well', 'as', 'poisoning', 'the', 'seeds', ',', 'the', 'soil', ',', 'the', 'water', 'and', 'therefore', 'our', 'own', 'bodies', '.', 'Meanwhile', ',', 'as', 'a', 'response', 'to', 'this', ',', 'an', '‘', 'undercurrent', '’', 'is', 'developing', 'everywhere', '–', 'people', 'are', 'living', 'and', 'cultivating', 'according', 'to', 'new', 'or', 'past', 'principles', 'outside', 'global', 'corporations', ',', 'recovering', 'solidarity', ',', 'hope', ',', 'life', ',', 'food', ',', 'and', 'bio-diversifying', 'forms', 'of', 'being', '.', 'I', 'have', 'based', 'my', 'writings', 'on', 'the', 'perspective', 'of', '‘', 'Heart´s', 'Epistemology.', '’', 'What', 'I', 'mean', 'is', 'that', 'heart', 'and', 'brain', 'come', 'together', 'into', 'my', 'proposal', 'of', 'bringing', 'to', 'light', 'my', 'feel-thoughts', 'about', 'how', 'to', 'keep', 'on', 'living', 'and', 'how', 'to', 'make', 'collective', 'decisions', 'about', 'territory', '.', 'The', 'intention', 'of', 'this', 'essay', 'is', 'to', 'find', 'ourselves', 'and', 'others', 'heart', 'to', 'heart', '.', 'In', 'fact', ',', 'the', 'heart', 'is', 'the', 'place', 'where', 'you', 'keep', 'dreams', ',', 'hope', ',', 'joy', ',', 'and', 'pain', ',', 'according', 'to', 'the', 'Mayan', 'culture', '.', 'You', 'need', 'to', 'have', 'all', 'these', 'clear', 'to', 'know', 'what', 'is', 'the', 'kind', 'of', 'living', 'knowledge', 'you', 'want', 'to', 'go', 'over', '.', '[', '2', ']', 'In', 'the', 'Mhuysqa´s', 'worldview', ',', 'the', 'human', 'heart', 'is', 'named', '[', 'i', ']', 'puyky', '[', 'i', ']', ',', 'an', 'onomatopoeia', 'of', 'the', 'heartbeat', ',', 'that', 'is', 'said', 'to', 'be', 'connected', 'with', 'the', 'beating', 'of', 'the', 'cosmos', 'itself', ',', 'representing', 'the', 'frequency', 'where', 'one', 'can', 'find', 'answers', 'in', 'the', 'path', 'of', 'protecting', 'life', '.', 'The', 'questions', 'that', 'this', 'essay', 'aims', 'to', 'answer', 'are', ':', 'How', 'to', 'feel-think', 'the', 'future', 'of', 'food', 'and', 'water', 'from', 'a', 'perspective', 'of', 'reciprocity', '?', 'Why', 'is', 'ATATA', 'a', 'fruitful', 'principle', 'for', 'the', 'future', 'survival', 'of', 'the', 'human', 'kind', '?', 'Mhuysqas', 'are', 'an', 'ancient', 'indigenous', 'culture', 'who', 'live', 'in', 'Cundinamarca', 'and', 'Boyacá', 'regions', 'of', 'Colombia', '.', 'They', 'lost', 'their', 'language', 'in', 'the', 'eighteenth', 'century', ',', 'which', 'consisted', 'of', 'compact', 'ideograms', 'and', 'hieroglyphics', 'representing', 'complex', 'ideas', 'about', 'their', 'understanding', 'of', 'nature', '.', 'Today', 'the', 'Mhuysqas', 'speak', 'Spanish', 'because', 'of', 'persecution', 'since', 'the', 'colonial', 'period', 'and', 'the', 'banning', 'of', 'their', 'language', ',', 'but', 'they', 'kept', 'some', 'of', 'their', 'ancestral', 'ways', 'of', 'living', '.', 'I', 'have', 'studied', 'their', 'language', ',', 'named', 'Mhuysqhubun', ',', 'and', 'I', 'propose', 'here', 'to', 'bring', 'back', 'to', 'life', 'the', '‘', 'dead', '’', 'word', 'ATATA', ',', 'so', 'that', 'it', 'is', 'not', 'forgotten', '.', 'ATATA', 'is', 'a', 'palindrome', 'unity', 'made', 'by', 'two', 'ideograms', 'and', 'hieroglyphics', 'of', 'the', 'moon', 'calendar', ':', 'Ata', 'and', 'Ta', '.', 'Mariana', 'Escribano', ',', '[', '3', ']', 'a', 'linguist', 'who', 'writes', 'about', 'the', 'Mhuysqa', 'language', 'and', 'worldview', ',', 'explains', 'that', 'Ata', 'refers', 'to', 'the', 'number', '1', ',', 'which', 'in', 'cosmogony', 'is', 'relative', 'to', 'the', 'beginning', 'of', 'times', '.', 'From', 'the', 'eighteenth-century', 'grammar', 'of', 'the', 'priest', 'Jose', 'Domingo', 'Duquesne', ',', 'we', 'can', 'translate', 'the', 'ideogram', 'as', 'follows', ':', '“', 'the', 'goods', 'and', 'something', 'else.', '”', 'This', 'means', 'common', 'goods', 'or', 'everything', 'that', 'exists', '.', 'It', 'also', 'refers', 'to', 'the', 'primordial', 'pond', ',', 'which', 'links', 'it', 'to', 'water', 'as', 'well', '.', 'Ta', ',', 'the', 'second', 'sound', 'in', 'the', 'unity', ',', 'is', 'the', 'number', '6', 'and', 'represents', 'a', 'new', 'beginning', 'that', 'is', 'showing', 'the', 'comprehension', 'of', 'time', 'in', 'sequences', 'of', '5', 'and', '20', '.', 'The', 'priest', 'Duquesne', 'wrote', 'that', 'Ta', 'means', '“', 'tillage', ',', 'harvest.', '”', 'The', 'Ta', 'ideogram', 'also', 'means', 'the', 'bearing', 'of', 'fruits', ',', 'the', 'giving', 'of', 'yourself', 'freely', ',', 'as', 'in', 'agriculture', 'labor', '.', 'In', 'this', 'perspective', 'the', 'act', 'of', 'giving', 'is', 'an', 'act', 'of', 'receiving', ';', 'it', 'also', 'implies', 'the', 'responsibility', 'of', 'taking', 'care', 'of', 'what', 'you', 'are', 'receiving', '.', 'One', 'of', 'the', 'most', 'important', 'acts', 'in', 'Mhuysqa', 'culture', 'was', 'the', 'offering', 'in', 'some', 'holy', 'lagoons', '.', 'The', 'main', 'offering', 'happened', 'in', 'Guatabita', 'lagoon', '.', 'This', 'lagoon', 'held', 'the', 'gold', ',', 'offered', 'by', 'Mhuysqas', 'and', 'sought', 'after', 'by', 'the', 'Spanish', 'conquers', 'who', 'heard', 'about', 'it', 'and', 'tried', 'to', 'dry', 'the', 'lagoon', 'up', '.', 'The', 'leader', 'of', 'the', 'town', 'of', 'Guatabita', ',', 'covered', 'in', 'gold', ',', 'would', 'be', 'introduced', 'on', 'a', 'raft', ',', 'adorned', 'with', 'more', 'gold', 'and', 'emeralds', '.', 'The', 'raft', 'would', 'be', 'then', 'given', 'to', 'the', 'lagoon', 'followed', 'by', 'the', 'leader', 'who', 'would', 'introduce', 'himself', 'into', 'the', 'water', 'as', 'an', 'offering', 'of', 'the', 'gold', 'that', 'was', 'covering', 'him', 'and', 'receive', 'a', 'purification', 'bath', '.', 'This', 'astonishing', 'ritual', 'ATATA', 'was', 'done', 'as', 'a', 'reminder', 'of', 'gratitude', 'to', 'water', 'as', 'one', 'of', 'the', 'most', 'important', 'living', 'beings', '.', 'In', 'reciprocity', 'some', 'of', 'the', 'few', 'sacred', 'female', 'entities', 'living', 'in', 'the', 'water', ',', 'representing', 'the', 'lagoon', 'itself', ',', 'would', 'hold', 'the', 'abundance', 'of', 'Mhuysqa', 'people', '.', 'One', 'of', 'the', 'ways', 'water', 'supplied', 'life', 'to', 'the', 'people', 'was', 'through', 'rain', ',', 'which', 'provided', 'corn', 'to', 'feed', 'everybody', '.', 'In', 'order', 'to', 'understand', 'this', 'reciprocal', 'interaction/cycle', 'of', 'humans-lagoons-rain-corn', 'I', 'refer', 'to', 'Tseltal', 'Mayan', 'people', ',', 'who', 'live', 'in', 'the', 'Highlands', 'of', 'Chiapas', 'and', 'the', 'Lacandona', 'jungle', 'in', 'Mexico', ',', 'who', 'keep', 'alive', 'very', 'ancient', 'knowledge', 'and', 'have', 'the', 'belief', 'that', 'corn', 'spirit', 'is', 'living', 'inside', 'the', 'mountains', 'and', 'lakes', '.', 'It', 'is', 'given', 'to', 'the', 'humans', 'as', 'result', 'of', 'offerings', 'asking', 'for', 'maintenance', 'of', 'people', '.', 'ATATA', 'can', 'be', 'related', 'with', 'the', 'Mayan', 'Tseltal', 'concept', 'of', '[', 'i', ']', 'Ich´el', 'ta', 'muk´', '[', 'i', ']', 'translated', 'as', '“', 'respect', 'and', 'recognition', 'for', 'all', 'living', 'things', 'in', 'nature.', '”', '[', '4', ']', 'The', 'corn', 'cycle', 'is', 'Tseltal', 'life', 'itself', 'and', 'requires', 'a', 'permanent', 'compromise', ',', 'the', 'way', 'they', 'explain', 'this', 'is', 'by', 'referring', 'to', 'corn', 'as', 'a', 'double', 'being', '.', 'Seen', 'on', 'one', 'side', 'as', 'a', 'baby', 'and', 'on', 'the', 'other', 'as', 'a', 'woman', 'supporting', 'her', 'family', '.', 'When', 'someone', 'wastes', 'corn', ',', 'they', 'can', 'hear', 'it', 'crying', '–', 'even', 'if', 'a', 'single', 'seed', 'is', 'left', 'in', 'the', 'soil', 'or', 'a', 'piece', 'of', 'tortilla', 'lies', 'on', 'the', 'kitchen', 'floor', '.', 'When', 'seen', 'as', 'the', 'woman', 'supporting', 'her', 'family', ',', 'it', 'appears', 'in', 'the', 'harvest', 'when', 'the', 'corncobs', 'have', 'smaller', 'corns', 'sticks', '.', 'These', 'are', 'signals', 'that', 'it', 'is', 'the', 'mother', 'of', 'the', 'plant', 'and', 'they', 'do', 'not', 'eat', 'it', 'because', 'they', 'prefer', 'to', 'hang', 'it', 'up', 'in', 'the', 'house', 'as', 'a', 'gesture', 'towards', 'keeping', 'abundance', 'present', 'in', 'the', 'home', 'and', 'community', '.', 'This', 'double', 'reciprocal', 'relation', 'with', 'corn', 'as', 'demanding', 'care', 'on', 'one', 'hand', 'while', 'at', 'the', 'same', 'time', 'protecting', 'its', 'own', 'people', ',', 'is', 'a', 'meaningful', 'trait', 'in', 'understanding', 'the', 'power', 'of', 'this', 'spirit', '.', 'In', 'Tenejapa', ',', 'a', 'Tseltal', 'town', ',', 'they', 'traditionally', 'make', 'an', 'offering', 'in', 'an', 'important', 'lagoon', 'named', '[', 'i', ']', 'Ts´ajalsul', '[', 'i', ']', 'to', 'show', '[', 'i', ']', 'ich´el', 'ta', 'muk´', '[', 'i', ']', '.', 'In', 'the', 'ceremony', 'authorities', 'deposit', 'a', 'traditional', 'handmade', 'dress', 'to', 'the', 'female', 'being', 'that', 'is', 'living', 'in', 'water', 'and', 'is', 'representing', 'the', 'lagoon', 'itself', 'who', 'provides', 'corn', ',', 'because', 'she', 'happens', 'to', 'be', 'also', 'the', 'mother', 'of', 'red', 'corn', '.', 'Red', 'corn', 'is', 'now', 'hard', 'to', 'find', 'in', 'the', 'Highlands', 'of', 'Chiapas', ',', 'it', 'represents', 'the', 'strongest', 'spirits', 'and', 'connection', 'with', 'ancestors', 'through', 'woman´s', 'blood', '.', 'Some', 'families', 'are', 'aware', 'of', 'the', 'high', 'value', 'of', 'these', 'and', 'other', 'varieties', 'of', 'corn', ',', 'but', 'diversity', 'becomes', 'a', 'challenge', 'for', 'this', 'communities', '.', '[', 'c', ']', 'II', '[', 'c', ']', 'Despite', 'these', 'cultures', 'that', 'live', 'in', 'a', 'reciprocal', 'cycle', 'with', 'the', 'land', 'they', 'inhabit', ',', 'we', 'have', 'arrived', 'to', 'latent', 'and', 'urgent', 'conflicts', 'surrounding', 'food', '.', 'Since', 'in', 'the', '1950s', ',', 'Mexican', 'and', 'United', 'States', 'politicians', 'started', 'an', 'alliance', 'to', 'increase', 'productivity', 'of', 'the', 'most', 'consumed', 'cereals', ':', 'wheat', ',', 'corn', ',', 'and', 'rice', '.', 'Even', 'if', 'the', 'pioneers', 'of', 'this', 'project', 'said', 'so', ',', 'this', 'was', 'not', 'to', 'fight', 'off', 'hunger', ',', 'because', 'there', 'was', 'an', 'inequality', 'in', 'the', 'availability', 'of', 'food', '.', 'That', 'inequality', 'is', 'still', 'growing', '.', 'The', \"'green\", 'revolution', \"'\", 'began', 'as', 'a', 'movement', 'of', 'engineers', '–', 'George', 'Harrar', ',', 'Edwin', 'J.', 'Wellhausen', ',', 'and', 'the', 'Nobel', 'Peace', 'Prize', 'winner', 'Norman', 'E.', 'Borlaug', '.', 'They', 'worked', 'together', 'in', 'Sonora', ',', 'Mexico', 'through', 'the', 'Office', 'of', 'Special', 'Studies', 'which', 'later', 'was', 'called', 'the', 'International', 'Maize', 'and', 'Wheat', 'Improvement', 'Center', '(', 'CIMMYT', ')', 'financed', 'mainly', 'by', 'the', 'Rockefeller', 'Foundation', '.', 'They', 'developed', 'a', 'biochemical', \"'technological\", 'package', \"'\", 'for', 'pest', 'control', 'that', 'started', 'affecting', 'natural', 'interdependence', 'and', 'agricultural', 'cycles', 'by', 'achieving', 'full', 'biocontrol', 'over', 'the', 'process', '.', 'Most', 'of', 'these', 'substances', 'were', 'created', 'during', 'the', 'Second', 'World', 'War', 'as', 'biological', 'weapons', 'to', 'kill', 'populations', ',', 'such', 'as', 'the', 'Japanese', ',', 'through', 'starvation', 'by', 'the', 'spraying', 'of', 'fulminate', 'herbicides', '.', 'When', 'the', 'war', 'was', 'over', ',', 'they', 'needed', 'to', 'sell', 'the', 'products', ',', 'but', 'theses', 'herbicides', 'were', 'killing', 'the', 'traditional', 'locally', 'adapted', 'seeds', 'so', 'they', 'worked', 'in', 'two', 'steps', ':', 'First', 'they', 'collected', 'a', 'bank', 'of', 'germplasm', 'to', 'study', 'the', 'varieties', 'of', 'corn', 'in', 'Mexico', ',', 'and', 'second', 'they', 'chose', 'and', 'separated', 'only', 'two', 'varieties', 'of', 'the', 'approximately', '64', 'types', 'and', 'adapted', 'them', 'to', 'the', 'chemicals', 'above', 'mentioned', ',', 'producing', 'a', 'dependency', 'in', 'the', 'seed', 'which', 'could', 'not', 'grow', 'without', 'pesticides', '.', 'Then', ',', 'with', 'a', 'major', 'commitment', 'of', 'the', 'governments', 'through', 'credits', 'and', 'funding', ',', 'publicized', 'this', 'alleged', 'progress', 'as', 'a', 'need', 'for', 'peasants', '.', 'They', 'could', 'then', 'sell', 'these', \"'packages\", \"'\", 'to', 'the', 'farmers', ',', 'who', 'only', 'realized', 'their', 'negative', 'effects', 'after', 'spoiling', 'their', 'soil', 'and', 'water', 'with', 'nitrates', 'and', 'phosphates', 'among', 'other', 'toxic', 'elements', 'that', 'produced', 'soil', 'erosion', 'and', 'broke', 'the', 'biological', 'equilibrium', '.', 'Nowadays', \"'technological\", 'packages', \"'\", 'in', 'Mexico', 'include', 'hybrid', 'seeds', 'of', 'white', 'and', 'yellow', 'corn', ',', 'chemical', 'fertilizers', ',', 'herbicides', ',', 'and', 'pest', 'controllers', '.', 'All', 'of', 'them', 'come', 'with', 'a', 'negative', 'impact', 'in', 'health', '–', 'proved', 'this', 'year', 'in', 'the', 'United', 'States', 'by', 'the', 'court', 'case', 'of', 'Dewayne', 'Johnson', 'vs.', 'Monsanto', 'regarding', 'Roundup', 'Ready', ',', 'a', 'pesticide', 'that', 'contains', 'glyphosate', '.', '[', '5', ']', 'When', 'a', 'community', 'loses', 'their', 'traditional', 'seeds', '(', 'highly', 'adapted', 'to', 'their', 'territories', 'through', 'the', 'work', 'of', 'the', 'generations', 'before', ')', 'because', 'of', 'a', 'new', 'hybrid', ',', 'the', 'damage', 'is', 'difficult', 'to', 'undo', '.', 'Once', 'they', 'want', 'to', 'go', 'back', 'to', 'the', 'organic', 'ones', 'they', 'will', 'need', 'years', 'of', 'adaptation', ',', 'recovering', 'the', 'soil', 'again', 'that', 'will', 'in', 'consequence', 'provoke', 'a', 'low', 'production', '.', 'An', 'unbearable', 'lost', 'for', 'peasants', '.', 'In', 'the', 'nineties', ',', 'genetic', 'engineers', 'modified', 'the', 'hybrid', 'seeds', 'and', 'created', 'new', 'ones', 'by', 'mixing', 'animal', 'and', 'bacteria', 'genes', 'such', 'as', 'bacterium', \"'Bacillus\", \"thuringiensis'\", 'into', 'the', 'cereal', 'creating', 'the', 'BT', 'transgenic', 'corn', ',', 'also', 'dependent', 'on', 'agrochemicals', 'as', 'well', 'as', 'not', 'fertile', ',', 'which', 'meant', 'that', 'peasants', 'needed', 'to', 'buy', 'them', 'anew', 'each', 'year', '.', 'As', 'a', 'result', 'of', 'this', 'process', ',', 'today', 'in', 'Mexico', 'there', 'are', 'sequences', 'of', 'transgenic', 'contamination', 'of', '90.4', '%', 'in', 'the', 'whole', 'production', 'of', 'tortillas', 'which', 'are', 'consumed', 'with', 'every', 'meal', '.', '[', '6', ']', 'There', 'is', 'a', 'lot', 'of', 'money', 'invested', 'in', 'the', 'creation', 'of', 'food', 'that', 'is', 'low', 'in', 'nutrients', 'but', 'high', 'on', 'private', 'patents', 'owned', 'by', 'big', 'corporations', 'like', 'Bayer', '(', 'owner', 'of', 'Monsanto', ')', ',', 'Pioneer-Dupont', ',', 'Syngenta', ',', 'DOW', 'Agrosciences', ',', 'among', 'others', '.', 'This', 'has', 'created', 'a', 'scenario', 'where', 'the', 'keepers', 'of', 'ancestral', 'seeds', 'started', 'to', 'be', 'treated', 'as', 'criminals', 'because', 'of', 'the', 'pollination', 'of', 'their', 'harvest', 'from', 'transgenic', 'plants', '.', 'The', 'ancient', 'cultural', 'cycle', 'of', 'corn', 'is', 'now', 'a', 'dependent', 'one', '.', 'On', 'one', 'hand', 'there', 'is', 'a', 'biopolitical', 'issue', 'of', 'the', \"'green\", 'revolution', \"'\", 'where', 'traditional', 'practices', 'of', 'working', 'with', 'land', 'were', 'replaced', 'by', 'new', 'technologies', 'and', 'cooperate', 'businesses', 'agreements', '.', 'On', 'the', 'other', 'hand', ',', 'there', 'is', 'an', 'issue', 'of', 'who', 'has', 'the', 'capacity', 'and', 'power', 'of', 'deciding', 'who', 'lives', ',', 'and', 'therefore', 'also', 'who', 'dies', '.', 'Michel', 'Foucault', 'refers', 'to', 'a', 'kind', 'of', 'authority', 'that', 'is', '“', 'endangering', 'life', ',', '”', 'while', 'hiding', 'the', 'evidence', 'of', 'being', 'responsible', 'for', 'the', 'dead', '.', '[', '7', ']', 'According', 'to', 'this', ',', 'foundations', 'and', 'corporations', 'named', 'above', 'are', 'contaminating', 'corn', 'and', 'doing', 'so', 'guilty', 'of', 'an', 'act', 'of', '“', 'endangering', 'life.', '”', 'As', 'a', 'result', 'of', 'such', 'violent', 'acts', 'on', 'natural', 'goods', ',', 'a', 'huge', 'crisis', 'has', 'manifested', 'itself', 'in', 'the', 'indigenous', 'territories', '.', 'Peasants', 'are', 'in', 'poverty', 'in', 'part', 'as', 'consequence', 'of', 'the', 'global', 'competition', ',', 'which', 'has', 'lowered', 'the', 'prices', 'of', 'some', 'food', '.', 'The', 'only', 'possible', 'way', 'of', 'keeping', 'producers', 'in', 'the', 'market', 'is', 'by', 'having', 'more', 'land', 'where', 'bigger', 'quantities', 'of', 'food', 'can', 'be', 'produced', '.', 'This', 'leads', 'to', 'land', 'concentration', ';', 'a', 'few', 'actors', 'having', 'control', 'over', 'important', 'areas', '.', 'Additionally', ',', 'due', 'to', 'bad', 'harvest', 'the', 'value', 'of', 'their', 'products', 'is', 'so', 'low', 'that', 'farming', 'is', 'unprofitable', 'for', 'the', 'peasants', ',', 'who', 'lose', 'their', 'lands', 'to', 'these', 'economical', 'disasters', '.', 'And', 'as', 'if', 'that', 'isn', '’', 't', 'enough', 'the', 'state', 'of', 'Chiapas', ',', 'which', 'is', 'a', 'large', 'producer', 'of', 'corn', ',', 'is', 'also', 'importing', 'the', 'same', 'cereal', 'from', 'South', 'Africa', '.', 'This', 'type', 'of', 'transgenic', 'imported', 'grain', 'can', 'be', 'found', 'in', 'the', 'governmental', 'rural', 'stores', 'of', 'Diconsa', ',', 'competing', 'with', 'and', 'thus', 'endangering', 'local', 'varieties', 'and', 'peasant', 'production', '.', 'In', 'this', 'losing', 'cycle', ',', 'farmers', 'are', 'first', 'pushed', 'into', 'debt', 'and', 'then', 'onto', 'the', 'streets', ',', 'forced', 'to', 'start', 'working', 'for', 'others', 'on', 'the', 'lands', 'that', 'used', 'to', 'be', 'theirs', ';', 'a', 'result', 'of', 'the', 'systematic', 'process', 'of', 'impoverishment', '.', 'All', 'this', 'is', 'creating', 'a', 'downturn', ',', 'wherein', 'the', 'indigenous', 'young', 'people', 'are', 'looking', 'for', 'other', 'options', 'to', 'live', '.', 'Thus', 'some', 'of', 'them', 'are', 'migrating', 'legally', 'and', 'illegally', 'to', 'the', 'United', 'States', 'or', 'other', 'Mexican', 'territories', 'trying', 'to', 'find', 'a', 'job', 'in', 'touristic', 'places', '.', 'One', 'elder', 'man', 'from', 'Tenejapa', 'said', 'in', 'an', 'interview', ',', '“', 'Sometimes', 'it', 'looks', 'like', 'the', 'heart', 'of', 'young', 'people', 'is', 'a', 'stone', ',', 'it', 'seems', 'nothing', 'is', 'important', 'for', 'them', 'and', 'nothing', 'is', 'touching', 'them', 'anymore', '.', 'They', 'walk', 'without', 'knowing', 'where', 'they', 'are', 'going', ',', 'like', 'robots.', '”', '[', '8', ']', 'However', ',', 'in', 'the', 'middle', 'of', 'such', 'multilateral', 'complexity', 'some', 'of', 'them', 'are', 'keeping', 'the', 'seeds', ',', 'water', ',', 'lands', ',', 'wisdom', ',', 'and', 'memory', ',', 'alive', '.', '[', 'c', ']', 'III', '[', 'c', ']', 'I', 'feel-think', 'offerings', 'for', 'getting', 'water', 'and', 'food', 'are', 'a', 'reminder', 'for', 'us', 'to', 'be', 'grateful', 'for', 'what', 'we', 'have', 'received', 'from', 'previous', 'generations', 'and', 'take', 'care', 'of', 'this', 'common', 'goods', '.', 'Reciprocity', 'might', 'be', 'something', 'as', 'wonderful', 'as', 'the', 'kind', 'of', 'work', 'indigenous', 'cultures', 'do', 'when', 'they', 'are', 'preparing', 'their', 'meticulous', 'and', 'ephemeral', 'artistic', 'compositions', 'as', 'offering', 'for', 'the', 'water', '.', 'They', 'spend', 'a', 'lot', 'of', 'time', 'because', 'in', 'their', 'hearts', 'they', 'know', 'life', 'ends', 'when', 'water', 'is', 'not', 'flowing', ',', 'so', 'this', 'offering', 'is', 'worth', 'the', 'effort', '.', 'When', 'indigenous', 'people', 'are', 'keeping', 'corn', ',', 'they', 'are', 'cultivating', 'the', 'plant', 'with', 'great', 'respect', 'and', 'an', 'attention', 'that', 'goes', 'beyond', '‘', 'just', 'growing', 'it.', '’', 'They', 'also', 'sit', 'around', 'a', 'fire', 'in', 'the', 'kitchen', 'to', 'reproduce', 'face', 'to', 'face', 'the', 'teachings', 'of', 'the', 'meanings', ',', 'the', 'varieties', 'and', 'the', 'ways', 'for', 'harvesting', 'and', 'healing', 'with', 'corn', ';', 'all', 'the', 'wisdom', 'is', 'given', 'in', 'this', 'warm', 'community-oriented', 'touch', '.', 'Learning', 'to', 'listen', 'to', 'the', 'elders', 'and', 'keeping', 'in', 'touch', 'with', 'people', 'who', 'still', 'know', 'natural', 'ways', 'to', 'cultivate', 'as', 'well', 'as', 'carry', 'ancient', 'seeds', 'and', 'memories', ',', 'are', 'ways', 'to', 'remember', '.', 'But', 'to', 'resurge', 'these', 'practices', 'today', 'we', 'need', 'to', 'act', 'as', 'well', '.', 'We', 'need', 'to', 'disseminate', 'organic', 'seeds', 'and', 'the', 'knowledge', 'to', 'take', 'care', 'of', 'them', ',', 'appropriating', 'available', 'technologies', 'to', 'recover', 'natural', 'balance', 'in', 'living', '(', 'decontaminated', ')', 'soils', 'and', 'water', '.', 'This', 'is', 'a', 'time', 'for', 'creative', 'collective', 'praxis', 'to', 'protect', 'life', 'and', 'common', 'goods', ';', 'humanity', 'is', 'living', 'through', 'a', 'serious', 'historical', 'process', '.', 'Something', 'people', 'in', 'every', 'country', 'could', 'do', 'is', 'to', 'finding', 'community', 'solidarity', 'through', 'the', 'act', 'of', 'conserving', 'the', 'biodiversity', 'of', 'food', '.', 'For', 'example', ',', 'we', 'can', 'get', 'in', 'touch', 'with', 'the', 'seed', 'collectives', 'which', 'are', 'taking', 'on', 'a', 'significant', 'labor', 'by', 'keeping', 'germplasm', 'banks', 'to', 'conserve', 'seeds', 'in', 'low', 'temperature', 'environments', ',', 'and', ',', 'more', 'importantly', ',', 'growing', 'the', 'seeds', 'in', 'the', 'soil', 'and', 'renewing', 'each', 'cycle', '.', 'We', 'could', 'also', 'be', 'responsible', 'for', 'at', 'least', 'one', 'seed´s', 'survival', ',', 'in', 'our', 'rural', 'soils', 'we', 'should', 'research', 'cultural', 'production', 'systems', 'as', \"'milpa\", \"'\", 'to', 'associate', 'the', 'plants', '–', 'in', 'this', 'case', 'corn', 'and', 'beans', 'among', 'others', '–', 'to', 'have', 'abundant', 'and', 'various', 'harvests', '.', 'In', 'the', 'urban', 'areas', 'walls', ',', 'roofs', ',', 'or', 'pots', 'are', 'great', 'hosts', 'to', 'plants', ';', 'also', 'schools', 'or', 'parks', '.', 'Reinforcing', 'local', 'exchange', 'of', 'producers', 'and', 'conscient', 'consumers', 'is', 'also', 'important', '.', 'By', 'organizing', 'time', 'around', 'sustainable', ',', 'organic', ',', 'abundance', 'and', 'sharing', 'it', 'with', 'children', 'we', 'are', 'offering', 'to', 'the', 'Earth', 'and', 'humanity', 'life', ',', 'autonomy', ',', 'and', 'richness', '.', 'In', 'this', 'way', 'we', 'make', 'the', 'noble', 'effort', 'to', 'keep', 'alive', 'the', 'rainbow', 'seeds', '(', 'varieties', 'of', 'food', ')', 'to', 'give', 'the', 'future', 'as', 'much', 'colors', 'and', 'flavors', 'as', 'we', 'have', 'received', 'from', 'earth', 'and', 'our', 'previous', 'generations', '.', 'That', 'is', 'why', 'taking', 'myself', 'serious', 'is', 'an', 'act', 'of', 'reciprocity', ',', 'which', 'means', 'that', '(', 'inter', ')', 'acting', 'from', 'within', 'the', 'power', 'of', 'my', 'heart', 'is', 'necessary', 'because', 'through', 'my', 'work', 'and', 'my', 'way', 'of', 'living', 'I', 'am', 'affecting', 'others', ',', 'known', 'and', 'unknown', '.', 'As', 'native', 'people', 'say', 'it', 'is', 'through', 'the', 'heart', 'that', 'we', 'can', 'be', 'aware', 'of', 'the', 'consequences', 'of', 'our', 'acts', 'in', 'the', 'territory', 'we', 'live', 'in', 'without', 'ignoring', 'other', 'lands', 'and', 'people', '.', 'This', 'is', 'related', 'with', 'developing', 'fair', 'economics', 'and', 'politics', 'that', 'reduces', 'inequality', '.', 'It', 'is', 'important', 'to', 'highlight', 'that', 'dealing', 'with', 'the', 'urgent', 'problem', 'of', 'ecocide', 'means', 'dealing', 'with', 'the', 'collateral', 'disaster', 'of', 'genocide', '–', 'provoked', 'by', 'that', 'ecocide', '.', 'Addressing', 'such', 'issues', 'will', 'demand', 'that', 'we', 'recognize', ',', 'respect', ',', 'and', 'embrace', 'our', 'cultural', 'differences', ',', 'belief', 'systems', ',', 'traditions', ',', 'and', 'languages', 'ending', 'any', 'cultural', 'supremacy', 'and', 'dominance', 'that', 'requires', 'the', 'oppression', 'and', 'starvation', 'of', 'others', '.', 'Reciprocity', 'is', 'a', 'relationship', 'with', 'living', 'nature', ':', 'plants', ',', 'territory', ',', 'animals', ',', 'and', 'cultures', 'to', 'which', 'we', 'have', 'a', 'lot', 'to', 're-appropriate', 'and', 'learn', 'from', ',', 'because', 'feeding', 'ourselves', 'is', 'a', 'process', 'where', 'awareness', ',', 'memory', ',', 'and', 're-learning', 'are', 'needed', '.', 'The', 'construction', 'of', 'a', 'good', 'way', 'of', 'living', 'named', '[', 'i', ']', 'Lekil', 'kuxlejal', '[', 'i', ']', '(', 'full', ',', 'dignified', 'and', 'fair', 'life', ')', 'in', 'Tseltal', 'language', 'is', 'not', 'only', 'a', 'product', 'of', 'harmonic', 'relations', 'with', 'nature', 'and', 'society', ',', 'we', 'can', 'only', 'get', 'there', 'in', 'a', 'collective', 'transformation', 'process', 'where', 'both', 'concepts', 'of', 'reciprocity', 'ATATA', 'and', '[', 'i', ']', 'ich´el', 'ta', 'muk´', '[', 'i', ']', 'are', 'present', 'in', 'both', 'a', 'local', 'and/or', 'global', 'scale', ',', 'through', 'political', 'intimate', 'acts', 'and', 'public', 'transnational', 'reciprocal', 'agreements', '.', 'Footnotes', '1', '.', 'To', 'Yaku', '.', '2', '.', 'Pérez', 'Moreno', ',', 'María', 'Patricia', '.', '[', 'i', ']', \"O'tan\", '-', \"o'tanil\", '.', 'Corazón', ':', 'una', 'forma', 'de', 'ser', '-', 'estar', '-', 'hacer', '-', 'sentir', '-', 'pensar', 'de', 'los', 'tseltaletik', 'de', 'Bachajón', '[', 'i', ']', '.', 'Chiapas', ',', 'México', '.', 'FLACSO', ',', 'Quito', '.', '2014', '3', '.', 'Escribano', ',', 'Mariana', '.', '[', 'i', ']', 'Semiological', 'research', 'on', 'Mhuysqa', 'language', ',', 'Decryption', 'of', 'moon', 'calendar', 'numbers', '.', '[', 'i', ']', 'Antares', ',', 'Colombia', '.', '2002', '4', '.', 'López', 'Intzin', ',', 'Juan', '“', 'Ich', '’', 'el', 'ta', 'muk', '’', ':', 'the', 'plot', 'in', 'the', 'construction', 'of', 'the', 'Lekil', 'kuxlejal', '”', ',', 'in', ':', '[', 'i', ']', 'Feel-think', 'gender', '[', 'i', ']', '.', 'La', 'Casa', 'del', 'Mago', ',', 'Guadalajara', '.', '2013', '5', '.', 'Levin', ',', 'S.', 'and', 'Greenfield', ',', 'P.', 'Monsanto', 'ordered', 'to', 'pay', '$', '289m', 'as', 'jury', 'rules', 'weedkiller', 'caused', 'man', \"'s\", 'cancer', '.', 'The', 'Guardian', '.', 'https', ':', '//www.theguardian.com/business/2018/aug/10/monsanto-trial-cancer-dewayne-johnson-ruling', '.', '2018', '6', '.', 'Álvarez-Buylla', 'Roces', ',', 'Elena', '.', '[', 'i', ']', 'Agroecology', 'and', 'Sustainable', 'Food', 'Systems', '[', 'i', ']', '.', 'IE', 'y', 'C3', ',', 'UNAM', ',', 'México', '.', '2017', 'http', ':', '//www.dgcs.unam.mx/boletin/bdboletin/2017_607.html', '7', '.', 'Foucault', ',', 'Michel', '.', '[', 'i', ']', 'The', 'History', 'of', 'Sexuality', '[', 'i', ']', '.', '1997', '.', '8', '.', 'López', 'Intzin', ',', 'Juan', '.'], 'UNDECIDABILITY': ['Undecidability', 'Silvia', 'Bottiroli', 'Multiplying', 'the', 'Visible', 'The', 'word', '[', 'i', ']', 'undecidable', '[', 'i', ']', 'appears', 'in', '[', 'i', ']', 'Six', 'Memos', 'for', 'the', 'Next', 'Millennium', '[', 'i', ']', 'written', 'by', 'Italo', 'Calvino', 'in', '1985', 'for', 'his', 'Charles', 'Eliot', 'Norton', 'poetry', 'lectures', 'at', 'Harvard', 'University', '.', 'In', 'the', 'last', 'months', 'of', 'his', 'life', 'Calvino', 'worked', 'feverishly', 'on', 'these', 'lectures', ',', 'but', 'died', 'in', 'the', 'process', '.', 'In', 'the', 'five', 'memos', 'he', 'left', 'behind', ',', 'he', 'did', 'not', 'only', 'open', 'up', 'on', 'values', 'for', 'a', 'future', 'millennium', 'to', 'come', 'but', 'also', 'seemed', 'to', 'envision', 'future', 'as', 'a', 'darkness', 'that', 'withholds', 'many', 'forms', 'of', 'visibility', 'within', '.', 'Calvino', '’', 's', 'fourth', 'memo', ',', '[', '1', ']', '[', 'i', ']', 'Visibility', '[', 'i', ']', ',', 'revolves', 'around', 'the', 'capacity', 'of', 'literature', 'to', 'generate', 'images', 'and', 'to', 'create', 'a', 'kind', 'of', '“', 'mental', 'cinema', '”', 'where', 'fantasies', 'can', 'flow', 'continuously', '.', 'Calvino', 'focuses', 'on', 'the', 'imagination', 'as', '“', 'the', 'repertory', 'of', 'what', 'is', 'potential', ';', 'what', 'is', 'hypothetical', ';', 'what', 'does', 'not', 'exist', 'and', 'has', 'never', 'existed', ';', 'and', 'perhaps', 'will', 'never', 'exist', 'but', 'might', 'have', 'existed.', '”', '[', '2', ']', 'The', 'main', 'concern', 'that', 'he', 'brings', 'forth', 'lies', 'within', 'the', 'relation', 'between', 'contemporary', 'culture', 'and', 'imagination', ':', 'the', 'risk', 'to', 'definitely', 'lose', ',', 'in', 'the', 'overproduction', 'of', 'images', ',', 'the', 'power', 'of', 'bringing', 'visions', 'into', 'focus', 'with', 'our', 'eyes', 'shut', 'and', 'in', 'fact', 'of', '“', '[', 'i', ']', 'thinking', '[', 'i', ']', 'in', 'terms', 'of', 'images.', '”', '[', '3', ']', 'In', 'the', 'last', 'pages', 'of', 'the', 'lecture', ',', 'he', 'proposes', 'a', 'shift', 'from', 'understanding', 'the', 'fantastic', 'world', 'of', 'the', 'artist', ',', 'not', 'as', 'indefinable', ',', 'but', 'as', '[', 'i', ']', 'undecidable', '[', 'i', ']', '.', 'With', 'this', 'word', ',', 'Calvino', 'means', 'to', 'define', 'the', 'coexistence', 'and', 'the', 'relation', ',', 'within', 'any', 'literary', 'work', ',', 'between', 'three', 'different', 'dimensions', '.', 'The', 'first', 'dimension', 'is', 'the', 'artist', '’', 's', 'imagination', '–', 'a', 'world', 'of', 'potentialities', 'that', 'no', 'work', 'will', 'succeed', 'in', 'realizing', '.', 'The', 'second', 'is', 'the', 'reality', 'as', 'we', 'experience', 'it', 'by', 'living', '.', 'Finally', ',', 'the', 'third', 'is', 'the', 'world', 'of', 'the', 'actual', 'work', ',', 'made', 'by', 'the', 'layers', 'of', 'signs', 'that', 'accumulate', 'in', 'it', ';', 'compared', 'to', 'the', 'first', 'two', 'worlds', ',', 'it', 'is', '“', 'also', 'infinite', ',', 'but', 'more', 'easily', 'controlled', ',', 'less', 'refractory', 'to', 'formulation.', '”', '[', '4', ']', 'He', 'calls', 'the', 'link', 'between', 'these', 'three', 'worlds', '“', 'the', 'undecidable', ',', 'the', 'paradox', 'of', 'an', 'infinite', 'whole', 'that', 'contains', 'other', 'infinite', 'wholes.', '”', '[', '5', ']', 'For', 'Calvino', ',', 'artistic', 'operations', 'involve', ',', 'by', 'the', 'means', 'of', 'the', 'infinity', 'of', 'linguistic', 'possibilities', ',', 'the', 'infinity', 'of', 'the', 'artist', '’', 's', 'imagination', ',', 'and', 'the', 'infinity', 'of', 'contingencies', '.', 'Therefore', ',', '“', '[', 'the', ']', 'attempts', 'to', 'escape', 'the', 'vortex', 'of', 'multiplicity', 'are', 'useless.', '”', '[', '6', ']', 'In', 'his', 'fifth', 'memo', ',', 'he', 'subsequently', 'focuses', 'on', '[', 'i', ']', 'multiplicity', '[', 'i', ']', 'as', 'a', 'way', 'for', 'literature', 'to', 'comprehend', 'the', 'complex', 'nature', 'of', 'the', 'world', 'that', 'for', 'the', 'author', 'is', 'a', 'whole', 'of', 'wholes', ',', 'where', 'the', 'acts', 'of', 'watching', 'and', 'knowing', 'also', 'intervene', 'in', 'the', 'observed', 'reality', 'and', 'alter', 'it', '.', 'Calvino', 'is', 'particularly', 'fascinated', 'by', 'literary', 'works', 'that', 'are', 'built', 'upon', 'a', 'combinatory', 'logic', 'or', 'that', 'are', 'readable', 'as', 'different', 'narratives', '.', 'The', 'lecture', 'revolves', 'around', 'some', 'novels', 'that', 'contain', 'multiple', 'worlds', 'and', 'make', 'space', 'for', 'the', 'readers', '’', 'imaginations', '.', 'The', 'common', 'source', 'to', 'all', 'these', 'experiments', 'seems', 'to', 'rely', 'in', 'the', 'understanding', 'of', 'the', 'contemporary', 'novel', '“', 'as', 'an', 'encyclopedia', ',', 'as', 'a', 'method', 'of', 'knowledge', ',', 'and', ',', 'above', 'all', ',', 'as', 'a', 'network', 'of', 'connections', 'between', 'the', 'events', ',', 'the', 'people', ',', 'and', 'the', 'things', 'of', 'the', 'world.', '”', '[', '7', ']', 'Therefore', ',', 'let', '’', 's', 'think', 'visibility', 'and', 'multiplicity', 'together', ',', 'as', ':', 'a', 'multiplication', 'of', 'visibilities', '.', 'They', 'are', 'traits', 'specific', 'to', 'artistic', 'production', 'and', 'define', 'a', 'context', 'for', 'the', 'undecidable', ',', 'or', 'rather', 'for', 'undecidability', ',', 'as', 'the', 'quality', 'of', 'being', 'undecidable', '.', 'Calvino', 'seems', 'to', 'suggest', 'that', 'literature', '[', '8', ']', 'can', 'be', 'particularly', 'productive', 'of', 'futures', ',', 'if', 'it', 'makes', 'itself', 'visible', 'and', 'multiple', '.', 'Which', 'is', 'to', 'say', ',', 'if', 'it', 'doesn', '’', 't', 'give', 'up', 'on', 'involving', 'radically', 'different', 'realities', 'into', 'its', 'operation', 'modes', 'and', 'doesn', '’', 't', 'fade', 'out', 'from', 'the', 'scene', 'of', 'the', '‘', 'real', '’', 'world', '.', 'We', 'might', 'stretch', 'this', 'line', 'of', 'thought', 'a', 'bit', 'further', 'and', 'propose', 'that', 'art', '’', 's', 'potentiality', 'is', 'that', 'of', 'multiplying', 'the', 'visible', 'as', 'an', 'actual', 'counterstrategy', 'to', 'the', 'proliferation', 'of', 'images', 'that', 'surrounds', 'us', '.', 'A', 'strategy', 'that', 'is', 'capable', 'of', 'producing', 'different', 'conditions', 'of', 'visibility', '.', 'Embracing', 'what', 'we', 'are', 'capable', 'to', 'see', 'but', 'also', 'think', 'and', 'imagine', ',', 'to', 'fantasise', 'and', 'conceptualise', ';', 'and', 'bringing', 'into', 'existence', 'different', 'configurations', 'of', 'public', 'spaces', ',', 'collective', 'subjectivities', ',', 'and', 'social', 'gatherings', '.', 'Actual', 'and', 'Potential', 'Worlds', 'In', 'fact', ',', 'undecidability', 'is', 'a', 'specific', 'force', 'at', 'work', 'that', 'consciously', 'articulates', ',', 'redefines', ',', 'or', 'alters', 'the', 'complex', 'system', 'of', 'links', ',', 'bounds', ',', 'and', 'resonances', 'between', 'different', 'potential', 'and', 'actual', 'worlds', '.', 'In', 'this', 'sense', ',', 'undecidability', 'is', 'a', 'quality', 'specific', 'to', 'some', 'artworks', 'within', 'which', 'the', 'three', 'worlds', 'that', 'Calvino', 'describes', 'meet', 'and', 'yet', 'remain', 'untouched', ',', 'autonomous', ',', 'and', 'recognizable', '.', 'An', 'artwork', 'can', 'indeed', 'create', 'a', 'magnetic', 'field', 'where', 'different', 'actual', 'worlds', 'coexist', 'and', ',', 'by', 'living', 'next', 'to', 'each', 'other', 'yet', 'not', 'sharing', 'a', 'common', 'horizon', ',', 'generate', 'a', 'potential', 'world', '.', 'Then', '‘', 'potential', '’', 'does', 'not', 'mean', '‘', 'possible.', '’', 'In', 'fact', ',', 'if', 'something', 'is', 'possible', 'when', 'it', 'contains', 'and', 'under', 'certain', 'terms', 'performs', 'the', 'possibility', 'of', 'its', 'actualisation', ',', 'a', 'world', 'is', 'potential', 'when', 'it', 'can', 'maintain', 'its', 'potentiality', 'and', 'never', 'actualize', 'itself', 'into', 'one', 'actual', 'form', '.', 'In', 'particular', ',', 'the', 'potentiality', 'generated', 'by', 'undecidable', 'artworks', 'is', 'grounded', 'in', 'a', 'logic', 'of', 'addition', 'and', 'contradiction', 'that', 'is', 'specific', 'of', 'art', '.', 'A', 'logic', 'of', '‘', 'and…', 'and…', 'and…', '’', 'as', 'opposite', 'to', 'the', 'logic', 'of', '‘', 'either…', 'or…', '’', 'that', 'seems', 'to', 'rule', 'reality', '.', 'Artworks', 'are', 'places', 'where', 'contradictory', 'realities', 'can', 'coexist', 'without', 'withdrawing', 'or', 'cancelling', 'each', 'other', 'out', '.', 'They', 'can', 'be', 'sites', 'of', 'existence', 'and', 'of', 'experience', 'where', 'images', 'let', 'go', 'of', 'their', 'representational', 'nature', 'and', 'just', 'exist', 'as', 'such', '.', 'None', 'of', 'the', 'images', 'of', 'an', 'artwork', 'are', 'being', 'more', 'or', 'less', 'real', 'than', 'the', 'others', ',', 'no', 'matter', 'whether', 'they', 'come', 'as', 'pieces', 'of', 'reality', 'or', 'as', 'products', 'of', 'individual', 'or', 'collective', 'fantasies', '.', 'It', 'is', 'the', 'art', '(', 'work', ')', 'as', 'such', 'that', 'creates', 'a', 'ground', 'where', 'all', 'the', 'images', 'that', 'come', 'into', 'visibility', 'share', 'the', 'same', 'gradient', 'of', 'reality', ',', 'no', 'matter', 'whether', 'they', 'harmoniously', 'coexist', 'or', 'are', 'radically', 'conflicting', '.', 'If', 'every', 'work', 'builds', 'up', 'complete', 'systems', 'that', 'are', 'offered', 'to', 'its', 'visitors', 'or', 'spectators', 'to', 'enter', 'into', '–', 'if', 'the', 'invitation', 'of', 'art', 'is', 'often', 'that', 'of', 'losing', 'the', 'contact', 'with', 'known', 'worlds', 'in', 'order', 'to', 'slip', 'into', 'others', '–', 'something', 'radically', 'different', 'happens', 'within', 'an', 'art', 'that', 'practices', 'its', 'undecidability', '.', 'Here', ',', 'spectators', 'are', 'invited', 'to', 'enter', 'the', 'work', '’', 's', 'fictional', 'world', 'carrying', 'with', 'themselves', 'the', 'so-called', 'real', 'world', 'and', 'all', 'their', 'other', 'fictional', 'worlds', ';', 'a', 'space', 'is', 'created', 'where', 'all', 'these', 'worlds', 'are', 'equally', 'welcomed', '.', 'The', 'artwork', 'may', 'then', 'be', 'navigated', 'either', 'by', 'only', 'choosing', 'one', 'layer', 'of', 'reality', ',', 'or', 'by', 'continuously', 'stepping', 'from', 'one', 'world', 'to', 'another', '–', 'different', 'dimensions', 'are', 'made', 'available', 'without', 'any', 'form', 'of', 'hierarchy', 'or', 'predicted', 'relations', '.', 'Such', 'dynamics', 'seems', 'to', 'occur', 'in', 'performative', 'works', 'in', 'particular', ',', 'as', 'the', 'contemporaneity', 'of', 'production', ',', 'consumption', ',', 'and', 'experience', 'that', 'is', 'typical', 'of', 'performance', 'intensifies', 'the', 'possibility', 'of', 'undecidable', 'links', 'between', 'different', 'realities', '.', 'Moreover', ',', 'in', 'the', 'live', 'arts', 'the', 'curatorial', 'context', 'is', 'normally', 'visible', 'as', 'well', 'and', 'provides', 'one', 'more', 'layer', 'to', 'the', 'work', 'by', 'framing', 'or', 'mediating', 'it', '.', 'Azdora', 'A', 'good', 'example', 'of', 'an', 'undecidable', 'artwork', 'is', 'Markus', 'Öhrn', '’', 's', '[', 'i', ']', 'Azdora', '[', 'i', ']', ',', 'a', 'long-term', 'project', 'that', 'was', 'initiated', 'and', 'coproduced', 'by', 'Santarcangelo', 'Festival', 'in', '2015', '.', 'As', 'the', 'festival', 'artistic', 'director', 'at', 'that', 'time', 'I', 'had', 'the', 'chance', 'to', 'follow', 'and', 'support', 'the', 'project', '.', 'The', 'work', 'was', 'triggered', 'by', 'the', 'encounter', 'between', 'the', 'artist', ',', 'in', 'Santarcangelo', 'for', 'a', 'research', 'residency', ',', 'and', 'the', 'feminine', 'condition', 'present', 'in', 'traditional', 'family', 'structures', 'in', 'this', 'region', 'of', 'Italy', '.', 'In', 'particular', ',', 'what', 'struck', 'him', 'was', 'the', 'figure', 'of', 'the', '‘', 'azdora', ',', '’', 'a', 'dialect', 'word', 'that', 'means', 'the', '‘', 'holder', '’', 'of', 'the', 'house', 'and', 'of', 'the', 'family', '–', 'the', 'woman', 'who', 'is', 'in', 'charge', 'of', 'the', 'domestic', 'life', 'and', 'of', 'the', 'labours', 'of', 'care', '.', 'This', 'figure', 'is', 'at', 'the', 'same', 'time', 'powerful', ',', 'subordinate', ',', 'and', 'even', 'repressed', ':', 'through', 'her', 'devotion', ',', 'she', 'is', 'sacrificed', 'to', 'the', 'family', 'and', 'to', 'the', 'care', 'of', 'the', 'relationships', 'that', 'keep', 'it', 'together', '.', 'Interested', 'in', 'investigating', 'this', 'feminine', 'figure', 'and', 'the', 'possibility', 'that', 'it', 'suggests', 'of', 'a', 'matriarchal', 'societal', 'structure', ',', 'the', 'artist', 'made', 'a', 'call', 'for', '‘', 'azdoras', '’', 'to', 'work', 'together', 'with', 'him', 'on', 'the', 'creation', 'of', 'a', 'series', 'of', 'rituals', 'and', 'later', 'on', 'a', 'concert', '.', 'Both', 'the', 'rituals', 'and', 'the', 'concert', 'revolve', 'around', 'the', 'possibility', 'of', 'emancipation', 'and', 'the', 'exploration', 'of', 'the', 'wild', ',', 'even', 'destructive', 'side', 'of', 'the', 'figure', 'of', 'the', 'Azdora', '.', 'Twenty-eight', 'women', 'committed', 'to', 'a', 'long-term', 'project', 'together', 'with', 'Markus', 'Öhrn', 'and', 'dived', 'into', 'his', 'imagery', 'and', 'artistic', 'world', 'made', 'of', 'diverse', 'ingredients', 'among', 'which', 'were', 'the', 'tattoo', 'culture', ',', 'the', 'cult', 'of', 'bodybuilding', ',', 'and', 'the', 'noise', 'music', 'practice', '.', 'At', 'the', 'same', 'time', ',', 'the', '‘', 'azdoras', '’', 'were', 'asked', 'to', 'bring', 'in', 'their', 'own', 'ingredients', ';', 'imageries', ',', 'concerns', ',', 'and', 'desires', '.', 'Together', 'with', 'the', 'artist', 'and', 'the', 'female', 'musician', '?', 'Alos', 'and', 'with', 'the', 'mediation', 'of', 'the', 'festival', ',', 'they', 'embarked', 'into', 'the', 'adventure', 'of', 'entering', 'a', 'place', 'that', 'did', 'not', 'exist', 'yet', ',', 'creating', 'a', 'new', 'set', 'of', 'rules', 'and', 'behaviours', 'for', 'themselves', 'and', 'for', 'the', 'spectators', 'who', 'would', 'eventually', 'join', 'their', 'rituals', ',', 'attend', 'their', 'noise', 'concert', ',', 'or', 'bump', 'into', 'their', 'interventions', 'in', 'the', 'public', 'space', 'during', 'the', 'festival', 'period', '.', 'Similar', 'to', 'other', 'artistic', 'projects', 'that', 'one', 'could', 'trace', 'back', 'to', 'the', 'practice', 'of', 'undecidability', ',', '[', 'i', ']', 'Azdora', '[', 'i', ']', 'mingles', 'different', 'realities', 'and', 'fantastic', 'worlds', 'and', 'also', 'activates', 'a', 'participatory', 'dynamic', ',', 'yet', 'preserving', '“', 'the', 'grey', '[', 'i', ']', 'artistic', '[', 'i', ']', 'work', 'of', 'participatory', 'art.', '”', '[', '9', ']', 'In', 'other', 'words', ',', 'it', 'creates', 'and', 'protects', 'a', 'space', 'of', 'indeterminacy', '.', 'In', 'fact', ',', '[', 'i', ']', 'Azdora', '[', 'i', ']', 'is', 'at', 'the', 'same', 'time', 'a', 'performative', 'picture', ',', 'an', 'artistic', 'fantasy', ',', 'a', 'community', 'theatre', 'work', ',', 'an', 'emancipatory', 'process', ',', 'an', 'ongoing', 'workshop', ',', 'a', 'social', 'ritual', ',', 'and', 'a', 'concert', '.', 'Furthermore', ',', 'from', 'the', 'project', 'a', 'documentary', 'movie', 'and', 'a', 'sociological', 'survey', 'have', 'been', 'produced', ',', '[', '10', ']', 'multiplying', 'the', 'possibility', 'to', 'access', 'the', 'work', 'from', 'different', 'angles', 'and', 'via', 'different', 'formats', '.', 'If', 'the', 'coexistence', 'of', 'different', 'media', 'already', 'implies', 'different', 'angles', ',', 'durations', ',', 'discourses', ',', 'and', 'forms', 'of', 'spectatorship', ',', 'the', 'performance', 'itself', 'keeps', 'an', 'undecidable', 'bound', 'between', 'its', 'real', 'and', 'fictional', 'ontologies', '.', 'The', 'performative', 'work', 'of', '[', 'i', ']', 'Azdora', '[', 'i', ']', 'is', 'then', 'intrinsically', '‘', 'political', '’', 'according', 'to', 'Rancière', 'definition', 'of', '‘', 'metapolitics', ':', '’', 'a', 'destabilising', 'action', 'that', 'produces', 'a', 'conflict', 'vis', 'à', 'vis', 'what', 'is', 'thinkable', 'and', 'speakable', '.', '[', 'i', ']', 'Azdora', '[', 'i', ']', 'allows', 'different', 'interpretations', 'and', 'produces', 'conflicting', 'discourses', ',', 'yet', 'remaining', 'untouched', '.', 'This', 'does', 'not', 'necessarily', 'mean', 'complete', 'though', 'as', ',', 'on', 'the', 'contrary', ',', 'it', 'is', 'generating', 'a', 'multiplicity', 'of', 'different', 'gazes', 'that', 'are', 'all', 'legitimate', 'and', 'complete', 'but', 'yet', 'do', 'not', 'exhaust', 'the', 'work', '.', 'This', 'is', 'what', 'makes', 'the', 'performance', 'itself', 'unfulfilled', 'and', 'thus', 'incomplete', 'and', 'open', '.', 'A', 'Multiplicity', 'of', 'Gazes', 'An', 'undecidable', 'artwork', 'is', ',', 'in', 'other', 'words', ',', 'a', 'site', 'where', 'different', 'and', 'even', 'contradictory', 'individual', 'experiences', 'unfold', 'and', 'coexist', ',', 'with', 'no', 'hierarchical', 'structure', 'and', 'no', 'orchestration', '.', 'It', 'is', 'a', 'site', 'where', 'spectators', '’', 'gazes', 'are', 'not', 'composed', 'into', 'a', 'common', 'horizon', 'but', 'are', 'let', 'free', 'to', 'wildly', 'engage', 'with', 'all', 'the', 'realities', 'involved', ',', 'connecting', 'or', 'not', 'connecting', 'them', ',', 'and', 'in', 'the', 'end', 'to', 'experience', 'part', 'of', 'the', 'complex', '‘', 'whole', 'of', 'wholes', '’', 'that', 'is', 'the', 'artwork', '(', 'while', 'being', 'aware', 'or', 'unaware', 'of', 'the', 'existence', 'of', 'other', 'wholes', 'and', 'of', 'other', 'gazes', ')', '.', 'What', 'is', 'peculiar', 'to', 'this', 'kind', 'of', 'artworks', 'then', ',', 'and', 'what', 'within', 'them', 'can', 'produce', 'an', 'understanding', 'of', 'the', 'place', 'of', 'art', 'and', 'of', 'its', 'politics', 'today', ',', 'is', 'that', 'they', 'generate', 'a', 'multiplicity', 'of', 'gazes', 'and', 'of', 'forms', 'of', 'spectatorship', 'that', 'also', 'coexist', 'one', 'next', 'to', 'the', 'other', 'without', 'mediating', 'between', 'their', 'own', 'positions', 'and', 'points', 'of', 'view', '.', 'The', 'multiplicity', 'of', 'gazes', 'produced', 'and', 'gathered', 'by', 'undecidable', 'artworks', 'does', 'not', 'compose', 'itself', 'into', 'a', 'community', ',', 'as', 'there', 'is', 'no', '‘', 'common', '’', 'present', '.', 'Rather', ',', 'it', 'generates', 'a', 'radical', 'collectivity', 'based', 'on', 'multiplicity', 'and', 'on', 'conflicting', 'positions', 'that', 'are', 'not', 'called', 'to', 'any', 'form', 'of', 'negotiation', ',', 'but', 'just', 'to', 'a', 'cohabitation', 'of', 'the', 'space', 'of', 'the', 'work', '.', 'Spectators', 'and', 'their', 'views', 'and', 'imaginations', 'are', 'acknowledged', 'as', 'equal', 'parts', 'of', 'a', 'collective', 'body', 'that', 'exist', 'next', 'to', 'each', 'other', '.', 'They', 'don', '’', 't', 'fuse', 'in', 'one', 'common', 'thought', 'and', 'don', '’', 't', 'see', 'or', 'reflect', 'one', 'common', 'image', ',', 'yet', 'effect', 'each', 'other', 'by', 'their', 'sheer', 'presence', 'and', 'existence', ',', 'operating', 'as', 'a', 'prism', 'that', 'multiplies', 'the', 'reality', 'it', 'reflects', '.', 'A', 'space', 'of', 'communication', 'is', 'opened', 'here', 'that', 'is', 'not', 'meant', 'for', 'unilateral', 'or', 'bilateral', 'exchanges', ',', 'but', 'rather', 'for', 'a', 'circulation', 'of', 'information', 'and', 'interpretations', '–', 'both', 'of', 'fictions', 'and', 'projections', '.', 'A', 'circulation', 'over', 'which', 'no', 'one', '–', 'not', 'even', 'the', 'artist', '–', 'exercises', 'a', 'full', 'control', '.', 'The', 'place', 'of', 'the', 'author', 'is', 'then', 'challenged', 'and', 'responsibility', 'is', 'shared', 'with', 'the', 'audience', 'not', 'as', 'a', 'participant', ',', '[', '11', ']', 'but', 'rather', 'as', 'an', 'unknowable', 'and', 'undecidable', 'collective', 'body', 'that', 'receives', ',', 'reverberates', ',', 'and', 'twists', 'it', '.', 'Multiple', 'forms', 'of', 'public', 'spaces', 'and', 'collective', 'subjectivities', 'thus', 'arise', 'and', 'start', 'inhabiting', 'a', 'productive', 'time', 'that', 'goes', 'much', 'beyond', 'the', 'artwork', 'itself', 'and', 'is', 'still', 'loaded', 'by', 'the', 'specific', 'geography', 'of', 'infinities', 'that', 'it', 'has', 'produced', '.', 'The', 'kind', 'of', 'collective', 'body', 'that', 'undecidability', 'produces', 'could', 'of', 'course', 'be', 'seen', 'as', 'an', 'image', 'of', 'a', 'possible', 'or', 'future', 'societal', 'structure', ',', 'but', 'it', 'is', 'rather', 'an', 'enigmatic', 'subject', ':', 'it', 'is', 'not', 'there', 'to', 'actualize', 'itself', 'but', 'to', 'keep', 'being', 'a', 'sheer', ',', 'glimmering', 'potentiality', '.', 'Indeed', ',', 'as', 'a', 'practice', 'of', 'undecidability', ',', 'art', 'produces', 'a', 'collectivity', ',', 'a', 'future', 'time', ',', 'and', 'an', 'elsewhere', ',', 'but', 'does', 'not', 'claim', 'any', 'agency', 'over', 'them', '.', 'It', 'rather', 'operates', 'in', 'a', 'regime', 'of', 'prefiguration', ',', '[', '12', ']', 'which', 'is', 'to', 'say', 'it', 'does', 'not', 'tend', 'towards', 'a', 'pre-existing', ',', 'visible', 'image', '.', 'On', 'the', 'contrary', ',', 'it', 'proceeds', 'in', 'the', 'darkness', 'in', 'order', 'to', 'produce', 'different', 'forms', 'of', 'visibility', 'within', 'it', '.', 'Undecidability', 'could', 'then', 'be', 'detached', 'from', 'art', 'and', 'applied', 'to', 'curation', ',', 'instituting', 'processes', 'or', 'even', 'to', 'politics', 'at', 'large', ':', 'the', 'unfolding', 'of', 'its', 'resonances', 'and', 'consequences', 'already', 'opens', 'this', 'possibility', 'and', 'even', 'beckons', 'it', '.', 'Nevertheless', ',', 'acknowledging', 'it', 'as', 'specific', 'to', 'art', ',', 'and', 'thus', 'as', 'a', 'means', 'without', 'ends', ',', 'seems', 'to', 'better', 'protect', 'the', 'inner', 'nature', 'and', 'the', 'intact', 'potentiality', 'of', 'a', 'quality', 'that', 'does', 'not', 'make', 'itself', 'available', 'for', 'any', 'use', 'and', 'does', 'not', 'serve', 'any', 'agenda', ',', 'but', 'stays', 'autonomous', 'and', 'operates', 'by', 'creating', 'its', 'own', 'conditions', 'all', 'over', 'again', '.', 'Ultimately', ',', 'a', 'political', 'dimension', 'does', 'spring', 'from', 'an', 'art', 'that', 'practices', 'its', 'undecidability', 'and', 'from', 'its', 'encounter', 'with', 'a', 'multiplicity', 'of', 'gazes', '.', 'Preserving', 'it', 'is', 'possible', 'also', 'by', 'curating', 'the', 'relation', 'between', 'the', 'artworks', 'and', 'their', 'spectators', 'and', 'by', 'setting', 'the', 'conditions', 'for', 'an', 'intensity', 'that', 'can', 'last', 'in', 'time', 'and', 'reverberate', 'much', 'wider', 'and', 'much', 'longer', 'than', 'in', 'the', 'actual', 'shared', 'space', 'and', 'time', 'of', 'the', 'performance', '.', 'Through', 'the', 'combination', 'of', 'the', 'encounter', 'between', 'undecidable', 'art', ',', 'multiplicity', 'of', 'gazes', ',', 'and', 'a', 'curatorial', 'dimension', 'a', 'condition', 'of', 'existence', 'is', 'produced', 'that', 'is', 'intrinsically', 'and', 'utterly', 'political', 'as', 'it', 'is', ',', 'with', 'Samuel', 'Beckett', '’', 's', 'words', 'in', '[', 'i', ']', 'The', 'Unnamable', '[', 'i', ']', ',', 'about', 'being', '“', 'all', 'these', 'words', ',', 'all', 'these', 'strangers', ',', 'this', 'dust', 'of', 'words', ',', 'with', 'no', 'ground', 'for', 'their', 'settling', '”', '.', 'Footnotes', ':', '1', '.', 'Out', 'of', 'five', ',', 'the', 'sixth', 'lecture', 'was', 'never', 'written', ',', 'as', 'the', 'author', 'died', 'suddenly', 'and', 'the', 'series', 'remained', 'unfinished', ',', 'and', 'yet', 'published', 'with', 'its', 'original', ',', 'and', 'now', 'misleading', ',', 'title', '.', '2', '.', 'Italo', 'Calvino', ',', '[', 'i', ']', 'Visibility', ',', 'in', 'Six', 'Memos', 'for', 'the', 'Next', 'Millennium', '[', 'i', ']', ',', 'Harvard', 'University', 'Press', ',', 'Cambridge', '1988', ',', 'p.', '91', '.', '3.', 'ibid', ',', 'p.', '92', '.', '4.', 'ibid', ',', 'p.', '97', '.', '5.', 'ibid', '.', '6.', 'ibid', ',', 'p.', '98', '.', '7', '.', 'Italo', 'Calvino', ',', 'Multiplicity', ',', '[', 'i', ']', 'Six', 'Memos', 'for', 'the', 'Next', 'Millennium', '[', 'i', ']', ',', 'cit.', ',', 'p.', '105', '.', '8', '.', 'Or', '‘', 'art', '’', 'which', 'is', 'the', 'term', 'I', 'will', 'use', 'below', 'for', 'the', 'rest', 'of', 'this', 'essay', '.', '9', '.', 'Claire', 'Bishop', ',', '[', 'i', ']', 'Artificial', 'Hells', '.', 'Participatory', 'Art', 'and', 'the', 'Politics', 'of', 'Spectatorship', '[', 'i', ']', ',', 'Verso', ',', 'London-New', 'York', '2012', ',', 'p.', '33', '.', '10', '.', 'Respectively', 'by', 'the', 'independent', 'filmmaker', 'Sarah', 'Barberis', 'and', 'by', 'the', 'researcher', 'Laura', 'Gemini', 'at', 'the', 'Urbino', 'University', '.', '11', '.', 'An', 'active', 'group', 'of', 'spectators', 'invited', 'to', 'exercise', 'their', 'agency', 'over', 'the', 'artwork', '12', '.', 'See', 'Valeria', 'Graziano', ',', '[', 'i', ']', 'Prefigurative', 'Practices', ':', 'Raw', 'Materials', 'for', 'a', 'Political', 'Positioning', 'of', 'Art', ',', 'Leaving', 'the', 'Avant-garde', '[', 'i', ']', ',', 'in', 'Elke', 'van', 'Campenhout', 'and', 'Lilia', 'Mestre', '(', 'ed', '.', ')', ',', 'Turn', ',', 'Turtle', '!', 'Reenacting', 'the', 'Institute', ',', 'Alexander', 'Verlag', ',', 'Berlin', '2016', ',', 'pp', '.', '158-172', '.'], 'TENSE': ['Simon', '(', 'e', ')', 'van', 'Saarloos', 'TENSE', 'Words', 'That', 'Do', 'Not', 'Kill', '.', 'You', 'want', 'me', 'give', 'you', 'a', 'testimony', 'about', 'my', 'life', 'And', 'how', 'good', 'he', '’', 's', 'been', 'to', 'me', 'I', 'don', '’', 't', 'know', 'what', 'to', 'tell', 'you', 'about', 'him', 'I', 'love', 'him', 'so', 'much', 'with', 'all', 'my', 'heart', 'and', 'my', 'soul', 'With', 'every', 'bone', 'in', 'my', 'body', 'I', 'love', 'him', 'so', 'much', 'Because', 'he', '’', 's', 'done', 'so', 'much', 'for', 'me', '.', 'Every', 'morning', 'Every', 'day', 'of', 'my', 'life', 'I', 'won', '’', 't', 'always', 'be', 'crying', 'tears', 'In', 'the', 'middle', 'of', 'the', 'night', ',', 'and', 'I', 'won', '’', 't', 'always', 'have', 'to', 'wake', 'up', 'By', 'myself', 'wondering', 'how', 'I', '’', 'm', 'gon', 'na', 'get', 'through', 'the', 'day', 'I', 'won', '’', 't', 'always', 'have', 'to', 'think', 'about', 'what', 'I', '’', 'm', 'gon', 'na', 'do', 'And', 'how', 'I', '’', 'm', 'gon', 'na', ',', 'how', 'I', '’', 'm', 'gon', 'na', 'make', 'it', 'How', 'I', '’', 'm', 'gon', 'na', 'get', 'there', ',', 'because', 'he…', 'He', '’', 's', 'gon', 'na', 'be', 'there', 'for', 'me', '(', '…', ')', 'It', 'feels', 'so', 'good', 'to', 'be', 'free', 'To', 'be', 'accepted', 'for', 'who', 'you', 'are', 'and', 'loved', 'no', 'matter', 'what', '.', '[', '1', ']', 'For', 'someone', 'growing', 'up', 'non-religious', ',', 'this', 'intro', 'on', 'Kayne', 'West', '’', 's', 'new', 'album', ',', '[', 'i', ']', 'The', 'Life', 'of', 'Pablo', '[', 'i', ']', ',', 'made', 'me', 'understand', 'something', 'I', 'never', 'had', 'before', '.', 'The', 'song', 'starts', 'in', 'such', 'a', 'sensuous', 'way', ',', 'that', 'I', 'truly', 'thought', 'the', 'singer', 'was', 'giving', 'me', 'an', 'account', 'of', 'her', 'longing', 'for', '‘', 'him', ',', '’', 'a', 'fleshy', 'him', ',', 'a', 'human', 'him', ',', 'a', 'flawed', 'but', 'trustworthy', 'male', '.', 'Instead', ',', 'she', 'was', 'expressing', 'her', 'love', 'and', 'trust', 'in', 'God', '.', 'This', 'only', 'becomes', 'clear', 'at', 'the', 'end', 'of', 'her', 'pledge', ',', 'in', 'the', 'last', 'two', 'sentences', ':', '“', 'Oh', 'Lord', 'thank', 'you', ',', 'You', 'are', 'the', 'joy', 'of', 'my', 'life.', '”', 'Interestingly', 'enough', ',', 'it', 'was', 'only', 'then', 'that', 'I', 'was', 'able', 'to', 'enjoy', 'this', 'spoken', 'song', 'called', '“', 'Low', 'Lights.', '”', 'As', ',', 'when', 'I', 'still', 'thought', 'the', 'singer', 'was', 'displaying', 'her', 'love', 'for', 'a', 'human', 'him', '(', 'not', 'Him', ')', ',', 'I', 'considered', 'the', 'lyrics', 'overtly', 'romantic', ',', 'overtly', 'dependent', '.', 'This', 'of', 'course', 'says', 'a', 'lot', 'about', 'my', 'own', 'beliefs', 'about', 'love', '(', 'just', 'as', 'much', 'as', 'it', 'says', 'about', 'what', 'we', 'are', 'conditioned', 'to', 'expect', 'and', 'recognize', 'as', 'love', 'in', 'music', ',', 'movies', ',', 'and', 'other', 'popular', 'expressions', ')', '.', '[', '2', ']', 'As', 'soon', 'as', 'I', 'realized', 'it', 'was', 'about', 'her', 'love', 'for', 'God', ',', 'I', 'was', 'totally', 'drawn', 'in', ',', 'immersed', 'by', 'the', 'intensity', 'of', 'her', 'submission', 'to', 'Him', '.', '[', '3', ']', 'And', 'suddenly', 'I', 'understood', 'that', 'it', 'was', 'her', 'strong', 'language', 'that', 'displayed', ',', 'inhabited', ',', 'shaped', ',', 'constructed', ',', 'and', 'created', 'her', 'love', 'and', 'trust', 'for', 'him', '.', 'Her', 'language', 'wasn', '’', 't', 'just', 'a', 'true', 'account', 'of', 'her', 'worship', ',', 'the', 'language', 'generated', 'and', 'endorsed', 'the', 'love', '.', 'The', 'love', 'existed', 'because', 'of', 'her', 'saying', 'it', 'out', 'loud', '.', 'Surrender', 'For', 'me', ',', 'growing', 'up', 'secular', 'and', 'without', 'spiritual', 'rituals', ',', 'it', 'seemed', 'impossible', 'to', 'start', 'believing', 'in', 'a', 'higher', 'power', 'that', 'can', 'be', 'named', 'as', '‘', 'Lord.', '’', 'Theoretically', ',', 'I', 'may', 'want', 'to', 'submit', 'to', 'one', 'idea', 'or', 'force', ',', 'but', 'it', 'is', 'exactly', 'this', 'longing', 'to', 'surrender', 'that', 'seems', 'to', 'suspend', 'the', 'possibility', 'of', 'actually', 'belief', '.', '[', 'i', ']', 'Wanting', '[', 'i', ']', 'to', 'submit', 'isn', '’', 't', 'the', 'same', 'as', 'submission', 'itself', '–', 'it', 'is', 'the', 'incapacity', 'of', 'submitting', 'to', 'submission', '.', 'Being', 'able', 'to', 'view', 'submission', ',', 'as', 'something', 'one', 'can', '[', 'i', ']', 'do', '[', 'i', ']', ',', 'is', 'exactly', 'what', 'withholds', 'submission', '.', 'However', ',', 'when', 'I', 'heard', 'this', 'singer', 'in', '“', 'Low', 'Lights', ',', '”', 'I', 'suddenly', 'realized', 'I', 'could', 'do', '[', 'i', ']', 'that', '[', 'i', ']', ',', 'I', 'could', 'express', 'a', 'message', 'in', 'a', 'convinced', ',', 'rhetorical', ',', 'and', 'descriptive', 'manner', ',', 'without', 'necessarily', 'believing', 'the', 'content', 'of', 'this', 'message', '.', 'I', 'love', 'language', '.', 'I', 'love', 'language', 'so', 'much', 'that', 'I', 'can', 'sound', 'very', 'convincing', 'saying', 'just', 'about', 'anything', '.', 'I', 'could', 'express', 'submission', ',', 'whether', 'or', 'not', 'I', 'believe', 'that', 'I', 'am', 'truly', 'feeling', 'submission', '.', 'In', 'this', 'convinced', 'language', ',', 'by', 'expressing', 'surrender', 'I', 'would', 'experience', 'surrender', 'because', 'the', 'language', 'of', 'worship', 'and', 'submission', 'is', 'not', 'descriptive', 'but', 'performative', '.', 'Words', 'create', '.', 'Words', 'do', 'not', 'just', 'describe', ',', 'they', 'are', 'gestures', 'confirming', 'and', 'producing', 'realities', '.', '[', '4', ']', 'As', 'love', 'is', 'an', 'abstraction', ',', 'and', 'not', ',', 'for', 'example', ',', 'a', 'chair', 'one', 'can', 'point', 'to', ',', 'stating', '‘', 'I', 'love', 'him', 'so', 'much', '’', '[', 'i', ']', 'is', '[', 'i', ']', 'the', 'love', '.', 'My', 'understanding', 'of', '“', 'Low', 'Lights', '”', 'comes', 'from', 'this', 'trickle-down', 'scheme', ':', '1', ')', 'Being', 'unable', 'to', 'hear', 'a', 'person', 'expressing', 'Person-To-God', 'Love', '(', 'PTGL', ')', '.', '2', ')', 'Rejecting', 'Girl-To-Boy', 'Love', '(', 'GTBL', ')', ',', 'but', 'expecting', 'and', 'thereby', 'accepting', 'GTBL', '’', 's', 'existence', '.', '3', ')', 'Realizing', 'that', 'GTBL', 'is', 'actually', 'PTGL', ';', 'thus', 'by', 'acknowledging', 'GTBL', ',', 'becoming', 'able', 'to', 'acknowledge', 'PTGL', '.', 'It', 'wasn', '’', 't', 'just', 'this', 'trickle', 'down', 'love-scheme', 'that', 'allowed', 'me', 'to', 'gain', 'some', 'understanding', 'of', 'the', 'depth', 'of', 'expressing', 'worship', '.', 'It', 'was', 'the', 'singer', '’', 's', 'voice', 'too', '.', 'Her', 'voice', 'sounds', 'so', 'joyous', 'and', 'rich', ',', 'it', 'actually', 'reminded', 'me', 'of', 'having', 'sex', ',', 'of', 'my', 'lover', 'telling', 'me', 'I', 'scream', '‘', 'like', 'a', 'wounded', 'animal.', '’', 'Because', 'my', 'lover', 'draws', 'this', 'image', ',', 'allowing', 'my', 'screeches', 'of', 'joy', 'to', 'leave', 'the', 'bedroom', 'through', 'a', 'metaphor', ',', 'the', 'sounds', 'I', 'make', 'became', 'something', 'totally', 'new', 'in', 'my', 'own', 'ears', '.', 'My', 'lover', 'illuminated', 'my', 'responsive', 'sounds', 'through', 'a', 'metaphor', ',', 'joyfully', 'describing', 'my', 'joy', '.', 'I', 'had', 'forgotten', 'to', 'hear', 'my', 'own', 'sounds', ',', 'they', 'belonged', 'to', 'having', 'sex', ',', 'but', 'until', 'then', ',', 'they', 'had', 'no', 'identity', 'or', 'noticed', 'existence', 'outside', 'of', 'that', 'moment', '.', 'The', 'same', 'happened', 'when', 'she', 'described', 'my', 'cunt', '.', 'She', 'described', 'its', 'shapes', 'and', 'textures', 'and', 'colors', '.', 'At', 'first', 'it', 'made', 'me', 'shy', '.', 'But', 'the', 'next', 'time', 'we', 'had', 'sex', ',', 'I', 'noticed', 'how', 'her', 'descriptions', 'made', 'my', 'experience', 'different', '.', 'For', 'the', 'first', 'time', 'I', 'consciously', 'experienced', 'the', 'thickness', 'of', 'my', 'inner', 'lips', ',', 'the', 'swollenness', 'of', 'my', 'clit', '.', 'Her', 'words', 'had', 'set', 'these', 'parts', 'of', 'my', 'cunt', '‘', 'aside', ';', '’', 'her', 'words', 'placed', 'them', 'outside', 'of', 'my', 'body', 'and', 'allowed', 'me', 'to', 'have', 'a', 'fuller', 'experience', 'of', 'my', 'body', '.', 'For', 'me', ',', 'the', 'words', 'she', 'used', 'are', 'more', 'than', 'a', 'description', 'working', 'as', 'an', 'intensifier', '.', 'Her', 'noticing', 'evoked', 'noticing', '.', 'The', 'unquestioned', 'way', 'she', 'described', 'my', 'body', 'made', 'my', 'body', 'feel', '–', 'totally', ',', 'fully', '–', 'as', 'she', 'had', 'described', 'it', '.', 'I', 'have', 'never', 'experienced', 'myself', 'as', '[', 'i', ']', 'one', 'thing', 'true', '[', 'i', ']', 'or', '[', 'i', ']', 'full', '[', 'i', ']', ',', 'but', 'due', 'to', 'her', 'confident', 'description', 'I', 'could', 'feel', 'myself', 'fully', '[', 'i', ']', 'being', '[', 'i', ']', 'her', 'description', ':', 'thick', ',', 'swollen', ',', 'screaming', '.', 'This', ',', 'however', ',', 'does', 'not', 'mean', 'that', 'I', 'feel', 'defined', '.', 'I', 'can', 'confidently', 'say', 'that', 'her', 'descriptions', 'are', 'relative', 'as', 'no', 'genitals', 'are', 'average', 'and', 'all', 'adjectives', 'that', 'she', 'finds', 'truth', 'in', 'are', 'a', 'matter', 'of', 'perception', '.', 'It', 'is', 'not', 'like', 'her', 'description', 'became', '‘', 'facts', 'about', 'my', 'cunt.', '’', 'It', 'is', 'not', 'the', 'exact', 'truth', 'of', 'her', 'words', ',', 'but', 'our', 'joint', 'submission', 'to', 'her', 'expression', 'that', 'shaped', 'the', 'totality', 'of', 'my', 'experience', '.', 'If', 'her', 'description', 'had', 'any', 'other', 'goal', 'than', 'lovingly', 'celebrating', 'my', 'body', 'and', 'its', 'sounds', ',', 'her', 'words', 'would', 'have', 'had', 'a', 'different', 'effect', '.', 'If', 'she', 'had', 'meant', 'to', 'scale', 'my', 'genitals', 'and', 'sounds', ',', 'comparing', 'them', ',', 'rating', 'them', ',', 'her', 'metaphor', 'would', 'have', 'felt', 'reducing', '.', 'The', 'metaphor', 'wouldn', '’', 't', 'allow', 'me', 'to', 'experience', 'full', 'oneness', ',', 'the', 'metaphor', 'would', 'reduce', 'me', 'to', '[', 'i', ']', 'being', '[', 'i', ']', 'my', 'inner', 'lips', ',', 'just', 'because', 'her', 'description', 'was', 'meant', 'value', 'determining', '.', 'In', 'that', 'case', 'we', '’', 'd', 'encounter', 'the', 'moment', 'when', 'words', 'and', 'metaphors', 'turn', 'into', 'definitions', ',', 'locking', 'a', 'reality', 'down', 'in', 'order', 'either', 'to', 'compare', ',', 'classify', ',', 'appraise', '.', 'Tense', 'Why', 'am', 'I', 'describing', 'this', 'intimate', 'body/language', 'experience', '?', 'Because', 'I', 'was', 'surprised', 'by', 'the', 'thorough', ',', 'alive', ',', 'and', 'bodily', 'experience', 'of', 'words', '.', 'I', '’', 'm', 'a', 'lover', 'of', 'words', ',', 'but', 'I', '’', 'm', 'very', 'much', 'aimed', 'at', 'language', '’', 's', 'shortcomings', '.', 'One', 'of', 'the', 'difficulties', 'of', 'language', 'I', 'have', 'recently', 'been', 'involved', 'with', ',', 'is', 'the', 'gap', 'between', 'an', 'event', 'and', 'the', 'moment', 'this', 'event', 'is', 'described', '.', 'Anthropologist', 'Elizabeth', 'Povinelli', 'calls', 'this', 'gap', '‘', 'tense.', '’', 'Even', 'now', ',', 'just', 'by', 'recalling', 'her', 'theory', 'on', 'tense', 'in', 'her', 'book', '[', 'i', ']', 'Economies', 'of', 'Abandonment', '[', 'i', ']', ',', 'I', '’', 'm', 'sort', 'of', 'finalizing', 'her', 'theory', ',', 'presenting', 'it', 'as', 'something', 'done', 'and', 'seizable', ',', 'instead', 'of', 'as', 'the', 'continuous', 'thinking', 'she', 'is', 'trying', 'to', 'surface', '.', 'Language', 'kills', 'continuation', '.', 'When', 'we', 'describe', 'something', ',', 'we', 'deny', 'the', 'continuity', 'of', 'that', 'which', 'we', 'describe', '.', 'When', 'we', 'describe', 'something', 'or', 'someone', ',', 'that', 'something', 'or', 'someone', 'still', 'exists', 'beyond', 'and', 'without', 'our', 'description', '.', 'The', 'description', 'itself', 'however', 'is', 'seen', 'as', 'the', 'carrier', 'of', 'some', 'kind', 'of', 'truth', '.', 'The', 'description', 'is', 'taken', 'serious', '.', 'The', 'description', 'allows', 'us', 'to', 'look', '[', 'i', ']', 'at', '[', 'i', ']', 'something', ',', 'rather', 'than', 'living', '[', 'i', ']', 'with', '[', 'i', ']', 'it', '.', 'The', 'dilemma', 'that', '[', 'i', ']', 'tense', '[', 'i', ']', 'puts', 'forward', 'has', 'been', 'bugging', 'me', ':', 'how', 'can', 'I', 'use', 'words', 'without', 'killing', 'what', 'I', '’', 'd', 'like', 'to', 'draw', 'attention', 'to', '?', 'How', 'can', 'we', 'display', 'continuous', 'time', 'while', 'using', 'language', '?', 'Language', 'itself', 'is', 'constantly', 'drawing', 'from', 'the', 'past', '.', 'You', 'do', 'not', 'have', 'to', 'be', 'a', 'scholar', 'in', 'linguistics', 'to', 'understand', 'that', 'every', 'single', 'word', 'needs', 'a', 'memory', '–', 'not', 'a', 'sentimental', 'or', 'deeply', 'felt', 'one', 'per', 'se', '–', 'but', 'in', 'order', 'to', 'use', 'a', 'word', 'we', 'need', 'to', 'at', 'least', 'remember', 'its', 'meaning', ',', 'remember', 'that', 'it', 'has', 'a', 'meaning', ',', 'remember', 'that', 'a', 'word', 'has', 'a', 'certain', 'length', 'and', 'shape', '–', 'that', 'certain', 'letters', 'are', 'part', 'of', 'the', 'word', 'while', 'others', 'are', 'not', '.', 'I', 'felt', 'I', 'was', 'experiencing', 'continuousness', 'of', 'language', 'when', 'I', 'was', 'having', 'sex', 'and', 'feeling', 'my', 'cunt', 'and', 'hearing', 'my', 'screams', 'as', 'my', 'lover', 'had', 'described', 'it', '.', 'The', 'descriptions', 'became', 'experience', '.', 'The', 'in-between', 'time', 'defined', 'as', 'tense', ',', 'creates', 'a', 'certain', 'superiority', 'of', 'the', 'person', 'speaking', ',', 'especially', 'as', 'the', 'person', 'speaking', 'starts', 'to', 'claim', 'a', 'moment', 'in', 'time', 'and', 'space', '.', 'While', 'language', 'kills', 'what', 'is', 'being', 'described', ',', 'it', 'enlivens', 'the', 'speaker', '.', 'Questioning', 'tense', 'is', 'a', 'feminist', 'practise', ',', 'as', 'feminism', 'is', 'concerned', 'with', 'power', 'relations', 'and', 'the', 'inequalities', 'and', 'precarities', 'it', 'produces', '.', 'Feminism', 'maps', 'and', 'redistributes', 'who', 'holds', 'space', ',', 'time', ',', 'and', 'liveability', '.', 'Questioning', 'tense', 'means', 'one', 'is', 'focused', 'on', 'the', '[', 'i', ']', 'livingness', '[', 'i', ']', ',', 'the', 'aliveness', 'of', 'what', 'is', 'described', '.', 'It', 'means', 'that', 'the', 'continuous', '(', 'well-', ')', 'being', 'of', 'what', 'is', 'described', ',', 'has', 'priority', '.', 'This', 'demands', 'the', 'courage', 'to', 'let', 'difficulty', 'appear', 'and', 'remain', ',', 'instead', 'of', 'crediting', 'oneself', '(', 'or', 'the', 'speaker', ')', 'with', 'making', 'the', 'described', '[', 'i', ']', 'understandable', '[', 'i', ']', ',', 'captured', ',', 'or', 'seizable', '.', 'Continuity', 'is', 'a', 'feminist', 'practise', ',', 'as', 'it', 'asks', 'for', 'constantly', 'paying', 'attention', '.', 'A', 'noticing', 'and', 'attention', 'not', 'only', 'aimed', 'at', 'what', 'you', 'already', 'know', 'or', 'what', 'feels', 'close', 'to', 'you', ',', 'but', 'also', 'of', 'that', 'which', 'escapes', 'your', 'attention', 'because', 'of', 'your', 'positionality', '.', 'This', 'continuous', 'noticing', 'is', 'necessary', 'to', 're-direct', 'and', 'prevent', 'an', 'unequal', 'distribution', 'of', 'attention', '.', 'For', 'example', ',', 'the', 'quotidian', 'has', 'often', 'been', 'seen', 'as', 'less', 'important', ',', 'than', 'explicit', 'political', 'and', 'public', 'events', '.', 'While', 'feminist', 'speakers', 'often', 'want', 'to', 'give', 'an', 'account', 'of', 'the', 'more', '‘', 'forgotten', '’', 'narratives', '–', 'realizing', 'the', 'status', 'quo', 'rests', 'on', 'benefiting', 'a', 'few', 'dominant', 'narratives', '–', 'using', 'language', 'to', 'create', 'proximity', 'can', 'just', 'as', 'well', 'trap', 'what', 'is', 'described', '.', 'What', 'is', 'described', 'can', 'sometimes', 'even', 'be', 'more', 'easily', 'celebrated', 'and', 'embraced', ',', 'because', 'it', 'appears', 'dead', 'and', 'can', 'be', 'embraced', 'as', 'something', 'standing', 'still', ',', 'a', 'non-continuous', 'world', '.', 'Therefore', ',', 'this', 'feminist', 'practise', ',', 'or', 'releasing', 'tense', ',', 'needs', 'to', 'be', 'a', 'queer', 'feminist', 'practise', '.', 'Queer', 'because', 'the', 'embrace', 'of', 'what', '’', 's', 'described', 'can', 'not', 'be', 'a', 'straight', 'one', ',', 'it', 'is', 'a', 'messy', 'sort', 'of', 'embrace', 'in', 'which', 'it', 'is', 'unclear', 'what', 'embraces', 'what', ':', 'does', 'the', 'language', 'embrace', 'the', 'listener', ',', 'does', 'the', 'listener', 'embrace', 'the', 'description', ',', 'does', 'the', 'event', 'described', 'embrace', 'the', 'continuous', 'language', 'that', 'is', 'trying', 'to', 'linguistically', 'engage', 'the', 'event', '?', 'It', '’', 's', 'an', 'amorphous', 'embrace', 'with', 'few', 'coordinates', '.', 'It', '’', 's', 'an', 'embrace', 'of', 'which', 'it', 'is', 'unsure', 'whether', 'it', 'is', 'an', 'embrace', '.', 'It', 'is', 'moving', ',', 'taking', 'form', ',', 'forming', '.', 'Looking', '[', 'i', ']', 'at', '[', 'i', ']', 'it', 'does', 'not', 'exist', ',', 'it', 'demands', 'noticing', '[', 'i', ']', 'with', '[', 'i', ']', '.', 'The', 'noticing', 'and', 'the', 'performative', 'effect', 'of', 'this', 'noticing', 'happens', 'simultaneously', 'and', 'inseparable', '.', 'There', 'is', 'neither', 'an', 'end', 'to', 'the', 'change', 'nor', 'to', 'the', 'noticing', '.', 'Noticing', 'change', 'is', 'not', 'meant', 'to', 'formulate', 'strategy', ',', 'or', 'to', 'expect', 'an', 'outcome', '.', 'The', 'queer', 'part', 'about', 'this', 'is', 'that', 'change', 'is', 'valued', 'in', 'itself', ';', 'the', 'change', 'is', 'a', 'goal', 'in', 'itself', '.', 'Superiority', 'of', 'Arrival', 'Traditionally', ',', 'there', 'is', 'the', 'assumption', 'that', 'any', 'act', 'that', 'appears', 'queer', 'and', 'rebellious', 'will', 'disappear', 'when', 'a', 'person', 'matures', '.', 'Age', 'gives', 'transitional', 'possibilities', '.', 'Ageing', 'is', 'a', 'hopeful', 'thing', 'for', 'those', 'unwilling', 'to', 'accept', 'present', 'conditions', '.', 'Underlining', 'age', ',', 'gaining', 'years', 'as', 'the', 'passing', 'of', 'time', ',', 'and', 'expecting', 'evolution', 'when', 'ageing', ',', 'reveals', 'a', 'linear', 'conception', 'of', 'growth', ':', 'when', 'you', 'get', 'older', ',', 'you', 'will', '‘', 'move', 'past', '’', 'things', '.', 'It', 'is', 'very', 'difficult', 'to', 'do', 'without', 'this', 'notion', 'of', 'progress', ',', 'to', 'imagine', 'a', 'life', 'without', 'progress', 'seems', 'almost', 'impossible', ',', 'let', 'alone', ':', '“', 'to', 'imagine', 'justice', 'without', 'progress', ',', '”', 'as', 'anthropologist', 'Anna', 'Tsing', 'so', 'beautifully', 'questions', 'in', 'her', 'book', '[', 'i', ']', 'The', 'Mushroom', 'at', 'the', 'End', 'of', 'the', 'World', ':', 'On', 'The', 'Possibility', 'of', 'Life', 'in', 'Capitalist', 'Ruins', '[', 'I', ']', '.', '[', '5', ']', 'Often', ',', 'when', 'we', 'speak', 'about', 'progress', ',', 'progress', 'is', 'not', 'only', 'seen', 'as', 'a', 'way', 'to', '‘', 'improve', '’', 'life', ';', 'celebrating', 'progress', 'is', 'often', 'used', 'to', 'debunk', 'what', 'was', 'before', '.', 'We', 'see', 'this', 'with', 'children', 'displaying', '‘', 'queer', 'behaviour', ',', '’', 'that', 'parents', 'think', 'they', 'will', 'get', 'over', 'it', 'and', 'say', ',', '‘', 'It', 'is', 'just', 'a', 'phase', '’', '(', 'this', 'too', 'is', 'often', 'said', 'of', 'bisexuality', ',', 'also', 'among', 'adults', ')', '.', 'Here', 'I', 'want', 'to', 'include', 'the', 'notion', 'of', '‘', 'arriving.', '’', 'The', 'expectations', 'that', 'we', 'will', 'later', '‘', 'arrive', '’', 'at', 'a', 'certain', 'insight', ',', 'we', 'arrive', 'at', 'a', 'better', 'place', 'in', 'our', 'lives', ',', 'closer', 'to', 'something', 'real', ',', 'an', 'arrival', 'at', '‘', 'home.', '’', 'We', 'tend', 'to', 'forget', 'that', 'what', 'we', 'understand', 'as', 'real', '[', 'i', ']', 'is', '[', 'i', ']', 'and', '[', 'i', ']', 'only', 'is', '[', 'i', ']', 'the', 'present', '.', 'When', 'we', 'feel', '‘', 'unheimisch', '’', 'or', '‘', 'unreal', ',', '’', 'this', 'is', 'the', 'real', 'unreal', 'feeling', 'of', 'the', 'present', '.', 'By', 'inserting', 'the', 'word', '‘', 'arrive', '’', 'here', ',', 'I', 'also', 'come', 'to', 'think', 'of', '‘', 'superiority', ',', '’', 'similar', 'to', 'the', 'superiority', 'of', 'the', 'speaker', 'or', 'writer', 'claiming', 'and', 'deadening', 'the', 'continuity', 'of', 'the', 'described', '.', 'Columbus', '‘', 'discovered', '’', 'the', 'Americas', ',', 'meaning', 'all', 'the', 'life', 'that', 'was', 'there', 'before', 'Columbus', 'arrived', ',', 'was', 'not', 'considered', 'meaningful', 'or', 'even', 'living', 'at', 'all', '.', 'It', 'was', 'no', 'life', '.', 'It', 'only', 'became', 'life', 'as', 'he', 'recognized', 'it', '.', 'Or', 'so', 'the', 'history', 'narrative', 'we', 'are', 'accustomed', 'to', ',', 'latently', '(', 'but', 'bluntly', ')', 'assumed', 'When', 'one', 'arrives', ',', 'one', 'remembers', 'the', 'journey', ',', 'but', 'one', 'does', 'not', 'acknowledge', 'what', 'was', 'there', 'before', 'arrival', 'or', 'during', 'the', 'journey', '.', 'Whenever', 'there', 'is', 'a', 'place', 'to', 'arrive', ',', 'the', 'place', 'must', 'have', '–', 'in', 'some', 'way', 'or', 'another', '–', 'existed', 'all', 'along', '.', 'Those', 'who', 'arrive', '–', 'whether', 'at', 'an', 'insight', ',', 'a', 'conclusion', ',', 'at', 'happiness', ',', 'or', 'at', 'mature', 'behaviour', '–', 'neglect', 'the', 'existence', 'of', 'that', 'which', 'already', 'there', '.', 'This', 'goes', 'hand', 'in', 'hand', 'with', 'a', 'certain', 'feeling', 'of', 'superiority', ',', 'as', 'it', 'is', 'one', '’', 's', 'own', 'arrival', 'that', '’', 's', 'central', ',', 'not', 'the', 'ongoing', 'existence', 'that', 'one', 'comes', 'to', 'recognize', '.', 'The', 'efforts', 'of', 'the', 'journey', 'get', 'the', 'most', 'attention', '.', 'The', 'common', ',', 'inspirational', 'motto', '‘', 'It', '’', 's', 'all', 'about', 'the', 'journey', '’', 'forgets', 'that', 'the', 'person', 'journeying', 'demands', 'an', 'awaiting', 'point', 'of', 'departure', 'and', 'arrival', ',', 'unless', 'one', 'would', 'state', ',', '‘', 'all', 'is', 'journey.', '’', 'When', 'we', 'think', 'about', 'progress', ',', 'similar', 'feelings', 'of', 'superiority', 'come', 'into', 'play', '.', 'Often', ',', 'when', 'someone', 'poses', ',', 'like', 'Anna', 'Tsing', ',', 'that', 'it', 'might', 'be', 'possible', 'and', 'at', 'least', 'interesting', 'to', 'try', 'and', 'imagine', 'a', 'world', 'without', 'progress', ',', 'this', 'has', 'historically', 'been', 'countered', 'with', 'a', 'positivist', 'belief', 'in', 'science', '.', 'Especially', 'medical', 'science', 'sounds', 'very', 'convincing', '.', 'It', '’', 's', 'a', 'doctor', '’', 's', 'duty', 'to', 'improve', 'and', 'possibly', 'prolong', '(', 'and', 'thus', 'progress', '?', ')', 'life', '.', 'I', 'have', 'experienced', 'a', 'short', 'lifetime', 'in', 'a', 'wheelchair', '.', 'On', 'a', 'cold', 'day', 'in', 'March', ',', 'I', 'woke', 'up', ',', 'then', 'ten', 'years', 'old', ',', 'and', 'my', 'hip', 'was', 'hurting', 'so', 'much', 'that', 'I', 'couldn', '’', 't', 'walk', '.', 'Before', 'that', ',', 'I', 'did', 'sports', 'everyday', '.', 'Since', 'that', 'morning', ',', 'I', 'could', 'only', 'move', 'in', 'a', 'wheelchair', 'or', 'walk', 'short', 'spans', 'using', 'crutches', '.', 'I', '’', 'm', 'grateful', 'that', 'this', 'sudden', 'injury', 'slowly', 'disappeared', 'after', 'two', 'years', '.', 'Doctors', 'used', 'prednisone', 'medications', 'on', 'me', ',', 'the', 'physical', 'therapist', 'tried', 'different', 'exercises', ',', 'and', 'my', 'parents', 'were', 'wealthy', 'enough', 'to', 'rent', 'a', 'better', 'wheelchair', 'than', 'the', 'free', 'chair', 'you', 'are', 'given', 'by', 'Thuiszorg', '.', '[', '6', ']', 'All', 'of', 'these', 'factors', 'helped', 'me', 'get', 'better', '.', 'But', 'I', 'was', 'only', 'helped', 'to', 'get', '[', 'i', ']', 'through', '[', 'i', ']', 'this', '.', 'Why', 'did', 'I', 'not', 'learn', 'to', 'live', '[', 'i', ']', 'with', '[', 'i', ']', 'this', 'injury', '?', 'Even', 'signs', 'of', 'progress', ',', 'such', 'as', 'managing', 'the', 'wheelchair', 'better', ',', 'were', 'seen', 'as', 'a', 'sign', 'of', 'decline', 'at', 'the', 'same', 'time', ',', 'as', 'it', 'meant', 'I', 'was', 'getting', 'better', 'at', 'something', 'which', 'was', 'not', 'considered', '‘', 'good', '’', 'or', 'healthy', '.', 'Living', 'in', 'a', 'world', 'made', 'to', 'be', 'unsuitable', 'for', 'wheelchair', 'users', 'or', 'other', 'non-conformative', 'bodies', ',', 'I', '’', 'm', 'utterly', 'happy', 'that', 'the', 'pain', 'in', 'my', 'hip', 'went', 'away', '.', 'The', 'point', 'is', ',', 'I', 'have', 'lived', 'two', 'years', 'in', 'my', 'life', 'in', 'which', 'I', 'was', 'getting', '[', 'i', ']', 'through', '[', 'i', ']', 'a', 'situation', '.', 'I', 'was', 'living', '[', 'i', ']', 'through', '[', 'i', ']', 'life', ',', 'while', 'not', 'actually', '[', 'i', ']', 'living', '[', 'i', ']', 'life', ',', 'living', '[', 'i', ']', 'with', '[', 'i', ']', '.', 'Is', 'this', 'why', 'I', 'remember', 'nearly', 'nothing', 'of', 'that', 'time', '?', 'Because', 'I', 'arrived', 'at', 'the', 'other', 'side', '–', 'being', 'able', 'to', 'walk', 'again', ',', 'lucky', 'and', '‘', 'healthy', '’', '–', 'and', 'upon', 'my', 'arrival', 'I', 'could', 'forget', 'that', 'all', 'worlds', 'and', 'all', 'sides', 'that', 'are', 'always', 'already', 'out', 'there', ',', 'even', 'if', 'you', 'are', 'not', 'experiencing', 'and', 'enduring', 'them', '.', 'Being', 'With', 'Instead', 'of', 'Getting', 'Through', 'In', 'retrospect', ',', 'this', 'way', 'of', 'living', 'may', 'have', 'mirrored', 'they', 'way', 'I', 'was', 'living', 'life', 'before', 'landing', 'in', 'a', 'wheelchair', '.', 'As', 'a', 'child', ',', 'I', 'was', 'rather', 'unhappy', '.', 'I', 'listened', 'to', 'Marilyn', 'Manson', 'to', 'express', 'this', 'unhappiness', ',', 'not', 'to', 'fuel', 'it', '.', 'I', 'dressed', 'in', 'black', 'and', 'painted', 'my', 'room', 'black', ',', 'I', 'collected', 'fake', 'skulls', 'and', 'bracelets', 'with', 'studs', 'to', 'feel', 'surrounded', '.', 'People', 'wanted', 'to', 'make', 'me', 'feel', 'better', ',', 'but', 'they', 'especially', 'told', 'me', 'that', 'I', '[', 'i', ']', 'would', '[', 'i', ']', 'feel', 'better', '.', 'It', 'would', 'get', 'better', ',', 'I', 'was', 'told', ',', 'because', 'I', 'would', 'grow', 'older', 'and', 'find', 'my', 'way', '.', 'People', 'trusted', 'I', 'would', 'find', 'my', 'way', 'maybe', 'especially', 'because', 'I', 'was', 'a', 'white', 'kid', 'from', 'a', 'reasonable', 'wealthy', 'and', 'educated', 'family', '.', 'All', 'would', 'be', 'fine', 'as', 'the', 'society', 'I', 'grew', 'up', 'in', ',', 'had', 'space', 'for', 'people', 'like', 'me', '(', 'white', ',', 'wealthy', ',', 'educated', ')', '.', 'I', 'am', 'fine', '.', 'But', 'maybe', 'it', 'would', 'have', 'been', 'good', 'if', 'someone', 'told', 'me', 'I', 'was', 'already', 'fine', '.', 'Not', 'to', 'build', 'my', 'self-confidence', '(', 'though', 'no', 'harm', 'in', 'that', ')', ',', 'but', 'to', 'acknowledge', 'the', 'world', 'as', 'a', 'continuous', 'place', ',', 'instead', 'of', 'believing', 'that', 'one', 'will', '‘', 'arrive', '’', 'in', 'the', 'world', '.', 'We', 'can', 'not', 'arrive', 'in', 'the', 'world', ',', 'as', 'worlds', 'are', 'constantly', 'arriving', '.', 'We', 'need', 'continuous', 'language', '.', 'There', 'is', 'no', 'platform', 'waiting', 'for', 'you', 'to', 'get', 'on', 'board', ',', 'there', 'is', 'no', '‘', 'way', 'of', 'being', '’', 'or', 'mode', 'awaiting', 'your', 'growth', '.', 'What', 'can', 'we', 'give', 'to', 'a', 'future', 'that', 'is', 'not', 'awaiting', 'our', 'arrival', '?', 'The', 'future', 'needs', 'a', 'language', 'that', 'does', 'not', 'identify', 'the', 'future', 'as', 'a', 'separate', 'era', '.', 'It', 'needs', 'a', 'language', 'in', 'which', 'the', 'deadening', 'force', 'of', 'words', '–', '[', 'i', ']', 'tense', '[', 'i', ']', '–', 'is', 'countered', 'with', '[', 'i', ']', 'presence', '[', 'i', ']', ',', 'continuous', 'life', '.', 'We', 'need', 'a', 'language', 'that', 'is', 'not', 'old', ',', 'nor', 'presents', 'itself', 'too', 'enthusiastically', 'as', '‘', 'new', ',', '’', 'thus', 'becoming', 'commercial-like', ',', 'claiming', 'and', 'promising', '‘', 'newness', '’', 'in', 'order', 'to', 'legitimatize', 'its', 'existence', '.', 'What', 'does', 'language', 'need', '?', 'It', 'needs', 'faith', '.', 'It', 'needs', 'speakers', '(', 'and', 'listeners', ')', 'who', 'believe', 'in', 'its', 'performativity', ',', 'who', 'recognize', 'the', 'effects', 'of', 'language', ',', 'understanding', 'that', 'the', 'expression', '(', 'of', 'an', 'event', ',', 'an', 'experience', ')', 'actually', 'changes', 'the', 'event', ',', 'the', 'experience', '.', 'It', 'needs', 'speakers', 'who', 'believe', 'in', 'plurality', 'and', 'constant', 'noticing', '.', 'This', 'way', ',', 'the', 'performativity', 'of', 'words', 'will', 'not', 'create', 'a', 'chain', 'of', 'sameness', 'and', 'definitions', 'will', 'not', 'stall', 'life', 'into', 'comprehensible', 'situations', 'that', 'can', 'be', 'compared', 'and', 'strategically', 'used', 'for', 'progress', '.', 'I', 'listen', 'to', '“', 'Low', 'Lights', '”', 'nearly', 'every', 'day', ',', 'when', 'running', 'in', 'the', 'same', 'park', 'and', 'making', 'the', 'same', 'laps', '.', 'I', 'only', 'run', 'when', 'I', 'feel', 'healthy', ',', 'but', 'when', 'I', 'don', '’', 't', 'run', ',', 'I', 'don', '’', 't', 'feel', 'healthy', '.', 'That', 'too', 'is', 'a', 'lapse', '.', 'The', 'running', 'is', 'by', 'no', 'means', '[', 'i', ']', 'making', '[', 'i', ']', 'me', 'healthy', '.', 'There', 'isn', '’', 't', 'one', 'assignable', 'cause', 'for', 'how', 'I', 'feel', '.', 'When', 'I', 'run', ',', 'it', 'is', 'not', 'like', 'I', '’', 'm', 'trying', 'to', 'get', '[', 'i', ']', 'through', '[', 'i', ']', '.', 'It', 'is', 'the', 'actual', 'running', ',', 'the', 'moving', ',', 'that', 'excites', 'me', '.', 'I', 'pass', 'people', 'whom', 'I', 'have', 'passed', 'for', 'years', 'and', 'I', 'always', 'see', 'new', 'people', '.', 'Some', 'may', 'see', 'me', '.', 'I', 'don', '’', 't', 'hate', 'the', 'hill', 'halfway', 'through', 'my', '6K', 'run', ',', 'I', '’', 'm', 'with', 'the', 'hill', ',', 'not', 'getting', 'over', 'it', 'or', 'through', 'it', '.', 'My', 'heart', 'beat', 'rises', 'and', 'I', 'hear', 'the', 'singer', '’', 's', 'worship', ',', 'her', 'expression', 'of', 'love', 'and', 'thereby', 'the', 'existence', 'of', 'love', '.', 'I', 'suddenly', 'realize', 'that', ',', 'of', 'course', ',', 'talking', 'to', 'or', 'about', 'or', 'with', 'God', 'is', 'a', 'way', 'to', 'eternalize', 'the', 'conversation', '.', 'A', 'feminist', 'queer', 'language', 'may', 'well', 'be', 'that', ':', 'God-language', '.', 'A', 'God-language', 'without', 'the', 'need', 'for', 'one', 'grand', 'Lord', 'listening', 'and', 'speaking', ',', 'but', 'an', 'eternal', 'effort', 'from', 'all', ',', 'allowing', 'everything', 'to', 'be', 'alive', '–', 'amorphous', 'and', 'recognized', '.', 'Footnotes', '1', '.', 'West', ',', 'K.', '2016', '.', 'Low', 'Lights', '.', '[', 'i', ']', 'The', 'Life', 'of', 'Pablo', '[', 'i', ']', '.', '2', '.', 'My', 'expectation', 'that', 'her', 'worship', 'was', 'meant', 'for', 'another', 'human', ',', 'might', 'not', 'only', 'say', 'something', 'about', 'my', 'secular', 'upbringing', 'but', 'may', 'also', 'reveal', 'that', 'I', '’', 'm', 'listening', 'with', 'white', 'ears', '–', 'taking', 'in', 'consideration', 'that', 'my', 'white', ',', 'secular', 'Dutch', 'background', 'probably', 'limits', 'my', 'interpretation', 'of', 'Kanye', 'West', '’', 's', 'music', '.', '3', '.', 'I', '’', 'm', 'here', 'using', '‘', 'Him', '’', 'to', 'refer', 'to', 'God', ',', 'as', 'the', 'singer', 'does', '.', 'Let', '’', 's', 'acknowledge', 'that', 'some', 'also', 'refer', 'to', 'god', 'as', 'She', '(', '‘', 'I', 'met', 'god', ',', 'she', '’', 's', 'black', '’', ')', 'or', 'without', 'using', 'gender', 'binary', 'terms', '.', 'Islamic', 'scholar', 'Amina', 'Wadud', 'refers', 'to', 'Allah', 'as', '‘', 'Trans.', '’', 'I', 'am', 'also', 'speaking', 'about', 'heterosexual', 'love', 'here', ',', 'because', '“', 'Low', 'Light', '”', 'refers', 'to', 'girl-boy', 'love', '.', 'This', 'fits', 'well', 'with', 'my', 'argument', ',', 'as', 'my', 'initial', 'hesitation', 'with', 'the', 'text', '–', 'finding', 'it', 'overtly', 'romantic', '–', 'certainly', 'has', 'to', 'do', 'with', 'encountering', 'a', 'surplus', 'of', 'straight', 'love', 'in', 'songs', ',', 'movies', ',', 'commercials', '.', 'As', 'I', 'state', 'in', 'footnote', '1', ',', 'I', 'might', 'be', 'ignoring', 'specifics', 'about', 'black', 'love', 'by', 'considering', 'this', 'girl-boy', 'love', '‘', 'straight.', '’', 'Scholars', 'like', 'Saidiya', 'Hartman', 'and', 'Alexis', 'Pauline', 'Gumbs', 'would', 'argue', 'that', '‘', 'black', '’', 'and', '‘', 'queer', '’', 'are', 'interchangeable', ',', 'as', 'black', 'people', 'are', 'never', 'gender', 'conformative', 'in', 'a', 'world', 'ruled', 'by', 'white', 'norms', '.', '4', '.', 'Think', 'about', 'the', 'way', 'the', 'Dutch', 'Prime', 'Minister', 'Mark', 'Rutte', 'defended', 'the', 'racist', 'figure', 'Black', 'Pete', '(', '‘', 'Zwarte', 'Piet', '’', ')', '.', 'He', 'stated', ':', '“', 'Black', 'Pete', 'is', 'Black', ',', 'the', 'word', 'itself', 'says', 'it', ',', 'nothing', 'I', 'can', 'change', 'about', 'that', ',', '”', 'pretending', 'the', 'nature', 'of', 'the', 'figure', 'itself', 'creates', 'the', 'description', '‘', 'Black', 'Pete', ',', '’', 'while', 'not', 'acknowledging', 'that', 'naming', 'something', '‘', 'black', '’', '[', 'i', ']', 'makes', '[', 'i', ']', 'it', 'black', ',', 'while', 'reproducing', 'the', 'possibility', 'of', 'using', '‘', 'black', '’', 'as', 'a', 'description', 'and', 'pretending', 'it', 'is', 'a', 'description', 'only', '.', '5', '.', 'Tsing', ',', 'Anna', 'Lowenhaupt', '.', '[', 'i', ']', 'The', 'mushroom', 'at', 'the', 'end', 'of', 'the', 'world', ':', 'on', 'the', 'possibility', 'of', 'life', 'in', 'capitalist', 'ruins', '[', 'i', ']', '.', 'Princeton', ',', 'NJ', ':', 'Princeton', 'University', 'Press', ',', '2015', '.', '6', '.', 'A', 'home', 'care', 'organization', 'in', 'the', 'Netherlands', '.'], 'PRACTICAL-VISION': ['Practical', 'Vision', 'Jalada', 'A', 'few', 'weeks', 'back', 'someone', 'told', 'me', 'that', 'it', 'is', 'an', 'exceptional', 'achievement', 'for', 'a', 'short', 'story', 'to', 'be', 'translated', 'into', 'a', 'dozen', 'languages', '.', 'I', 'had', 'never', 'really', 'thought', 'about', 'it', ',', 'as', 'I', 'am', 'not', 'drawn', 'from', 'a', 'long', 'tradition', 'of', 'scholarship', 'in', 'literary', 'translations', '.', 'I', 'could', 'not', 'quantify', 'his', 'statement', 'in', 'any', 'way', '.', 'For', 'me', 'those', 'words', 'came', 'across', 'as', 'a', 'big', 'compliment', 'given', 'the', 'scope', 'of', 'the', 'work', 'done', 'by', 'the', 'Jalada', 'Collective', 'in', 'the', 'past', 'year', 'in', 'the', 'area', 'of', 'translations', 'and', 'the', 'use', 'of', 'digital', 'facilities', '.', 'Jalada', 'is', 'a', 'pan-African', 'collective', 'of', 'young', 'African', 'writers', 'from', 'all', 'over', 'the', 'African', 'continent', ',', 'of', 'which', 'I', 'am', 'member', 'as', 'well', 'as', 'the', 'managing', 'editor', '.', 'It', 'began', 'in', '2013', 'during', 'a', 'workshop', 'convened', 'by', 'renowned', 'editor', ',', 'Ellah', 'Wakatama', 'Allfrey', '.', 'We', 'had', 'a', 'lively', 'conversation', 'among', 'the', 'participants', 'about', 'what', 'we', 'as', 'young', 'African', 'creatives', 'drawn', 'from', 'different', 'geographical', 'locations', 'could', 'do', 'with', 'the', 'resources', 'we', 'valued', ':', 'language', ',', 'knowledge', 'and', 'our', 'web', 'of', 'connections', '.', 'So', 'Jalada', 'was', 'born', '.', 'From', 'wherever', 'we', 'were', ',', 'we', 'worked', 'together', 'online', 'in', 'what', 'seemed', 'like', 'a', 'virtual', 'office', '.', 'All', 'you', 'needed', 'to', 'do', 'was', 'post', 'a', 'message', ',', 'and', 'another', 'member', 'would', 'take', 'action', '.', 'The', 'Internet', 'became', 'an', 'enabler', 'of', 'collaboration', 'and', 'a', 'resource', 'in', 'the', 'production', 'process', 'of', 'a', 'digital', 'Jalada', 'magazine', '.', 'Our', 'first', 'thematic', 'issue', 'tackled', 'the', 'often-underexplored', 'subject', 'of', 'mental', 'health', 'within', 'the', 'African', 'context', '.', 'Our', 'second', 'anthology', 'focused', 'on', 'stories', 'of', 'fictionalized', 'sexual', 'experiences', 'in', 'ways', 'that', 'broke', 'the', 'implied', 'modesty', 'of', 'our', 'fictional', 'boundaries', '.', 'We', 'also', 'did', 'an', 'anthology', 'on', 'Afrofutures', ',', 'a', 'publication', 'that', 'allowed', 'us', ',', 'as', 'Africans', ',', 'to', 'capture', 'multiple', 'and', 'alternative', 'ways', 'of', 'imagining', 'futures', '.', 'The', 'Translation', 'Issue', 'Then', ',', 'we', 'embarked', 'on', 'a', 'translation', 'project', 'in', 'which', 'we', 'aimed', 'to', 'have', 'one', 'short', 'story', 'translated', 'into', 'as', 'many', 'languages', 'as', 'possible', '.', 'Since', 'March', '2016', ',', 'when', 'we', 'first', 'published', 'the', 'story', '[', 'i', ']', 'Ituĩka', 'Rĩa', 'Mũrũngarũ', ':', 'Kana', 'Kĩrĩa', 'Gĩtũmaga', 'Andũ', 'Mathiĩ', 'Marũngiĩ', '[', 'i', ']', '[', '1', ']', ',', 'the', 'story', 'has', 'been', 'translated', 'into', 'sixty-eight', 'languages', '.', 'The', 'initiative', 'has', 'been', 'critically', 'lauded', 'by', 'several', 'scholars', 'as', 'one', 'of', 'the', 'most', 'essential', 'projects', 'in', 'fostering', 'communication', 'amongst', 'readers', 'and', 'speakers', 'of', 'different', 'languages', 'across', 'the', 'globe', '.', 'Under', 'the', 'umbrella', 'of', 'the', 'powerful', 'magic', 'of', 'storytelling', ',', 'online', 'publishing', 'has', 'enabled', 'different', 'languages', 'and', 'cultures', 'to', 'find', 'expression', 'and', 'converse', 'with', 'each', 'other', '.', 'The', 'Jalada', 'website', ',', 'where', 'the', 'story', 'and', 'its', 'translations', 'are', 'published', ',', 'acts', 'as', 'a', 'kind', 'of', 'portal', 'to', 'a', 'multiplicity', 'of', 'languages', 'wherein', 'you', 'can', 'find', 'codified', 'languages', 'you', 'may', 'never', 'have', 'heard', 'about', '.', 'Because', 'for', 'us', 'at', 'Jalada', 'we', 'are', 'keen', 'on', 'multiple', 'narrative', 'modes', 'of', 'textual', 'and', 'visual', 'storytelling', ',', 'the', 'story', 'continues', 'to', 'be', 'available', 'in', 'podcasts', 'and', 'live', 'multilingual', 'dramatizations', '.', 'We', 'conceptualised', 'the', 'Jalada', 'translations', 'issue', 'with', 'a', 'specific', 'focus', 'on', 'African', 'Languages', '.', 'Each', 'language', 'remains', 'a', 'representation', 'of', 'a', 'specific', 'culture', 'on', 'the', 'continent', '.', 'Taken', 'together', ',', 'our', 'continent', 'is', 'infinitely', 'rich', 'in', 'its', 'cultural', 'resources', '.', 'Over', '2000', 'languages', 'exist', 'across', 'the', '54', 'nations', '.', 'Imagine', 'the', 'monumental', 'impact', 'of', 'a', 'story', 'in', 'all', 'these', 'languages', '.', 'It', 'would', 'be', 'an', 'immovable', 'symbol', '.', 'In', 'history', 'and', 'in', 'scholarship', 'it', 'would', 'stand', 'as', 'a', 'testament', 'to', 'the', 'fact', 'that', 'all', 'languages', 'are', 'equal', ':', 'It', 'does', 'not', 'matter', 'the', 'origins', ',', 'the', 'color', ',', 'or', 'the', 'number', 'of', 'people', 'who', 'use', 'any', 'specific', 'language', ',', 'nor', 'the', 'standardisation', 'of', 'such', 'a', 'language', 'or', 'the', 'lack', 'thereof', '.', 'The', 'coming', 'together', 'of', 'all', 'those', 'languages', 'would', 'smash', 'any', 'doubt', 'that', 'in', 'our', 'diversity', 'immense', 'beauty', 'can', 'be', 'created', 'with', 'a', 'great', 'and', 'lasting', 'impact', '.', 'Jalada', 'Translations', 'issue', 'was', 'born', 'from', 'the', 'firm', 'faith', 'that', 'one', 'day', ',', 'whether', 'it', 'is', 'during', 'my', 'lifetime', 'or', 'in', 'the', 'generations', 'to', 'come', ',', 'one', 'such', 'short', 'story', 'will', 'exist', 'in', 'all', 'African', 'languages', '.', 'I', 'want', 'to', 'imagine', 'that', 'over', 'the', 'years', 'the', 'spill', 'over', 'effect', 'of', 'this', 'will', 'transform', 'our', 'attitudes', 'towards', 'the', 'use', 'of', 'our', 'mother', 'tongues', 'and', 'the', 'languages', 'that', 'we', 'learn', 'from', 'our', 'neighbours', 'through', 'our', 'daily', 'interactions', '.', 'I', 'want', 'to', 'imagine', 'the', 'impact', 'it', 'might', 'have', 'on', 'the', 'access', 'that', 'our', 'children', 'have', 'to', 'texts', 'written', 'in', 'all', 'manner', 'of', 'languages', ',', 'especially', 'the', 'marginalised', 'languages', '.', 'We', 'continually', 'learn', 'to', 'reap', 'from', 'the', 'resources', 'that', 'we', 'have', '.', 'One', 'such', 'irrefutable', 'resource', 'is', 'the', 'language', 'of', 'our', 'mother', 'tongues', '.', 'The', 'Illusion', 'of', 'Unifying', 'Language', 'Some', 'of', 'the', 'distinctive', 'African', 'languages', 'represented', 'in', 'the', 'translations', 'issue', 'have', 'suffered', 'many', 'years', 'of', 'non-representation', 'in', 'the', 'written', 'form', '.', 'There', 'are', 'worrisome', 'statistics', 'of', 'the', 'number', 'of', 'books', 'or', 'articles', 'that', 'have', 'been', 'published', 'in', 'these', 'languages', '.', 'Yet', ',', 'across', 'many', 'countries', 'and', 'regions', 'within', 'the', 'continent', ',', 'thousands', ',', 'tens', 'of', 'thousands', ',', 'or', 'millions', 'of', 'people', 'use', 'these', 'languages', 'every', 'day', '.', 'They', 'transact', 'businesses', ',', 'they', 'pray', ',', 'they', 'love', ',', 'and', 'dream', 'of', 'love', 'and', 'life', 'in', 'these', 'languages', '.', 'And', 'yet', ',', 'so', 'little', 'is', 'written', 'in', 'them', '.', 'What', 'is', 'even', 'more', 'worrying', 'is', 'the', 'fewer', 'number', 'of', 'people', 'who', 'get', 'access', 'to', 'these', 'written', 'resources', '.', 'Most', 'of', 'the', 'written', 'material', 'is', 'in', 'European', 'languages', '–', 'English', ',', 'French', ',', 'and', 'Portuguese', '–', 'as', 'well', 'as', 'a', 'few', 'dominant', 'African', 'national', 'languages', '.', 'The', 'illusion', 'of', 'unifying', 'a', 'nation', 'through', 'a', 'single', 'language', 'is', 'wide', 'spread', '.', 'This', 'has', 'meant', 'a', 'very', 'deliberate', 'marginalisation', 'of', 'African', 'languages', 'and', 'the', 'almost', 'brutal', 'emphasis', 'on', 'the', 'spread', 'and', 'dominance', 'of', 'English', 'or', 'other', 'European', 'languages', '.', 'Additionally', ',', 'we', 'feed', 'on', 'that', 'illusion', 'instilled', 'in', 'us', 'by', 'our', 'education', 'systems', ',', 'which', 'were', 'designed', 'by', 'European', 'colonialists', 'to', 'serve', 'the', 'empire', 'and', 'then', 'continued', 'as', 'desirable', 'norms', 'by', 'post-colonial', 'governments', '.', 'But', 'there', 'is', 'a', 'daily', 'struggle', 'from', 'many', 'quarters', 'and', 'initiatives', 'to', 'effect', 'change', 'in', 'our', 'school', 'systems', '.', 'Today', ',', 'one', 'does', 'not', 'need', 'to', 'go', 'to', 'a', 'well-equipped', 'library', 'to', 'see', 'texts', 'in', 'other', 'languages', '.', 'You', 'only', 'need', 'to', 'log', 'into', 'social', 'media', ',', 'and', 'you', 'will', 'see', 'the', 'flow', 'of', 'conversations', 'in', 'all', 'manner', 'of', 'languages', ',', 'albeit', 'a', 'little', 'inconstant', '.', 'We', 'do', 'not', 'have', 'to', 'look', 'at', 'that', 'with', 'suspicion', '.', 'We', 'do', 'not', 'have', 'to', 'feel', 'hate', 'and', 'resentment', 'for', 'the', 'existence', 'of', 'the', 'other', 'or', 'feel', 'burdened', 'by', 'the', 'colonial', 'idea', 'that', 'this', 'is', 'divisive', '.', 'Over', 'the', 'years', ',', 'I', 'have', 'noted', 'how', 'many', 'young', 'Nairobians', 'flood', 'institutions', 'to', 'learn', 'French', 'and', 'German', '.', 'We', 'marvel', 'at', 'the', 'possibility', 'of', 'acquiring', 'what', 'is', 'not', 'necessarily', 'ours', '.', 'That', 'in', 'itself', 'is', 'a', 'beautiful', 'thing', ';', 'all', 'knowledge', 'is', 'power', '.', 'However', ',', 'most', 'of', 'the', 'individuals', 'learning', 'these', 'languages', 'will', 'never', 'go', 'to', 'France', 'or', 'Germany', '.', 'They', 'will', 'use', 'that', 'resource', 'they', 'have', 'attained', 'amongst', 'themselves', 'in', 'a', 'very', 'small', 'circle', ',', 'or', 'for', 'employment', 'purpose', 'such', 'as', 'to', 'serve', 'the', 'occasional', 'tourist', 'or', 'to', 'work', 'at', 'one', 'of', 'the', 'multinationals', '.', 'Even', 'worse', ',', 'sometimes', 'it', 'is', 'never', 'put', 'to', 'use', '.', 'It', 'exists', 'merely', 'as', 'a', 'placeholder', 'in', 'a', 'Curriculum', 'vita', 'or', 'for', 'prestige', ',', 'such', 'as', 'when', 'someone', 'mentions', 'that', 'they', 'have', 'studied', 'this', 'or', 'that', 'European', 'Language', '.', 'In', 'their', 'minds', 'they', 'remain', 'psychologically', 'arrested', 'in', 'the', 'desire', 'and', 'continually', 'gravitate', 'towards', 'the', 'European', 'home', 'of', 'the', 'new', 'learned', 'language', '.', 'However', ',', 'they', 'will', 'interact', 'very', 'occasionally', 'with', 'speakers', 'of', 'other', 'African', 'Languages', '.', 'What', 'if', 'that', 'beautiful', 'desire', 'to', 'learn', 'and', 'appreciate', 'a', 'foreign', 'language', 'was', 'also', 'inherently', 'directed', 'towards', 'other', 'African', 'Languages', '?', 'In', 'failing', 'to', 'have', 'enough', 'systems', 'that', 'can', 'facilitate', 'this', 'kind', 'of', 'interest', 'and', 'indulgence', ',', 'the', 'online', 'publishing', 'of', 'stories', 'in', 'different', 'languages', ',', 'multilingual', 'performances', ',', 'and', 'podcasts', 'are', 'a', 'small', 'but', 'possibly', 'vital', 'contribution', '.', 'Not', 'just', 'for', 'readers', 'that', 'want', 'to', 'read', 'other', 'languages', ',', 'but', 'those', 'who', 'have', 'grown', 'up', 'with', 'very', 'little', 'exposure', 'to', 'written', 'texts', 'in', 'their', 'own', 'mother', 'tongue', '.', 'Practical', 'Vision', 'Ngugi', 'wa', 'Thiongo', 'has', 'used', 'the', 'term', '“', 'practical', 'vision', '”', 'to', 'describe', 'the', 'fresh', 'opportunities', 'for', 'disseminating', 'African', 'literature', 'that', 'the', 'digital', 'age', 'makes', 'possible', '.', 'Practical', 'vision', 'is', 'about', 'activating', 'dreams', 'in', 'the', 'present', ';', 'it', 'is', 'about', 'translating', 'a', 'vision', 'that', 'seems', 'at', 'far', 'distance', 'into', 'a', 'doing', 'that', 'brings', 'you', 'there', '.', 'What', 'we', 'envision', ',', 'is', 'building', 'a', 'future', 'of', 'multilingual', 'pride', 'and', 'connections', 'that', 'know', 'no', 'boundaries', 'between', 'writers', ',', 'publishers', ',', 'and', 'readers', '.', 'And', 'because', 'of', 'our', 'access', 'to', 'and', 'connectivity', 'with', 'the', 'Internet', ',', 'we', 'are', 'able', 'to', 'move', 'beyond', 'mere', 'conversations', 'towards', 'the', 'execution', 'of', 'ideas', '.', 'This', 'however', 'requires', 'grit', 'and', 'a', 'lot', 'of', 'help', 'from', 'all', 'corners', '.', 'If', 'we', 'had', 'done', 'the', 'Translation', 'Issue', 'in', 'the', 'pre-internet', 'age', ',', 'it', 'would', 'have', 'taken', 'us', 'decades', 'and', 'huge', 'financial', 'means', 'to', 'put', 'it', 'together', '.', 'The', 'web', 'of', 'translators', 'grew', 'because', 'of', 'my', 'colleagues', 'and', 'interested', 'participants', 'who', 'encouraged', 'others', 'to', 'contribute', 'to', 'the', 'bringing', 'together', 'of', 'sixty-eight', 'languages', 'into', 'one', 'volume', '.', 'The', 'volume', 'bears', 'the', 'hallmark', 'of', 'conversations', 'between', 'cultures', ',', 'languages', ',', 'and', 'people', 'of', 'the', 'world', '.', 'Thanks', 'to', 'the', 'generosity', '[', '2', ']', 'and', 'time', 'invested', 'by', 'the', 'writers', 'and', 'translators', 'we', 'were', 'able', 'to', 'do', 'this', 'work', 'efficiently', 'in', 'less', 'than', 'a', 'year', '.', 'Our', 'ways', 'of', 'consuming', 'information', 'have', 'changed', 'radically', 'since', 'oral', 'literature', 'was', 'shared', 'around', 'a', 'bonfire', 'in', 'early', 'evenings', '.', 'As', 'publisher', 'we', 'therefore', 'try', 'to', 'understand', 'the', 'changing', 'nature', 'of', 'communication', 'and', 'the', 'resultant', 'structures', '.', 'We', 'want', 'to', 'find', 'ways', 'to', 'take', 'full', 'advantage', 'of', 'digital', 'facilities', 'as', 'it', 'is', 'the', 'reality', 'of', 'our', 'generation', 'and', 'of', 'those', 'to', 'come', '.', 'We', 'continue', 'to', 'experiment', 'with', 'many', 'more', 'ways', 'to', 'tap', 'into', 'these', 'digital', 'facilities', 'to', 'share', 'stories', 'in', 'all', 'manner', 'of', 'African', 'Languages', '.', 'The', 'current', 'question', 'is', 'how', 'we', 'can', 'have', 'a', 'continued', 'publication', 'of', 'translations', 'that', 'allow', 'a', 'conversation', 'between', 'the', 'languages', 'of', 'Africa', 'and', 'those', 'of', 'the', 'world', '.', 'Can', 'we', 'create', 'a', 'digital', 'publication', 'that', 'captures', 'the', 'infinite', 'resources', 'in', 'our', 'languages', 'and', 'cultures', '?', 'In', 'order', 'to', 'meet', 'this', 'challenge', ',', 'we', 'decided', 'to', 'select', 'one', 'short', 'story', 'a', 'year', '–', 'short', 'enough', 'to', 'allow', 'a', 'relatively', 'ease', 'of', 'work', 'in', 'terms', 'of', 'translation', '–', 'that', 'was', 'powerful', 'enough', 'to', 'speak', 'across', 'multiple', 'cultures', '.', 'Our', 'vision', 'is', 'to', 'have', 'each', 'story', 'translated', 'into', 'as', 'many', 'African', 'Languages', 'as', 'possible', '.', 'And', 'one', 'day', ',', 'in', 'the', 'not', 'so', 'distant', 'future', ',', 'we', 'will', 'have', 'an', 'online', 'archive', 'of', 'stories', 'and', 'translations', 'in', 'all', 'manner', 'of', 'languages', '.', 'Pursuit', 'of', 'such', 'a', 'vision', 'is', 'not', 'easy', '.', 'There', 'is', 'a', 'great', 'deal', 'of', 'misconception', 'about', 'African', 'Languages', 'and', 'their', 'places', 'in', 'our', 'personal', 'and', 'communal', 'intellectual', 'discourse', '.', 'In', 'our', 'contribution', 'to', 'improving', 'the', 'publication', 'of', ',', 'as', 'well', 'as', 'encouraging', 'readership', 'of', 'works', 'in', 'African', 'languages', 'we', 'needed', 'to', 'lay', 'a', 'firm', 'foundation', '.', 'First', ',', 'we', 'recognise', 'that', 'there', 'are', 'voices', 'that', 'have', 'come', 'before', 'us', 'who', 'have', 'already', 'done', 'a', 'great', 'deal', 'to', 'fight', 'for', 'language', 'rights', '.', 'Our', 'selection', 'of', 'a', 'story', 'by', 'Ngũgi', 'wa', 'Thiong', '’', 'o', 'was', 'a', 'recognition', 'towards', 'those', 'who', 'had', 'taken', 'responsibility', 'for', 'our', 'languages', '.', 'As', 'practical', 'visionaries', ',', 'interested', 'more', 'in', 'turning', 'ideas', 'into', 'actions', ',', 'we', 'work', 'with', 'full', 'acknowledgement', 'of', 'what', 'has', 'come', 'before', '.', 'We', 'take', 'into', 'consideration', 'the', 'conversations', 'that', 'have', 'been', 'held', 'on', 'the', 'subject', ',', 'and', 'bring', 'these', 'further', 'by', 'pursuing', 'our', 'translation', 'work', 'in', 'ways', 'that', 'examine', 'barriers', 'of', 'the', 'past', 'and', 'find', 'ways', 'to', 'overcome', 'them', 'now', '.', 'Just', 'as', 'we', 'have', 'created', 'and', 'continue', 'to', 'create', 'a', 'database', 'of', 'literary', 'translators', ',', 'we', 'want', 'to', 'establish', 'a', 'base', 'of', 'devoted', 'readers', '.', 'Earlier', 'in', 'the', 'process', ',', 'someone', 'was', 'quick', 'to', 'ask', 'me', ',', 'rather', 'sceptically', ',', 'what', 'happens', 'after', 'we', 'have', 'published', 'the', 'translations', 'and', 'who', 'will', 'even', 'be', 'interested', 'in', 'reading', 'them', '?', 'Once', 'the', 'first', 'Translation', 'Issue', 'was', 'published', ',', 'the', 'translators', 'and', 'our', 'most', 'devoted', 'readers', 'started', 'sharing', 'the', 'work', 'on', 'Facebook', ',', 'Twitter', ',', 'and', 'Blogs', 'while', 'expressing', 'their', 'excitement', 'at', 'seeing', 'such', 'a', 'publication', '.', 'People', 'tweeted', 'links', 'and', 'shared', 'specific', 'languages', 'on', 'their', 'timelines', '.', 'A', 'twitter', 'user', 'in', 'Ethiopia', ',', '@', 'LindaYohannes', ',', 'tweeted', ',', '“', 'Reading', 'Ngugi', 'in', '#', 'Amharic', '!', 'This', 'feels', 'so', 'right', '!', '”', 'Digital', 'technologies', 'helped', 'us', 'tap', 'into', 'greater', 'and', 'faster', 'possibilities', 'whereas', 'the', 'mere', 'exhaustion', 'of', 'putting', 'together', 'the', 'volume', 'in', 'print', 'form', 'would', 'have', 'been', 'enough', 'excuse', 'for', 'us', 'to', 'store', 'the', 'print', 'copies', 'in', 'the', 'warehouse', 'for', 'a', 'month', 'or', 'two', 'before', 'venturing', 'into', 'marketing', 'and', 'distribution', '.', 'The', 'reality', 'of', 'such', 'exhausting', 'stretch', 'of', 'time', 'in', 'the', 'production', 'process', 'was', 'for', 'a', 'long', 'while', 'the', 'reason', 'why', 'people', 'kept', 'stuck', 'in', 'conversation', 'and', 'never', 'got', 'into', 'doing', '.', 'Creating', 'digital', 'networks', 'for', 'translation', 'The', 'connection', 'that', 'is', 'formed', 'between', 'the', 'writer', 'and', 'publisher', 'is', 'quite', 'important', ',', 'but', 'the', 'connection', 'formed', 'with', 'reader', 'is', 'also', 'crucial', '.', 'We', 'know', 'by', 'now', 'that', 'there', 'are', 'people', 'across', 'the', 'continent', 'and', 'in', 'the', 'diaspora', 'who', 'believe', 'in', 'the', 'importance', 'of', 'marginalised', 'languages', '.', 'Perhaps', 'in', 'their', 'love', 'for', 'the', 'translated', 'stories', 'and', 'the', 'process', 'of', 'translation', ',', 'they', 'too', 'will', 'be', 'inspired', 'to', 'write', 'and', 'translate', '.', 'In', 'practise', ',', 'this', 'collective', 'effort', 'will', 'call', 'for', 'a', 'continuous', 'and', 'growing', 'engagement', 'with', 'multi-linguistic', 'storytelling', 'practices', '.', 'Vigorous', 'social', 'media', 'campaigns', 'and', 'the', 'sharing', 'of', 'the', 'work', 'in', 'all', 'possible', 'media', 'will', 'enhance', 'such', 'reciprocal', 'relations', '.', 'Also', 'the', 'collaboration', 'with', 'universities', 'and', 'other', 'learning', 'institutions', ',', 'can', 'create', 'interest', 'or', 'integrate', 'the', 'idea', 'of', 'African', 'languages', 'in', 'research', 'and', 'teaching', 'practises', '.', 'We', 'find', 'it', 'especially', 'important', 'that', 'children', 'grow', 'up', 'with', 'multi-lingual', 'content', 'and', 'digital', 'facilities', 'will', 'make', 'access', 'possible', 'at', 'a', 'minimal', 'cost', '.', 'We', 'believe', 'that', 'a', 'generation', 'of', 'young', 'people', 'with', 'a', 'passion', 'for', 'their', 'languages', ',', 'whatever', 'these', 'languages', 'may', 'be', ',', 'will', 'be', 'here', 'to', 'hold', 'this', 'vision', 'together', 'for', 'a', 'very', 'long', 'time', '.', 'To', 'grow', 'that', 'generation', 'we', 'must', 'continue', 'to', 'encourage', 'those', 'among', 'us', 'with', 'the', 'intellectual', 'facilities', 'and', 'various', 'experiences', 'to', 'participate', 'in', 'projects', 'such', 'as', 'the', 'Jalada', 'translations', 'issue', '.', 'New', 'translators', 'will', 'get', 'the', 'space', 'to', 'experiment', 'with', 'their', 'abilities', '.', 'And', 'those', 'who', 'have', 'already', 'made', 'attempts', 'in', 'prior', 'translation', 'issues', 'will', 'have', 'the', 'opportunity', 'to', 'continue', 'in', 'a', 'supportive', 'environment', 'that', 'allows', 'their', 'talents', 'to', 'grow', '.', 'An', 'important', 'step', 'in', 'executing', 'such', 'a', 'practical', 'approach', 'in', 'the', 'area', 'of', 'translations', 'is', 'to', 'keep', 'a', 'good', 'connection', 'between', 'different', 'players', ':', 'the', 'writers', 'who', 'are', 'interested', 'in', 'different', 'languages', ',', 'the', 'translators', 'who', 'value', 'the', 'great', 'power', 'in', 'the', 'stories', ',', 'and', 'the', 'various', 'publishers', 'who', 'have', 'demonstrated', 'their', 'willingness', 'to', 'disseminate', 'these', 'works', 'further', 'and', 'further', '.', 'This', 'would', 'not', 'be', 'possible', 'without', 'the', 'connections', 'and', 'collaborative', 'processes', 'we', 'have', 'put', 'in', 'place', '.', 'At', 'the', 'heart', 'of', 'our', 'practical', 'vision', 'lies', 'a', 'growing', 'network', 'of', 'connections', ',', 'without', 'which', 'ideas', 'would', 'remain', 'mere', 'ideas', '.', 'Adapting', 'the', 'structure', 'of', 'digital', 'media', '–', 'as', 'a', 'web', 'of', 'connections', '–', 'onto', 'our', 'way', 'of', 'working', 'allows', 'for', 'the', 'perseverance', 'and', 'sharing', 'of', 'our', 'valued', 'resources', ':', 'languages', 'and', 'the', 'knowledge', 'they', 'carry', '.', 'The', 'Future', 'is', 'Multi-lingual', 'However', ',', 'despite', 'the', 'crucial', 'importance', 'of', 'digital', 'platforms', 'we', 'have', 'seen', 'that', 'the', 'work', 'can', 'grow', 'into', 'more', 'than', 'digitally', 'published', 'pieces', 'once', 'they', 'have', 'reached', 'a', 'widespread', 'audience', '.', 'From', 'its', 'digital', 'space', ',', 'Ngũgi', 'wa', 'Thiong', '’', 'o', '‘', 's', 'story', 'has', 'been', 'adapted', 'for', 'the', 'stage', 'on', 'several', 'occasions', '.', 'Each', 'dramatization', 'celebrated', 'the', 'power', 'of', 'cultural', 'diversity', 'in', 'imagining', 'better', 'worlds', '.', 'Secondly', ',', 'the', 'story', 'has', 'also', 'gone', 'into', 'print', '.', 'In', 'Sweden', ',', 'as', 'a', 'children', 'book', ';', 'for', 'the', 'occasion', 'of', 'the', 'Mboka', 'Festival', 'of', 'Arts', 'Culture', 'and', 'Sport', 'in', 'three', 'Gambian', 'Languages', '(', 'Wolof', ',', 'Mandika', ',', 'and', 'Fula', ')', ';', 'and', 'publishers', 'across', 'Spain', 'will', 'print', 'editions', 'in', 'Spanish', ',', 'Catalan', ',', 'Galician', ',', 'Basque', ',', 'Bable', ',', 'and', 'Occitan', '.', 'From', 'digital', 'to', 'stage', ',', 'to', 'print', 'and', 'then', 'back', 'into', 'the', 'digital', 'realm', ':', 'In', 'India', ',', 'a', 'print', 'publication', 'of', 'a', 'translation', 'in', 'Kannada', ',', 'a', 'Dravidian', 'language', ',', 'was', 'later', 'republished', 'in', 'an', 'Indian', 'online', 'magazine', 'that', 'reached', 'a', 'few', 'million', 'readers', '.', 'In', 'the', 'USA', ',', 'the', 'story', 'was', 'nominated', 'for', 'a', 'project', 'that', 'aims', 'to', 'make', 'short', 'digital', 'eBooks', 'available', 'on', 'the', 'subway', 'for', 'a', 'year', '.', 'There', 'are', 'more', 'than', 'six', 'thousand', 'nine', 'hundred', 'more', 'languages', 'across', 'the', 'world', ',', 'and', 'so', 'the', 'story', 'travels', '.', 'In', 'the', 'future', ',', 'we', 'hope', 'to', 'see', 'the', 'translators', 'that', 'we', 'work', 'with', 'move', 'on', 'to', 'bigger', 'challenges', '.', 'For', 'them', 'to', 'take', 'up', 'translation', 'of', 'fictional', 'and', 'non-fiction', 'books', '.', 'While', 'shorter', 'works', 'can', 'be', 'read', 'much', 'more', 'easily', 'online', ',', 'actual', 'books', 'may', 'require', 'print', 'publication', ',', 'and', 'in', 'this', 'sense', ',', 'the', 'digital', 'and', 'the', 'analogue', 'co-exist', 'in', 'mutual', 'advantage', '.', 'Over', 'the', 'course', 'of', 'ten', 'years', 'we', 'envision', 'having', 'ongoing', 'translations', 'of', 'about', 'ten', 'different', 'stories', '.', 'With', 'each', 'story', 'translated', 'into', 'a', 'hundred', 'or', 'more', 'languages', ',', 'we', 'will', 'have', 'made', 'it', 'a', 'normal', 'practise', 'to', 'write', 'and', 'translate', 'into', 'and', 'between', 'African', 'Languages', '.', 'With', 'this', 'practice', 'comes', 'the', 'idea', 'of', 'conversation', 'between', 'the', 'languages', 'as', 'they', 'appear', 'alongside', 'each', 'other', '.', 'The', 'beauty', 'is', 'in', 'the', 'use', 'of', 'any', 'known', 'language', 'anywhere', 'in', 'the', 'world', 'with', 'confidence', 'and', 'the', 'faith', 'in', 'the', 'good', 'of', 'what', 'is', 'your', 'own', ',', 'and', 'respecting', 'the', 'faith', 'and', 'confidence', 'of', 'the', 'other', 'in', 'using', 'and', 'celebrating', 'what', 'is', 'theirs', '.', 'And', 'this', 'is', 'the', 'future', ':', 'a', 'place', 'for', 'practical', 'visionaries', '.', 'A', 'time', 'of', 'multilingual', 'pride', 'and', 'connections', 'that', 'know', 'no', 'boundaries', 'between', 'writers', ',', 'publishers', ',', 'and', 'readers', '.', 'When', 'we', 'act', 'out', 'our', 'ideas', ',', 'the', 'future', 'will', 'smash', 'the', 'difficulty', 'of', 'access', 'through', 'digital', 'technologies', ';', 'the', 'exclusion', 'of', 'languages', 'through', 'translations', ';', 'and', 'the', 'limitations', 'of', 'opportunities', 'through', 'the', 'growth', 'of', 'collective', 'work', '.', 'We', 'will', 'wake', 'up', 'one', 'day', 'soon', 'and', 'feel', 'the', 'light', 'of', 'possibility', 'shine', 'upon', 'our', 'faces', '.', 'And', 'because', 'the', '‘', 'Upright', 'Revolution', '’', 'of', 'digital', 'innovation', 'is', 'inevitable', ',', 'the', 'publisher', ',', 'the', 'writer', ',', 'the', 'translator', 'and', 'the', 'reader', '–', 'who', 'wants', 'the', 'works', 'to', 'survive', 'and', 'remain', 'relevant', '–', 'must', 'find', 'ways', 'of', 'taking', 'advantage', 'of', 'the', 'digital', 'technologies', 'at', 'their', 'disposal', '.', '[', 'footnotes', ']', '1', '.', 'Translated', 'into', 'English', 'by', 'the', 'author', ',', 'Prof.', 'Ngũgi', 'wa', 'Thiong', '’', 'o', ',', 'as', '[', 'i', ']', 'The', 'Upright', 'Revolution', ':', 'Or', 'Why', 'Humans', 'Walk', 'Upright', '[', 'i', ']', '2', '.', 'To', 'be', 'a', 'part', 'of', 'the', 'Translation', 'Issue', 'as', 'a', 'translator', 'is', 'to', 'put', 'yourself', 'in', 'the', 'company', 'of', 'other', 'translators', 'making', 'history', '.', 'We', 'publish', 'each', 'translation', 'on', 'a', 'single', 'page', '.', 'The', 'language', ',', 'name', ',', 'and', 'biography', 'of', 'the', 'translators', 'are', 'the', 'credits', 'listed', '.', 'We', 'do', 'not', 'discriminate', ',', 'nor', 'require', 'any', 'advanced', 'experience', 'in', 'literary', 'translation', '.', 'The', 'only', 'requirement', 'is', 'the', 'desire', 'to', 'produce', 'authentic', 'and', 'verifiable', 'translations', 'that', 'can', 'communicate', 'a', 'story', 'in', 'one', '’', 's', 'own', 'language', '.', 'And', 'while', 'we', 'do', 'not', 'compensate', 'financially', 'for', 'now', ',', 'we', 'are', 'looking', 'into', 'possibilities', 'of', 'funding', 'and', 'developing', 'a', 'financial', 'model', 'that', 'would', 'allow', 'the', 'sustainability', 'of', 'the', 'work', '.', 'As', 'we', 'engage', 'more', 'and', 'more', 'translators', ',', 'the', 'network', 'grows', ',', 'and', 'opportunities', 'are', 'easily', 'spread', 'across', 'the', 'team', 'for', 'the', 'benefit', 'of', 'diligent', 'translators', '.'], 'OTHERNESS': ['Otherness', '|', 'Daniel', 'L.', 'Everett', 'When', 'I', 'was', '26', ',', 'I', 'moved', 'to', 'the', 'Amazon', ',', 'from', 'California', ',', 'in', 'order', 'to', 'study', 'the', 'language', 'and', 'culture', 'of', 'a', 'people', 'that', 'were', 'believed', 'to', 'be', 'unrelated', 'to', 'any', 'other', 'people', '.', 'I', 'flew', 'in', 'a', 'small', 'missionary', 'plane', ',', 'a', 'bumpy', 'nausea-inducing', 'ride', ',', 'to', 'meet', 'the', 'Pirahã', 'people', 'for', 'the', 'first', 'time', '.', 'My', 'body', 'was', 'weak', ';', 'my', 'brain', 'was', 'taut', 'with', 'anxiety', 'and', 'anticipation', '.', 'The', 'Pirahãs', 'are', 'unrelated', 'to', 'any', 'other', '.', 'They', 'speak', 'a', 'language', 'that', 'many', 'linguists', 'had', 'unsuccessfully', 'attempted', 'to', 'understand', '.', 'My', 'task', 'would', 'be', 'to', 'understand', 'where', 'little', 'understanding', 'currently', 'existed', '.', 'This', 'encounter', 'with', 'these', '‘', 'others', ',', '’', 'so', 'unlike', 'myself', ',', 'was', 'to', 'be', 'the', 'defining', 'experience', 'for', 'the', 'rest', 'of', 'my', 'life', '.', 'One', 'of', 'the', 'greatest', 'challenges', 'of', 'our', 'species', 'is', 'alterity', ',', '‘', 'otherness.', '’', 'All', 'cultures', 'for', 'reasons', 'easy', 'enough', 'to', 'understand', 'fear', 'other', 'cultures', '.', 'War', 'and', 'conflict', 'have', 'defined', 'humans', 'for', 'nearly', 'two', 'million', 'years', '.', 'When', 'we', 'encounter', 'others', 'unlike', 'ourselves', ',', 'we', 'frequently', 'become', 'uncomfortable', ',', 'suspicious', '.', 'A', 'new', 'neighbor', 'from', 'another', 'country', '.', 'A', 'friend', 'of', 'our', 'child', 'who', 'has', 'a', 'different', 'color', '.', 'Someone', 'whose', 'gender', 'is', 'not', 'a', 'simple', 'binary', 'classification', '.', 'This', 'is', 'an', 'old', 'problem', '.', 'Jesus', 'himself', 'fell', 'under', 'suspicion', 'for', 'befriending', 'a', 'woman', 'thought', 'to', 'be', 'a', 'prostitute', ',', 'Mary', 'Magdalene', '.', 'She', 'was', 'unlike', 'the', 'religious', 'people', 'of', 'Jesus', \"'s\", 'day', '.', 'An', '‘', 'other.', '’', 'Those', 'unlike', 'ourselves', 'may', 'eat', 'different', 'food', ',', 'be', 'unintelligible', 'to', 'us', 'when', 'speaking', 'to', 'those', 'more', 'like', 'themselves', ',', 'build', 'different-looking', 'homes', ',', 'or', ',', 'in', 'the', 'view', 'of', 'some', 'who', 'most', 'fears', 'otherness', ',', 'simply', 'live', '‘', 'wrongly.', '’', 'To', 'some', ',', 'others', 'are', 'not', 'only', 'suspect', ',', 'but', 'their', 'differences', 'are', 'morally', 'unacceptable', '.', 'When', 'I', 'first', 'entered', 'the', 'Amazon', 'as', 'a', 'missionary', ',', 'this', 'was', 'my', 'belief', '.', 'Everyone', 'needed', 'Jesus', 'and', 'if', 'they', 'did', \"n't\", 'believe', 'in', 'him', ',', 'they', 'were', 'deservedly', 'going', 'to', 'eternal', 'torment', '.', 'In', 'my', 'encounter', 'with', 'the', 'Pirahãs', ',', 'though', 'I', 'was', 'uneasy', ',', 'I', 'realize', 'now', ',', 'ironically', ',', 'that', 'I', 'was', 'actually', 'the', 'dangerous', 'one', ',', 'the', 'one', 'who', 'came', 'with', 'insufficient', 'respect', ',', 'with', 'an', 'ego-centric', 'and', 'ethno-centric', 'view', 'of', 'my', 'own', '‘', 'rightness.', '’', 'How', 'fortunate', 'for', 'me', 'that', 'this', 'gentle', 'people', 'disabused', 'me', 'of', 'so', 'many', 'of', 'my', 'silly', 'beliefs', '.', 'Though', 'this', 'years-long', 'encounter', 'with', 'the', 'Pirahãs', 'was', 'to', 'improve', 'my', 'life', 'globally', ',', 'it', 'certainly', 'did', \"n't\", 'seem', 'that', 'way', 'at', 'first', '.', 'During', 'my', 'first', 'day', 'among', 'the', 'Pirahãs', 'I', 'was', 'taken', 'by', 'a', 'young', 'man', 'to', 'a', 'fire', 'by', 'his', 'hut', '.', 'He', 'pointed', 'at', 'a', 'large', 'rodent', 'on', 'the', 'fire', 'with', 'its', 'tongue', 'still', 'hanging', 'out', 'and', 'a', 'small', 'pool', 'of', 'blood', 'at', 'the', 'edge', 'of', 'the', 'fire', '.', 'The', 'hair', 'was', 'burning', 'off', 'of', 'the', 'fresh', 'kill', '.', 'The', 'young', 'man', 'uttered', 'a', 'then-unintelligible', 'phrase', ':', '[', 'b', ']', 'Gí', 'obáaʔáí', 'kohoáipi', 'gíisai', '?', '[', 'b', ']', 'Later', 'I', 'learned', 'that', 'this', 'meant', ',', '``', 'Do', 'you', 'know', 'how', 'to', 'eat', 'this', '?', \"''\", 'And', 'I', 'also', 'learned', 'that', 'if', 'you', 'do', \"n't\", 'want', 'any', 'offered', 'food', ',', 'you', 'can', 'simply', 'say', ',', '``', 'No', ',', 'I', 'do', \"n't\", 'know', 'how', 'to', 'eat', 'it', '.', \"''\", 'No', 'one', 'loses', 'face', '.', 'It', 'is', 'an', 'easy', ',', 'polite', 'structure', 'that', 'allows', 'you', 'to', 'avoid', 'foods', 'you', 'do', \"n't\", 'want', '.', 'Many', 'other', 'cultures', ',', 'Western', 'cultures', 'for', 'example', ',', 'do', \"n't\", 'tend', 'to', 'be', 'this', 'polite', '.', 'We', 'often', 'simply', 'offer', 'people', 'things', 'to', 'eat', 'and', 'get', 'offended', 'if', 'they', 'refuse', '.', 'Unlike', 'among', 'the', 'Pirahãs', ',', 'there', 'is', 'a', 'more', 'portent', 'pressure', 'in', 'some', 'Western', 'cultures', 'for', 'a', 'guest', 'to', 'eat', 'whatever', 'the', 'host', 'offers', '.', 'For', 'almost', 'all', 'of', 'us', ',', 'we', 'experience', 'the', 'world', 'first', 'through', 'our', 'mother', '.', 'All', 'that', 'we', 'touch', ',', 'taste', ',', 'hear', ',', 'smell', ',', 'see', ',', 'and', 'eventually', 'come', 'to', 'know', 'and', 'understand', 'begins', 'with', 'her', 'and', 'is', 'mediated', 'by', 'her', '.', 'As', 'we', 'develop', 'of', 'course', 'we', 'notice', 'others', 'close', 'to', 'our', 'mother', '-', 'our', 'father', ',', 'siblings', ',', 'and', 'others', '.', 'But', 'until', 'our', 'first', 'experiences', 'as', 'individuals', 'begin', 'outside', 'the', 'home', ',', 'our', 'values', ',', 'language', ',', 'and', 'ways', 'of', 'thinking', 'all', 'result', 'from', 'interactions', 'with', 'our', 'mother', 'and', 'the', 'select', 'small', 'group', 'she', 'is', 'part', 'of', '.', 'These', 'early', 'apperceptions', 'shape', 'our', 'subsequent', 'lives', '.', 'They', 'lead', 'not', 'only', 'to', 'an', 'individual', 'sense', 'of', 'identity', 'but', 'also', 'to', 'a', 'conception', 'of', 'what', 'a', '‘', 'normal', 'identity', '’', 'is', '.', 'This', 'is', 'all', 'very', 'comfortable', '.', 'We', 'learn', 'early', 'on', 'that', 'new', 'behavior', 'and', 'new', 'information', 'entail', 'effort', '.', 'Why', 'listen', 'to', 'dissonant', 'jazz', 'when', 'the', 'steady', '4/4', 'beat', 'of', 'country', 'or', 'rock', 'is', 'familiar', '?', 'Why', 'eat', 'haggis', 'instead', 'of', 'pot', 'roast', '?', 'Comfort', 'food', 'is', 'just', 'food', 'that', 'requires', 'no', 'gaining', 'of', 'acquired', 'tastes', '.', 'Why', 'learn', 'another', 'language', '?', 'Why', 'make', 'friends', 'of', 'a', 'different', 'color', ',', 'a', 'different', 'sexual', 'orientation', ',', 'or', 'a', 'different', 'nationality', '?', 'Why', 'should', 'a', 'professor', 'make', 'friends', 'with', 'a', 'cowboy', '?', 'These', 'efforts', 'go', 'against', 'the', 'biological', 'preference', 'for', 'expending', 'as', 'little', 'energy', 'as', 'possible', 'and', 'maintenance', 'of', 'the', 'status', 'quo', '.', 'The', 'work', 'of', 'learning', 'about', 'otherness', 'is', 'worthwhile', ',', 'but', 'this', 'is', 'not', 'always', 'obvious', 'initially', '.', 'Linguists', 'recognized', 'long', 'ago', 'that', 'the', 'first', 'rule', 'of', 'language', 'is', 'that', '‘', 'we', 'talk', 'like', 'who', 'we', 'talk', 'with', '’', '.', 'And', 'other', 'behavioral', 'scientists', 'have', 'realized', 'that', '‘', 'we', 'eat', 'like', 'who', 'we', 'eat', 'with', '’', ',', '‘', 'we', 'create', 'like', 'who', 'we', 'think', 'with', '’', ',', 'and', '‘', 'we', 'think', 'like', 'who', 'we', 'think', 'with', '’', '.', 'Our', 'earliest', 'associations', 'teach', 'us', 'not', 'only', 'how', 'to', 'think', ',', 'create', ',', 'talk', ',', 'and', 'eat', ',', 'but', 'to', 'evaluate', 'normal', 'or', 'correct', 'thinking', ',', 'talking', ',', 'eating', ',', 'and', 'creating', 'based', 'on', 'our', 'narrow', 'range', 'of', 'experiences', '.', 'The', 'crucial', 'differences', 'between', 'others', 'and', 'our', 'in-group', 'are', 'values', ',', 'language', ',', 'social', 'roles', ',', 'and', 'knowledge', 'structures', '.', 'All', 'else', 'emerges', 'from', 'these', ',', 'or', 'so', 'I', 'have', 'claimed', 'in', 'my', 'own', 'writings', '.', '[', '1', ']', 'Each', 'builds', 'on', 'the', 'others', 'as', 'we', 'learn', 'them', 'in', 'the', 'context', 'of', 'familiarity', ',', 'a', 'society', 'of', 'intimates', '(', 'i.e', '.', 'our', 'family', 'or', 'our', 'village', ')', '.', 'This', 'leads', 'to', 'a', 'conceptualization', 'of', 'our', 'own', 'identity', '.', 'For', 'example', ',', 'I', 'know', 'in', 'some', 'way', 'that', 'I', 'am', 'Dan', '.', 'Yet', 'no', 'one', ',', 'not', 'even', 'ourselves', ',', 'fully', 'understands', 'what', 'it', 'means', 'to', 'be', 'ourselves', '.', 'The', 'construction', 'of', 'our', 'identity', 'through', 'the', 'familiar', 'leads', 'us', 'to', 'think', 'of', 'what', 'is', '[', 'i', ']', 'not', '[', 'i', ']', 'us', ',', '[', 'i', ']', 'not', '[', 'i', ']', 'our', 'family', ',', '[', 'i', ']', 'not', '[', 'i', ']', 'our', 'norm', '.', 'Inevitably', ',', 'as', 'our', 'experience', 'expands', 'we', 'meet', 'others', 'that', 'do', 'not', 'fit', 'neatly', 'into', 'our', 'expectations', '.', 'These', 'are', '‘', 'the', 'others.', '’', 'In', '1990', ',', 'Columbia', 'University', 'psychologist', 'Peter', 'Gordon', 'accompanied', 'me', 'to', 'several', 'Pirahã', 'villages', 'in', 'order', 'to', 'conduct', 'a', 'pilot', 'study', 'of', 'language', 'learning', 'among', 'Pirahã', 'children', '.', 'We', 'set', 'up', 'cameras', 'on', 'a', 'hut', ',', 'in', 'full', 'view', ',', 'with', 'the', 'permission', 'of', 'its', 'occupants', ',', 'and', 'started', 'filming', '.', 'We', 'both', 'were', 'in', 'the', 'film', ',', 'talking', 'to', 'the', 'adults', 'about', 'their', 'beliefs', 'and', 'children', \"'s\", 'behavior', '.', 'After', 'we', 'were', 'done', 'filming', ',', 'we', 'noticed', 'something', 'that', 'we', 'had', 'not', 'seen', 'before', ',', 'because', 'it', 'was', 'happening', 'behind', 'us', '.', 'A', 'toddler', ',', 'perhaps', 'a', 'year', 'and', 'half', 'old', ',', 'was', 'playing', 'with', 'a', 'sharp', 'kitchen', 'knife', 'with', 'a', '30cm', 'blade', '.', 'He', 'was', 'swinging', 'it', 'nonchalantly', ',', 'almost', 'stabbing', 'himself', 'in', 'his', 'face', ',', 'legs', ',', 'and', 'midsection', ';', 'occasionally', 'swinging', 'it', 'close', 'to', 'his', 'mother', \"'s\", 'face', 'and', 'back', '.', 'We', 'initially', 'assumed', 'that', 'the', 'mother', 'did', \"n't\", 'see', 'her', 'toddler', \"'s\", 'dangerous', 'toy', '.', 'But', 'then', ',', 'as', 'she', 'was', 'talking', 'to', 'another', 'woman', ',', 'the', 'camera', 'recorded', 'the', 'baby', 'dropping', 'the', 'knife', 'and', 'starting', 'to', 'cry', '.', 'Barely', 'glancing', 'backwards', 'at', 'her', 'child', ',', 'the', 'mother', 'casually', 'leaned', 'over', ',', 'picked', 'the', 'knife', 'up', 'off', 'the', 'ground', 'and', 'handed', 'it', 'back', 'to', 'the', 'baby', ',', 'who', 'returned', 'gleefully', 'to', 'his', 'quasi-stabbing', 'of', 'himself', '.', 'This', 'was', 'a', 'confrontation', 'of', 'values', 'for', 'Peter', 'and', 'myself', ',', 'underscoring', 'the', 'otherness', 'divide', 'between', 'the', 'Pirahãs', 'and', 'us', '.', 'Was', \"n't\", 'the', 'Pirahã', 'mother', 'concerned', 'about', 'her', 'child', \"'s\", 'welfare', '?', 'She', 'was', 'indeed', '.', 'But', 'to', 'the', 'Pirahãs', 'a', 'cut', 'or', 'non-life-threatening', 'injury', 'is', 'the', 'price', 'that', 'occasionally', 'must', 'be', 'paid', 'in', 'order', 'to', 'learn', 'the', 'skills', 'necessary', 'to', 'survive', 'in', 'the', 'jungle', '.', 'Would', 'a', 'Dutch', 'mother', 'give', 'her', 'child', 'a', 'sharp', 'knife', 'as', 'a', 'toy', ',', 'believing', 'that', 'any', 'piercing', 'of', 'the', 'child', \"'s\", 'flesh', 'would', 'be', 'compensated', 'for', 'by', 'its', 'contribution', 'to', 'the', 'child', \"'s\", 'development', '?', 'Could', 'she', 'even', 'respect', 'this', 'other', '(', 'm', ')', 'otherness', '-', 'the', 'otherness', 'at', 'the', 'root', 'of', 'our', 'lives', '?', 'When', 'I', 'first', 'encountered', 'the', 'Pirahãs', ',', 'I', 'learned', 'the', 'language', 'by', 'pointing', 'and', 'giving', 'the', 'name', 'in', 'English', '.', 'I', 'would', 'pick', 'up', 'a', 'stick', 'and', 'say', ',', '``', 'stick', '.', \"''\", 'The', 'Pirahãs', ',', 'most', 'of', 'them', 'anyway', ',', 'would', 'give', 'me', 'the', 'translation', 'in', 'their', 'language', '.', 'Then', 'I', 'might', 'let', 'the', 'stick', 'drop', 'to', 'the', 'ground', 'and', 'say', ',', '``', 'the', 'stick', 'falls', 'to', 'the', 'ground', \"''\", 'or', ',', '``', 'I', 'throw', 'the', 'stick', 'away', \"''\", 'or', ',', '``', 'two', 'sticks', 'drop', 'to', 'the', 'ground', ',', \"''\", 'and', 'so', 'on', '.', 'I', 'would', 'transcribe', 'the', 'responses', 'and', 'say', 'them', 'back', 'at', 'least', 'three', 'times', 'to', 'the', 'speaker', ',', 'making', 'sure', 'I', 'had', 'them', 'right', '.', 'I', 'was', 'able', 'to', 'follow', 'their', 'translations', 'and', 'also', 'write', 'down', 'their', 'comments', '.', 'But', 'the', 'occasional', 'speaker', 'would', 'ignore', 'my', 'request', 'and', 'instead', 'say', 'something', 'that', 'turned', 'out', 'to', 'be', 'even', 'more', 'interesting', '.', '[', 'b', ']', 'Ɂaooí', 'Ɂaohoaí', 'sahaɁaí', 'ɁapaitíisoɁabaɁáígio', 'hiahoaáti', '[', 'b', ']', ',', 'which', 'means', ':', '``', 'Do', 'not', 'talk', 'with', 'a', 'crooked', 'head', '.', 'Talk', 'with', 'a', 'straight', 'head', '.', \"''\", 'The', 'Pirahãs', 'wanted', 'me', 'to', 'talk', 'like', 'a', 'person', ',', 'not', 'like', 'a', 'bizarre', 'foreigner', '.', 'Like', 'an', 'American', 'tourist', 'in', 'France', ',', 'the', 'Pirahãs', 'could', 'not', 'understand', 'why', 'I', 'could', \"n't\", 'speak', 'their', 'language', '.', 'Then', 'one', 'day', 'a', 'missionary', 'plane', 'had', 'brought', 'us', 'some', 'supplies', 'in', 'the', 'jungle', '.', 'Among', 'those', 'was', 'lettuce', '.', 'I', 'was', 'so', 'excited', 'to', 'have', 'greens', '.', 'The', 'Pirahãs', 'eat', 'no', 'greens', 'and', 'think', 'of', 'them', 'as', 'worm', 'food', '.', 'I', 'was', 'cheerfully', 'eating', 'lettuce', 'from', 'a', 'bowl', 'when', 'a', 'Pirahã', 'friend', 'walked', 'up', 'and', 'said', ',', '``', 'That', \"'s\", 'why', 'you', 'do', \"n't\", 'speak', 'Pirahã', 'yet', '.', 'We', 'do', \"n't\", 'eat', 'leaves', '.', \"''\", 'In', 'other', 'words', ',', 'the', 'Pirahã', 'man', 'believed', 'that', 'language', 'emerges', 'from', 'culture', 'as', 'well', 'as', 'the', 'entirety', 'of', 'our', 'behavior', 'as', 'members', 'of', 'a', 'society', '.', 'This', 'is', 'a', 'belief', 'I', 'have', 'come', 'to', 'as', 'well', '.', 'They', 'felt', 'we', 'could', 'not', 'learn', 'their', 'language', 'at', 'native', 'level', 'unless', 'we', 'became', 'also', 'part', 'of', 'their', 'culture', ';', 'and', 'native', 'level', 'is', 'what', 'matters', 'to', 'them', ',', 'there', 'are', 'no', 'prizes', 'for', 'merely', 'speaking', 'their', 'language', 'intelligibly', '.', 'This', 'was', 'against', 'everything', 'I', 'had', 'been', 'taught', 'about', 'language', 'in', 'university', 'courses', ',', 'and', 'it', 'underscored', 'the', 'gap', 'between', 'them', 'and', 'me', '.', 'Languages', 'and', 'cultures', 'interact', 'symbiotically', ',', 'each', 'affecting', 'the', 'other', '.', 'Our', 'sense', 'of', 'self', 'and', 'of', 'society', 'emerges', 'from', 'our', 'enveloping', 'culture', 'and', 'from', 'the', 'language', 'and', 'accents', 'we', 'hear', 'most', 'during', 'our', 'childhood', 'development', '.', 'The', 'speed', 'of', 'our', 'conversations', 'and', 'the', 'structures', 'of', 'our', 'interactions', 'with', 'others', 'are', 'formed', 'in', 'local', 'communities', 'of', 'people', 'like', 'ourselves', '.', 'The', 'most', 'comfortable', 'conversations', 'are', 'with', 'people', 'who', 'sound', 'like', 'you', ',', 'put', 'their', 'phrases', 'together', 'as', 'you', 'do', ',', 'and', 'who', 'reach', 'similar', 'conclusions', '.', 'There', 'are', 'many', 'ways', 'in', 'which', 'we', 'confront', 'otherness', '.', 'Strangers', 'are', 'not', 'always', 'people', '.', 'Nature', 'is', 'often', 'a', 'foreigner', 'to', 'most', 'of', 'us', 'and', 'we', 'can', 'learn', 'by', 'submitting', 'ourselves', 'to', 'it', '.', 'One', 'reason', 'that', 'I', 'annually', 'read', 'the', 'American', 'Henry', 'David', 'Thoreau', \"'s\", '[', 'i', ']', 'Walden', '[', 'i', ']', ',', 'my', 'favorite', 'book', 'in', 'all', 'of', 'American', 'literature', ',', 'is', 'that', 'Thoreau', 'was', 'so', 'articulately', 'different', 'from', 'me', '.', 'That', 'is', 'irrelevant', 'to', 'Thoreau', \"'s\", 'account', 'of', 'his', 'year', 'alone', '.', 'His', 'year', 'was', 'a', 'brilliant', 'experiment', '.', 'Thoreau', 'did', 'not', 'remain', 'at', 'Walden', '.', 'He', 'returned', 'to', 'take', 'up', 'a', 'fairly', 'boring', 'life', 'as', 'a', 'handyman', 'in', 'the', 'adjacent', 'city', 'of', 'Concord', ',', 'Massachusetts', '.', 'Yet', ',', 'the', 'book', 'he', 'wrote', 'is', 'full', 'brilliant', 'observations', 'based', 'on', 'the', 'concepts', 'of', 'American', 'Transcendentalism', ':', 'the', 'idea', 'that', 'people', 'and', 'nature', 'are', 'inherently', 'good', 'and', 'that', 'they', 'are', 'best', 'when', 'left', 'alone', 'by', 'society', 'and', 'its', 'institutions', '.', 'Transcendentalism', 'implies', 'that', 'as', 'we', 'come', 'to', 'know', 'ourselves', 'and', 'remove', 'the', 'otherness', 'of', 'nature', 'by', 'experiencing', 'it', 'with', 'all', 'our', 'senses', '.', 'That', 'our', 'sense', 'of', 'oneness', 'with', 'others', ',', 'as', 'embodied', 'in', 'that', 'very', 'nature', ',', 'grows', '.', 'Thoreau', \"'s\", 'insights', 'into', 'his', 'lessons', 'from', 'nature', '–', 'as', 'the', 'stranger', '-', 'teach', 'us', 'about', 'what', 'it', 'means', 'to', 'live', 'as', 'a', 'human', ',', 'to', 'be', 'independent', ',', 'and', 'to', 'occupy', 'a', 'part', 'of', 'the', 'natural', 'world', '.', 'Through', 'Thoreau', 'we', 'encounter', 'the', 'strangeness', 'of', 'a', 'solitary', 'life', 'in', 'nature', '.', 'Oneness', 'with', 'ourselves', 'and', 'nature', '–', 'and', 'the', 'others', 'that', 'are', 'strange', 'to', 'us', 'but', 'are', ',', 'like', 'us', ',', 'just', 'part', 'of', 'nature', '–', 'requires', 'slow', 'work', 'of', 'contemplation', 'and', 'experience', 'that', 'at', 'once', 'embraces', 'the', 'otherness', 'of', 'nature', '.', 'It', 'demands', 'working', 'towards', 'removing', 'this', 'sense', 'of', 'otherness', 'and', 'embracing', 'it', 'as', 'part', 'of', 'the', 'oneness', 'that', 'we', 'seek', 'with', 'the', 'world', 'around', 'us', '.', 'Otherness', ',', 'as', 'I', 'see', 'it', ',', 'is', 'the', 'spark', 'of', 'original', 'thought', 'and', 'greater', 'appreciation', 'of', 'nature', ',', 'while', 'the', 'sense', 'of', 'oneness', 'is', 'the', 'paradoxical', 'goal', 'of', 'encounters', 'with', 'otherness', '.', 'We', 'need', 'a', 'sense', 'of', 'oneness', 'of', 'ourselves', 'with', 'nature', 'to', 'clearly', 'see', 'otherness', ',', 'and', 'we', 'need', 'otherness', 'to', 'build', 'a', 'more', 'encompassing', 'and', 'panoramic', 'sense', 'of', 'self', 'and', 'oneness', 'with', 'the', 'world', '.', 'Thoreau', 'ignored', 'society', 'to', 'know', 'himself', '.', 'Most', 'of', 'us', 'ignore', 'ourselves', 'to', 'be', 'part', 'of', 'society', '.', 'Thoreau', 'eloquently', 'expressed', 'the', 'loss', 'that', ',', 'being', 'carried', 'away', 'by', 'the', 'demands', 'of', 'others', 'and', 'society', ',', 'brings', 'us', 'to', 'our', 'sense', 'of', 'self', '.', 'We', 'think', 'of', 'conformity', 'rather', 'than', 'our', 'own', 'unique', 'identity', 'and', 'so', 'blur', 'who', 'we', 'are', 'as', 'individuals', '.', 'Thoreau', 'captured', 'this', 'well', 'when', 'he', 'exclaimed', 'that', ',', '``', 'the', 'one', 'is', 'more', 'important', 'than', 'the', 'million', '.', \"''\", 'That', 'is', ',', 'it', 'is', 'only', 'as', 'we', 'each', 'individually', 'appreciate', 'our', 'oneness', 'with', 'the', 'world', ',', 'nature', ',', 'and', 'the', 'other', 'as', 'part', 'of', 'this', 'oneness', 'that', 'we', 'can', 'achieve', 'the', 'best', 'individual', 'life', ',', 'and', 'thus', 'society', '.', 'Thoreau', '’', 's', 'hut', 'Walden', 'stands', 'still', 'as', 'light', 'in', 'the', 'heart', 'of', 'the', 'forest', ',', 'a', 'small', 'cabin', 'where', 'one', 'can', 'sit', 'and', 'think', 'and', 'read', 'and', 'wonder', 'about', 'the', 'reasons', 'for', 'living', '.', 'Jungle', 'nights', 'were', 'this', 'light', 'in', 'my', 'life', ',', 'as', 'I', 'sat', 'around', 'campfires', ',', 'talking', 'in', 'a', 'language', 'that', 'was', 'so', 'hard', 'for', 'me', 'to', 'learn', '.', 'Albert', 'Camus', 'said', 'that', 'the', 'biggest', 'mystery', 'of', 'philosophy', 'is', 'why', 'not', 'everyone', 'commits', 'suicide', 'when', 'honestly', 'contemplating', 'the', 'futility', 'of', 'life', '.', 'As', 'a', 'possible', 'answer', 'to', 'his', 'own', 'question', ',', 'Camus', 'in', 'his', 'essay', '[', 'i', ']', 'The', 'Myth', 'of', 'Sisyphus', '[', 'i', ']', ',', 'held', 'up', 'poor', 'Sisyphus', '[', '2', ']', 'as', 'an', 'example', 'of', 'a', 'good', 'life', '.', 'Sisyphus', ',', 'after', 'all', ',', 'had', 'an', 'objective', ',', 'one', 'that', 'entailed', 'a', 'measurable', 'daily', 'activity', 'that', 'always', 'ended', 'in', 'the', 'accomplishment', 'of', 'getting', 'that', 'rock', 'up', 'the', 'hill', '.', 'But', 'Thoreau', 'perspective', 'rejects', 'Camus', \"'s\", 'analysis', '.', 'He', 'saw', 'no', 'reason', 'to', 'count', 'familiarity', 'or', 'predictability', 'of', 'social', 'life', ',', 'foods', ',', 'or', 'accomplishments', 'as', 'among', 'the', 'goals', 'of', 'life', '.', 'They', 'teach', 'us', 'little', 'and', 'change', 'our', 'behavior', 'insignificantly', '.', 'His', 'example', 'was', 'that', 'we', 'learn', 'most', 'when', 'we', 'insert', 'ourselves', 'as', 'aliens', 'in', 'new', 'conceptual', ',', 'cultural', ',', 'and', 'social', 'environments', '(', 'in', 'his', 'case', ',', 'the', 'absence', 'of', 'society', ')', '.', 'I', 'am', 'convinced', 'that', 'our', 'lives', 'become', 'richer', 'when', 'they', 'are', 'less', 'predictable', '.', 'This', 'is', 'not', 'to', 'say', 'that', 'our', 'lives', 'are', 'always', 'predictable', 'in', 'the', 'absence', 'of', 'the', 'other', '.', 'Otherness', 'renders', 'our', 'expectations', 'less', 'fixed', 'and', 'requires', 'more', 'thinking', ',', 'planning', ',', 'and', 'learning', '.', 'The', 'Pirahãs', 'would', 'disagree', '.', 'They', 'believe', 'that', 'it', 'is', 'homogeneity', 'that', 'gives', 'us', 'comfort', 'and', 'keeps', 'us', 'strong', 'physically', 'and', 'psychologically', '.', 'Otherness', 'vs.', 'predictability', ',', 'which', 'is', 'more', 'desirable', '?', 'In', 'essence', ',', 'we', 'need', 'both', 'even', 'if', 'we', '’', 'd', 'construct', 'a', 'greater', 'sense', 'of', 'oneness', 'that', 'embraces', 'the', 'unexpected', '.', 'The', 'two', 'greatest', 'forces', 'of', 'preserving', 'and', 'constructing', 'cultures', 'are', 'imitation', 'and', 'innovation', '.', 'When', 'our', 'environments', ',', 'culturally', 'and', 'physically', ',', 'are', 'constant', ',', 'innovation', 'is', 'rarely', 'useful', '.', 'Like', 'biological', 'mutations', ',', 'cognitive', 'and', 'cultural', 'innovations', 'are', 'usually', 'unsuccessful', '.', 'The', 'effort', 'to', 'invent', 'will', 'usually', 'isolate', 'us', 'as', 'strange', 'and', 'less', 'successful', 'than', 'those', 'who', 'merely', 'imitate', '.', 'Failed', 'innovation', 'in', 'a', 'society', 'that', 'most', 'values', 'imitation', 'emphasizes', 'our', 'own', '‘', 'otherness', '’', 'and', 'provides', 'us', 'with', 'little', 'advantage', '.', 'As', 'environments', 'change', '–', 'such', 'as', 'the', 'ecology', 'of', 'the', 'Pleistocene', 'that', 'so', 'shaped', 'our', 'Homo', 'ancestors', ',', 'climate', 'change', 'today', ',', 'the', 'shifting', 'political', 'boundaries', ',', 'or', 'the', 'intrusion', 'of', 'others', 'into', 'our', 'environment', '–', 'innovation', 'becomes', 'a', 'more', 'important', 'force', ',', 'providing', 'new', 'solutions', 'to', 'new', 'problems', 'that', 'imitation', 'alone', 'is', 'unable', 'to', 'provide', '.', 'The', 'Pirahãs', 'live', 'in', 'an', 'environment', 'that', 'has', 'changed', 'little', 'over', 'the', 'centuries', '.', 'They', 'value', 'conformity', 'and', 'imitation', 'over', 'innovation', '.', 'Consequently', 'their', 'language', 'has', 'changed', 'little', 'over', 'time', '.', 'Records', 'of', 'their', 'culture', 'and', 'language', 'from', 'the', '18th', 'century', 'show', 'a', 'people', 'identical', 'to', 'the', 'people', 'we', 'encounter', 'today', ',', 'three', 'centuries', 'later', '.', 'In', 'environments', 'that', ',', 'especially', 'culturally', ',', 'change', 'at', 'light', 'speed', 'we', 'need', 'to', 'learn', 'to', 'think', ',', 'speak', ',', 'act', 'differently', ',', 'and', 'innovate', 'in', 'multiple', 'areas', 'simultaneously', 'as', 'the', 'changes', 'we', 'encounter', 'transform', 'our', 'familiar', 'environment', 'into', '‘', 'an', 'other', '’', '.', 'Every', 'day', 'brings', 'problems', 'that', 'we', 'never', 'faced', 'before', '.', 'Diversity', 'of', 'experiences', 'and', 'encounters', 'with', 'others', 'inspire', 'new', 'ways', 'of', 'thinking', 'and', 'new', 'forms', 'of', 'living', '.', 'If', 'we', 'all', 'look', 'the', 'same', ',', 'talk', 'the', 'same', ',', 'value', 'the', 'same', 'things', ',', 'paint', 'the', 'same', 'pictures', ',', 'dance', 'the', 'same', 'dances', ',', 'and', 'hear', 'the', 'same', 'music', 'then', 'we', 'are', 'simply', 'imitators', 'falling', 'behind', 'the', 'challenges', 'of', 'our', 'world', '.', 'This', 'applies', 'to', 'all', 'of', 'us', 'whether', 'we', 'are', 'hunter-gatherers', 'in', 'the', 'Amazon', 'or', 'advertising', 'agents', 'in', 'New', 'York', 'City', '.', 'It', 'blinds', 'us', 'to', 'new', 'forms', 'of', 'beauty', '.', 'What', 'we', 'see', 'around', 'us', ',', 'with', 'the', 'rise', 'of', 'anti-immigration', 'political', 'movements', 'in', 'Europe', 'and', 'the', 'USA', 'is', ',', 'at', 'least', 'partially', ',', 'a', 'fear', 'of', 'otherness', '.', 'Our', 'preference', 'is', 'for', 'conformity', 'and', 'imitation', ';', 'our', 'fear', 'then', 'itself', 'arises', 'from', 'that', 'preference', 'in', 'contrast', 'to', 'otherness', 'and', 'the', 'greater', 'steps', 'towards', 'an', 'ever', 'more', 'encompassing', 'oneness', 'of', 'the', 'type', 'that', 'motivated', 'Thoreau', '.', 'However', ',', 'the', 'ultimate', 'engine', 'of', 'innovation', 'is', 'otherness', '–', 'of', 'people', ',', 'food', ',', 'environments', ',', 'art', ',', 'and', 'culture', '–', 'it', 'strengthens', 'us', 'and', 'prospers', 'us', '.', 'Our', 'languages', 'and', 'cognitive', 'abilities', 'expand', 'as', 'we', 'learn', 'new', 'vocabularies', 'and', 'new', 'values', 'by', 'talking', 'to', 'people', 'and', 'experiencing', 'their', 'relationships', 'to', 'nature', 'that', 'are', 'unlike', 'our', 'own', '.', 'Human', 'language', 'emerged', 'within', 'the', 'Homo', 'line', 'because', 'it', 'was', 'the', 'only', 'creature', 'to', 'embrace', 'otherness', 'as', 'to', 'actively', 'explore', 'for', 'the', 'sake', 'of', 'exploration', ';', 'to', 'seek', 'encounters', 'with', 'otherness', '.', 'As', 'Homo', 'erectus', 'sailed', 'to', 'islands', 'beyond', 'the', 'horizon', 'it', 'invented', 'symbols', 'and', 'language', 'to', 'cope', 'with', 'the', 'greater', 'need', 'for', 'communal', 'efforts', 'to', 'expand', 'experiences', '.', 'Language', 'change', 'is', 'an', 'indication', 'of', 'cultural', 'change', '(', 'and', 'cultural', 'change', 'will', 'change', 'language', ')', '.', 'Together', ',', 'they', 'amplify', 'our', 'species', 'ability', 'to', 'innovate', 'and', 'survive', '.', 'All', 'that', 'we', 'are', 'is', 'the', 'result', 'of', 'our', 'human', 'embrace', 'of', 'the', 'other', ',', 'the', 'love', 'of', 'alterity', 'that', 'makes', 'us', 'distinct', 'from', 'all', 'other', 'creatures', '.', 'Alterity', 'is', 'one', 'of', 'our', 'greatest', 'fears', '.', 'And', 'yet', 'it', 'should', 'be', 'our', 'greatest', 'treasure', '.', '[', 'footnotes', ']', '1', '.', 'For', 'Everett', '’', 's', 'writings', 'see', 'among', 'other', 'titles', ':', 'Everett', ',', 'Daniel', '.', 'Don', '’', 't', 'sleep', ',', 'there', 'are', 'snakes', ':', 'life', 'and', 'language', 'in', 'the', 'Amazonian', 'jungle', '(', '2008', ')', '.', 'Pantheon', 'Books', ',', 'New', 'York', '.', '2.The', 'doomed', 'soul', 'in', 'Greek', 'mythology', 'who', 'had', 'the', 'repetitive', 'job', 'of', 'daily', 'pushing', 'a', 'huge', 'stone', 'up', 'a', 'hill', 'only', 'to', 'see', 'it', 'roll', 'down', 'at', 'the', 'end', 'of', 'his', 'efforts', 'and', 'leave', 'him', 'with', 'the', 'same', 'task', 'to', 'perform', 'the', 'next', 'day', '.'], '!?': ['!', '/', '?', 'Nina', 'Power', 'Part', '1', ':', '!', '“', '[', 'T', ']', 'he', 'entire', 'thrust', 'of', 'the', 'LTI', '[', '[', 'i', ']', 'The', 'Langue', 'of', 'the', 'Third', 'Reich', '[', 'i', ']', ']', 'was', 'towards', 'visualisation', ',', 'and', 'if', 'this', 'process', 'of', 'visualizing', 'could', 'be', 'achieved', 'with', 'recourse', 'to', 'Germanic', 'traditions', ',', 'by', 'means', 'of', 'a', 'runic', 'sign', ',', 'then', 'so', 'much', 'the', 'better', '.', 'And', 'as', 'a', 'jagged', 'character', 'the', 'rune', 'of', 'life', 'was', 'related', 'to', 'the', 'SS', 'symbol', ',', 'and', 'as', 'an', 'ideological', 'symbol', 'also', 'related', 'to', 'the', 'spokes', 'of', 'the', 'wheel', 'of', 'the', 'sun', ',', 'the', 'swastika', '…', 'Renan', '’', 's', 'position', ':', 'the', 'question', 'mark', '–', 'the', 'most', 'important', 'of', 'all', 'punctuation', 'marks', '.', 'A', 'position', 'in', 'direct', 'opposition', 'to', 'National', 'Socialist', 'intransigence', 'and', 'self-confidence', '…', 'From', 'time', 'to', 'time', 'it', 'is', 'possible', 'to', 'detect', ',', 'both', 'amongst', 'individuals', 'and', 'groups', ',', 'a', 'characteristic', 'preference', 'for', 'one', 'particular', 'punctuation', 'mark', '.', 'Academics', 'love', 'the', 'semicolon', ';', 'their', 'hankering', 'after', 'logic', 'demands', 'a', 'division', 'which', 'is', 'more', 'emphatic', 'than', 'a', 'comma', ',', 'but', 'not', 'quite', 'as', 'absolute', 'a', 'demarcation', 'as', 'a', 'full', 'stop', '.', 'Renan', 'the', 'sceptic', 'declares', 'that', 'it', 'is', 'impossible', 'to', 'overuse', 'the', 'question', 'mark.', '”', '–', 'Victor', 'Klemperer', ',', '‘', 'Punctuation', '’', 'from', '[', 'i', ']', 'The', 'Language', 'of', 'the', 'Third', 'Reich', '[', 'I', ']', '[', '1', ']', 'In', 'the', 'era', 'of', 'emojis', ',', 'we', 'have', 'forgotten', 'about', 'the', 'politics', 'of', 'punctuation', '.', 'Which', 'mark', 'or', 'sign', 'holds', 'sway', 'over', 'us', 'in', 'the', 'age', 'of', 'Twitter', ',', 'Facebook', ',', 'YouTube', 'comments', ',', 'emails', ',', 'and', 'text', 'messages', '?', 'If', 'we', 'take', 'the', 'tweets', 'of', 'Donald', 'Trump', 'as', 'some', 'kind', 'of', 'symptomatic', 'indicator', ',', 'we', 'can', 'see', 'quite', 'well', 'that', 'it', 'is', 'the', 'exclamation', 'mark', '–', '!', '–', 'that', 'dominates', '.', 'A', 'quick', 'look', 'at', 'his', 'tweets', 'from', 'the', 'last', '48', 'hour', 'period', 'shows', 'that', 'almost', 'all', 'of', 'them', 'end', 'with', 'a', 'single', 'declarative', 'sentence', 'or', 'word', 'followed', 'by', 'a', '‘', '!', '’', ':', '‘', 'Big', 'trade', 'imbalance', '!', '’', ',', '‘', 'No', 'more', '!', '’', ',', '‘', 'They', '’', 've', 'gone', 'CRAZY', '!', '’', ',', '‘', 'Happy', 'National', 'Anthem', 'Day', '!', '’', ',', '‘', 'REST', 'IN', 'PEACE', 'BILLY', 'GRAHAM', '!', '’', ',', '‘', 'IF', 'YOU', 'DON', '’', 'T', 'HAVE', 'STEEL', ',', 'YOU', 'DON', '’', 'T', 'HAVE', 'A', 'COUNTRY', '!', '’', ',', '(', 'we', 'shall', 'leave', 'the', 'matter', 'of', 'all', 'caps', 'for', 'another', 'time', ')', ',', '‘', '$', '800', 'Billion', 'Trade', 'Deficit-have', 'no', 'choice', '!', ',', '‘', 'Jobless', 'claims', 'at', 'a', '49', 'year', 'low', '!', '’', 'and', 'so', 'on', '…', 'you', 'get', 'the', 'picture', '.', 'Trump', '’', 's', 'exclamation', 'mark', 'is', 'the', 'equivalent', 'of', 'a', 'boss', 'slamming', 'his', 'fist', 'down', 'on', 'the', 'table', ',', 'an', 'abusive', 'partner', 'shouting', 'at', 'a', 'tentative', 'query', ',', 'an', 'exasperated', 'shock', 'jock', 'arguing', 'with', 'an', 'imaginary', 'opponent', '.', 'It', 'is', 'the', 'exclamation', 'mark', 'as', 'the', 'final', 'word', ',', 'which', 'would', 'not', 'be', 'so', 'frightening', 'if', 'Trump', '’', 's', 'final', 'word', 'was', 'not', 'also', 'backed', 'up', 'by', 'nuclear', 'annihilation', ',', 'the', 'US', 'army', ',', 'the', 'police', ',', 'court', 'and', 'prison', 'system', ',', 'vast', 'swathes', 'of', 'the', 'US', 'media', 'and', 'electorate', ',', 'and', 'multiple', 'people', 'around', 'him', 'too', 'afraid', 'to', 'say', '‘', 'no.', '’', 'This', 'is', 'the', 'exclamation', 'mark', 'as', 'apocalypse', ',', 'not', 'the', '‘', '!', '’', 'of', 'surprise', ',', 'amusement', ',', 'girlish', 'shyness', ',', 'humour', ',', 'or', 'ironic', 'puncture', '.', 'This', 'is', 'the', 'exclamation', 'of', 'doom', '.', 'The', '[', 'i', ']', 'Sturm', 'and', 'Drang', '[', 'i', ']', 'needed', 'an', 'unusually', 'large', 'number', 'of', 'exclamation', 'marks', ',', 'suggests', 'Klemperer', ',', 'and', ',', 'though', 'you', 'might', 'suspect', 'the', 'LTI', '(', '[', 'i', ']', 'Lingua', 'Tertii', 'Imperii', '[', 'i', ']', '–', 'the', 'language', 'of', 'the', 'Third', 'Reich', 'as', 'Klemperer', 'calls', 'it', ')', 'would', 'adore', 'the', 'exclamation', 'mark', ',', '“', 'given', 'its', 'fundamentally', 'rhetorical', 'nature', 'and', 'constant', 'appeal', 'to', 'the', 'emotions', ',', '”', 'in', 'actual', 'fact', '“', 'they', 'are', 'not', 'at', 'all', 'conspicuous', '”', 'in', 'Nazi', 'writings', '.', '[', '2', ']', 'Why', 'did', 'the', 'Nazis', 'not', 'need', 'the', 'exclamation', 'mark', '?', 'Klemperer', 'states', ',', '“', '[', 'i', ']', 't', 'is', 'as', 'if', '[', 'the', 'LTI', ']', 'turns', 'everything', 'into', 'a', 'command', 'or', 'proclamation', 'as', 'a', 'matter', 'of', 'course', 'and', 'therefore', 'has', 'no', 'need', 'of', 'a', 'special', 'punctuation', 'mark', 'to', 'highlight', 'the', 'fact', '–', 'where', 'after', 'all', 'are', 'the', 'sober', 'utterances', 'against', 'which', 'the', 'proclamation', 'would', 'need', 'to', 'stand', 'out', '?', '”', '[', '3', ']', 'This', 'point', 'alone', 'should', 'herald', 'a', 'terrible', 'warning', '.', '“', 'Sober', 'utterances', '”', '–', 'from', 'rational', 'debate', ',', 'to', 'well-researched', 'news', ',', 'to', 'public', 'and', 'open', 'discussion', '–', 'when', 'these', 'go', ',', 'the', 'exclamation', 'marks', 'will', 'go', 'too', ',', 'because', 'there', 'will', 'be', 'no', 'opposition', 'left', 'to', 'be', 'falsely', 'outraged', 'against', '.', 'There', 'will', 'be', 'no', 'critical', 'press', ',', 'no', 'free', 'thought', ',', 'no', 'social', 'antagonism', ',', 'because', 'anyone', 'who', 'stands', 'against', 'the', 'dominant', 'discourse', 'will', 'disappear', ',', 'and', 'perhaps', 'social', 'death', 'will', 'suffice', ',', 'rather', 'than', 'murder', ',', 'if', 'only', 'because', 'it', 'is', 'easier', 'to', 'do', '.', 'When', 'Trump', 'and', 'others', 'attack', 'the', 'media', ',', 'it', 'is', 'so', 'that', 'one', 'day', 'their', 'tweets', 'will', 'no', 'longer', 'need', 'the', 'exclamation', 'of', 'opposition', '.', 'It', 'is', 'so', 'that', 'all', 'statements', 'from', 'above', 'will', 'be', 'a', 'command', 'or', 'proclamation', 'in', 'a', 'frictionless', ',', 'opposition-less', 'universe', '.', 'But', 'we', 'are', 'also', 'tempted', 'by', 'the', 'exclamation', 'mark', 'because', 'it', 'is', 'also', 'a', 'sign', ',', 'in', 'some', 'contexts', ',', 'of', 'another', 'kind', 'of', 'disbelief', '.', 'Not', 'the', 'Trump', 'kind', 'in', 'which', 'he', 'can', 'not', 'reconcile', 'the', 'fact', 'that', 'others', 'disagree', 'with', 'him', '(', 'or', 'even', 'that', 'they', 'exist', ')', ',', 'but', 'the', 'kind', 'which', 'simply', 'says', '‘', 'oh', 'my', 'goodness', '!', '’', 'or', '‘', 'that', '’', 's', 'great', '!', '’', 'or', '‘', 'I', '’', 'm', 'shocked/surprised/happy', 'stunned', '!', '’', 'But', 'then', 'we', 'use', 'them', 'all', 'the', 'time', 'and', 'they', 'grow', 'tired', 'and', 'weak…and', 'we', 'use', 'them', 'defensively', ',', 'when', 'we', 'say', ':', '‘', 'I', '’', 'm', 'sorry', 'this', 'email', 'is', 'so', 'late', '!', '’', ',', '‘', 'I', 'have', 'been', 'so', 'useless', 'lately', '!', '’', ',', '‘', 'I', '’', 'm', 'so', 'tired', 'I', 'can', 'hardly', 'see', '!', '’', 'and', 'so', 'on', ',', 'ad', 'infinitum', '…', '(', 'and', 'what', 'of', 'the', 'ellipses', '?', '…', 'another', 'time', ',', 'another', 'time', ')', '.', 'If', 'you', 'look', 'at', 'the', 'comments', 'to', 'YouTube', 'videos', '(', 'a', 'sentence', 'to', 'which', 'nothing', 'good', 'is', 'ever', 'likely', 'to', 'be', 'added', ')', ',', 'you', 'will', 'find', 'a', 'particular', 'use', 'of', 'the', 'exclamation', 'mark', '.', 'Take', ',', 'for', 'example', ',', 'the', 'currently', 'number', 'one', 'trending', 'video', ':', '‘', 'Jennifer', 'Lawrence', 'Explains', 'Her', 'Drunk', 'Alter', 'Ego', '“', 'Gail', '”', '’', ',', 'where', 'the', 'actress', 'talks', 'to', 'Ellen', 'DeGeneres', 'on', 'the', 'latter', '’', 's', 'popular', 'programme', '‘', 'The', 'Ellen', 'Show', '’', 'about', 'how', 'when', 'she', '’', 's', 'on', 'holiday', 'and', 'drinks', 'rum', 'she', 'becomes', 'a', 'masculine', ',', 'adrenalin-junkie', ',', 'alter-ego', '‘', 'Gail', '’', 'who', 'jumps', 'into', 'shark-infested', 'waters', 'to', 'amuse', 'her', 'friends', ',', 'eats', 'live', 'sea', 'creatures', ',', 'and', 'challenges', 'people', 'to', 'arm-wrestling', 'competitions', '.', 'Apart', 'from', 'the', 'slight', 'melancholy', 'induced', 'by', 'wondering', 'why', 'Jennifer', 'Lawrence', 'has', 'to', 'split', 'herself', 'into', 'different', 'beings', 'in', 'order', 'to', 'have', 'a', 'break', 'from', 'work', ',', 'how', 'does', 'the', '‘', 'public', '’', 'response', 'to', 'the', 'video', 'tell', 'us', 'anything', 'about', 'the', 'various', 'uses', 'of', 'the', 'exclamation', 'mark', '?', 'While', 'many', 'of', 'the', 'comments', 'suggest', 'that', 'Lawrence', 'is', 'the', 'victim', 'of', 'MKUltra', 'mind', 'control', ',', 'and', 'a', 'victim', 'of', 'child', 'abuse', ',', 'or', 'that', 'she', 'is', 'fake', ',', 'some', 'of', 'the', 'comments', 'shed', 'a', 'small', ',', 'pitiful', ',', 'grey', 'kind', 'of', 'light', 'on', 'the', 'exclamation', 'mark', 'as', 'a', 'kind', 'of', 'pleading', 'into', 'the', 'void', '–', 'the', 'mark', 'that', 'will', 'never', 'be', 'registered', ',', 'because', 'the', 'speaker', 'is', 'speaking', 'primarily', 'to', 'reassure', 'him', 'or', 'herself', '.', 'There', 'is', 'the', 'pleading', ',', 'compassionate', 'use', ':', '“', 'love', 'how', 'she', 'is', 'so', 'open', '!', '\\ufeffÒ', '”', 'says', 'Kailey', 'Bashaw', ',', 'to', 'which', 'Oliver', '2000', 'responds', ',', '“', 'Yeah', 'I', 'love', 'her', 'porn', 'pictures', '”', 'with', 'no', 'punctuation', 'at', 'all', '.', 'Lauren', 'Robelto', 'writes', ':', '“', 'Everybody', 'commenting', 'about', 'alcoholism', 'makes', 'me', 'so', 'sad', '.', 'She', '’', 's', 'worked', 'very', 'hard', 'and', 'just', 'wants', 'to', 'take', 'a', 'break', 'and', 'have', 'fun', 'and', 'everyone', '’', 's', 'criticizes', 'her', '.', 'Honestly', 'if', 'I', 'were', 'her', 'I', 'would', \"n't\", 'be', 'able', 'to', 'stop', 'drinking', 'because', 'of', 'all', 'the', 'hate', '!', 'Lighten', 'up', 'people', '!', 'JLaw', 'is', 'gon', 'na', 'keep', 'thriving', 'with', 'or', 'without', 'your', 'support', '!', '!', '”', 'A', 'similar', 'kind', 'of', 'plea', ',', 'the', 'plea', 'of', 'the', 'fan', ',', 'a', 'plea', 'for', 'understanding', 'combined', 'with', 'a', 'passive-aggressive', 'double', 'use', 'of', 'the', 'exclamation', 'mark', 'to', 'signify', 'a', 'kind', 'of', 'double-triumph', ':', 'the', 'commentator', 'has', 'both', 'convinced', 'themselves', 'and', 'history', 'that', 'leaving', 'negative', '(', 'or', 'indeed', 'positive', ')', 'comments', 'on', 'YouTube', 'will', 'in', 'no', 'way', 'affect', 'the', 'reception', 'of', 'whoever', 'they', 'are', 'passionate', 'about', '.', 'There', 'is', 'a', 'footnote', 'in', 'Marx', '’', 's', '[', 'i', ']', 'Capital', '[', 'i', ']', ',', 'vol', '.', '1', 'which', 'does', 'something', 'interesting', 'with', 'the', 'relation', 'between', 'the', 'exclamation', 'mark', 'and', 'the', 'question', 'mark', ',', 'and', 'I', 'want', 'to', 'insert', 'it', 'here', 'as', 'the', 'perfect', 'dialectical', 'extract', 'for', 'moving', 'from', 'the', 'exclamation', 'mark', 'to', 'the', 'question', 'mark', '.', 'Here', 'Marx', 'is', 'quoting', 'Wilhelm', 'Roscher', 'writing', 'about', 'J', '.', 'B', '.', 'Say', ',', 'the', 'liberal', 'economist', 'famous', 'for', 'arguing', 'that', 'production', 'creates', 'its', 'own', 'demand', '.', 'All', 'the', 'comments', 'in', 'parentheses', 'are', 'Marx', '’', 's', 'own', ':', '“', '‘', 'Ricardo', '’', 's', 'school', 'is', 'in', 'the', 'habit', 'of', 'including', 'capital', 'as', 'accumulated', 'labour', 'under', 'the', 'heading', 'of', 'labour', '.', 'This', 'is', 'unskillful', '(', '!', ')', ',', 'because', '(', '!', ')', 'indeed', 'the', 'owner', 'of', 'capital', '(', '!', ')', 'has', 'after', 'all', '(', '!', ')', 'done', 'more', 'than', 'merely', '(', '!', '?', ')', 'create', '(', '?', ')', 'and', 'preserve', '(', '?', '?', ')', 'the', 'same', '(', 'what', 'same', '?', ')', ':', 'namely', '(', '?', '!', '?', ')', 'the', 'abstention', 'from', 'the', 'enjoyment', 'of', 'it', ',', 'in', 'return', 'for', 'which', 'he', 'demands', ',', 'for', 'instance', '(', '!', '!', '!', ')', 'interest.', '’', 'How', 'very', '‘', 'skilful', '’', 'is', 'this', '‘', 'anatomico-physiological', 'method', '’', 'of', 'political', 'economy', ',', 'which', 'converts', 'a', 'mere', '‘', 'demand', '’', 'into', 'a', 'source', 'of', 'value', '!', '”', '[', '4', ']', 'Marx', 'was', 'famously', 'brutal', 'and', 'scabrous', 'in', 'his', 'take-downs', ',', 'devoting', 'hundreds', 'of', 'pages', 'to', 'figures', 'that', 'are', 'now', 'barely', 'remembered', ',', 'or', 'remembered', 'largely', 'because', 'Marx', 'took', 'them', 'down', '.', 'But', 'here', 'our', 'interest', 'lies', 'in', 'the', 'use', 'of', '‘', '!', '’', 'and', '‘', '?', '’', 'and', '‘', '!', '?', '’', 'and', '‘', '?', '?', '’', 'and', '‘', '?', '!', '?', '’', 'and', '‘', '!', '!', '!', '’', '.', 'What', 'is', 'Marx', 'signalling', 'here', '?', 'Disbelief', 'in', 'idiocy', ',', 'incomprehension', ',', 'mockery', ',', 'but', 'also', 'perhaps', 'a', 'curious', 'hope', '.', 'Hope', '?', 'Hope', 'in', 'a', 'better', 'analysis', ',', 'one', 'worthier', 'of', 'the', 'world', ',', 'one', 'that', 'will', 'explain', 'rather', 'than', 'mystify…', 'Part', '2', ':', '?', 'Are', 'we', 'today', 'in', 'need', 'of', 'more', 'question', 'marks', '?', 'Klemperer', 'describes', ',', 'as', 'above', ',', 'the', 'question', 'mark', 'as', 'being', '“', 'in', 'direct', 'opposition', 'to', 'National', 'Socialist', 'intransigence', 'and', 'self-confidence.', '”', '[', '5', ']', 'The', 'question', 'mark', 'is', 'itself', 'a', 'question', ',', 'a', 'kind', 'of', 'collapsed', 'exclamation', 'mark', '.', 'A', 'question', 'mark', 'can', 'be', 'an', 'act', 'of', 'aggression', 'or', 'interruption', ':', '‘', 'oh', 'really', '?', '’', 'But', 'it', 'can', 'also', 'function', 'as', 'a', 'kind', 'of', 'pause', ',', 'a', 'break', 'in', 'the', 'horrible', 'flow', ',', 'the', 'babble', ',', 'the', 'endless', 'lies', '.', 'The', 'question', 'mark', 'is', 'the', 'person', 'who', 'says', '‘', 'hang', 'on', ',', 'what', 'is', 'being', 'said', 'here', '?', '’', ',', '‘', 'what', 'is', 'happening', '?', '’', ',', '‘', 'is', 'this', 'okay', '?', '’', 'It', 'is', 'the', 'question', 'of', 'the', 'body', 'that', 'stands', 'against', 'the', 'crowd', ',', 'head', 'bowed', ',', 'frightened', ',', 'but', 'compelled', 'by', 'an', 'inner', 'question', 'of', 'their', 'own', '–', '‘', 'is', 'this', 'the', 'right', 'thing', ',', 'what', 'they', 'are', 'saying', '?', '’', 'It', 'is', 'the', 'feeling', 'and', 'the', 'admission', 'that', 'one', 'doesn', '’', 't', 'know', ',', 'and', 'the', 'intuition', 'that', 'there', 'might', 'not', 'be', 'a', 'simple', 'answer', 'to', 'the', 'situation', '.', 'We', 'are', 'surrounded', 'by', 'people', 'who', 'want', 'to', 'give', 'us', 'their', 'solutions', ',', 'who', 'tell', 'us', 'how', 'things', 'work', ',', 'what', 'we', 'should', 'think', ',', 'how', 'we', 'should', 'be', ',', 'how', 'we', 'should', 'behave', '.', 'There', 'are', 'too', 'few', 'Socratic', 'beings', ',', 'and', 'far', 'too', 'many', 'self-promoters', ',', 'charlatans', ',', 'snake-oil', 'salesmen', ',', 'liars', ',', 'confidence', 'tricksters', '.', 'We', 'want', 'to', 'be', 'nice', ',', 'but', 'we', 'end', 'up', 'getting', 'played', '.', 'Anyone', 'who', 'claims', 'to', 'have', '‘', 'the', 'full', 'picture', '’', 'is', 'someone', 'who', 'wants', 'an', 'image', 'of', 'the', 'world', 'to', 'dominate', 'you', 'so', 'you', 'shut', 'up', 'or', 'give', 'them', 'something', 'they', 'want', '.', 'They', 'are', 'not', 'your', 'friends', '.', 'How', 'to', 'understand', 'the', 'question', 'mark', 'as', 'a', 'symbol', ',', 'then', ',', 'of', 'trust', '?', 'There', 'must', 'be', 'room', 'for', 'exploration', ',', 'of', 'a', 'mutual', ',', 'tentative', 'openness', '.', 'A', 'place', 'where', 'it', 'is', 'possible', 'to', 'say', '‘', 'I', 'don', '’', 't', 'know', '’', 'and', 'not', 'feel', 'ashamed', 'or', 'ignorant', ',', 'or', 'foolish', ',', 'or', 'unkind', '.', 'The', 'internet', 'is', 'so', 'often', 'a', 'place', 'where', 'people', 'are', 'shunned', 'and', 'shamed', 'for', 'asking', 'questions', ',', 'as', 'if', 'ignorance', 'wasn', '’', 't', 'a', 'condition', 'for', 'knowledge', ',', 'and', 'as', 'if', 'we', 'never', 'wanted', 'anyone', 'to', 'go', 'beyond', 'the', 'things', 'everybody', 'already', 'understands', '.', 'Sometimes', '‘', 'ignorance', '’', 'is', 'in', 'fact', 'the', 'greatest', 'kind', 'of', 'intelligence', ',', 'and', 'sometimes', 'it', 'is', 'the', 'most', 'noble', 'political', 'strategy', '.', 'Philosophy', 'and', 'psychoanalysis', 'tells', 'us', 'that', ',', 'in', 'any', 'case', ',', 'we', 'in', 'fact', 'know', 'less', 'than', 'we', 'think', 'we', 'do', 'know', '.', 'Knowledge', 'and', 'understanding', 'are', 'not', 'transparent', 'processes', ':', 'we', 'bury', 'and', 'forget', ',', 'we', 'lose', 'the', 'ability', 'to', 'ask', 'questions', 'of', 'ourselves', ',', 'and', 'we', 'when', 'we', 'think', 'we', 'understand', 'ourselves', 'this', 'is', 'when', 'we', 'dismiss', 'others', '.', 'We', 'want', 'to', 'think', 'that', 'we', 'are', 'solely', 'good', ',', 'that', 'we', 'have', 'the', '‘', 'right', 'position', ',', '’', 'and', 'that', 'the', 'others', 'are', 'wrong', '.', 'But', 'if', 'we', 'give', 'up', 'on', 'our', 'inner', 'question', 'mark', ',', 'we', 'become', 'rigid', ',', 'like', 'the', 'exclamation', 'mark', 'of', 'condemnation', '.', 'We', 'forget', 'that', 'other', 'people', 'think', 'differently', 'and', 'that', 'not', 'everyone', 'must', 'think', 'the', 'same', 'thing', '.', 'We', 'forget', 'about', 'friendship', ',', 'flexibility', ',', 'and', 'forgiveness', '.', 'If', 'we', 'do', 'not', 'give', 'ourselves', 'enough', 'time', 'to', 'think', 'about', 'the', 'politics', 'of', 'punctuation', ',', 'we', 'run', 'the', 'risk', 'of', 'being', 'swept', 'away', 'on', 'a', 'wave', 'of', 'someone', 'else', '’', 's', 'desire', '.', 'We', 'become', 'passive', 'pawns', 'and', 'stooges', '.', 'We', 'become', 'victims', 'of', 'the', 'malign', 'desires', 'of', 'others', 'to', 'silence', 'us', ',', 'to', 'put', 'us', 'down', ',', 'to', 'make', 'us', 'terrified', 'and', 'confused', '.', 'Punctuation', 'is', 'not', 'merely', 'linguistic', ',', 'but', 'imagistic', 'and', 'political', 'through', 'and', 'through', '.', 'The', '!', 'and', 'the', '?', 'are', 'signs', 'among', 'other', 'signs', ',', 'but', 'their', 'relation', 'and', 'their', 'power', 'course', 'through', 'us', 'when', 'we', 'are', 'least', 'aware', 'of', 'it', '.', 'When', 'we', 'are', 'face', 'to', 'face', ',', 'we', 'can', 'use', 'our', 'expressions', ',', 'our', 'body', 'as', 'a', 'whole', ',', 'to', 'dramatize', 'these', 'marks', ',', 'with', 'a', 'raised', 'eyebrow', ',', 'a', 'gesture', ',', 'a', 'shrug', '–', 'a', 'complex', 'combination', 'of', 'the', 'two', 'marks', 'can', 'appear', 'in', 'and', 'about', 'us', '.', 'But', 'we', 'are', 'apart', 'much', 'of', 'the', 'time', ',', 'and', 'we', 'must', 'rely', 'on', 'markers', 'that', 'do', 'not', 'capture', 'our', 'collective', 'understanding', '.', 'We', 'must', 'be', 'in', 'a', 'mode', 'of', 'play', 'with', 'the', 'words', 'and', 'the', 'punctuation', 'we', 'use', ',', 'to', 'keep', 'a', 'certain', 'openness', ',', 'a', 'certain', 'humour', ':', 'not', 'the', 'cruelty', 'of', 'online', 'life', 'or', 'the', 'declarations', 'of', 'the', 'powerful', ',', 'but', 'the', 'delicate', 'humour', 'that', 'includes', 'the', 'recognition', 'that', 'jokes', 'are', 'always', 'aggressive', ',', 'and', 'that', 'we', 'live', 'permanently', 'on', 'the', 'edge', 'of', 'violence', ',', 'but', 'that', 'we', 'must', 'be', 'able', 'to', 'play', 'if', 'we', 'are', 'able', 'to', 'understand', 'our', 'drives', ',', 'and', ',', 'at', 'the', 'same', 'time', ',', 'the', 'possibility', 'of', 'living', 'together', 'differently', '.', 'Footnotes', '1', '.', 'Klemperer', ',', 'Victor', '.', '[', 'i', ']', 'Language', 'of', 'the', 'Third', 'Reich', ':', 'LTI', ':', 'Lingua', 'Tertii', 'Imperii', '[', 'i', ']', '.', 'Translated', 'by', 'Martin', 'Brady', '.', 'New', 'York', ':', 'Bloomsbury', 'Academic', ',', '2013', '.', '2', '.', 'Ibid', '.', '67', '.', '3', '.', 'Ibid', '.', '67', '.', '4', '.', 'Marx', ',', 'Karl', '.', '[', 'i', ']', 'Capital', ',', 'Volume', '1', ':', 'A', 'Critique', 'of', 'Political', 'Economy', '.', '[', 'i', ']', 'New', 'York', ':', 'International', 'Publishers', ',', '1977', '.', '82', '.', '5', '.', 'Klemperer', ',', 'Victor', '.', '[', 'i', ']', 'Language', 'of', 'the', 'Third', 'Reich', ':', 'LTI', ':', 'Lingua', 'Tertii', 'Imperii', '[', 'i', ']', '.', '74', '.'], 'HOPE': ['Hope', 'Gurur', 'Ertem', 'I', 'began', 'thinking', 'about', 'hope', 'on', 'January', '11th', '2016', ',', 'when', 'a', 'group', 'of', 'scholars', 'representing', 'Academics', 'for', 'Peace', 'held', 'a', 'press', 'conference', 'to', 'read', 'the', 'petition', ',', '“', 'We', 'Will', 'Not', 'be', 'a', 'Party', 'to', 'this', 'Crime.', '”', 'The', 'statement', 'expressed', 'academics', '’', 'worries', 'about', 'Turkish', 'government', '’', 's', 'security', 'operations', 'against', 'the', 'youth', 'movement', 'of', 'the', 'armed', 'Kurdistan', 'Worker', '’', 's', 'Party', '(', 'PKK', ')', 'in', 'the', 'southeastern', 'cities', 'of', 'Turkey', '.', 'They', 'were', 'concerned', 'about', 'the', 'devastating', 'impact', 'the', 'military', 'involvement', 'had', 'on', 'the', 'region', '’', 's', 'civilian', 'population', '.', '[', '1', ']', 'The', 'petition', 'also', 'called', 'for', 'the', 'resumption', 'of', 'peace', 'negotiations', 'with', 'the', 'PKK', '.', 'In', 'reaction', ',', 'the', 'President', 'of', 'the', 'Turkish', 'State', 'deemed', 'these', 'academics', '“', 'pseudo-intellectuals', ',', '”', '“', 'traitors', ',', '”', 'and', '“', 'terrorist-aides.', '”', '[', '2', ']', 'On', 'January', '13', ',', '2016', ',', 'an', 'extreme', 'nationalist/convicted', 'criminal', 'threatened', 'the', 'academics', 'in', 'a', 'message', 'posted', 'on', 'his', 'website', ':', '“', 'We', 'will', 'spill', 'your', 'blood', 'in', 'streams', ',', 'and', 'we', 'will', 'take', 'a', 'shower', 'in', 'your', 'blood.', '”', '[', '3', ']', 'As', 'I', '’', 'm', 'composing', 'this', 'text', ',', 'I', 'read', 'that', 'the', 'indictment', 'against', 'the', 'Academics', 'for', 'Peace', 'has', 'become', 'official', '.', 'The', 'signatories', 'face', 'charges', 'of', 'seven', 'and', 'a', 'half', 'years', 'imprisonment', 'under', 'Article', '7', '(', '2', ')', 'of', 'the', 'Turkish', 'Anti-Terror', 'Act', 'for', '“', 'propaganda', 'for', 'terrorism.', '”', 'This', 'afternoon', ',', 'the', 'moment', 'I', 'stepped', 'into', 'the', 'building', 'where', 'my', 'office', 'is', ',', 'I', 'overheard', 'an', 'exchange', 'between', 'two', 'men', 'who', 'I', 'think', 'are', 'shop', 'owners', 'downstairs', ':', '[', 'centered', ']', '“', 'I', 'was', 'at', 'dinner', 'with', 'Sedat', 'Peker.', '”', '“', 'I', 'wish', 'you', 'sent', 'him', 'my', 'greetings.', '”', '[', 'centered', ']', 'Sedat', 'Peker', 'is', 'the', 'name', 'of', 'the', 'nationalist', 'mafia', 'boss', 'who', 'had', 'threatened', 'the', 'academics', '.', 'I', 'thought', 'about', 'the', 'current', 'Istanbul', 'Biennial', 'organized', 'around', 'the', 'theme', '“', 'A', 'Good', 'Neighbor.', '”', 'It', 'is', 'a', 'pity', 'that', 'local', 'issues', 'such', 'as', 'living', 'with', 'neighbors', 'who', 'want', 'to', '“', 'take', 'a', 'shower', 'in', 'your', 'blood', '”', 'were', 'missing', 'from', 'there', '.', 'I', 'began', 'taking', 'hope', 'seriously', 'on', 'July', '16', ',', '2016', ',', 'the', 'night', 'of', 'the', '“', 'coup', 'attempt', '”', 'against', 'President', 'Erdoğan', '.', 'The', 'public', 'still', 'doesn', '’', 't', 'know', 'what', 'exactly', 'happened', 'on', 'that', 'night', '.', 'Perhaps', ',', 'hope', 'was', 'one', 'of', 'the', 'least', 'appropriate', 'words', 'to', 'depict', 'the', 'mood', 'of', 'the', 'day', 'in', 'a', 'context', 'where', '“', 'shit', 'had', 'hit', 'the', 'fan.', '”', '(', 'I', '’', 'm', 'sorry', 'I', 'lack', 'more', 'elegant', 'terms', 'to', 'describe', 'that', 'night', 'and', 'what', 'followed', ')', '.', '[', '4', ']', 'Perhaps', ',', 'it', 'was', 'because', ',', 'as', 'the', 'visionary', 'writer', 'John', 'Berger', 'once', 'wrote', ':', '“', 'hope', 'is', 'something', 'that', 'occurs', 'in', 'very', 'dark', 'moments', '.', 'It', 'is', 'like', 'a', 'flame', 'in', 'the', 'darkness', ';', 'it', 'is', \"n't\", 'like', 'a', 'confidence', 'and', 'a', 'promise.', '”', 'On', 'November', '4th', ',', '2016', ',', 'Selahattin', 'Demirtaş', 'and', 'Figen', 'Yüksekdağ', ',', 'the', 'co-chairs', 'of', 'the', 'HDP', '(', 'The', 'People', '’', 's', 'Democratic', 'Party', ')', ',', '[', '5', ']', 'were', 'imprisoned', '.', 'Five', 'days', 'later', ',', 'the', 'world', 'woke', 'up', 'to', 'the', 'results', 'of', 'the', 'US', 'Presidential', 'election', ',', 'which', 'was', 'not', 'surprising', 'at', 'all', 'for', 'us', 'mortals', 'located', 'somewhere', 'near', 'the', 'Middle', 'East', '.', 'I', 'began', 'to', 'compile', 'obsessively', 'a', 'bibliography', 'on', 'hope', '[', '6', ']', '-', 'a', '“', 'Hope', 'Syllabus', '”', 'of', 'sorts', '-', 'as', 'a', 'response', 'to', 'the', 'numerous', '‘', 'Trump', 'Syllabi', '’', 'that', 'started', 'circulating', 'online', 'among', 'academic', 'circles', '.', '[', '7', ']', 'So', ',', 'why', '“', 'hope', ',', '”', 'and', 'why', 'now', '?', 'How', 'can', 'we', 'release', 'hope', 'from', 'Pandora', '’', 's', 'jar', '?', 'How', 'can', 'we', 'even', 'begin', 'talking', 'about', 'hope', 'when', 'progressive', 'mobilizations', 'are', 'crushed', 'by', 'sheer', 'force', 'before', 'they', 'find', 'the', 'opportunity', 'to', 'grow', 'into', 'fully-fledged', 'social', 'movements', '?', 'What', 'resources', 'and', 'visions', 'can', 'hope', 'offer', 'where', 'an', 'economic', 'logic', 'has', 'become', 'the', 'overarching', 'trope', 'to', 'measure', 'happiness', 'and', 'success', '?', 'How', 'could', 'hope', 'guide', 'us', 'when', 'access', 'to', 'arms', 'is', 'as', 'easy', 'as', 'popcorn', '?', 'Can', 'hope', 'find', 'the', 'ground', 'to', 'take', 'root', 'and', 'flourish', 'in', 'times', 'of', 'market', 'fundamentalism', '?', 'What', 'could', 'hope', 'mean', 'when', 'governments', 'and', 'their', 'media', 'extensions', 'are', 'spreading', 'lies', ',', 'deceptions', ',', 'and', 'jet-black', 'propaganda', '?', 'Can', 'hope', 'beat', 'the', 'growing', 'cynicism', 'aggravated', 'by', 'distrust', 'in', 'politics', '?', 'In', 'brief', ',', 'are', 'there', 'any', 'reasons', 'to', 'be', 'hopeful', 'despite', 'the', 'evidence', '?', 'I', 'don', '’', 't', 'expect', 'anyone', 'to', 'be', 'able', 'to', 'answer', 'these', 'questions', '.', 'I', 'definitely', 'can', '’', 't', '.', 'I', 'can', 'only', 'offer', 'preliminary', 'remarks', 'and', 'suggest', 'some', 'modest', 'beginnings', 'to', 'rekindle', 'hope', 'by', 'reflecting', 'on', 'some', 'readings', 'I', '’', 've', 'assigned', 'myself', 'as', 'part', 'of', 'the', '“', 'Hope', 'Syllabus', '”', 'I', '’', 've', 'been', 'compiling', 'for', 'an', 'ongoing', 'project', 'I', 'tentatively', 'titled', 'as', '“', 'A', 'Sociology', 'of', 'Hope.', '”', 'I', 'am', 'thankful', 'that', 'Words', 'for', 'the', 'Future', 'gives', 'me', 'the', 'opportunity', 'to', 'pin', 'down', 'in', 'some', 'form', 'my', 'many', 'scattered', ',', 'contradictory', ',', 'and', 'whirling', 'thoughts', 'on', 'hope', '.', 'In', 'what', 'follows', ',', 'in', 'dialogue', 'with', 'Giorgio', 'Agamben', '’', 's', 'work', ',', 'I', 'argue', 'that', 'if', 'we', 'are', 'true', 'contemporaries', ',', 'our', 'task', 'is', 'to', 'see', 'in', 'the', 'dark', 'and', 'make', 'hope', 'accessible', 'again', '.', 'Then', ',', 'I', 'briefly', 'review', 'Chantal', 'Mouffe', '’', 's', 'ideas', 'on', 'radical', 'democracy', 'to', 'discuss', 'how', 'the', 'image', 'of', 'a', '“', 'democracy', 'to', 'come', '”', 'is', 'connected', 'with', 'the', 'notion', 'of', 'hope', 'as', 'an', 'engagement', 'with', 'the', 'world', 'instead', 'of', 'a', 'cynical', 'withdrawal', 'from', 'it', 'regardless', 'of', 'expectations', 'about', 'final', 'results', 'or', 'outcomes', '.', 'I', 'conclude', 'by', 'reflecting', 'on', 'how', 'critical', 'social', 'thought', 'and', 'the', 'arts', 'could', 'contribute', 'to', 'new', 'social', 'imaginaries', 'by', 'paying', 'attention', 'to', '“', 'islands', 'of', 'hope', '”', 'in', 'the', 'life', 'worlds', 'of', 'our', 'contemporaries', '.', 'The', 'Contemporaneity', 'of', '“', 'Hope', '”', 'In', 'the', 'essay', '“', 'What', 'is', 'the', 'Contemporary', '?', '”', 'Agamben', 'describes', 'contemporaneity', 'not', 'as', 'an', 'epochal', 'marker', 'but', 'as', 'a', 'particular', 'relationship', 'with', 'one', '’', 's', 'time', '.', 'It', 'is', 'defined', 'by', 'an', 'experience', 'of', 'profound', 'dissonance', '.', 'This', 'dissonance', 'plays', 'out', 'at', 'different', 'levels', 'in', 'his', 'argument', '.', 'First', ',', 'it', 'entails', 'seeing', 'the', 'darkness', 'in', 'the', 'present', 'without', 'being', 'blinded', 'by', 'its', 'lights', 'while', 'at', 'the', 'same', 'time', 'perceiving', 'in', 'this', 'darkness', 'a', 'light', 'that', 'strives', 'but', 'can', 'not', 'yet', 'reach', 'us', '.', 'Nobody', 'can', 'deny', 'that', 'we', '’', 're', 'going', 'through', 'some', 'dark', 'times', ';', 'it', '’', 's', 'become', 'all', 'we', 'perceive', 'and', 'talk', 'about', 'lately', '.', 'Hope—as', 'an', 'idea', ',', 'verb', ',', 'action', ',', 'or', 'attitude—rings', 'out', 'of', 'tune', 'with', 'the', 'reality', 'of', 'the', 'present', '.', 'But', ',', 'if', 'we', 'follow', 'Agamben', '’', 's', 'reasoning', ',', 'the', 'perception', 'of', 'darkness', 'and', 'hopelessness', 'would', 'not', 'suffice', 'to', 'qualify', 'us', 'as', '“', 'true', 'contemporaries.', '”', 'What', 'we', 'need', ',', 'then', ',', 'is', 'to', 'find', 'ways', 'of', 'seeing', 'in', 'the', 'dark', '[', '8', ']', '.', 'Second', 'level', 'of', 'dissonance', 'Agamben', 'evokes', 'is', 'related', 'to', 'history', 'and', 'memory', '.', 'The', 'non-coincidence', 'with', 'one', '’', 's', 'time', 'does', 'not', 'mean', 'the', 'contemporary', 'is', 'nostalgic', 'or', 'utopian', ';', 'she', 'is', 'aware', 'of', 'her', 'entanglement', 'in', 'a', 'particular', 'time', 'yet', 'seeks', 'to', 'bring', 'a', 'certain', 'historical', 'sensibility', 'to', 'it', '.', 'Echoing', 'Walter', 'Benjamin', '’', 's', 'conception', 'of', 'time', 'as', 'heterogeneous', ',', 'Agamben', 'argues', 'that', 'being', 'contemporary', 'means', 'putting', 'to', 'work', 'a', 'particular', 'relationship', 'among', 'different', 'times', ':', 'citing', ',', 'recycling', ',', 'making', 'relevant', 'again', 'moments', 'from', 'the', 'past', ',', 'revitalizing', 'that', 'which', 'is', 'declared', 'as', 'lost', 'to', 'history', '.', 'Agamben', '’', 's', 'observations', 'about', 'historicity', 'are', 'especially', 'relevant', 'regarding', 'hope', '.', 'As', 'many', 'other', 'writers', 'and', 'thinkers', 'have', 'noted', ',', 'hopelessness', 'and', 'its', 'cognates', 'such', 'as', 'despair', 'and', 'cynicism', 'are', 'very', 'much', 'linked', 'to', 'amnesia', '.', 'As', 'Henry', 'A.', 'Giroux', 'argues', 'in', '[', 'i', ']', 'The', 'Violence', 'of', 'Organized', 'Forgetting', '[', 'i', ']', ',', 'under', 'the', 'conditions', 'of', 'neoliberalism', ',', 'militarization', ',', 'securitization', ',', 'and', 'the', 'colonization', 'of', 'life', 'worlds', 'by', 'the', 'economistic', 'logic', ',', 'forms', 'of', 'historical', ',', 'political', ',', 'and', 'moral', 'forgetting', 'are', 'not', 'only', 'willfully', 'practiced', 'but', 'also', 'celebrated', '[', '9', ']', '.', 'Mainstream', 'media', '’', 's', 'approach', 'to', 'the', 'news', 'and', 'violence', 'as', 'entertainment', 'exploits', 'our', '“', 'negativity', 'bias', '”', '[', '10', ']', 'and', 'makes', 'us', 'lose', 'track', 'of', 'hopeful', 'moments', 'and', 'promising', 'social', 'movements', '.', 'Memory', 'has', 'become', 'particularly', 'threatening', 'because', 'it', 'offers', 'the', 'potential', 'to', 'recover', 'the', 'promise', 'of', 'lost', 'legacies', 'of', 'resistance', '.', 'The', 'essayist', 'and', 'activist', 'Rebecca', 'Solnit', 'underscores', 'the', 'strong', 'relation', 'between', 'hope', 'and', 'remembrance', '.', 'As', 'she', 'writes', 'in', '[', 'i', ']', 'Hope', 'in', 'the', 'Dark', '[', 'i', ']', ',', 'a', 'full', 'engagement', 'with', 'the', 'world', 'requires', 'seeing', 'not', 'only', 'the', 'rise', 'of', 'extreme', 'inequality', 'and', 'political', 'and', 'ecological', 'disasters', ';', 'but', 'also', 'remembering', 'victories', 'such', 'as', 'Occupy', 'Wall', 'Street', ',', 'Black', 'Lives', 'Matter', ',', 'and', 'Edward', 'Snowden', '[', '11', ']', '.', 'To', 'Solnit', '’', 's', 'list', 'of', 'positives', 'I', 'would', 'add', 'the', 'post-Gezi', 'HDP', '“', 'victory', '”', 'in', 'the', 'June', '7', ',', '2015', 'elections', 'in', 'Turkey', 'and', 'the', 'Bernie', 'Sanders', 'campaign', 'in', 'the', 'US', '.', 'Without', 'the', 'memory', 'of', 'these', 'achievements', 'we', 'can', 'indeed', 'only', 'despair', '.', 'Although', 'the', 'media', 'continually', 'hype', 'the', '“', 'migration', 'crisis', '”', 'and', '“', 'post-truth', '”', 'disguising', 'the', 'fact', 'there', 'is', 'nothing', 'so', 'new', 'about', 'them', ';', 'it', 'does', 'not', 'report', 'on', 'the', 'acts', 'of', 'resistance', 'taking', 'place', 'every', 'day', '.', 'Even', 'when', 'the', 'media', 'represent', 'them', ',', 'they', 'convey', 'these', 'events', 'as', 'though', 'the', 'activists', 'and', 'struggles', 'come', 'out', 'of', 'nowhere', '.', 'For', 'instance', ',', 'as', 'Stephen', 'Zunes', 'illuminates', ',', 'the', 'Arab', 'Uprisings', 'were', 'the', 'culmination', 'of', 'slow', 'yet', 'persistent', 'work', 'of', 'activists', '[', '12', ']', '.', 'Likewise', ',', 'although', 'it', 'became', 'a', 'social', 'reality', 'larger', 'than', 'the', 'sum', 'of', 'its', 'constituents', ',', 'the', 'Gezi', 'Uprising', 'was', 'the', 'culmination', 'of', 'earlier', 'local', 'movements', 'such', 'as', 'the', 'Taksim', 'Solidarity', ',', 'LGBTQ', ',', 'environmental', 'movements', ',', 'among', 'numerous', 'others', '.', 'These', 'examples', 'ascertain', 'that', 'little', 'efforts', 'do', 'add', 'up', 'even', 'if', 'they', 'seem', 'insignificant', '.', 'We', 'must', 'be', 'willing', 'to', 'come', 'to', 'terms', 'with', 'the', 'fact', 'that', 'we', 'may', 'not', 'see', 'the', '‘', 'results', '’', 'of', 'our', 'work', 'in', 'our', 'lifetime', '.', 'In', 'that', 'sense', ',', 'being', 'hopeful', 'entails', 'embracing', 'uncertainty', ',', 'contingency', ',', 'and', 'a', 'non-linear', 'understanding', 'of', 'history', '.', 'We', 'can', 'begin', 'to', 'cultivate', 'hope', 'when', 'we', 'separate', 'the', 'process', 'from', 'the', 'outcome', '.', 'In', 'that', 'regard', ',', 'hope', 'is', 'similar', 'to', 'the', 'creative', 'process', '.', '[', '13', ']', 'In', 'a', 'project-driven', 'world', 'where', 'one', '’', 's', 'sense', 'of', 'worth', 'depends', 'on', '“', 'Likes', '”', 'and', 'constant', 'approval', 'from', 'the', 'outside', ',', 'focusing', 'on', 'one', '’', 's', 'actions', 'for', 'their', 'own', 'sake', 'seems', 'to', 'have', 'become', 'passé', '.', 'But', ',', 'I', 'contend', 'that', 'if', 'we', 'could', 'focus', 'more', 'on', 'the', 'intrinsic', 'value', 'of', 'our', 'work', 'instead', 'of', 'measurable', 'outcomes', ',', 'we', 'could', 'find', 'hope', 'and', 'meaning', 'in', 'the', 'journey', 'itself', '.', 'Radical', 'Politics', 'and', 'Social', 'Hope', 'Over', 'a', 'series', 'works', 'since', 'the', 'mid-1980s', ',', 'Chantal', 'Mouffe', 'has', 'challenged', 'existing', 'notions', 'of', 'the', '“', 'political', '”', 'and', 'called', 'for', 'reviving', 'the', 'idea', 'of', '“', 'radical', 'democracy.', '”', 'Drawing', 'on', 'Gramsci', '’', 's', 'theoretizations', 'of', 'hegemony', ',', 'Mouffe', 'places', 'conflict', 'and', 'disagreement', ',', 'rather', 'than', 'consensus', 'and', 'finality', ',', 'at', 'the', 'center', 'of', 'her', 'analysis', '.', 'While', '“', 'politics', '”', 'for', 'Mouffe', 'refers', 'to', 'the', 'set', 'of', 'practices', 'and', 'institutions', 'through', 'which', 'a', 'society', 'is', 'created', 'and', 'governed', ',', 'the', '“', 'political', '”', 'entails', 'the', 'ineradicable', 'dimension', 'of', 'antagonism', 'in', 'any', 'given', 'social', 'order', '.', 'We', 'are', 'no', 'longer', 'able', 'to', 'think', '“', 'politically', '”', 'due', 'to', 'the', 'uncontested', 'hegemony', 'of', 'liberalism', 'where', 'the', 'dominant', 'tendency', 'is', 'a', 'rationalist', 'and', 'individualist', 'approach', 'that', 'is', 'unable', 'to', 'come', 'to', 'terms', 'with', 'the', 'pluralistic', 'and', 'conflict-ridden', 'nature', 'of', 'the', 'social', 'world', '.', 'This', 'results', 'in', 'what', 'Mouffe', 'calls', '“', 'the', 'post-political', 'condition.', '”', 'The', 'central', 'question', 'of', 'democracy', 'can', 'not', 'be', 'posed', 'unless', 'one', 'takes', 'into', 'consideration', 'this', 'antagonistic', 'dimension', '.', 'The', 'question', 'is', 'not', 'how', 'to', 'negotiate', 'a', 'compromise', 'among', 'competing', 'interests', ',', 'nor', 'is', 'it', 'how', 'to', 'reach', 'a', 'rational', ',', 'fully', 'inclusive', 'consensus', '.', 'What', 'democracy', 'requires', 'is', 'not', 'overcoming', 'the', 'us/them', 'distinction', 'of', 'antagonism', ',', 'but', 'drawing', 'this', 'distinction', 'in', 'such', 'a', 'way', 'that', 'is', 'compatible', 'with', 'the', 'recognition', 'of', 'pluralism', '.', 'In', 'other', 'words', ',', 'the', 'question', 'is', 'how', 'can', 'we', 'institute', 'a', 'democracy', 'that', 'acknowledges', 'the', 'ineradicable', 'dimension', 'of', 'conflict', ',', 'yet', 'be', 'able', 'to', 'establish', 'a', 'pluralist', 'public', 'space', 'in', 'which', 'these', 'opposing', 'forces', 'can', 'meet', 'in', 'a', 'nonviolent', 'way', '.', 'For', 'Mouffe', ',', 'this', 'entails', 'transforming', 'antagonism', 'to', '“', 'agonism', '”', '[', '14', ']', '.', 'It', 'means', 'instituting', 'a', 'situation', 'where', 'opposing', 'political', 'subjects', 'recognize', 'the', 'legitimacy', 'of', 'their', 'opponent', ',', 'who', 'is', 'now', 'an', 'adversary', 'rather', 'than', 'an', 'enemy', ',', 'although', 'no', 'rational', 'consensus', 'or', 'a', 'final', 'agreement', 'can', 'be', 'reached', '.', 'Another', 'crucial', 'dimension', 'in', 'Mouffe', '’', 's', 'understanding', 'of', 'the', 'political', 'is', '“', 'hegemony.', '”', 'Every', 'social', 'order', 'is', 'a', 'hegemonic', 'one', 'established', 'by', 'a', 'series', 'of', 'practices', 'and', 'institutions', 'within', 'a', 'context', 'of', 'contingency', '.', 'In', 'other', 'words', ',', 'every', 'order', 'is', 'a', 'temporary', 'and', 'precarious', 'articulation', '.', 'What', 'is', 'considered', 'at', 'a', 'given', 'moment', 'as', '‘', 'natural', '’', 'or', 'as', '‘', 'common', 'sense', '’', 'is', 'the', 'result', 'of', 'sedimented', 'historical', 'practices', 'based', 'on', 'the', 'exclusion', 'of', 'other', 'possibilities', 'that', 'can', 'be', 'reactivated', 'in', 'different', 'times', 'and', 'places', 'when', 'conditions', 'are', 'ripe', '.', 'That', 'is', ',', 'every', 'hegemonic', 'order', 'can', 'be', 'challenged', 'by', 'counterhegemonic', 'practices', 'that', 'will', 'attempt', 'to', 'disarticulate', 'the', 'existing', 'order', 'to', 'install', 'another', 'form', 'of', 'hegemony', '.', 'It', 'may', 'not', 'be', 'fair', 'to', 'chop', 'a', 'complex', 'argument', 'into', 'a', 'bite-size', 'portion', ',', 'but', 'for', 'this', 'essay', 'I', 'take', 'the', 'liberty', 'to', 'summarize', 'Mouffe', '’', 's', 'concept', 'of', 'radical', 'democracy', 'as', 'the', '“', 'impossibility', 'of', 'democracy.', '”', 'It', 'means', 'that', 'a', 'genuinely', 'pluralistic', 'democracy', 'is', 'something', 'that', 'can', 'never', 'be', 'completely', 'fulfilled', '(', 'if', 'it', 'is', 'to', 'remain', 'pluralistic', 'at', 'all', ')', '.', 'That', 'is', ',', 'if', 'everyone', 'were', 'to', 'agree', 'on', 'a', 'given', 'order', 'it', 'would', 'not', 'be', 'pluralistic', 'in', 'the', 'first', 'place', ';', 'there', 'wouldn', '’', 't', 'be', 'any', 'differences', '.', 'This', 'would', 'culminate', 'in', 'a', 'static', 'situation', 'that', 'could', 'even', 'bring', 'about', 'a', 'totalitarian', 'society', '.', 'Nevertheless', ',', 'although', 'it', '’', 's', 'not', 'going', 'to', 'be', 'completely', 'realized', ',', 'it', 'will', 'always', 'remain', '[', 'i', ']', 'as', 'a', 'process', '[', 'i', ']', 'that', 'we', 'work', 'towards', '.', 'Recognizing', 'the', 'contingent', 'nature', 'of', 'any', 'given', 'order', 'also', 'makes', 'it', 'possible', 'not', 'to', 'abandon', 'hope', 'since', 'if', 'there', 'is', 'no', 'final', 'destination', ',', 'there', 'is', 'no', 'need', 'to', 'despair', '.', 'Laclau', 'and', 'Mouffe', '’', 's', 'ideas', 'about', 'radical', 'democracy', 'as', '“', 'a', 'project', 'without', 'an', 'end', '”', 'resonate', 'with', 'the', 'idea', 'of', 'hope', ':', 'Hope', 'as', 'embracing', 'contingency', 'and', 'uncertainty', 'in', 'our', 'political', 'struggles', ',', 'without', 'the', 'expectation', 'of', 'specific', 'outcomes', 'or', 'a', 'final', 'destination', '.', 'In', 'the', 'wake', 'of', 'the', 'Jörg', 'Haider', 'movement', 'in', 'Austria', ',', 'a', 'right-wing', 'mobilization', 'against', 'the', 'enlargement', 'of', 'the', 'EU', 'to', 'include', 'its', 'Muslim', 'neighbors', ',', 'Ernesto', 'Laclau', 'and', 'Chantal', 'Mouffe', 'addressed', 'the', 'concept', 'of', 'hope', 'and', 'its', 'relation', 'to', 'passions', 'and', 'politics', 'in', 'a', 'more', 'direct', 'manner', '[', '15', ']', '.', 'They', 'argued', 'that', 'it', 'is', 'imperative', 'to', 'give', 'due', 'credit', 'to', 'the', 'importance', 'of', 'symbols—material', 'and', 'immaterial', 'representations', 'that', 'evoke', 'certain', 'meanings', 'and', 'emotions', 'such', 'as', 'a', 'flag', ',', 'a', 'song', ',', 'a', 'style', 'of', 'speaking', ',', 'etc.—', 'in', 'the', 'construction', 'of', 'human', 'subjectivity', 'and', 'political', 'identities', '.', 'They', 'proposed', 'the', 'term', '“', 'passion', '”', 'to', 'refer', 'to', 'an', 'array', 'of', 'affective', 'forces', '(', 'such', 'as', 'desires', ',', 'fantasies', ',', 'dreams', ',', 'and', 'aspirations', ')', 'that', 'can', 'not', 'be', 'reduced', 'to', 'economic', 'self-interest', 'or', 'rational', 'pursuits', '.', 'One', 'of', 'the', 'most', 'critical', 'shortcomings', 'of', 'the', 'political', 'discourse', 'of', 'the', 'Left', 'has', 'been', 'its', 'assumption', 'that', 'human', 'beings', 'are', 'rational', 'creatures', 'and', 'its', 'lack', 'of', 'understanding', 'the', 'role', 'of', 'passions', 'in', 'the', 'neoliberal', 'imaginary', ',', 'as', 'Laclau', 'and', 'Mouffe', 'argue', '.', 'It', '’', 's', 'astounding', 'how', 'the', 'Left', 'has', 'been', 'putting', 'the', 'rationality', 'of', 'human', 'beings', 'at', 'the', 'center', 'of', 'arguments', 'against', ',', 'for', 'instance', ',', 'racism', 'and', 'xenophobia', ',', 'without', 'considering', 'the', 'role', 'of', 'passions', 'as', 'motivating', 'forces', '.', 'For', 'instance', ',', 'as', 'I', '’', 'm', 'writing', 'this', 'text', ',', 'the', 'world', 'is', '“', 'surprised', '”', 'by', 'yet', 'another', 'election', 'result', '–the', 'German', 'elections', 'of', 'September', '24', ',', '2017', ',', 'when', 'the', 'radical', 'right', 'wing', 'AfD', 'entered', 'the', 'parliament', 'as', 'the', 'third', 'largest', 'party', '.', 'I', 'agree', 'with', 'Mouffe', 'that', 'as', 'long', 'as', 'we', 'keep', 'fighting', 'racism', ',', 'xenophobia', ',', 'and', 'nationalism', 'on', 'rationalistic', 'and', 'moralistic', 'grounds', ',', 'the', 'Left', 'will', 'be', 'facing', 'more', 'of', 'such', '“', 'surprises.', '”', 'Instead', 'of', 'focusing', 'on', 'specific', 'social', 'and', 'economic', 'conditions', 'that', 'are', 'at', 'the', 'origin', 'of', 'racist', 'articulations', ',', 'the', 'Left', 'has', 'been', 'addressing', 'it', 'with', 'a', 'moralistic', 'discourse', 'or', 'with', 'reference', 'to', 'abstract', 'universal', 'principles', '(', 'i.e', '.', 'about', 'human', 'rights', ')', '.', 'Some', 'even', 'use', 'scientific', 'arguments', 'based', 'on', 'evidence', 'to', 'prove', 'that', 'race', 'doesn', '’', 't', 'exist', ';', 'as', 'though', 'people', 'are', 'going', 'to', 'stop', 'being', 'racist', 'once', 'they', 'become', 'aware', 'of', 'this', 'information', '.', 'At', 'the', 'same', 'time', ',', 'as', 'Laclau', 'and', 'Mouffe', 'contend', ',', 'hope', 'is', 'also', 'an', 'ingrained', 'part', 'of', 'any', 'social', 'and', 'political', 'struggle', '.', 'Nonetheless', ',', 'it', 'can', 'be', 'mobilized', 'in', 'very', 'different', 'and', 'oppositional', 'ways', '.', 'When', 'the', 'party', 'system', 'of', 'representative', 'democracy', 'fails', 'to', 'provide', 'vehicles', 'to', 'articulate', 'demands', 'and', 'hopes', ',', 'there', 'will', 'be', 'other', 'affects', 'that', 'are', 'going', 'to', 'be', 'activated', ',', 'and', 'hopes', 'will', 'be', 'channeled', 'to', '“', 'alt-right', '”', 'movements', 'and', 'religious', 'fundamentalisms', ',', 'Laclau', 'and', 'Mouffe', 'suggest', '.', 'However', ',', 'I', 'argue', 'that', 'it', '’', 's', 'not', 'hope', 'what', 'the', 'right-wing', 'mobilizes', '.', 'Even', 'if', 'it', 'is', 'hope', ',', 'it', 'is', 'an', '“', 'anti-social', 'kind', 'of', 'hope', '”', 'as', 'the', 'historian', 'Ronald', 'Aronson', 'has', 'recently', 'put', 'it', '[', '16', ']', '.', 'I', 'rather', 'think', 'that', 'it', 'is', 'not', 'hope', 'but', 'the', 'human', 'inclination', 'for', '“', 'illusion', '”', 'that', 'the', 'right-wing', 'exploits', '.', 'During', 'the', 'Gezi', 'protests', 'in', 'June', '2013', ',', 'I', 'realized', 'it', 'would', 'be', 'a', 'futile', 'effort', 'to', 'appeal', 'to', 'reason', 'to', 'explain', 'Erdoğan', 'supporters', 'what', 'the', 'protests', 'meant', 'for', 'the', 'participants', '.', 'It', 'was', 'not', 'a', '“', 'coupt', 'attempt', ',', '”', 'or', 'a', 'riot', 'provoked', 'by', '“', 'foreign', 'spies.', '”', 'Dialogue', 'is', 'possible', 'if', 'all', 'sides', 'share', 'at', 'least', 'a', 'square', 'millimeter', 'of', 'common', 'ground', ',', 'but', 'this', 'was', 'far', 'from', 'the', 'case', '.', 'On', 'June', '1', ',', '2013', ',', 'the', 'Prime', 'Minister', 'and', 'the', 'pro-government', 'media', 'started', 'to', 'circulate', 'a', 'blatant', 'lie', ',', 'now', 'known', 'as', 'the', '“', 'Kabataş', 'lie.', '”', 'Allegedly', ',', 'a', 'group', 'of', 'topless', 'male', 'Gezi', 'protesters', 'clad', 'in', 'black', 'skinny', 'leather', 'pants', 'attacked', 'a', 'woman', 'in', 'headscarf', 'across', 'the', 'busy', 'Kabataş', 'Port', '(', '!', ')', 'I', 'do', \"n't\", 'think', 'even', 'Erdoğan', 'supporters', 'believed', 'it', ',', 'but', 'what', 'was', 'most', 'troubling', 'is', 'that', 'it', 'did', 'not', 'matter', 'whether', 'it', 'was', 'true', 'or', 'not', '.', 'The', 'facts', 'were', 'irrelevant', ':', 'the', 'anti-Gezi', 'camp', '[', 'i', ']', 'wanted', '[', 'i', ']', 'to', 'believe', 'it', '.', 'It', 'became', 'imperative', 'for', 'me', 'to', 'revisit', 'the', 'social', 'psychology', 'literature', 'as', 'mere', 'sociological', 'analysis', 'and', 'political', 'interpretations', 'failed', 'to', 'come', 'to', 'terms', 'with', 'the', 'phenomenon', '.', 'I', 'found', 'out', 'Freud', 'had', 'a', 'concept', 'for', 'it', ':', '“', 'illusion.', '”', 'Although', 'Freud', '’', 's', 'concept', 'of', '“', 'illusion', '”', 'is', 'mostly', 'about', 'religion', ',', 'it', '’', 's', 'also', 'a', 'useful', 'concept', 'to', 'understand', 'the', 'power', 'of', 'current', 'political', 'rhetoric', '.', 'In', 'everyday', 'parlance', ',', 'we', 'understand', 'illusions', 'as', 'optical', 'distortions', 'or', 'false', 'beliefs', '.', 'Departing', 'from', 'this', 'view', ',', 'Freud', 'argues', 'illusions', 'are', 'beliefs', 'we', 'adopt', 'because', 'we', 'want', 'them', 'to', 'be', 'true', '.', 'For', 'Freud', 'illusions', 'can', 'be', 'either', 'true', 'or', 'false', ';', 'what', 'matters', 'is', 'not', 'their', 'veracity', 'or', 'congruence', 'with', 'reality', 'but', 'their', 'psychological', 'causes', '[', '17', ']', '.', 'Religious', 'beliefs', 'fulfill', 'the', 'deeply', 'entrenched', ',', 'urgent', 'wishes', 'of', 'human', 'beings', '.', 'As', 'inherently', 'fragile', ',', 'vulnerable', 'creatures', 'people', 'hold', 'on', 'to', 'religious', 'beliefs', 'as', 'an', 'antidote', 'to', 'their', 'helplessness', '[', '18', ']', '.', 'Granted', 'our', 'psychological', 'inclination', 'for', 'seeking', 'a', 'source', 'of', 'power', 'for', 'protection', ',', 'it', \"'s\", 'not', 'surprising', 'that', 'the', 'right-wing', 'discourse', 'stokes', 'feelings', 'of', 'helplessness', 'and', 'fear', 'continuously', 'and', 'strives', 'to', 'infantilize', 'populations', ',', 'rendering', 'people', 'susceptible', 'to', 'political', 'illusions', '.', '[', '19', ']', 'As', 'the', 'philosopher', 'of', 'psychology', 'David', 'Livingston', 'Smith', 'asserts', ',', 'the', 'appeal', 'of', 'Trump', '[', '20', ']', '(', 'and', 'other', 'elected', 'demagogues', 'across', 'the', 'world', ')', '[', 'u', ']', 'as', 'well', 'as', 'the', 'denial', '[', 'u', ']', 'that', 'he', 'could', 'win', 'the', 'elections', 'come', 'from', 'this', 'same', 'psychological', 'source', ',', 'namely', ',', 'Freud', \"'s\", 'concept', 'of', 'illusion', '[', '21', ']', '.', 'We', 'suffer', 'from', 'an', 'illusion', 'when', 'we', 'believe', 'something', 'is', 'the', 'case', 'just', 'because', 'we', 'wish', 'it', 'to', 'be', 'so', '.', 'In', 'other', 'words', ',', 'illusions', 'have', 'right-wing', 'and', 'left-wing', 'variants', ',', 'and', 'one', 'could', 'say', 'the', 'overblown', 'confidence', 'in', 'the', 'hegemony', 'of', 'reason', 'has', 'been', 'the', 'illusion', 'of', 'the', 'Left', '.', 'Critical', 'Social', 'Thought', ',', 'Art', ',', 'and', 'Hope', 'As', 'someone', 'who', 'traverses', 'the', 'social', 'sciences', 'and', 'the', 'arts', ',', 'I', 'observe', 'both', 'fields', 'are', 'practicing', 'a', 'critical', 'way', 'of', 'thinking', 'that', 'exposes', 'the', 'contingent', 'nature', 'of', 'the', 'way', 'things', 'are', ',', 'and', 'reveal', 'that', 'nothing', 'is', 'inevitable', '.', '[', '22', ']', 'However', ',', 'at', 'the', 'same', 'time', ',', 'by', 'focusing', 'only', 'on', 'the', 'darkness', 'of', 'the', 'times—as', 'it', 'has', 'become', 'common', 'practice', 'lately', 'when', ',', 'for', 'instance', ',', 'a', 'public', 'symposium', 'on', 'current', 'issues', 'in', 'the', 'contemporary', 'dance', 'field', 'becomes', 'a', 'collective', 'whining', 'session—I', 'wonder', 'if', 'we', 'may', 'be', 'contributing', 'to', 'the', 'aggravation', 'of', 'cynicism', 'that', 'has', 'become', 'symptomatic', 'of', 'our', 'epoch', '.', 'Are', 'we', ',', 'perhaps', ',', 'equating', 'adopting', 'a', 'hopeless', 'position', 'with', 'being', 'intellectually', 'profound', 'as', 'the', 'anthropologist', 'Michael', 'Taussig', 'once', 'remarked', '?', 'If', 'critical', 'social', 'thought', 'is', 'to', 'remain', 'committed', 'to', 'the', 'ethos', 'of', 'not', 'only', 'describing', 'and', 'analyzing', 'the', 'world', 'but', 'also', 'contributing', 'to', 'making', 'it', 'a', 'better', 'place', ',', 'it', 'could', 'be', 'supplemented', 'with', 'studies', 'that', 'underscore', 'how', 'a', 'better', 'world', 'might', 'be', 'already', 'among', 'us', '.', 'It', 'would', 'require', 'an', 'empirical', 'sensibility—a', 'documentary', 'and', 'ethnographic', 'approach', 'of', 'sorts—that', 'pay', 'attention', 'to', 'the', 'moments', 'when', '“', 'islands', 'of', 'hope', '”', 'are', 'established', 'and', 'the', 'social', 'conditions', 'that', 'make', 'their', 'emergence', 'possible', '.', '[', '23', ']', 'One', 'could', 'pay', 'attention', 'to', 'the', 'overlooked', ',', 'quiet', ',', 'and', 'hopeful', 'developments', 'that', 'may', 'help', 'us', 'to', 'carve', 'spaces', 'where', 'the', 'imagination', 'is', 'not', 'colonized', 'by', 'the', 'neoliberal', ',', 'nationalist', ',', 'and', 'militarist', 'siege', '.', 'That', 'is', ',', 'for', 'a', 'non-cynical', 'social', 'and', 'artistic', 'inquiry', ',', 'one', 'could', 'explore', 'how', 'communities', 'make', 'sense', 'of', 'their', 'experiences', 'and', 'come', 'to', 'terms', 'with', 'trauma', 'and', 'defeat', '.', 'These', 'developments', 'may', 'not', 'necessarily', 'be', 'present', 'in', 'the', 'art', 'world', ',', 'but', 'could', 'offer', 'insights', 'to', 'it', '.', 'Sometimes', 'communities', ',', 'through', 'mobilizing', 'their', 'self-resources', ',', 'provide', 'more', 'meaningful', 'interpretations', 'and', 'creative', 'coping', 'strategies', 'than', 'the', 'art', 'world', '’', 's', 'handling', 'of', 'these', 'issues', '.', 'It', 'is', 'necessary', 'for', 'us', 'to', 'understand', 'how', ',', 'despite', 'the', 'direst', 'of', 'circumstances', ',', 'people', 'can', 'still', 'find', 'meaning', 'and', 'purpose', 'in', 'their', 'lives', '.', 'It', 'is', 'essential', 'to', 'explore', 'these', 'issues', 'not', 'only', 'in', 'a', 'theoretical', 'manner', 'but', 'through', 'an', 'empirical', 'sensibility', ':', 'by', 'deploying', 'ethnographic', 'modes', 'of', 'research', ',', 'paying', 'close', 'attention', 'to', 'the', 'life', 'worlds', 'of', 'our', 'contemporaries', 'to', 'explore', 'their', 'intellectual', ',', 'practical', ',', 'imaginative', ',', 'and', 'affective', 'strategies', 'to', 'make', 'lives', 'livable', '.', 'Correspondingly', ',', 'one', 'could', 'focus', 'on', 'the', 'therapeutic', 'and', 'redeeming', 'dimensions', 'of', 'art', 'as', 'equally', 'crucial', 'to', 'its', 'function', 'as', 'social', 'critique', '.', 'For', 'this', ',', 'one', 'could', 'pay', 'more', 'attention', 'to', 'the', 'significant', 'role', 'of', '[', 'i', ']', 'poeisis', '[', 'i', ']', '-', 'the', 'creative', 'act', 'that', 'affirms', 'our', 'humanity', 'and', 'dignity', '—', '[', '24', ']', 'to', 'rework', 'trauma', 'into', 'symbolic', 'forms', '.', 'One', 'such', 'endeavor', 'I', 'came', 'across', 'is', 'the', 'storytelling', 'movement', 'I', 'observed', 'in', 'Turkey', '.', '[', '25', ']', 'More', 'and', 'more', 'people', 'have', 'taken', 'up', 'storytelling', ',', 'and', 'more', 'and', 'more', 'national', 'and', 'international', 'organizations', 'are', 'popping', 'up', '.', 'The', 'first', 'national', 'storytelling', 'conference', 'took', 'place', 'last', 'May', 'at', 'Yildiz', 'University', '.', 'I', 'was', 'struck', 'when', 'I', 'went', 'there', 'to', 'understand', 'what', 'was', 'going', 'on', '.', 'People', 'from', 'all', 'scales', 'of', 'the', 'political', 'spectrum', 'were', 'sitting', 'in', 'sort', 'of', 'an', '“', 'assembly', 'of', 'fairy', 'tales.', '”', 'It', 'has', 'also', 'struck', 'me', 'that', 'while', 'some', 'journalists', ',', 'the', '“', 'truth', 'tellers', '”', 'are', 'being', 'imprisoned', ';', 'imprisoned', 'politicians', 'are', 'turning', 'into', 'storytellers', ',', 'finding', 'solace', 'in', 'giving', 'form', 'to', 'their', 'experiences', 'through', '[', 'i', ']', 'poeisis', '[', 'i', ']', '.', 'Selahattin', 'Demirtaş', ',', 'the', 'co-chair', 'of', 'the', 'People', '’', 's', 'Democratic', 'Party', '(', 'HDP', ')', ',', 'penned', 'three', 'short', 'stories', 'while', 'in', 'prison', 'since', 'last', 'November', ',', 'which', ',', 'I', 'think', 'are', 'quite', 'successful', 'from', 'a', 'literary', 'point', 'of', 'view', '.', 'Alongside', 'other', 'essays', 'and', 'additional', 'short', 'stories', ',', 'Demirtaş', '’', 's', 'prison', 'writings', 'culminated', 'in', 'the', 'recent', 'publication', '[', 'i', ']', 'Seher', '[', 'i', ']', '(', 'September', '2017', ')', '[', '26', ']', '.', 'The', 'choice', 'of', 'the', 'book', '’', 's', 'title', 'is', 'also', 'telling', ':', 'In', 'Turkish', '“', 'Seher', '”', 'means', 'the', 'period', 'just', 'before', 'dawn', 'when', 'the', 'night', 'begins', 'to', 'change', 'into', 'day', '.', 'In', '[', 'i', ']', 'The', 'Human', 'Condition', '[', 'i', ']', 'the', 'political', 'philosopher', 'Hannah', 'Arendt', 'addresses', 'the', 'question', 'of', 'how', 'storytelling', 'speaks', 'to', 'the', 'struggle', 'to', 'exist', 'as', '[', 'i', ']', 'one', '[', 'i', ']', 'among', '[', 'i', ']', 'many', '[', 'i', ']', ';', 'preserving', 'one', '’', 's', 'unique', 'identity', ',', 'while', 'at', 'the', 'same', 'time', 'fulfilling', 'one', '’', 's', 'obligations', 'as', 'a', 'citizen', 'in', 'a', 'new', 'home', 'country', '.', 'Much', 'of', 'she', 'wrote', 'after', 'she', 'went', 'to', 'the', 'US', 'in', '1941', 'as', 'a', 'refugee', 'bears', 'the', 'mark', 'of', 'her', 'experience', 'of', 'displacement', 'and', 'loss', '.', 'And', 'it', '’', 's', 'at', 'this', 'time', 'when', 'she', 'offers', 'invaluable', 'insights', 'into', 'the', '(', 'almost', ')', 'universal', 'impulse', 'to', 'translate', 'overwhelming', 'personal', 'and', 'social', 'experiences', 'into', 'forms', 'that', 'can', 'be', 'voiced', 'and', 'reworked', 'in', 'the', 'company', 'of', 'others', '.', 'It', 'was', ',', 'perhaps', ',', 'Walter', 'Benjamin', 'who', 'first', 'detected', 'the', 'demise', 'of', 'the', 'art', 'of', 'storytelling', 'as', 'a', 'symptom', 'of', 'the', 'loss', 'of', 'the', 'value', 'of', 'experience', '.', 'In', 'his', '1936', 'essay', '“', 'The', 'Storyteller', '”', 'he', 'reflects', 'on', 'the', 'role', 'of', 'storytelling', 'in', 'community', 'building', 'and', 'the', 'implications', 'of', 'its', 'decline', '.', 'He', 'observes', 'that', 'with', 'the', 'emergence', 'of', 'newspapers', 'and', 'the', 'journalistic', 'jargon', ',', 'people', 'stopped', '[', 'i', ']', 'listening', '[', 'i', ']', 'to', 'stories', 'but', 'began', '[', 'i', ']', 'receiving', '[', 'i', ']', 'the', 'news', '.', 'With', 'the', 'news', ',', 'any', 'event', 'already', 'comes', 'with', 'some', 'explanation', '.', 'With', 'the', 'news', 'and', 'our', 'timelines', ',', 'explanation', 'and', 'commentary', 'replaced', 'assimilating', ',', 'interpreting', ',', 'understanding', '.', 'Connections', 'get', 'lost', ',', 'leading', 'to', 'a', 'kind', 'of', 'amnesia', ',', 'which', 'leads', ',', 'in', 'turn', ',', 'to', 'pessimism', 'and', 'cynicism', ',', 'because', 'it', 'also', 'makes', 'us', 'lose', 'track', 'of', 'hopeful', 'moments', ',', 'struggles', ',', 'and', 'victories', '.', 'The', 'power', 'of', 'the', 'story', 'is', 'to', 'survive', 'beyond', 'its', 'moment', 'and', 'to', 'connect', 'the', 'dots', ',', 'redeeming', 'the', 'past', '.', 'It', 'pays', 'respect', 'and', 'shows', 'responsibility', 'to', 'different', 'temporalities', 'and', 'publics', ',', 'that', 'of', 'the', 'past', 'and', 'the', 'future', 'as', 'well', 'as', 'today', \"'s\", '.', 'Here', ',', 'I', '’', 'm', 'not', 'making', 'a', 'case', 'for', 'going', 'back', 'to', 'narrative', 'forms', 'in', 'performance', 'or', 'a', 'call', 'for', 'storytelling', 'above', 'and', 'beyond', 'any', 'other', 'forms', '.', 'The', 'emphasis', 'here', 'is', 'more', 'on', 'storytelling', 'as', 'an', 'example', 'of', 'a', 'social', 'act', 'of', '[', 'i', ']', 'poeisis', '[', 'i', ']', 'rather', 'than', 'the', 'product', 'of', 'narrative', 'activity', '.', 'The', 'critical', 'question', 'for', 'me', 'today', 'is', 'can', 'artists', ',', 'curators', ',', 'and', 'social', 'thinkers', 'bring', 'to', 'life', 'the', 'stories', 'that', 'are', 'waiting', 'to', 'be', 'told', '?', 'Sometimes', ',', 'instead', 'of', 'focusing', 'on', 'how', 'to', 'increase', 'visitors', 'to', 'our', 'venues', ',', 'it', 'could', 'be', 'more', 'rewarding', 'to', 'take', 'our', 'imagination', 'to', 'go', 'visiting', '.', 'I', 'conclude', 'my', 'reflections', 'on', 'hope', 'with', 'a', 'quote', 'from', 'Arundathi', 'Roy', ':', '[', 'centered', ']', '“', 'Writers', 'imagine', 'that', 'they', 'cull', 'stories', 'from', 'the', 'world', '.', 'I', '’', 'm', 'beginning', 'to', 'believe', 'vanity', 'makes', 'them', 'think', 'so', '.', 'That', 'it', '’', 's', 'actually', 'the', 'other', 'way', 'around', '.', 'Stories', 'cull', 'writers', 'from', 'the', 'world', '.', 'Stories', 'reveal', 'themselves', 'to', 'us', '.', 'The', 'public', 'narrative', ',', 'the', 'private', 'narrative—they', 'colonize', 'us', '.', 'They', 'commission', 'us', '.', 'They', 'insist', 'on', 'being', 'told.', '”', '[', '27', ']', '[', 'centered', ']', 'I', 'leave', 'it', 'to', 'you', 'for', 'now', 'to', 'imagine', 'the', 'shapes', 'it', 'could', 'take', '.', 'Footnotes', '1', '.', '1,128', 'academics', 'from', '89', 'universities', 'in', 'Turkey', ',', 'and', 'over', '355', 'academics', 'and', 'researchers', 'from', 'abroad', 'including', 'some', 'well-known', 'figures', 'such', 'as', 'Noam', 'Chomsky', ',', 'Judith', 'Butler', ',', 'Etienne', 'Balibar', ',', 'and', 'David', 'Harvey', 'signed', 'the', 'petition', '.', 'For', 'the', 'full', 'text', 'of', 'the', 'declaration', 'and', 'more', 'information', 'about', 'Academics', 'for', 'Peace', 'see', 'the', 'website', ':', 'https', ':', '//barisicinakademisyenler.net/node/63', '2', '.', 'For', 'excerpts', 'of', 'Erdogan', '’', 's', 'speech', 'in', 'reaction', 'to', 'the', 'Academics', 'for', 'Peace', 'Petition', 'see', '(', 'in', 'Turkish', ')', ':', 'Merkezi', ',', 'Haber', '.', '``', \"Erdoğan'dan\", 'Akademisyenlere', ':', 'Ey', 'Aydın', 'Müsveddeleri', '.', \"''\", 'Bianet', '-', 'Bagimsiz', 'Iletisim', 'Agi', '.', 'January', '12', ',', '2016', '.', 'Accessed', 'November', '2017.', 'http', ':', '//bit.ly/2zkwpdT', '.', '3', '.', '”', 'Notorious', 'criminal', 'threatens', 'academics', 'calling', 'for', 'peace', 'in', 'Turkey', \"'s\", 'southeast', '.', \"''\", 'Hürriyet', 'Daily', 'News', '.', 'January', '13', ',', '2016', '.', 'Accessed', 'November', '2017.', 'http', ':', '//bit.ly/2yww6gX', '.', '4', '.', 'The', 'military', 'coup', 'attempt', 'on', 'July', '15', ',', '2016', 'allowed', 'the', 'government', 'to', 'declare', 'the', 'state', 'of', 'emergency', 'and', 'rule', 'the', 'country', 'by', 'executive', 'degrees', ',', 'further', 'crushing', 'the', 'opposition', ',', 'outlawing', 'associational', 'activities', ',', 'and', 'the', 'rights', 'of', 'assembly', '.', 'Hundreds', 'of', 'thousands', 'of', 'academics', ',', 'public', 'sectors', 'workers', ',', 'journalists', ',', 'and', 'teachers', 'were', 'purged', '.', 'For', 'more', 'information', 'see', 'the', 'website', '“', 'Turkey', 'Purge', ',', '”', 'which', 'is', 'currently', 'inaccessible', 'from', 'Turkey', ':', 'https', ':', '//turkeypurge.com/', '5', '.', 'HDP', 'is', 'the', 'third', 'largest', 'party', 'in', 'the', 'Turkish', 'Parliament', 'representing', 'some', '13', '%', 'of', 'the', 'electorate', '.', '6', '.', 'A', 'copy', 'of', 'this', 'bibliography', 'can', 'be', 'found', 'here', ':', 'http', ':', '//www.gururertem.info/syllabi.html', '7', '.', 'See', 'for', 'instance', ',', 'the', '“', 'Trump', '101', '”', 'published', 'by', 'The', 'Chronicle', 'of', 'Higher', 'Education', 'on', 'June', '19', ',', '2016.', 'http', ':', '//www.chronicle.com/article/Trump-Syllabus/236824/', '.', 'A', 'group', 'of', 'African', 'American', 'intellectuals', 'criticized', 'the', '“', 'Trump', '101', '”', 'syllabus', 'for', 'its', 'omission', 'of', 'issues', 'regarding', 'racial', 'and', 'gender', 'equalities', 'and', 'referred', 'to', 'it', '“', 'as', 'white', 'as', 'the', 'man', 'himself.', '”', 'Subsequently', 'they', 'published', 'an', 'amended', 'version', 'of', 'the', 'syllabus', 'entitled', '“', 'Trump', '2.0', '”', 'http', ':', '//www.publicbooks.org/trump-syllabus-2-0/', '8', '.', 'Agamben', ',', 'Giorgio', '.', '2009', '.', '“', 'What', 'is', 'the', 'Contemporary', '?', '”', 'In', '[', 'i', ']', 'What', 'is', 'an', 'Apparatus', '?', ':', 'and', 'Other', 'Essays', '[', 'i', ']', '.', 'Stanford', ',', 'CA', ':', 'Stanford', 'University', 'Press', '.', '9', '.', 'Giroux', ',', 'Henry', 'A', '.', '2014', '.', '[', 'i', ']', 'The', 'Violence', 'of', 'Organized', 'Forgetting', ':', 'Thinking', 'Beyond', 'America', \"'s\", 'Disimagination', 'Machine', '[', 'i', ']', '.', 'San', 'Francisco', ':', 'City', 'Lights', 'Books', '.', '10', '.', 'Negativity', 'bias', 'refers', 'to', 'the', 'asymmetrical', 'way', 'we', 'perceive', 'negative', 'experiences', 'versus', 'positive', 'ones', ',', 'an', 'evolutionary', 'trait', 'we', 'developed', 'for', 'survival', '.', 'Negative', 'experiences', ',', 'events', ',', 'and', 'images', 'exert', 'a', 'stronger', 'and', 'lasting', 'impact', 'on', 'us', 'than', 'positive', 'experiences', 'of', 'the', 'same', 'magnitude', '.', '11', '.', 'Solnit', ',', 'Rebecca', '.', '2016', '.', '[', 'i', ']', 'Hope', 'in', 'the', 'Dark', ':', 'Untold', 'Histories', ',', 'Wild', 'Possibilities', '[', 'i', ']', '.', 'Chicago', ',', 'Ill', ':', 'Haymarket', 'Books', '.', 'iBook', '.', '12', '.', 'Zunes', ',', 'Stephen', '.', '2014', '.', '“', 'Arab', 'Revolutions.', '”', 'In', '[', 'i', ']', 'The', 'Impossible', 'Will', 'Take', 'a', 'Little', 'While', ':', 'Perseverance', 'and', 'Hope', 'in', 'Troubled', 'Times', '[', 'i', ']', ',', 'edited', 'by', 'Paul', 'Rogat', 'Loeb', '.', 'New', 'York', ':', 'Basic', 'Books', '.', 'iBook', '.', '13', '.', 'One', 'could', 'argue', 'that', 'the', 'creative', 'process', 'and', 'artistic', 'production', 'are', 'not', 'exempt', 'from', 'this', 'instrumental', 'logic', 'that', 'focuses', 'on', 'measurable', 'outcomes', '.', 'While', 'I', 'agree', 'with', 'this', 'observation', ',', 'with', 'the', '“', 'creative', 'process', '”', 'I', 'use', 'here', 'I', 'mean', 'a', 'more', '‘', 'old-fashioned', '’', 'understanding', 'of', 'the', 'term', '.', '14', '.', 'Laclau', ',', 'Ernesto', ',', 'and', 'Chantal', 'Mouffe', '.', '2002', '.', '“', 'Hope', ',', 'Passion', ',', 'Politics.', '”', 'In', 'Hope', ':', 'New', 'Philosophies', 'for', 'Change', ',', 'edited', 'by', 'Mary', 'Zournazi', ',', '122-148', '.', 'Annandale', ',', 'NSW', ':', 'Pluto', 'Press', 'Australia', '.', '15', '.', 'Ibid', '.', '16', '.', 'Aronson', ',', 'Ronald', '.', '2017', '.', '[', 'i', ']', 'We', ':', 'Reviving', 'Social', 'Hope', '[', 'i', ']', '.', 'Chicago', ':', 'Chicago', 'University', 'Press', '.', '17', '.', 'Freud', ',', 'Sigmund', '.', '1964', '.', '“', 'The', 'Future', 'of', 'an', 'Illusion', ',', '”', 'in', '[', 'i', ']', 'The', 'Standard', 'Edition', 'of', 'the', 'Complete', 'Psychological', 'Works', 'of', 'Sigmund', 'Freud', ',', 'Vol', '.', '21', '[', 'i', ']', ',', 'edited', 'by', 'James', 'Stratchey', '.', 'London', ':', 'The', 'Hogarth', 'Press', 'and', 'the', 'Institute', 'of', 'Psycho-Analysis', '.', '18', '.', 'Smith', ',', 'David', 'Livingstone', '.', '2017', '.', '“', 'Confessions', 'of', 'a', 'Cassandra.', '”', '[', 'i', ']', 'Philosophy', 'Talk', '[', 'i', ']', ',', 'January', '31', ',', '2017.', 'https', ':', '//www.philosophytalk.org/blog/confessions-cassandra', '19', '.', 'For', 'an', 'astute', 'empirical', 'analysis', 'of', 'the', 'phenomenon', 'in', 'Nazi', 'speech', 'rallies', ',', 'see', 'Roger', 'Money-Kyrle', '’', 's', '[', 'i', ']', 'Psychology', 'of', 'Propaganda', '[', 'i', ']', '(', '1941', ')', '.', 'Also', 'see', 'Theodor', 'W.', 'Adorno', '’', 's', '1951', 'essay', '“', 'Freudian', 'Theory', 'and', 'the', 'Pattern', 'of', 'Fascist', 'Propaganda.', '”', '20', '.', 'Smith', ',', 'David', 'Livingstone', '.', '2016', '.', '“', 'The', 'Politics', 'of', 'Illusion', ':', 'From', 'Socrates', 'and', 'Psychoanalysis', 'to', 'Donald', 'Trump.', '”', '21', '.', 'Freud', ',', '“', 'The', 'Future', 'of', 'Illusion', '”', '22', '.', 'I', '’', 've', 'discussed', 'elsewhere', 'the', 'similarities', 'of', '“', 'sociological', 'imagination', '”', '(', 'Mills', ',', 'C.Wright', '.', '2000', '[', '1959', ']', '.', '[', 'i', ']', 'The', 'Sociological', 'Imagination', '[', 'i', ']', '.', 'Oxford', ':', 'Oxford', 'University', 'Press', '.', ')', 'and', 'institutional', 'critique', 'in', 'the', 'arts', '.', 'See', ':', 'Gurur', 'Ertem', ',', '“', 'European', 'Dance', ':', 'The', 'Emergence', 'and', 'Transformation', 'of', 'a', 'Contemporary', 'Dance', 'Art', 'World', '(', '1989-2013', ')', ',', '”', '(', 'PhD', 'diss', ',', 'The', 'New', 'School', 'for', 'Social', 'Research', ')', ',', 'p.30', '.', '23', '.', 'Back', ',', 'Les', '.', '2015', '.', '“', 'Blind', 'Optimism', 'and', 'the', 'Sociology', 'of', 'Hope.', '”', '[', 'i', ']', 'DiscoverSociety', '[', 'i', ']', ',', 'December', '1', ',', '2015.', 'http', ':', '//discoversociety.org/2015/12/01/blind-pessimism-and-the-sociology-of-hope/', '24', '.', 'See', 'Stephen', 'K.', 'Levine', '’', 's', '[', 'i', ']', 'Trauma', ',', 'Tragedy', ',', 'Therapy', ':', 'The', 'Arts', 'and', 'Human', 'Suffering', '[', 'i', ']', 'for', 'an', 'extended', 'discussion', 'of', 'poeisis', 'with', 'regards', 'to', 'coming', 'to', 'terms', 'to', 'trauma', 'through', 'the', 'creative', 'act', '.', '25', '.', 'See', 'the', 'transcript', 'of', 'my', 'talk', '“', 'Field', 'Notes', 'on', 'Instituting', '”', 'delivered', 'at', 'the', 'Inventory', '#', '2', 'Conference', ',', 'Tanzhaus', 'nrw', 'Düsseldorf', ',', 'June', '1', ',', '2017.', 'http', ':', '//www.gururertem.info/uploads/8/8/7/6/88765342/gurur_ertem_field_notes_on_instituting_inventur_2.pdf', '26', '.', 'Demirtaş', ',', 'Selahattin', '.', '2017', '.', '[', 'i', ']', 'Seher', '[', 'i', ']', '.', 'Ankara', ':', 'Dipnot', 'Yayınları', '.', '27', '.', 'Roy', ',', 'Arundhati', '.', '2002', '.', '“', 'Come', 'September.', '”', 'Talk', 'delivered', 'at', 'Lannan', 'Foundation', 'Lecture', ',', 'Lensic', 'Performing', 'Arts', 'Center', ',', 'Santa', 'Fe', ',', 'New', 'Mexico', '.', 'September', '18', ',', '2002.', 'http', ':', '//ada.evergreen.edu/~arunc/texts/politics/comeSeptember.pdf', '[', 'References', 'take', 'in', 'about', '450', 'words..It', 'can', 'may', 'be', 'left', 'out', 'when', 'they', 'double', 'with', 'footnotes', '(', 'I', 'marked', 'these', 'temporarily', 'with', 'an', '‘', 'X', '’', '.', ')', 'There', 'remain', '9', 'titles', 'in', 'the', 'bibliography', 'that', 'do', 'not', 'appear', 'in', 'the', 'footnotes', '.', ']', 'References', ':', 'XAgamben', ',', 'Giorgio', '.', '2009', '.', '“', 'What', 'is', 'the', 'Contemporary', '?', '”', 'In', '[', 'i', ']', 'What', 'is', 'an', 'Apparatus', '?', ':', 'and', 'Other', 'Essays', '[', 'i', ']', '.', 'Stanford', ',', 'CA', ':', 'Stanford', 'University', 'Press', '.', 'Adorno', ',', 'Theodor', 'W.', '1991', '[', '1951', ']', '.', '“', 'Freudian', 'Theory', 'and', 'the', 'Pattern', 'of', 'Fascist', 'Propaganda.', '”', 'In', '[', 'i', ']', 'The', 'Culture', 'Industry', '[', 'i', ']', ',', 'edited', 'by', 'J.', 'M.', 'Bernstein', '.', 'London', ':', 'Routledge', '.', 'XAronson', ',', 'Ronald', '.', '2017', '.', '[', 'i', ']', 'We', ':', 'Reviving', 'Social', 'Hope', '[', 'i', ']', '.', 'Chicago', ':', 'Chicago', 'University', 'Press', '.', 'XBack', ',', 'Les', '.', '2015', '.', '“', 'Blind', 'Optimism', 'and', 'the', 'Sociology', 'of', 'Hope.', '”', '[', 'i', ']', 'DiscoverSociety', '[', 'i', ']', ',', 'December', '1', ',', '2015.', 'http', ':', '//discoversociety.org/2015/12/01/blind-pessimism-and-the-sociology-of-hope/', 'XDemirtaş', ',', 'Selahattin', '.', '2017', '.', '[', 'i', ']', 'Seher', '[', 'i', ']', '.', 'Ankara', ':', 'Dipnot', 'Yayınları', '.', 'Ertem', ',', 'Gurur', '.', '2017', '.', '“', 'Gezi', 'Uprising', ':', 'Performative', 'Democracy', 'and', 'Politics', 'of', 'the', 'Body', 'in', 'an', 'Extended', 'Space', 'of', 'Appearance.', '”', 'In', '[', 'i', ']', 'Media', 'Practices', ',', 'Social', 'Movements', ',', 'and', 'Performativity', ':', 'Transdisciplinary', 'Approaches', '[', 'i', ']', ',', 'edited', 'by', 'Margreth', 'Lünenborg', ',', 'Susanne', 'Foellmer', ',', 'Christoph', 'Raetzsch', ',', 'pp', '.', '81-99', '.', 'London', ':', 'Routledge', '.', 'XFreud', ',', 'Sigmund', '.', '1964', '.', '“', 'The', 'Future', 'of', 'an', 'Illusion', ',', '”', 'in', '[', 'i', ']', 'The', 'Standard', 'Edition', 'of', 'the', 'Complete', 'Psychological', 'Works', 'of', 'Sigmund', 'Freud', ',', 'Vol', '.', '21', '[', 'i', ']', ',', 'edited', 'by', 'James', 'Stratchey', '.', 'London', ':', 'The', 'Hogarth', 'Press', 'and', 'the', 'Institute', 'of', 'Psycho-Analysis', '.', 'XGiroux', ',', 'Henry', 'A', '.', '2014', '.', '[', 'i', ']', 'The', 'Violence', 'of', 'Organized', 'Forgetting', ':', 'Thinking', 'Beyond', 'America', \"'s\", 'Disimagination', 'Machine', '[', 'i', ']', '.', 'San', 'Francisco', ':', 'City', 'Lights', 'Books', '.', 'Laclau', ',', 'Ernesto', ',', 'and', 'Chantal', 'Mouffe', '.', '2014', '(', '1987', ')', '.', '[', 'i', ']', 'Hegemony', 'and', 'Socialist', 'Strategy', ':', 'Towards', 'a', 'Radical', 'Democratic', 'Politics', '[', 'i', ']', '.', 'London', ':', 'Verso', '.', 'X', 'Laclau', ',', 'Ernesto', ',', 'and', 'Chantal', 'Mouffe', '.', '2002', '.', '“', 'Hope', ',', 'Passion', ',', 'Politics.', '”', 'In', 'Hope', ':', '[', 'i', ']', 'New', 'Philosophies', 'for', 'Change', '[', 'i', ']', ',', 'edited', 'by', 'Mary', 'Zournazi', ',', '122-148', '.', 'Annandale', ',', 'NSW', ':', 'Pluto', 'Press', 'Australia', '.', 'X', 'Levine', ',', 'Stephen', 'K.', '2009', '.', '[', 'i', ']', 'Trauma', ',', 'Tragedy', ',', 'Therapy', ':', 'The', 'Arts', 'and', 'Human', 'Suffering', '[', 'i', ']', '.', 'London', ':', 'JessicaKingsley', 'Loeb', ',', 'Paul', 'Rogat', '.', '2014', '.', '“', 'The', 'Real', 'Rosa', 'Parks.', '”', 'In', '[', 'i', ']', 'The', 'Impossible', 'Will', 'Take', 'a', 'Little', 'While', ':', 'Perseverance', 'and', 'Hope', 'in', 'Troubled', 'Time', '[', 'i', ']', 's', ',', 'edited', 'by', 'Paul', 'Rogat', 'Loeb', '.', 'New', 'York', ':', 'Basic', 'Books', '.', 'iBook', '.', 'Mills', ',', 'C.Wright', '.', '2000', '[', '1959', ']', '.', '[', 'i', ']', 'The', 'Sociological', 'Imagination', '[', 'i', ']', '.', 'Oxford', ':', 'Oxford', 'University', 'Press', '.', 'Money-Kyrle', ',', 'Roger', '.', '1978', '.', '“', 'The', 'Psychology', 'of', 'Propaganda', ',', '”', 'In', '[', 'i', ']', 'The', 'Collected', 'Papers', 'of', 'Roger', 'Money-Kyrle', '[', 'i', ']', ',', 'edited', 'by', 'Strath', 'Tay', ',', '165-66', '.', 'Perthshire', ':', 'The', 'Clunie', 'Press', '.', 'XRoy', ',', 'Arundhati', '.', '2002', '.', '“', 'Come', 'September.', '”', 'Talk', 'delivered', 'at', 'Lannan', 'Foundation', 'Lecture', ',', 'Lensic', 'Performing', 'Arts', 'Center', ',', 'Santa', 'Fe', ',', 'New', 'Mexico', '.', 'September', '18', ',', '2002.', 'http', ':', '//ada.evergreen.edu/~arunc/texts/politics/comeSeptember.pdf', 'Sinclair', ',', 'Jennifer', '.', '2008', '.', '“', 'Towards', 'an', 'Affirmative', 'Sociology', ':', 'The', 'Role', 'of', 'Hope', 'in', 'Making', 'a', 'Better', 'World.', '”', 'Paper', 'presented', 'at', 'TASA', 'Sociologists', 'Conference', ',', 'August', '2008.', 'https', ':', '//tasa.org.au/wp-content/uploads/2011/05/Sinclair-Jennifer-Session-84.pdf', 'Smith', ',', 'David', 'Livingstone', '.', '2017', '.', '“', 'Confessions', 'of', 'a', 'Cassandra.', '”', '[', 'i', ']', 'Philosophy', 'Talk', '[', 'i', ']', ',', 'January', '31', ',', '2017.', 'https', ':', '//www.philosophytalk.org/blog/confessions-cassandra', 'XSmith', ',', 'David', 'Livingstone', '.', '2016', '.', '“', 'The', 'Politics', 'of', 'Illusion', ':', 'From', 'Socrates', 'and', 'Psychoanalysis', 'to', 'Donald', 'Trump.', '”', 'Philosophy', 'Talk', ',', 'January', '3', ',', '2016.', 'https', ':', '//www.philosophytalk.org/blog/politics-illusion-socrates-and-psychoanalysis-donald-trump', 'XSolnit', ',', 'Rebecca', '.', '2016', '.', '[', 'i', ']', 'Hope', 'in', 'the', 'Dark', ':', 'Untold', 'Histories', ',', 'Wild', 'Possibilities', '[', 'i', ']', '.', 'Chicago', ',', 'Ill', ':', 'Haymarket', 'Books', '.', 'iBook', '.', 'Zinn', ',', 'Howard', '.', '2014', '.', '“', 'Optimism', 'of', 'Uncertainty.', '”', 'In', '[', 'i', ']', 'The', 'Impossible', 'Will', 'Take', 'a', 'Little', 'While', ':', 'Perseverance', 'and', 'Hope', 'in', 'Troubled', 'Times', '[', 'i', ']', ',', 'edited', 'by', 'Paul', 'Rogat', 'Loeb', '.', 'New', 'York', ':', 'Basic', 'Books', '.', 'iBook', '.', 'XZunes', ',', 'Stephen', '.', '2014', '.', '“', 'Arab', 'Revolutions.', '”', 'In', '[', 'i', ']', 'The', 'Impossible', 'Will', 'Take', 'a', 'Little', 'While', ':', 'Perseverance', 'and', 'Hope', 'in', 'Troubled', 'Times', '[', 'i', ']', ',', 'edited', 'by', 'Paul', 'Rogat', 'Loeb', '.', 'New', 'York', ':', 'Basic', 'Books', '.', 'iBook', '.'], 'LIQUID': ['LIQUID', 'My', 'reclaimed', 'word', 'for', 'the', '21st', 'century', 'is', 'liquid', '–', 'specifically', 'in', 'relationship', 'to', 'the', 'character', 'of', 'life', '–', 'and', 'as', 'a', 'counterpoint', 'to', 'the', 'machine', 'metaphor', ':', 'the', 'philosophical', 'and', 'scientific', 'idea', 'that', 'the', 'whole', 'universe', 'and', 'everything', 'in', 'it', 'can', 'be', 'understood', 'as', 'mechanisms', ',', 'composed', 'of', 'the', 'sum', 'of', 'fundamental', 'components', ',', 'which', 'are', 'hierarchically', 'organised', 'to', 'perform', 'work', 'in', 'a', 'logical', 'and', 'predictable', 'way', '.', 'Dualism', 'Rene', 'Descartes', '’', '[', 'i', ']', 'Treatise', 'of', 'Man', '[', 'i', ']', ',', 'described', 'conceptual', 'models', 'of', 'humans', 'that', 'were', 'made', 'up', 'of', 'fundamental', 'elements', '–', 'a', 'non-thinking', 'body', 'and', 'a', 'thinking', 'soul', '–', 'which', 'could', 'exist', 'independently', 'from', 'one', 'another', '.', 'He', 'extracted', 'the', 'rational', 'soul', 'from', 'the', 'body', 'in', 'order', 'to', 'remove', 'any', 'element', 'of', 'mentality', '.', 'In', 'this', 'way', ',', 'the', 'geometrical', 'nature', 'of', 'bodies', 'could', 'be', 'more', 'exactly', 'described', 'by', 'a', 'new', 'physics', 'that', 'reduced', 'all', 'natural', 'change', 'to', 'the', 'local', 'motion', 'of', 'material', 'particles', '.', 'The', 'body', ',', 'denuded', 'of', 'the', 'soul', 'and', 'mind', ',', 'became', 'known', 'as', 'the', '[', 'i', ']', 'Animal', 'Machine', '[', 'i', ']', '(', 'or', 'Bête', 'Machine', ')', '.', 'Yet', 'Descartes', 'neglected', 'to', 'characterise', 'the', 'nature', 'of', 'the', 'soul', 'in', 'more', 'than', 'its', 'barest', 'details', '.', 'He', 'considered', 'it', 'a', 'mysterious', 'substance', 'where', '‘', 'the', 'animal', 'spirits', '’', 'flowed', 'from', 'the', 'pineal', 'gland', '(', 'the', 'principle', 'seat', 'of', 'the', 'soul', ')', 'through', 'a', 'network', 'of', 'vessels', '(', 'neurons', ')', 'like', 'air', '.', 'However', ',', 'Descartes', 'never', 'developed', 'a', 'final', 'theory', 'about', 'the', 'relationship', 'between', 'the', 'body', 'and', 'the', 'soul', '.', 'This', 'brilliantly', 'simple', 'act', 'of', 'dualism', 'created', 'the', 'foundations', 'of', 'modernity', ',', 'providing', 'the', 'framework', 'for', 'scientific', 'developments', 'and', 'technological', 'advancements', 'during', 'the', 'Enlightenment', '.', 'The', '‘', 'beauty', '’', 'of', 'a', 'machine', 'is', 'that', 'it', 'represents', 'a', 'framework', 'for', 'thinking', 'and', 'simultaneously', 'embodies', 'a', 'technical', 'system', '.', 'It', 'therefore', 'shaped', 'a', 'worldview', 'that', 'considered', 'matter', 'as', 'inert', '–', 'without', 'innate', 'energy', '–', 'and', 'required', 'animation', 'through', 'external', 'agencies', 'if', 'it', 'was', 'to', 'act', '.', 'So', ',', 'to', 'animate', 'a', 'machine', ',', 'energy', ',', 'process', ',', 'or', 'spirit', ',', 'is', 'needed', '.', '[', 'z', ']', 'Objects', 'must', 'reconnect', 'with', 'flow', 'if', 'they', 'are', 'to', 'be', 'lively', '–', 'they', 'need', 'a', 'relationship', 'with', 'liquids', '–', 'and', 'we', 'have', 'denied', 'them', 'the', 'full', 'range', 'of', 'these', 'abilities', '.', '[', 'z', ']', 'Flux', 'The', 'pre-Socrates', 'philosopher', 'Heraclitus', 'first', 'expressed', 'the', 'idea', 'of', 'reality', 'being', 'in', 'constant', 'movement', 'in', 'his', 'adage', 'Panta', 'Rhei', ':', '“', 'everything', 'flows', ',', 'nothing', 'stays.', '”', 'Finally', ',', 'over', 'the', 'course', 'of', 'the', '20th', 'century', 'it', 'was', 'increasingly', 'understood', 'again', 'that', 'the', 'world', 'is', 'situated', 'within', 'a', 'condition', 'of', 'flux', '.', 'Thinkers', 'and', 'innovators', 'have', 'responded', 'to', 'the', 'liquid', 'qualities', 'of', 'the', 'world', 'through', 'significant', 'shifts', 'in', 'our', 'ways', 'of', 'thinking', '.', 'For', 'example', ',', 'Ludwig', 'von', 'Bertalanffy', '’', 's', 'notion', 'of', 'general', 'systems', 'theory', 'informed', 'the', 'field', 'of', 'cybernetics', '–', 'the', 'scientific', 'study', 'of', 'control', 'and', 'communication', 'in', 'the', 'animal', 'and', 'the', 'machine', '.', 'Alfred', 'North', 'Whitehead', '’', 's', 'focus', 'on', 'process', 'placed', 'dynamic', 'events', 'at', 'the', 'core', 'of', 'living', 'phenomena', ',', 'and', 'Timothy', 'Morton', '’', 's', 'search', 'for', 'designing', 'with', 'metabolism', '–', 'to', 'generate', '‘', 'straightforward', '’', 'environmental', 'images', '[', '1', ']', '–', 'aims', 'to', 'bypass', 'translation', 'of', 'processual', 'events', 'through', 'modes', 'of', 'representation', '.', 'In', 'this', 'realm', 'of', 'constant', 'change', ',', 'the', 'machine', 'metaphor', 'describes', 'reality', 'incompletely', '.', 'As', 'much', 'as', 'liquids', 'have', 'been', 'conjured', 'into', 'our', 'language', 'in', 'an', 'attempt', 'to', 'find', 'a', 'better', 'metaphorical', 'framework', 'to', 'characterise', '‘', 'life', '’', ',', 'progress', 'has', 'been', 'rhetorical', ',', 'as', 'liquids', 'themselves', 'are', 'not', 'imagined', 'or', 'readily', 'applied', 'as', 'technologies', '.', 'Fluids', 'may', 'power', 'machines', ',', 'lubricate', 'them', ',', 'or', 'be', 'consumed', 'by', 'them', '.', 'However', ',', 'the', 'behaviour', 'of', 'liquids', 'is', 'so', 'rich', 'and', 'complex', ',', 'that', 'the', 'toolsets', 'we', 'possess', 'to', 'manipulate', 'them', 'do', 'not', 'offer', 'sufficient', 'precision', 'to', 'rival', 'mechanical', 'potency', '.', 'How', 'can', 'we', 'think', 'through', 'liquids', 'in', 'ways', 'that', 'not', 'only', 'describe', 'our', 'present', 'reality', ',', 'but', 'also', 'conjure', 'into', 'existence', 'an', 'occult', 'performativity', 'of', 'the', 'material', 'realm', 'that', 'acts', 'upon', 'the', 'present', 'as', 'well', 'as', 'helps', 'to', 'imagine', 'and', 'shape', 'the', 'future', '?', 'Ever-changing', 'Conventionally', ',', 'the', 'extraordinary', 'properties', 'of', 'liquids', 'have', 'provoked', 'a', 'sense', 'of', 'erasure', ',', 'featurelessness', 'monstrosity', '–', 'in', 'the', 'sense', 'they', 'exceed', 'our', 'capacity', 'to', 'rationalise', 'and', 'control', 'them', 'by', 'applying', 'our', 'modern', 'perspectives', '.', 'Liquid', 'bodies', 'continually', 'rise', ',', 'undulate', ',', 'entangle', ',', 'fall', ',', 'and', 'exist', 'within', 'watery', 'landscapes', '.', 'They', 'are', 'often', 'so', 'entangled', 'with', 'their', 'surroundings', 'that', 'it', 'is', 'almost', 'impossible', 'to', 'see', 'them', ';', 'for', 'neither', 'our', 'natural', 'senses', ',', 'nor', 'concepts', ',', 'fully', 'convey', 'their', 'ever-changing', 'nature', '.', 'Defying', 'classical', 'conventions', 'of', 'organization', 'and', 'behaviour', ',', 'liquid', 'matter', 'is', 'fundamentally', 'lively', '.', 'It', 'also', 'simultaneously', 'permeates', 'and', 'is', 'infiltrated', 'by', 'its', 'surroundings', '.', 'Claude', 'Lévi-Strauss', 'regards', 'the', 'sea', 'as', 'uninspiring', ',', 'while', 'Roland', 'Barthes', 'views', 'the', 'ocean', 'as', 'a', 'non-signifying', 'field', 'that', 'bears', 'no', 'message', '.', 'Yet', ',', 'Michel', 'Serres', 'embraces', 'the', 'details', 'of', 'liquid', 'bodies', ',', 'specifically', 'the', 'subversive', '“', 'nautical', 'murmur', '”', 'of', 'the', 'sea', ',', 'which', 'he', 'regards', 'as', 'a', 'symptom', 'of', 'its', 'disturbing', ',', 'pervasive', 'vitality', ':', '“', 'It', '[', 'the', 'sea', ']', 'is', 'at', 'the', 'boundaries', 'of', 'physics', ',', 'and', 'physics', 'is', 'bathed', 'in', 'it', ',', 'it', 'lies', 'under', 'the', 'cuttings', 'of', 'all', 'phenomena', ',', 'a', 'Proteus', 'taking', 'on', 'any', 'shape', ',', 'the', 'matter', 'and', 'flesh', 'of', 'manifestations', '.', 'The', 'noise', '—', 'intermittence', 'and', 'turbulence', '—', 'quarrel', 'and', 'racket', '—', 'this', 'sea', 'noise', 'is', 'the', 'originating', 'rumour', 'and', 'murmuring', ',', 'the', 'original', 'hate.', '”', '[', '2', ']', 'Liquid', 'bodies', 'are', 'anything', 'but', 'banal', ';', 'they', 'are', 'subversive', ',', 'resisting', 'control', ',', 'atomization', ',', 'and', ',', 'ultimately', ',', 'mechanization', '.', 'Their', 'fundamental', 'unpredictability', 'and', 'unruly', 'multi-potentiality', 'evades', 'our', 'tendency', 'to', 'control', 'and', 'subordinate', 'it', 'to', 'human', 'desire', '–', 'even', 'when', 'industrial', 'apparatuses', 'are', 'used', '.', 'Indeed', ',', 'we', 'are', 'required', 'to', 'continually', 'negotiate', 'our', 'terms', 'of', 'engagement', 'with', 'such', 'liquid', 'bodies', 'and', 'find', 'ourselves', 'ill', 'equipped', 'to', 'quell', 'their', 'monstrous', 'transformations', ',', 'or', 'impose', 'order', 'upon', 'their', 'undifferentiated', 'expanses', '.', 'Although', 'these', 'rebellious', 'characteristics', 'are', 'palpable', ',', 'to', 'go', 'beyond', 'metaphorical', 'rhetoric', 'requires', 'their', 'material', 'nature', 'to', 'be', '‘', 'named.', '’', 'For', 'example', ',', 'they', 'may', 'be', 'recognised', 'as', 'fields', ',', 'like', '‘', 'badlands', ',', '’', 'as', 'reported', 'by', 'fishermen', ',', 'where', 'it', 'is', 'difficult', 'to', 'navigate', 'the', 'water', '.', 'Another', 'example', 'are', 'interfaces', ':', 'where', 'oil', 'meets', 'water', 'and', 'lifelike', 'patterns', 'emerge', ',', 'which', 'are', 'reminiscent', 'of', 'jellyfish', 'or', 'worms', '.', 'In', 'this', 'way', ',', 'an', 'actual', 'dialogue', 'may', 'begin', 'that', 'embraces', 'the', 'complexity', 'and', 'character', 'of', 'the', 'liquid', 'realm', '.', 'In', 'an', 'age', 'of', 'instability', ',', 'where', 'matter', 'is', 'at', 'the', 'edge', 'of', 'chaos', ',', 'liquids', 'persistently', 'respond', 'to', 'uncertain', 'terrains', 'by', 'exhibiting', 'dynamic', 'patterns', 'and', 'structures', '.', 'Think', 'of', 'a', 'whirlpool', 'or', 'tornado', 'where', 'repetitions', 'of', 'processes', 'within', 'a', 'site', 'confer', 'persistence', 'upon', 'a', 'structure', ',', 'rather', 'than', 'being', 'obedient', 'to', 'the', 'absolute', 'position', 'or', 'configuration', 'of', 'atoms', '.', 'The', 'operative', 'agents', 'of', 'this', 'realm', 'are', '‘', 'paradoxical', '’', 'objects', '[', '3', ']', 'that', 'are', 'made', 'up', 'of', 'the', 'constant', 'flow', 'of', 'matter', 'and', 'energy', '.', 'These', 'structures', 'can', 'occur', 'at', 'many', 'different', 'scales', 'and', 'become', 'increasingly', 'complex', 'with', 'time', '.', 'They', 'do', 'not', 'only', 'act', 'independently', 'but', 'can', 'also', 'collaborate', ',', 'linking', 'together', 'like', 'hurricanes', ',', 'to', 'form', 'massively', 'distribute', 'hubs', 'of', 'activity', 'across', 'the', 'surface', 'of', 'the', 'planet', '.', 'Such', 'hyper-structures', 'not', 'only', 'form', 'weather', 'fronts', ',', 'but', 'also', 'manifest', 'as', 'soils', 'and', 'forests', ',', 'which', 'exist', 'in', 'many', 'niches', 'and', 'at', 'multiple', 'scales', 'through', 'the', 'metabolic', 'activity', 'of', 'a', 'web', 'of', 'beings', '.', 'Collectively', ',', 'they', 'contribute', 'to', 'the', 'active', 'forces', 'of', 'nature', '.', 'Liquid', 'life', 'The', 'notion', 'of', '[', 'i', ']', 'liquid', 'life', '[', 'i', ']', 'draws', 'attention', 'to', 'alternative', 'pathways', 'that', 'are', 'self-organizing', 'and', 'self-sustaining', '.', 'Liquids', 'that', '‘', 'act', '’', 'through', 'their', 'own', 'agency', 'may', 'open', 'up', 'opportunities', 'to', 'work', 'with', 'the', 'natural', 'realm', 'in', 'new', 'ways', ',', 'by', 'thinking', 'along', ',', 'with', ',', 'and', 'through', 'liquids', '–', 'both', 'as', 'a', 'metaphor', 'and', 'as', 'a', 'technology', '.', 'In', 'this', 'way', 'ideas', 'can', 'be', 'tested', ',', 'refined', ',', 'and', 'developed', 'towards', 'particular', 'dreams', ',', 'challenges', ',', 'and', 'futures', '.', 'Such', 'expanded', 'perspectives', 'also', 'engage', 'with', 'alternative', 'power', 'and', 'identity', 'relationships', 'that', 'move', 'towards', 'inclusive', ',', 'horizontal', 'interrelations', ',', 'which', 'are', 'consistent', 'with', 'an', 'ecological', 'era', 'by', 'distributing', 'agency', 'through', 'continuous', 'media', ',', 'rather', 'than', 'the', 'discrete', 'atoms', 'and', 'packets', 'of', '‘', 'information', '’', 'that', 'characterise', 'mechanistic', 'frameworks', '.', 'This', 'continuity', 'is', 'therefore', 'not', 'bounded', 'like', 'objects', ',', 'but', 'is', 'expanded', 'through', 'immanent', 'spaces', '.', 'An', 'example', 'is', 'in', 'the', 'work', 'of', 'Viktor', 'Schauberger', 'who', 'regarded', 'water', 'as', 'an', 'organism', '.', 'He', 'invented', 'apparatuses', 'for', 'enlivening', 'slow', 'flowing', 'and', 'polluted', 'water', 'by', 'inducing', 'turbulence', 'that', 'made', 'water', 'livelier', '.', 'The', 'new', 'energy', 'provided', 'by', 'the', 'vortices', 'in', 'these', 'bodies', 'of', 'water', 'could', 'also', 'be', 'used', 'to', 'perform', 'useful', 'work', ',', 'like', 'transporting', 'lumber', '.', 'At', 'the', 'same', 'time', ',', 'rivers', 'and', 'streams', 'were', 'revitalised', 'by', 'these', 'technologies', '.', 'Such', 'approaches', 'dilute', ',', 'decentre', ',', 'and', 'reduce', 'the', 'environmental', 'impact', 'of', 'a', 'particular', 'kind', 'of', 'human', 'presence', 'in', 'the', 'construction', 'of', 'industrial', 'processes', '.', 'It', 'also', 'critically', 'proposes', 'notions', 'of', 'society', 'that', 'embrace', 'all', 'humans', 'and', 'even', 'includes', 'species', 'that', 'have', 'become', 'so', 'intrinsic', 'to', 'our', 'biology', 'they', 'are', 'integral', 'to', 'our', 'being', '.', 'For', 'example', ',', 'bacterial', 'commensals', '(', 'bacterial', 'microbiome', ')', ',', 'symbionts', '(', 'pets', ')', ',', 'and', 'even', '‘', 'living', '’', 'fossils', '(', 'mitochondrial', 'bodies', ',', 'viral', 'and', 'bacterial', 'gene', 'sequences', 'in', '‘', 'junk', '’', 'DNA', ')', 'are', 'fundamental', 'to', 'our', 'existence', ';', 'their', 'diffusion', 'within', 'our', 'flesh', 'conferring', 'us', 'with', 'unique', 'character', '.', 'As', 'members', 'of', 'our', '‘', 'fluid', '’', 'communities', ',', 'their', 'rights', 'and', '(', 'potential', ')', 'responsibilities', 'are', 'emphasised', ',', 'as', 'are', 'notions', 'of', 'agency', 'and', 'modes', 'of', 'conversation', '.', 'Such', 'considerations', 'invite', 'alternative', 'ideas', 'about', 'personhood', 'with', 'the', 'potential', 'extension', 'to', 'chimpanzees', ',', 'dolphins', ',', 'machines', ',', 'land', ',', 'rivers', ',', 'and', 'even', 'planet', 'Earth', '.', 'These', 'recognitions', 'may', 'also', 'extend', 'to', 'building', 'coalitions', 'for', '(', 'environmental', ')', 'peace', 'and', 'include', 'plants', '(', 'ancient', 'trees', ')', ',', 'insects', '(', 'bees', 'and', 'other', 'pollinators', ')', ',', 'soil', 'organisms', '(', 'mycorrhiza', ')', ',', 'and', 'other', 'creatures', 'upon', 'which', 'our', 'immediate', 'existence', 'depends', '.', 'Of', 'course', ',', 'such', 'notions', ',', 'which', 'are', 'woven', 'throughout', 'the', 'cycles', 'of', 'life', 'and', 'death', ',', 'could', 'potentially', 'extend', 'indefinitely', 'to', 'embrace', 'every', 'being', 'on', 'the', 'planet', '.', 'However', ',', 'from', 'a', '‘', 'lived', '’', 'perspective', ',', 'community', 'members', 'are', 'bestowed', 'relevance', 'through', 'anthropological', 'ethical', 'concerns', 'and', 'values', ',', 'which', 'are', 'played', 'out', 'in', 'the', 'construction', 'of', 'social', 'groupings', 'that', 'are', 'at', 'the', 'heart', 'of', 'ecological', 'change', '.', 'An', '‘', 'ecological', '’', 'ethics', 'however', 'is', 'necessary', ',', 'so', 'that', 'the', 'intimate', 'connections', 'between', 'fluid', 'bodies', 'and', 'their', 'habitats', 'can', 'be', 'sorted', ',', 'ordered', ',', 'and', 'valued', 'according', 'to', 'the', 'requirements', 'and', 'character', 'of', 'particular', 'places', 'and', 'their', 'communities', '.', 'Yet', ',', 'these', 'groupings', 'may', 'no', 'longer', 'be', 'recognizable', 'according', 'to', 'current', 'conventions', 'of', 'naming', 'and', 'classification', '–', 'in', 'other', 'words', ',', '[', 'z', 'an', 'ecological', 'shifting', 'of', 'our', 'value', 'frameworks', 'will', 'inevitably', 'produce', 'monsters', '–', 'namely', ',', 'uncategorisable', 'beings', 'z', ']', '.', 'Direct', 'encounter', 'between', 'liquid', 'bodies', 'Although', 'existing', 'life', 'forms', 'may', 'already', 'be', 'read', 'as', 'liquid', 'bodies', ',', 'they', 'are', 'inevitably', 'still', 'framed', 'within', 'the', 'conventions', 'of', 'the', 'Animal', 'Machine', ',', 'which', 'invokes', 'discourses', 'of', 'efficiency', ',', 'geometric', 'perfection', ',', 'hierarchies', ',', 'and', 'determinism', '.', 'To', 'circumvent', 'these', 'biases', ',', 'an', 'apparatus', 'for', 'provoking', 'direct', 'encounters', 'with', 'liquid', 'bodies', 'is', 'needed', 'to', 'produce', 'a', 'unique', 'semiotic', 'portrait', 'of', 'liquid', 'life', 'that', 'corresponds', 'with', 'the', 'dynamics', 'of', 'the', 'living', 'realm', '.', 'This', 'may', 'be', 'explored', 'through', 'poetics', 'or', 'graphical', 'notations', ',', '–', 'yet', 'all', 'forms', 'of', 'representation', 'of', 'liquid', 'bodies', 'are', 'problematic', 'as', 'they', 'are', 'incomplete', '–', 'enabling', 'the', 'liquid', 'realm', 'to', '‘', 'speak', '’', 'in', 'its', 'own', 'terms', 'is', 'preferable', '.', 'An', 'apparatus', 'that', 'I', 'have', 'been', 'working', 'with', 'since', '2009', ',', 'the', 'Bütschli', 'System', ',', 'arises', 'spontaneously', 'from', 'intersecting', 'liquid', 'fields', '–', 'olive', 'oil', 'and', 'strong', '(', '3M', ')', 'alkali', '.', 'This', 'uniquely', 'varied', ',', 'yet', 'predictable', 'chemical', 'recipe', ',', 'produces', 'lifelike', 'bodies', 'that', 'spontaneously', 'move', ',', 'show', 'sensitivity', 'to', 'their', 'surroundings', 'and', 'respond', 'to', 'each', 'other', '.', '[', '4', ']', 'The', 'strange', ',', 'yet', 'somewhat', 'familiar', 'images', ',', 'symbols', 'and', 'behaviours', 'that', 'arise', 'from', 'the', 'Bütschli', 'system', 'may', 'be', 'read', 'as', 'recognisable', 'bodies', 'and', 'behaviours', 'that', 'arise', 'from', 'the', 'tensions', 'between', 'interacting', 'material', 'fields', 'at', 'the', 'edge', 'of', 'chaos', '.', 'Yet', 'they', 'can', 'be', 'engaged', 'and', 'shaped', 'by', 'physical', 'and', 'chemical', 'languages', '.', 'For', 'example', ',', 'adjusting', 'external', 'factors', 'that', 'alter', 'surface', 'tension', 'can', 'induce', 'specific', 'movements', 'like', 'clustering', ';', 'while', 'changing', 'internal', 'factors', 'such', 'as', 'adding', 'salt', 'solutions', 'to', 'the', 'mixture', ',', 'enables', 'droplets', 'to', 'make', 'sculptural', 'formations', '.', 'How', 'these', 'outputs', 'are', 'read', 'or', 'interpreted', 'is', 'established', 'through', 'juxtapositions', 'against', 'multiple', 'disciplines', 'such', 'as', 'prose', 'poetry', ',', 'science', ',', 'and', 'design', 'notations', '.', 'A', 'human-scale', 'example', 'of', 'this', 'kind', 'of', 'experiment', 'was', 'held', 'as', 'a', 'performance', 'called', '“', 'Temptations', 'of', 'the', 'Nonlinear', 'Ladder', '”', '[', '5', ']', ',', 'which', 'was', 'performed', 'at', 'the', 'Palais', 'de', 'Tokyo', 'in', 'April', '2016', 'for', 'the', 'Do', 'Disturb', 'Festival', '.', 'An', 'environment', 'was', 'constructed', 'using', 'a', 'black', 'mirror', 'with', 'a', 'reflective', 'metal', 'disc', 'suspended', 'above', 'it', 'which', 'generated', 'multiple', 'interfaces', 'between', 'ground', ',', 'water', ',', 'and', 'air', '.', 'Circus', 'artists', 'explored', 'these', 'spaces', ',', 'improvising', 'connections', 'between', 'them', 'while', 'using', 'their', 'bodies', 'as', 'liquid', 'apparatuses', '.', 'The', 'audience', 'was', 'invited', 'to', 'gaze', 'into', 'the', 'reflective', 'surfaces', 'that', 'episodically', 'appeared', 'through', 'the', 'performance', 'space', 'and', '-', 'as', 'if', 'they', 'were', 'telling', 'the', 'future', '-', 'bestow', 'meaning', 'on', 'the', 'images', 'they', 'observed', '.', 'In', 'this', 'way', ',', 'the', 'radical', 'human', 'bodies', 'were', 'transfigured', 'at', 'interfaces', 'where', 'they', 'acquired', 'imminent', 'meaning', '–', 'becoming', 'a', 'language', 'of', 'flux', '.', 'Similarly', ',', 'Bütschli', 'droplets', 'also', 'begin', 'to', 'reveal', 'a', 'world', 'through', 'a', 'liquid', 'perspective', ',', 'conjuring', 'new', 'words', ',', 'concepts', ',', 'and', 'relationships', 'into', 'existence', '.', 'Such', 'notations', 'may', 'enable', 'us', 'to', 'inhabit', 'spaces', 'more', 'ecologically', ',', 'understanding', 'how', 'we', 'may', 'engage', 'the', 'infrastructures', 'and', 'fabrics', 'that', 'enable', 'life', 'rather', 'than', 'building', 'mechanical', 'objects', 'for', 'living', 'in', '.', 'Our', 'apparatuses', 'for', 'inhabitation', 'may', 'acquire', 'increasingly', 'lifelike', 'characteristics', 'that', 'extend', 'the', 'realm', 'of', 'the', 'home', 'and', 'city', 'into', 'the', 'ecosphere', ',', 'where', 'internal', 'and', 'external', 'spaces', 'are', 'engaged', 'in', 'meaningful', 'and', 'mutual', 'conversation', '.', 'For', 'example', ',', '[', 'z', ']', 'a', 'house', 'may', 'be', 'able', 'to', 'recycle', 'its', 'water', 'and', 'metabolically', 'transform', 'waste', 'substances', 'into', 'useful', 'products', '[', 'z', ']', '.', 'This', 'is', 'a', 'pursuit', 'of', 'the', '“', 'Living', 'Architecture', '”', '[', '6', ']', 'project', 'and', 'is', 'envisioned', 'as', 'a', 'next-generation', 'selectively', 'programmable', 'bioreactor', 'that', 'is', 'capable', 'of', 'extracting', 'valuable', 'resources', 'from', 'sunlight', ',', 'wastewater', ',', 'and', 'air', 'and', 'then', 'generates', 'oxygen', ',', 'proteins', ',', 'and', 'biomass', '.', '“', 'Living', 'Architecture', '”', 'uses', 'the', 'standard', 'principles', 'of', 'both', 'photo-bioreactor', 'and', 'microbial', 'fuel', 'cell', 'technologies', ',', 'which', 'are', 'adapted', 'to', 'work', 'together', 'synergistically', 'to', 'clean', 'wastewater', ',', 'generate', 'oxygen', ',', 'provide', 'electrical', 'power', ',', 'and', 'generate', 'useable', 'biomass', '(', 'fertilizer', ')', '.', 'The', 'outputs', 'of', 'these', 'systems', 'are', 'then', 'metabolically', '‘', 'programmed', '’', 'by', 'the', 'synthetic', 'bioreactor', 'to', 'generate', 'useful', 'organic', 'compounds', 'like', 'sugars', ',', 'oils', 'and', 'alcohols', '[', '7', ']', '.', 'IMAGE', 'by', 'Simone', 'Ferracina', '[', 'i', ']', 'When', 'life', 'is', 'considered', 'through', 'a', 'liquid', 'lens', ',', 'it', 'is', 'no', 'longer', 'a', 'deterministic', ',', 'object-oriented', 'machine', 'but', 'soft', ',', 'protean', ',', 'and', 'integrated', 'within', 'a', 'paradoxical', ',', 'planetary-scale', 'material', 'condition', 'that', 'is', 'unevenly', 'distributed', 'spatially', 'but', 'temporally', 'continuous', '.', '[', 'i', ']', '[', 'THE', 'ITALICISED', 'TEXT', 'INDICATES', 'THE', 'PLACEMENT', 'OF', 'THE', 'IMAGE', ']', 'Manifesto', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'life', 'is', 'an', 'uncertain', 'realm', '.', 'The', 'concepts', 'needed', 'to', 'realise', 'its', 'potential', 'have', 'not', 'yet', 'existed', 'until', 'now', '.', 'The', 'hypercomplexity', 'and', 'hyperobject-ness', 'of', 'liquid', 'terrains', 'exceeds', 'our', 'ability', 'to', 'observe', 'or', 'comprehend', 'them', 'in', 'their', 'totality', '.', 'Indeed', ',', 'what', 'we', 'typically', 'recognise', 'as', 'living', 'things', 'are', 'by-products', 'of', 'liquid', 'processes', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'life', 'is', 'a', 'worldview', '.', 'A', 'phantasmagoria', 'of', 'effects', ',', 'disobedient', 'substances', ',', 'evasive', 'strategies', ',', 'dalliances', ',', 'skirmishes', ',', 'flirtations', ',', 'addictions', ',', 'quantum', 'phenomena', ',', 'unexpected', 'twists', ',', 'sudden', 'turns', ',', 'furtive', 'exchanges', ',', 'sly', 'manoeuvres', ',', 'blind', 'alleys', ',', 'and', 'exuberant', 'digressions', '.', 'It', 'can', 'not', 'be', 'reduced', 'into', 'simple', 'ciphers', 'of', 'process', ',', 'substance', ',', 'method', ',', 'or', 'technology', '.', 'It', 'is', 'more', 'than', 'a', 'set', 'of', 'particular', 'materials', 'that', 'comprise', 'a', 'recognizable', 'body', '.', 'It', 'is', 'more', 'than', 'vital', 'processes', 'that', 'are', 'shaped', 'according', 'to', 'specific', 'contexts', 'and', 'subjective', 'encounters', '.', 'Yet', 'we', 'recognise', 'its', 'coherence', 'through', 'the', 'lives', 'of', '‘', 'beings', '’', ',', 'which', 'remain', 'cogent', 'despite', 'incalculable', 'persistent', 'changes', 'such', 'as', 'flows', ',', 'ambiguities', ',', 'transitional', 'states', 'and', 'tipping', 'points', 'that', 'bring', 'about', 'radical', 'transformation', 'within', 'physical', 'systems', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'life', 'is', 'a', 'kind', 'of', '‘', 'metabolic', 'weather', '’', '.', 'It', 'is', 'a', 'dynamic', 'substrate', '-', 'or', '[', 'i', ']', 'hyperbody', '[', 'i', ']', '-', 'that', 'permeates', 'the', 'atmosphere', ',', 'liquid', 'environments', ',', 'soils', 'and', 'Earth', '’', 's', 'crust', '.', '‘', 'Metabolic', 'weather', '’', 'refers', 'to', 'complex', 'physical', ',', 'chemical', 'and', 'even', 'biological', 'outcomes', 'that', 'are', 'provoked', 'when', 'fields', 'of', 'matter', 'at', 'the', 'edge', 'of', 'chaos', 'collide', '.', 'It', 'is', 'a', 'vector', 'of', 'infection', ',', 'an', 'expression', 'of', 'recalcitrant', 'materiality', 'and', 'a', 'principle', 'of', '[', 'i', ']', 'ecopoiesis', '[', 'i', ']', ',', 'which', 'underpins', 'the', 'process', 'of', 'living', ',', 'lifelike', 'events', '–', 'and', 'even', 'life', 'itself', '.', 'These', 'life', 'forms', 'arise', 'from', 'energy', 'gradients', ',', 'density', 'currents', ',', '[', 'i', ']', 'katabatic', 'flows', '[', 'i', ']', ',', 'whirlwinds', ',', 'dust', 'clouds', ',', 'pollution', 'and', 'the', 'myriad', 'expressions', 'of', 'matter', 'that', 'detail', 'our', '(', 'earthy', ',', 'liquid', ',', 'gaseous', ')', 'terrains', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'life', 'is', 'immortal', '.', 'Arising', 'from', 'our', 'unique', 'planetary', 'conditions', ',', 'its', 'ingredients', 'are', 'continually', 're-incorporated', 'into', 'active', 'metabolic', 'webs', 'through', 'cycles', 'of', 'life', 'and', 'death', '.', 'Most', 'deceased', 'liquid', 'matter', 'lies', 'quiescent', ',', 'patiently', 'waiting', 'for', 'its', 'reanimation', 'through', 'the', 'persistent', 'metabolisms', 'within', 'our', 'soils', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'life', 'exceeds', 'rhetoric', '.', 'Its', 'concepts', 'can', 'be', 'embodied', 'and', 'experimentally', 'tested', 'using', 'a', 'trans-disciplinary', 'approach', ',', 'which', 'draws', 'upon', 'a', 'range', 'of', 'conceptual', 'lenses', 'and', 'techniques', 'to', 'involve', 'the', 'liquid', 'realm', 'with', 'its', 'own', '‘', 'voice', '’', '.', 'From', 'these', 'perspectives', 'liquid', 'technologies', 'emerge', 'that', 'are', 'capable', 'of', 'generating', 'new', 'kinds', 'of', 'artefacts', ',', 'like', 'Bütschli', 'droplets', ',', 'which', 'are', 'liquid', 'chemical', 'assemblages', 'capable', 'of', 'surprisingly', 'lifelike', 'behaviours', '.', 'These', 'agents', 'exceed', 'rhetoric', ',', 'as', 'they', 'possess', 'their', 'own', 'agency', ',', 'semiotics', ',', 'and', 'choreographic', 'impulses', ',', 'which', 'allow', 'us', 'to', 'value', 'and', 'engage', 'in', 'discourse', 'with', 'them', 'on', '[', 'i', ']', 'their', '[', 'i', ']', 'terms', '.', 'The', 'difficulty', 'and', 'slippages', 'in', 'meaning', 'and', 'volition', 'between', 'participating', 'bodies', 'creates', 'the', 'possibility', 'of', 'en', 'evolving', 'poly-vocal', 'dialectics', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'life', 'provokes', 'an', 'expanded', 'notion', 'of', 'consciousness', '.', 'Its', '‘', 'thinking', '’', 'is', 'a', 'molecular', 'sea', 'of', 'possibilities', 'that', 'resist', 'the', 'rapid', 'decay', 'towards', 'thermodynamic', 'equilibrium', '.', 'In', 'these', 'vital', 'moments', 'it', 'indulges', 'every', 'possible', 'tactic', 'to', 'persist', ',', 'acquiring', 'a', 'rich', 'palette', 'of', 'natural', 'resources', ',', 'food', 'sources', ',', 'waste', 'materials', ',', 'and', 'energy', 'fields', '.', 'These', 'material', 'alliances', 'necessitate', 'decisions', 'that', 'do', 'not', 'require', 'a', 'coordinating', 'centre', ',', 'like', 'the', 'brain', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'are', 'non-bodies', '.', 'They', 'are', 'without', 'formal', 'boundaries', 'and', 'are', 'constantly', 'changing', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'bodies', 'are', 'paradoxical', 'structures', 'that', 'possess', 'their', 'own', 'logic', '.', 'Although', 'classical', 'laws', 'may', 'approximate', 'their', 'behaviour', ',', 'they', 'can', 'not', 'predict', 'them', '.', 'They', 'are', 'tangible', 'expressions', 'of', 'nonlinear', 'material', 'systems', ',', 'which', 'exist', 'outside', 'of', 'the', 'current', 'frames', 'of', 'reference', 'that', 'our', 'global', 'industrial', 'culture', 'is', 'steeped', 'in', '.', 'Aspects', 'of', 'their', 'existence', 'stray', 'into', 'the', 'unconventional', 'and', 'liminal', 'realms', 'of', 'auras', ',', 'quantum', 'physics', ',', 'and', 'ectoplasms', '.', 'In', 'these', 'realms', 'they', 'can', 'not', 'be', 'appreciated', 'by', 'objective', 'measurement', 'and', 'invite', 'subjective', 'engagement', ',', 'like', 'poetic', 'trysts', '.', 'Their', 'diversionary', 'tactics', 'give', 'rise', 'to', 'the', 'very', 'acts', 'of', 'life', ',', 'such', 'as', 'the', 'capacity', 'to', 'heal', ',', 'adapt', ',', 'self-repair', ',', 'and', 'empathize', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'bodies', 'are', 'pluri-pontent', '.', 'They', 'are', 'capable', 'of', 'many', 'acts', 'of', 'transformation', '.', 'They', 'de-simplify', 'the', 'matter', 'of', 'being', 'a', 'body', 'through', 'their', 'visceral', 'entanglements', '.', 'While', 'the', 'bête', 'machine', 'depends', 'on', 'an', 'abstracted', 'understanding', 'of', 'anatomy', 'founded', 'upon', 'generalizations', 'and', 'ideals', ',', 'liquid', 'bodies', 'resist', 'these', 'tropes', '.', 'Liquid', 'bodies', 'discuss', 'a', 'mode', 'of', 'existence', 'that', 'is', 'constantly', 'changing', '–', 'not', 'as', 'the', 'cumulative', 'outcomes', 'of', '‘', 'error', '’', '–', 'but', 'as', 'a', 'highly', 'choreographed', 'and', 'continuous', 'spectrum', 'stream', 'of', 'events', 'that', 'arise', 'from', 'the', 'physical', 'interactions', 'of', 'matter', '.', 'They', 'internalize', 'other', 'bodies', 'as', 'manifolds', 'within', 'their', 'substance', 'and', 'assert', 'their', 'identity', 'through', 'their', 'environmental', 'contexts', '.', 'Such', 'entanglements', 'invoke', 'marginal', 'relations', 'between', 'multiple', 'agencies', 'and', 'exceed', 'the', 'classical', 'logic', 'of', 'objects', '.', 'They', 'are', 'inseparable', 'from', 'their', 'context', 'and', 'offer', 'ways', 'of', 'thinking', 'and', 'experimenting', 'with', 'the', 'conventions', 'of', 'making', 'and', 'being', 'embodied', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'bodies', 'invite', 'us', 'to', 'articulate', 'the', 'fuzziness', ',', 'paradoxes', 'and', 'uncertainties', 'of', 'the', 'living', 'realm', '.', 'They', 'are', 'still', 'instantly', 'recognizable', 'and', 'can', 'be', 'named', 'as', 'tornado', ',', 'cirrus', ',', 'soil', ',', 'embryo', ',', 'or', 'biofilm', '.', 'These', 'contradictions', '–', 'of', 'form', 'and', 'constancy', '–', 'encourage', 'alternative', 'readings', 'of', 'how', 'we', 'order', 'and', 'sort', 'the', 'world', ',', 'whose', 'main', 'methodology', 'is', 'through', 'relating', 'one', 'body', 'to', 'another', '.', 'Indeed', ',', 'protean', 'liquid', 'bodies', 'help', 'us', 'understand', 'that', 'while', 'universalisms', ',', 'averages', 'and', 'generalizations', 'are', 'useful', 'in', 'producing', 'maps', 'of', 'our', 'being', 'in', 'the', 'world', ',', 'they', 'neglect', 'specific', 'details', ',', 'which', '‘', 'bring', 'forth', '’', 'the', 'materiality', 'of', 'the', 'environment', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'bodies', 'are', 'political', 'agents', '.', 'They', 're-define', 'the', 'boundaries', 'and', 'conditions', 'for', 'existence', 'in', 'the', 'context', 'of', 'dynamic', ',', 'unruly', 'environments', '.', 'They', 'propose', 'alternative', 'modes', 'of', 'living', 'that', 'are', 'radically', 'transformed', ',', 'monstrous', ',', 'coherent', ',', 'raw', '–', 'and', 'selectively', 'permeated', 'by', 'their', 'nurturing', 'media', '.', '[', 'b', ']', 'Liquid', '[', 'b', ']', 'bodies', 'invite', 'us', 'to', 'understand', 'our', 'being', 'beyond', 'relational', 'thinking', 'and', 'invent', 'monsters', 'that', 'defy', 'all', 'existing', 'forms', 'of', 'categorization', 'to', 'make', 'possible', 'a', 'new', 'kind', 'of', 'corporeality', '.', 'They', 'are', 'what', 'remain', 'when', 'mechanical', 'explanations', 'can', 'no', 'longer', 'account', 'for', 'the', 'experiences', 'that', 'we', 'recognise', 'as', '‘', 'being', 'alive.', '’', '[', 'i', ']', '“', 'Liquid', 'life', 'arises', 'from', 'out', 'of', 'a', 'soup', ',', 'smog', ',', 'a', 'scab', ',', 'fire', '–', 'where', 'the', 'incandescent', 'heavens', 'rain', 'molten', 'rock', 'and', 'alkali', 'meets', 'oil', '–', 'a', 'choreography', 'of', 'primordial', 'metabolic', 'flames', '.', 'Amidst', 'the', 'reducing', 'atmosphere', 'of', 'choking', 'toxic', 'gases', ',', 'its', 'coming-into-being', 'draws', 'momentarily', 'into', 'focus', 'and', 'recedes', 'again', '.', 'The', 'unfathomable', 'darkness', 'of', 'the', 'Hadean', 'epoch', 'is', 'reincarnated', 'here', '.', 'It', 'is', 'drenched', 'in', 'thick', 'gas', 'clouds', ',', 'unweathered', 'dusts', ',', 'and', 'pungent', 'vapours', ',', 'which', 'obfuscate', 'the', 'light', '.', 'The', 'insulating', 'blanket', 'of', 'gaseous', 'poisons', 'protects', 'the', 'land', 'against', 'the', 'cruel', 'stare', 'of', 'ultraviolet', 'rays', 'and', 'ionizing', 'space', 'radiation', ',', 'which', 'spite', 'the', 'Earth', '’', 's', 'surface', '.', 'Out', 'of', 'these', 'volatile', 'caustic', 'bodies', ',', 'a', 'succession', 'of', 'chemical', 'ghosts', 'haunts', 'the', 'heavy', 'atmosphere', '.', 'Here', ',', 'imaginary', 'figures', ',', 'like', 'those', 'that', 'appear', 'in', 'a', 'fevered', 'condition', ',', 'split', 'faint', 'light', 'around', '.', 'They', 'wander', 'among', 'the', 'auras', 'of', 'turbulent', 'interfaces', 'and', 'thickening', 'densities', 'of', 'matter', ',', 'scum', 'and', 'crust', '.', 'Over', 'the', 'course', 'of', 'half', 'a', 'billion', 'years', ',', 'sudden', 'ectoplasms', 'spew', 'in', 'successive', 'acts', 'over', 'the', 'darkened', 'theatre', 'of', 'the', 'planet', '.', 'Charged', 'skies', ',', 'enlivened', 'by', 'the', 'ionic', 'electricity', 'of', 'fluids', 'and', 'periodically', 'lit', 'with', 'photon', 'cuts', ',', 'strike', 'blows', 'into', 'the', 'ground', 'to', 'begin', 'the', 'process', 'of', 'chemical', 'evolution', '.', 'Dancing', 'under', 'ionic', 'winds', 'electric', 'storms', 'scratch', 'at', 'the', 'Earth', 'and', 'charged', 'tendrils', 'of', 'matter', 'stand', 'on', 'their', 'end', '.', 'Vulgar', 'in', 'its', 'becoming', ',', 'the', 'blubber', 'slobbers', 'on', 'biomass', 'with', 'carbohydrate', 'teeth', ',', 'drooling', 'enzymes', 'that', 'digest', 'nothing', 'but', 'its', 'own', 'bite', '.', 'Energetically', 'incontinent', ',', 'it', 'acquires', 'a', 'cold', 'metabolism', 'and', 'a', 'watery', 'heart', '.', 'Expanding', 'and', 'contacting', ',', 'it', 'starts', 'to', 'pump', 'universal', 'solvent', 'through', 'its', 'liquid', 'eyes', ',', 'lensing', 'errant', 'light', 'into', 'its', 'dark', 'thoughts', '.', 'Mindless', ',', 'yet', 'finely', 'tuned', 'to', 'its', 'context', ',', 'it', 'wriggles', 'upon', 'time', '’', 's', 'compost', ',', 'chewing', 'and', 'chewing', 'with', 'its', 'boneless', 'jaws', 'on', 'nothing', 'but', 'the', 'agents', 'of', 'death', '.', 'In', 'its', 'structural', 'disobedience', ',', 'the', 'misshapen', 'mass', 'steadily', 'grows', 'more', 'organized', 'and', 'reluctant', 'to', 'succumb', 'to', 'decay', '.', 'Patterning', 'the', 'air', ',', 'its', 'fingers', 'extend', 'like', 'claws', ',', 'obstructing', 'its', 'passage', 'between', 'the', 'poles', 'of', 'oblivion', '.', 'Caressing', 'itself', 'in', 'gratuitous', 'acts', 'of', 'procreation', ',', 'the', 'daub', 'offers', 'contempt', 'for', 'the', 'forces', 'of', 'disorder', ',', 'and', 'crawls', 'steadily', 'towards', 'being.', '”', '[', 'i', ']', '[', 'footnotes', ']', '1.Morton', ',', 'Timothy', '.', '[', 'i', ']', 'Hyperobjects', ':', 'philosophy', 'and', 'ecology', 'after', 'the', 'end', 'of', 'the', 'world', '.', '[', 'i', ']', 'Minneapolis', ':', 'University', 'of', 'Minnesota', 'Press', ',', '2014', '.', '2.Serres', ',', 'Michael', '.', '[', 'i', ']', 'Genesis', '[', 'i', ']', '.', 'Ann', 'Arbor', ':', 'Univ', '.', 'of', 'Michigan', 'Press', ',', '1996', '.', '14', '.', '3.Also', 'termed', '‘', 'dissipative', 'structures', '’', 'by', 'Ilya', 'Prigogine', '4.Armstrong', ',', 'Rachel', '.', '[', 'i', ']', 'Vibrant', 'Architecture', '.', 'Matter', 'as', 'a', 'CoDesigner', 'of', 'Living', 'Structures', '[', 'i', ']', '.', 'De', 'Gruyter', 'Open', ',', '2015', '.', '5.A', 'collaboration', 'between', 'Rachel', 'Armstrong', ',', 'Professor', 'of', 'Experimental', 'Architecture', ',', 'Newcastle', 'University', ',', 'Rolf', 'Hughes', ',', 'Professor', 'of', 'Artistic', 'Research', ',', 'Stockholm', 'University', 'of', 'the', 'Arts', ',', 'Olle', 'Sandberg', ',', 'Director', ',', 'Cirkör', 'LAB', 'and', 'circus', 'artists', 'Methinee', 'Wongtrakoon', '(', 'contortionist', ')', 'and', 'Alexander', 'Dam', '(', 'acrobat', ')', ',', 'with', 'technical', 'rigging', 'by', 'Joel', 'Jedström', '6.The', 'Living', 'Architecture', 'project', 'received', 'funding', 'from', 'the', 'European', 'Union', '’', 's', 'Horizon', '2020', 'Research', 'and', 'Innovation', 'Programme', 'under', 'Grant', 'Agreement', 'no', '.', '686585', '.', 'It', 'is', 'made', 'possible', 'by', 'a', 'collaboration', 'of', 'experts', 'from', 'the', 'universities', 'of', 'Newcastle', ',', 'UK', ';', 'the', 'West', 'of', 'England', '(', 'UWE', 'Bristol', ')', ';', 'Trento', ',', 'Italy', ';', 'the', 'Spanish', 'National', 'Research', 'Council', 'in', 'Madrid', ';', 'LIQUIFER', 'Systems', 'Group', ',', 'Vienna', ',', 'Austria', ';', 'and', 'Explora', ',', 'Venice', ',', 'Italy', ',', 'that', 'began', 'in', 'April', '2016', 'and', 'runs', 'to', 'April', '2019', '.', '7.', '”', 'Living', 'Architecture', 'LIAR', '–', 'transform', 'our', 'habitats', 'from', 'inert', 'spaces', 'into', 'programmable', 'sites', '.', \"''\", 'Living', 'Architecture', '.', '2016', '.', 'Accessed', 'September', '16', ',', '2017.', 'http', ':', '//livingarchitecture-h2020.eu/', '.', 'References', 'Armstrong', ',', 'Rachel', '.', '[', 'i', ']', 'Vibrant', 'Architecture', '.', 'Matter', 'as', 'a', 'CoDesigner', 'of', 'Living', 'Structures', '.', '[', 'i', ']', 'De', 'Gruyter', 'Open', ',', '2015', '.', '``', 'Living', 'Architecture', 'LIAR', '–', 'transform', 'our', 'habitats', 'from', 'inert', 'spaces', 'into', 'programmable', 'sites', '.', \"''\", 'Living', 'Architecture', '.', '2016', '.', 'Accessed', 'September', '16', ',', '2017.', 'http', ':', '//livingarchitecture-h2020.eu/', '.', 'Morton', ',', 'Timothy', '.', '[', 'i', ']', 'Hyperobjects', ':', 'philosophy', 'and', 'ecology', 'after', 'the', 'end', 'of', 'the', 'world', '.', '[', 'i', ']', 'Minneapolis', ':', 'University', 'of', 'Minnesota', 'Press', ',', '2014', '.', 'Serres', ',', 'Michael', '.', '[', 'i', ']', 'Genesis', '.', '[', 'i', ']', 'Ann', 'Arbor', ':', 'Univ', '.', 'of', 'Michigan', 'Press', ',', '1996', '.', 'Glossary', '[', 'b', ']', 'Animal', 'machine', '[', 'b', ']', 'or', 'Bête', 'machine', ',', 'is', 'a', 'philosophical', 'notion', 'from', 'Descartes', 'which', 'implied', 'the', 'fundamental', 'difference', 'between', 'animals', 'and', 'humans', '(', 'cf', '.', \"L'homme\", 'Machine', ')', '.', 'Now', 'this', 'theory', 'is', 'strongly', 'challenged', '.', '[', 'b', ']', 'Componentization', '[', 'b', ']', 'is', 'the', 'process', 'of', 'atomizing', '(', 'breaking', 'down', ')', 'resources', 'into', 'separate', 'reusable', 'packages', 'that', 'can', 'be', 'easily', 'recombined', '.', 'Componentization', 'is', 'the', 'most', 'important', 'feature', 'of', '(', 'open', ')', 'knowledge', 'development', 'as', 'well', 'as', 'the', 'one', 'that', 'is', ',', 'at', 'present', ',', 'least', 'advanced', '.', '[', 'b', ']', 'Ecopoiesis', '[', 'b', ']', 'is', 'the', 'artificial', 'creation', 'of', 'a', 'sustainable', 'ecosystem', 'on', 'a', 'lifeless', 'planet', '.', '[', 'b', ']', 'Ectoplasm', '[', 'b', ']', 'is', 'a', 'supernatural', 'viscous', 'substance', 'that', 'supposedly', 'exudes', 'from', 'the', 'body', 'of', 'a', 'medium', 'during', 'a', 'spiritualistic', 'trance', 'and', 'forms', 'the', 'material', 'for', 'the', 'manifestation', 'of', 'spirits', '.', '[', 'b', ']', 'Hyperbody', '[', 'b', ']', 'is', 'a', 'living', 'system', 'that', 'exceeds', 'conventional', 'boundaries', 'and', 'definitions', 'of', 'existence', '.', 'For', 'example', ',', 'a', 'slime', 'mould', 'in', 'its', 'plasmodial', 'form', 'that', 'looks', 'like', 'a', 'membranous', 'slug', 'is', 'a', 'hyperbody', ';', 'it', 'is', 'formed', 'by', 'the', 'merging', 'of', 'many', 'individual', 'cells', 'to', 'form', 'a', 'single', ',', 'coordinated', 'giant', 'cell', '.', '[', 'b', ']', 'Hypercomplexity', '[', 'b', ']', 'is', 'an', 'organizational', 'condition', 'that', 'is', 'founded', 'on', 'the', 'principles', 'of', 'complexity', 'from', 'which', 'new', 'levels', 'of', 'order', 'arise', 'from', 'interactions', 'between', 'components', ',', 'but', 'that', 'exceeds', 'a', 'classical', 'understanding', 'of', 'complex', 'systems', 'through', 'their', 'scale', ',', 'heterogeneity', ',', 'distribution', 'and', 'capacity', 'to', 'transform', 'their', 'surroundings', '.', '[', 'b', ']', 'Hyperobjects', '[', 'b', ']', 'are', 'entities', 'of', 'such', 'vast', 'temporal', 'and', 'spatial', 'dimensions', 'that', 'they', 'can', 'not', 'be', 'perceived', 'in', 'their', 'entirety', 'and', 'defeat', 'traditional', 'ideas', 'about', 'the', 'discreteness', 'and', 'certainty', 'associated', 'with', 'individual', 'bodies', '.', '[', 'b', ']', 'Katabatic', '[', 'b', ']', 'flows', 'are', 'wind', 'currents', '.', '[', 'b', ']', 'Microbial', 'Fuel', 'Cell', '[', 'b', ']', 'is', 'a', 'metabolically', 'powered', 'apparatus', 'that', 'under', 'anaerobic', 'conditions', ',', 'converts', 'organic', 'matter', 'into', 'electricity', ',', 'fresh', 'water', 'and', 'oxygen', '.', '[', 'b', ']', 'Photobioreactor', '[', 'b', ']', 'is', 'a', 'system', 'that', 'uses', 'the', 'ability', 'of', 'micro-organisms', 'to', 'convert', 'light', 'and', 'carbon', 'dioxide', 'into', 'biomass', ',', 'like', 'sugars', ',', 'alcohol', 'and', 'cellulose', '.', '[', 'b', ']', 'Scrying', '[', 'b', ']', 'is', 'reading', 'the', 'future', 'against', 'the', 'present', 'by', 'using', 'unstable', 'images', 'produced', 'by', 'reflective', 'surfaces', '.'], 'ECO-SWARAJ': ['Eco-swaraj', 'Ashish', 'Kothari', 'In', 'response', 'to', 'the', 'abysmal', 'socio-economic', 'inequities', 'and', 'catastrophic', 'ecological', 'collapse', 'we', 'are', 'witnessing', 'globally', ',', 'powerful', 'resistance', 'and', 'alternative', 'movements', 'are', 'emerging', 'around', 'the', 'world', '.', 'These', 'are', 'articulating', 'and', 'promoting', 'practices', 'and', 'worldviews', 'relating', 'to', 'achieving', 'human', 'and', 'planetary', 'wellbeing', 'in', 'just', 'and', 'sustainable', 'ways', '.', 'Some', 'of', 'these', 'are', 're-affirmations', 'of', 'continuing', 'lifestyles', 'and', 'livelihoods', 'that', 'have', 'lived', 'in', 'relative', 'harmony', 'with', 'the', 'earth', 'for', 'millennia', 'or', 'centuries', '.', 'Others', 'are', 'new', 'initiatives', 'emerging', 'from', 'resistance', 'movements', 'against', 'the', 'destructive', 'nature', 'of', 'capitalism', ',', 'industrialism', ',', 'patriarchy', ',', 'statism', ',', 'and', 'other', 'forms', 'of', 'power', 'concentration', '.', 'Though', 'incredibly', 'diverse', 'in', 'their', 'settings', 'and', 'processes', ',', 'these', 'initiatives', 'display', 'some', 'common', 'features', 'that', 'enable', 'the', 'emergence', 'of', 'a', 'general', 'set', 'of', 'principles', 'and', 'values', ',', 'forming', 'a', 'broad', 'ideological', 'framework', ',', 'that', 'may', 'be', 'applicable', 'beyond', 'the', 'specific', 'sites', 'where', 'they', 'are', 'operational', '.', 'One', 'of', 'these', 'features', 'is', 'the', 'assertion', 'of', 'autonomy', ';', 'or', 'self-governance', ';', 'or', 'self-determination', '.', 'This', 'is', 'most', 'prominently', 'articulated', 'in', 'numerous', 'movements', 'of', 'indigenous', 'peoples', 'around', 'the', 'world', ',', 'culminating', 'globally', 'in', 'the', 'United', 'Nations', 'Declaration', 'of', 'the', 'Rights', 'of', 'Indigenous', 'Peoples', '.', 'The', 'Zapatista', 'and', 'Kurdish', 'autonomy', 'movements', 'are', 'also', 'based', 'on', 'the', 'principle', 'of', 'autonomy', '.', 'One', 'such', 'a', 'framework', 'that', 'has', 'emerged', 'from', 'grassroots', 'experience', 'in', 'India', ',', 'with', 'significant', 'global', 'resonance', ',', 'is', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', '.', 'The', 'term', '[', 'i', ']', 'swaraj', '[', 'i', ']', ',', 'simplistically', 'translated', 'as', 'self-rule', ',', 'stems', 'from', 'ancient', 'Indian', 'notions', 'and', 'practices', 'of', 'people', 'being', 'involved', 'in', 'decision-making', 'in', 'local', 'assemblies', '.', 'It', 'became', 'popular', 'and', 'widely', 'articulated', 'during', 'India', '’', 's', 'Independence', 'struggle', 'against', 'the', 'British', 'colonial', 'power', ',', 'but', 'it', 'is', 'important', 'to', 'realize', 'that', 'its', 'use', 'to', 'mean', '‘', 'national', 'independence', '’', 'is', 'a', 'very', 'limited', 'interpretation', '.', 'MK', 'Gandhi', '[', '1', ']', ',', 'in', 'fact', ',', 'in', 'numerous', 'writings', 'including', 'in', 'particular', '[', 'i', ']', 'Hind', 'Swaraj', '[', 'i', ']', ',', 'attempted', 'to', 'give', 'it', 'a', 'much', 'deeper', 'and', 'wider', 'meaning', '.', 'Encompassing', 'individual', 'to', 'community', 'to', 'human', 'autonomy', 'and', 'freedom', ',', 'integrally', 'linking', 'to', 'the', 'ethics', 'of', 'responsibility', 'towards', 'others', '(', 'including', 'the', 'rest', 'of', 'nature', ')', ',', 'and', 'to', 'the', 'spiritual', 'deepening', 'necessary', 'for', 'ethically', 'just', 'and', 'self-restrained', 'behaviour', '[', '2', ']', '.', 'Autonomy', 'and', 'Self-rule', 'Equally', ',', 'though', ',', 'the', 'notion', 'of', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'emerges', 'from', 'grassroots', 'praxis', '[', '3', ']', '.', 'This', 'is', 'illustrated', 'in', 'the', 'following', 'examples', 'from', 'three', 'communities', 'in', 'different', 'parts', 'of', 'India', ':', '1', '.', '[', 'i', ']', '‘', 'Our', 'government', 'is', 'in', 'Mumbai', 'and', 'Delhi', ',', 'but', 'we', 'are', 'the', 'government', 'in', 'our', 'village', '’', '[', 'i', ']', ',', 'Mendha-Lekha', 'village', ',', 'Maharashtra', '.', '[', '4', ']', 'The', 'village', 'of', 'Mendha-Lekha', ',', 'in', 'Gadchiroli', 'district', 'of', 'Maharashtra', 'state', ',', 'has', 'a', 'population', 'of', 'about', 'five', 'hundred', 'Gond', '[', 'i', ']', 'Adivasi', '[', 'i', ']', 'people', ',', 'indigenous', 'people', 'who', 'in', 'India', 'are', 'also', 'called', '‘', 'tribals', '’', '.', 'About', 'thirty', 'years', 'ago', 'these', 'people', 'were', 'part', 'of', 'a', 'resistance', 'movement', 'against', 'a', 'large', 'dam', 'that', 'would', 'have', 'displaced', 'them', 'and', 'submerged', 'their', 'forests', '.', 'This', 'mobilisation', 'also', 'led', 'them', 'to', 'consider', 'forms', 'of', 'organisation', 'that', 'could', 'help', 'deal', 'with', 'other', 'problems', 'and', 'issues', '.', 'They', 'established', 'their', '‘', 'gram', 'sabha', '’', '(', 'village', 'assembly', ')', 'as', 'the', 'primary', 'organ', 'of', 'decision-making', ',', 'and', 'after', 'considerable', 'discussion', 'adopted', 'the', 'principle', 'of', 'consensus', '.', 'They', 'realised', 'that', 'voting', 'and', 'the', '[', 'i', ']', 'majoritarianism', '[', 'i', ']', 'that', 'comes', 'with', 'it', 'can', 'be', 'detrimental', 'to', 'village', 'unity', 'and', 'the', 'interests', 'of', 'minorities', '.', 'The', 'villagers', 'do', 'not', 'allow', 'any', 'government', 'agency', 'or', 'politicians', 'to', 'take', 'decisions', 'on', 'their', 'behalf', ',', 'nor', 'may', 'a', 'village', 'or', 'tribal', 'chief', 'do', 'so', 'on', 'his/her', 'own', '.', 'This', 'is', 'part', 'of', 'a', '‘', 'tribal', 'self-rule', '’', 'campaign', 'underway', 'in', 'some', 'parts', 'of', 'India', ',', 'though', 'few', 'villages', 'have', 'managed', 'to', 'achieve', 'complete', 'self-rule', 'as', 'it', 'is', 'a', 'process', 'that', 'requires', 'sustained', 'effort', ',', 'natural', 'leadership', ',', 'and', 'the', 'ability', 'to', 'resolve', 'disputes', '–', 'features', 'that', 'are', 'not', 'common', '.', 'Both', 'in', 'Mendha-Lekha', 'and', 'at', 'several', 'other', 'sites', ',', 'communities', 'are', 'now', 'also', 'using', 'the', 'recent', 'legislation', 'that', 'recognises', 'their', 'communal', 'rights', 'to', 'govern', 'and', 'use', 'forests', ',', 'along', 'with', 'constitutional', 'provisions', 'of', 'decentralisation', ',', 'to', 'assert', 'varying', 'levels', 'of', '[', 'i', ']', 'swaraj', '[', 'i', ']', '.', '2', '.', '[', 'i', ']', '‘', 'These', 'hills', 'and', 'forests', 'belong', 'to', 'Niyamraja', ',', 'they', 'are', 'the', 'basis', 'of', 'our', 'survival', 'and', 'livelihoods', ',', 'we', 'will', 'not', 'allow', 'any', 'company', 'to', 'take', 'them', 'away', 'from', 'us', '’', '[', 'i', ']', ',', 'Dongria', 'Kondh', 'adivasis', '(', 'indigenous', 'people', ')', ',', 'Odisha', '.', 'The', 'ancient', 'indigenous', '[', 'i', ']', 'adivasi', '[', 'i', ']', 'group', 'of', 'Dongria', 'Kondh', ',', 'was', 'catapulted', 'into', 'national', 'and', 'global', 'limelight', 'when', 'the', 'UK-based', 'transnational', 'corporation', '(', 'TNC', ')', 'Vedanta', 'proposed', 'to', 'mine', 'bauxite', 'in', 'the', 'hills', 'where', 'they', 'live', '.', 'The', 'Dongria', 'Kondh', 'pointed', 'out', 'that', 'these', 'hills', 'were', 'their', 'sacred', 'territory', ',', 'and', 'also', 'crucial', 'for', 'their', 'livelihoods', 'and', 'cultural', 'existence', '.', 'When', 'the', 'state', 'gave', 'its', 'permission', 'for', 'the', 'corporation', 'to', 'begin', 'mining', ',', 'the', 'Dongria', 'Kondh', ',', 'supported', 'by', 'civil', 'society', 'groups', ',', 'took', 'the', 'matter', 'to', 'various', 'levels', 'of', 'government', ',', 'the', 'courts', ',', 'and', 'even', 'the', 'shareholders', 'of', 'Vedanta', 'Corporation', 'in', 'London', '.', 'The', 'Indian', 'Supreme', 'Court', 'ruled', 'that', 'as', 'a', 'culturally', 'important', 'site', 'for', 'the', 'Dongria', 'Kondh', ',', 'the', 'government', 'required', 'the', 'peoples', '’', 'approval', '.', 'This', 'is', 'a', 'crucial', 'order', 'that', 'established', 'the', 'right', 'of', 'consent', '(', 'or', 'rejection', ')', 'to', 'affected', 'communities', ',', 'somewhat', 'akin', 'to', 'the', 'global', 'indigenous', 'peoples', '’', 'demand', 'for', '‘', 'free', 'and', 'prior', 'informed', 'consent', '’', '(', 'FPIC', ')', 'now', 'enshrined', 'in', 'the', 'UN', 'Declaration', 'on', 'the', 'Rights', 'of', 'Indigenous', 'Peoples', '.', 'At', 'village', 'assemblies', 'that', 'were', 'subsequently', 'held', ',', 'the', 'Dongria', 'Kondh', 'unanimously', 'rejected', 'the', 'mining', 'proposal', 'and', 'have', 'since', 'then', 'stood', 'firm', 'against', 'renewed', 'efforts', 'to', 'convince', 'them', 'otherwise', ',', 'despite', 'increased', 'armed', 'police', 'presence', 'and', 'intimidation', 'tactics', 'by', 'the', 'state', '.', '3', '.', '[', 'i', ']', '‘', 'Seeds', 'are', 'the', 'core', 'of', 'our', 'identity', ',', 'our', 'culture', ',', 'our', 'livelihoods', ',', 'they', 'are', 'our', 'heritage', 'and', 'no', 'government', 'agency', 'or', 'corporation', 'can', 'control', 'them', '’', '[', 'i', ']', ',', 'Dalit', 'women', 'of', 'Deccan', 'Development', 'Society', ',', 'Telangana', '.', 'In', 'India', '’', 's', 'unique', 'caste', 'system', '(', 'mostly', 'amongst', 'Hindus', ')', ',', 'where', 'people', 'are', 'born', 'into', 'a', 'relatively', 'unchanging', 'hierarchical', 'ordering', 'of', 'castes', ',', 'Dalits', 'are', 'at', 'the', 'bottom', 'of', 'the', 'run', ',', 'oppressed', 'and', 'exploited', 'in', 'multiple', 'ways', '.', 'As', 'Dalit', 'women', ',', 'there', 'is', 'double', 'oppression', 'in', 'a', 'society', 'that', 'is', 'also', 'highly', 'patriarchal', '.', 'And', 'as', 'small', 'and', 'marginal', 'farmers', ',', 'they', 'are', 'also', 'economically', 'marginalised', '.', 'In', 'such', 'a', 'situation', ',', 'over', 'the', 'last', 'three', 'decades', ',', 'these', 'women', 'have', 'thrown', 'off', 'their', 'socially', 'oppressed', 'status', 'by', 'achieving', 'a', 'remarkable', 'revolution', 'in', 'sustainable', 'farming', ',', 'alternative', 'media', ',', 'and', 'collective', 'mobilisation', '.', 'Assisted', 'by', 'some', 'civil', 'society', 'activists', ',', 'they', 'collectivized', 'several', 'agricultural', 'operations', ',', 'revived', 'traditional', 'seed', 'diversity', ',', 'went', 'completely', 'organic', ',', 'created', 'grain', 'banks', 'for', 'the', 'poor', 'to', 'access', ',', 'linked', 'farmer', 'producers', 'to', 'nearby', 'consumers', '(', 'through', 'a', 'healthy', 'foods', 'restaurant', 'in', 'a', 'nearby', 'town', ')', ',', 'fought', 'for', 'land', 'rights', 'for', 'women', ',', 'took', 'up', 'an', 'influential', 'role', 'in', 'the', 'local', 'Agricultural', 'Science', 'Centre', '(', 'a', 'government', 'set-up', ')', ',', 'and', 'in', 'many', 'other', 'ways', 'achieved', 'food', 'sovereignty', 'and', 'security', '.', 'Thus', 'empowered', ',', 'they', 'also', 'set', 'up', 'a', 'community', 'radio', 'station', 'and', 'a', 'filmmaking', 'unit', ',', 'to', 'generate', 'their', 'own', 'media', 'content', '.', 'As', 'part', 'of', 'several', 'national', 'and', 'global', 'networks', ',', 'they', 'have', 'also', 'participated', 'in', 'policy', 'forums', 'and', 'civil', 'society', 'exchanges', '.', 'Where', 'once', 'they', 'were', 'shunned', 'as', 'Dalits', ',', 'marginalised', 'as', 'women', ',', 'and', 'poverty-stricken', 'as', 'marginal', 'farmers', 'with', 'few', 'productive', 'assets', ',', 'they', 'are', 'now', 'assertive', ',', 'self-confident', 'controllers', 'of', 'their', 'own', 'destiny', ',', 'advocates', 'for', 'local', 'to', 'global', 'policy', 'change', ',', 'and', 'path', 'breakers', 'in', 'many', 'other', 'respects', '.', 'These', 'and', 'numerous', 'other', 'examples', 'across', 'India', ',', 'including', 'in', 'urban', 'areas', 'such', 'as', 'the', 'movements', 'for', 'the', '‘', 'right', 'to', 'the', 'city', '’', ',', 'like', 'participatory', 'budgeting', ',', 'or', '[', 'i', ']', 'area', 'sabha', '[', 'i', ']', '(', 'neighbourhood', 'assembly', ')', 'empowerment', 'as', 'an', 'urban', 'parallel', 'to', '[', 'i', ']', 'gram', 'sabha', '[', 'i', ']', '(', 'village', 'assembly', ')', 'self-governance', ',', 'show', 'the', 'potential', 'of', 'eco-', '[', 'i', ']', 'swaraj', '[', 'I', ']', '.', '[', '5', ']', 'Practices', 'of', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', '(', 'as', 'also', 'others', 'in', 'the', 'world', '[', '6', ']', ')', 'display', 'an', 'approach', 'that', 'respects', 'the', 'limits', 'of', 'the', 'Earth', 'and', 'the', 'rights', 'of', 'other', 'species', ',', 'while', 'pursuing', 'the', 'core', 'values', 'of', 'social', 'justice', 'and', 'equity', '.', 'With', 'its', 'strong', 'democratic', 'and', 'egalitarian', 'impulse', ',', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'seeks', 'to', 'empower', 'every', 'person', 'to', 'be', 'a', 'part', 'of', 'decision-making', 'and', 'requires', 'a', 'holistic', 'vision', 'of', 'human', 'wellbeing', '-', 'that', 'encompasses', 'physical', ',', 'material', ',', 'socio-cultural', ',', 'intellectual', ',', 'and', 'spiritual', 'dimensions', '.', 'Instead', 'of', 'states', 'and', 'corporations', ',', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'places', 'collectives', 'and', 'communities', 'at', 'the', 'centre', 'of', 'governance', 'and', 'economy', '.', 'Eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'is', 'grounded', 'in', 'real-life', 'initiatives', 'across', 'the', 'Indian', 'subcontinent', ',', 'encompassing', 'sustainable', 'farming', ',', 'fisheries', 'and', 'pastoralism', ',', 'food', 'and', 'water', 'sovereignty', ',', 'decentralized', 'energy', 'production', ',', 'direct', 'local', 'governance', ',', 'community', 'health', ',', 'alternative', 'learning', 'and', 'education', ',', 'community-controlled', 'media', 'and', 'communications', ',', 'localization', 'of', 'economies', ',', 'gender', 'and', 'caste', 'justice', ',', 'rights', 'of', 'differently', 'abled', 'and', 'multiple', 'sexualities', ',', 'and', 'many', 'others', '.', 'Radical', 'Ecological', 'Democracy', 'Based', 'on', 'such', 'grassroots', 'experience', 'and', 'interactions', 'with', 'activist-thinkers', 'and', 'practitioners', 'across', 'India', ',', 'a', 'conceptual', 'framework', 'called', 'Radical', 'Ecological', 'Democracy', '(', 'RED', ')', 'has', 'emerged', 'in', 'the', 'last', 'few', 'years', 'as', 'a', 'somewhat', 'more', 'systematic', 'or', 'structured', 'reworking', 'of', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', '.', 'While', 'it', 'arose', 'in', 'India', ',', 'it', 'quickly', 'found', 'resonance', 'in', 'many', 'other', 'parts', 'of', 'the', 'world', 'as', 'part', 'of', 'a', 'process', 'of', 'generating', 'Peoples', '’', 'Sustainability', 'Treaties', 'for', 'the', 'Rio+20', 'Conference', '.', '[', '7', ']', 'Eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'or', 'RED', 'encompasses', 'the', 'following', 'five', 'interlocking', 'spheres', '(', 'thematic', 'composites', 'of', 'key', 'elements', ')', ',', 'which', 'have', 'evolved', 'through', 'a', 'process', 'of', 'bringing', 'together', 'alternative', 'initiatives', 'across', 'India', 'called', 'Vikalp', 'Sangam', '(', 'Alternatives', 'Confluence', ')', ',', 'begun', 'in', '2014', '[', '8', ']', ':', '[', 'b', ']', 'Ecological', 'wisdom', 'and', 'resilience', '[', 'b', ']', ':', 'Reviving', 'or', 'strengthening', 'the', 'foundational', 'belief', 'in', 'humanity', 'being', 'part', 'of', 'nature', ',', 'and', 'the', 'intrinsic', 'right', 'of', 'the', 'rest', 'of', 'nature', 'to', 'thrive', 'in', 'all', 'its', 'diversity', 'and', 'complexity', ',', 'promoting', 'the', 'conservation', 'and', 'resilience', 'of', 'nature', '(', 'ecosystems', ',', 'species', ',', 'functions', ',', 'and', 'cycles', ')', '.', '[', 'b', ']', 'Social', 'well-being', 'and', 'justice', '[', 'b', ']', ':', 'Moving', 'towards', 'lives', 'that', 'are', 'fulfilling', 'and', 'satisfactory', 'physically', ',', 'socially', ',', 'culturally', ',', 'and', 'spiritually', ';', 'with', 'equity', 'in', 'socio-economic', 'and', 'political', 'entitlements', ',', 'benefits', ',', 'rights', 'and', 'responsibilities', 'across', 'gender', ',', 'class', ',', 'caste', ',', 'age', ',', 'ethnicities', ',', '‘', 'able', '’', 'ities', ',', 'sexualities', ',', 'and', 'other', 'current', 'divisions', ';', 'and', 'an', 'ongoing', 'attempt', 'to', 'balance', 'collective', 'interests', 'and', 'individual', 'freedoms', ';', 'so', 'that', 'peace', 'and', 'harmony', 'are', 'ensured', '.', '[', 'b', ']', 'Direct', 'or', 'radical', 'political', 'democracy', '[', 'b', ']', ':', 'Establishing', 'processes', 'of', 'decision-making', 'power', 'at', 'the', 'smallest', 'unit', 'of', 'human', 'settlement', '(', 'rural', 'or', 'urban', ')', ',', 'in', 'which', 'every', 'human', 'has', 'the', 'right', ',', 'capacity', 'and', 'opportunity', 'to', 'take', 'part', '.', 'From', 'these', 'basic', 'units', 'outwards', 'growth', 'is', 'envisioned', 'to', 'larger', 'levels', 'of', 'governance', 'that', 'are', 'accountable', 'and', 'answerable', 'to', 'these', 'basic', 'units', '.', 'Political', 'decision-making', 'at', 'larger', 'levels', 'is', 'taken', 'by', 'ecoregional', 'or', 'biocultural', 'regional', 'institutions', ',', 'which', 'respect', 'ecological', 'and', 'cultural', 'linkages', 'and', 'boundaries', '(', 'and', 'therefore', 'challenge', 'current', 'political', 'boundaries', ',', 'including', 'those', 'of', 'nation-states', ')', '.', 'The', 'role', 'of', 'the', 'state', 'eventually', 'becomes', 'minimal', 'and', 'is', 'limited', 'to', 'facilitating', 'the', 'connection', 'of', 'peoples', 'and', 'initiatives', 'across', 'larger', 'landscapes', '.', 'It', 'carryies', 'out', 'welfare', 'measures', 'only', 'till', 'the', 'time', 'the', 'basic', 'units', 'of', 'direct', 'and', 'ecoregional', 'democracy', 'are', 'not', 'able', 'to', 'do', 'so', '.', '[', 'b', ']', 'Economic', 'democracy', '[', 'b', ']', ':', 'Establishing', 'or', 'strenthening', 'processes', 'in', 'which', 'local', 'communities', 'including', 'producers', 'and', 'consumers', '–', 'often', 'combined', 'in', 'one', 'word', 'as', '[', 'i', ']', 'prosumers', '[', 'i', ']', '–', 'have', 'control', 'over', 'the', 'means', 'of', 'production', ',', 'distribution', ',', 'exchange', ',', 'and', 'markets', '.', 'Open', 'localization', 'is', 'a', 'key', 'principle', ',', 'in', 'which', 'the', 'local', 'regional', 'economy', 'provides', 'for', 'all', 'basic', 'needs', '.', 'Dependence', 'on', 'global', 'trade', 'is', 'minimised', ',', 'without', 'falling', 'into', 'the', 'trap', 'of', 'xenophobic', 'closure', 'of', 'boundaries', 'to', '‘', 'outsiders', '’', '(', 'such', 'as', 'what', 'we', 'see', 'in', 'some', 'parts', 'of', 'Europe', 'that', 'are', 'anti-immigrants', ')', '.', 'Larger', 'trade', 'and', 'exchange', ',', 'if', 'and', 'where', 'necessary', ',', 'is', 'built', 'on', '–', 'and', 'safeguards', '–', 'this', 'local', 'self-reliance', '.', 'Nature', ',', 'natural', 'resources', 'and', 'other', 'important', 'elements', 'that', 'feed', 'into', 'the', 'economy', ',', 'are', 'governed', 'as', 'the', 'commons', '.', 'Private', 'property', 'is', 'minimized', 'or', 'disappears', ',', 'non-monetized', 'relations', 'of', 'caring', 'and', 'sharing', 'regain', 'their', 'central', 'importance', 'and', 'indicators', 'are', 'predominantly', 'qualitative', ',', 'focusing', 'on', 'basic', 'needs', 'and', 'well-being', '.', '[', 'b', ']', 'Cultural', 'and', 'knowledge', 'plurality', '[', 'b', ']', ':', 'Promoting', 'processes', 'in', 'which', 'diversity', 'is', 'a', 'key', 'principle', ';', 'knowledge', 'and', 'its', 'generation', ',', 'use', 'and', 'transmission', 'is', 'part', 'of', 'the', 'public', 'domain', 'or', 'commons', ';', 'innovation', 'is', 'democratically', 'generated', 'and', 'there', 'are', 'no', 'ivory', 'towers', 'of', '‘', 'expertise', '’', ';', 'learning', 'takes', 'place', 'as', 'part', 'of', 'life', 'rather', 'than', 'in', 'specialized', 'institutions', ';', 'and', 'individual', 'or', 'collective', 'pathways', 'of', 'ethical', 'and', 'spiritual', 'well', 'being', 'and', 'of', 'happiness', 'are', 'available', 'to', 'all', '.', 'Seen', 'as', 'a', 'set', 'of', 'petals', 'in', 'a', 'flower', '(', 'see', 'Figure', 'below', ')', ',', 'the', 'core', 'or', 'bud', 'where', 'they', 'all', 'intersect', 'forms', 'a', 'set', 'of', 'values', 'or', 'principles', ',', 'which', 'too', 'emerges', 'as', 'a', 'crucial', 'part', 'of', 'alternative', 'initiatives', 'of', 'the', 'kind', 'mentioned', 'above', '.', 'These', 'values', ',', 'such', 'as', 'equality', 'and', 'equity', ',', 'respect', 'for', 'all', 'life', ',', 'diversity', 'and', 'pluralism', ',', 'balancing', 'the', 'collective', 'and', 'the', 'individual', ',', 'can', 'also', 'be', 'seen', 'as', 'the', 'possible/ideal', 'ethical', 'or', 'spiritual', 'foundation', 'of', 'RED', 'societies', ',', 'or', 'the', 'worldview', '(', 's', ')', 'that', 'its', 'members', 'hold', '.', 'Figure', '1', '-', 'Spheres', 'of', 'alternative', 'transformation', '(', '[', 'i', ']', 'Note', ':', 'the', 'topics', 'mentioned', 'in', 'the', 'overlapping', 'areas', 'are', 'only', 'indicative', ',', 'not', 'exhaustive', '[', 'i', ']', ')', 'An', 'evolving', 'worldview', 'The', 'broad', 'components', 'and', 'values', 'of', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'have', 'been', 'under', 'discussion', 'across', 'India', 'through', 'the', 'Vikalp', 'Sangam', '(', 'Alternatives', 'Confluence', ')', 'process', '.', 'This', 'process', 'brings', 'together', 'a', 'diverse', 'set', 'of', 'actors', 'from', 'communities', ',', 'civil', 'society', ',', 'and', 'various', 'professions', 'who', 'are', 'involved', 'in', 'alternative', 'initiatives', 'across', 'all', 'sectors', '.', 'A', 'series', 'of', 'regional', 'and', 'thematic', 'confluences', 'that', 'began', 'in', '2015', ',', 'enable', 'participants', 'to', 'share', 'experiences', ',', 'learn', 'from', 'each', 'other', ',', 'build', 'alliances', 'and', 'collaboration', ',', 'and', 'jointly', 'envision', 'a', 'better', 'future', '.', 'Documenting', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'practices', 'in', 'the', 'form', 'of', 'stories', ',', 'videos', ',', 'case', 'studies', ',', 'and', 'other', 'forms', 'provides', 'a', 'further', 'means', 'of', 'disseminating', 'knowledge', ',', 'and', 'spreading', 'inspiration', 'for', 'further', 'transformation', ',', 'through', 'a', 'dedicated', 'website', '[', '9', ']', ',', 'a', 'mobile', 'exhibition', ',', 'and', 'other', 'means', '.', 'In', '2012', ',', 'about', '20', 'civil', 'society', 'organizations', 'and', 'movements', 'worldwide', 'signed', 'onto', 'a', 'Peoples', '’', 'Sustainability', 'Treaty', 'on', 'Radical', 'Ecological', 'Democracy', 'as', 'part', 'of', 'the', 'parallel', 'people', '’', 's', 'process', 'at', 'the', 'Rio+20', 'Conference', 'in', 'Rio', 'de', 'Janeiro', '[', '10', ']', '.', 'Since', 'then', ',', 'a', 'discussion', 'list', 'has', 'kept', 'alive', 'the', 'dialogue', ',', 'and', 'opportunities', 'have', 'been', 'found', 'for', 'mutual', 'learning', 'with', 'approaches', 'like', 'de-growth', ',', 'ecofeminism', '[', '11', ']', ',', 'cooperative', 'societies', ',', 'and', 'social', 'and', 'solidarity', 'economies', ',', '[', 'i', ']', 'buen', 'vivir', '[', 'I', ']', '[', '12', ']', 'and', 'its', 'other', 'equivalents', 'in', 'Latin', 'America', ',', 'and', 'others', '.', 'A', 'website', 'launched', 'in', 'September', '2017', 'will', 'also', 'showcase', 'stories', 'and', 'perspectives', 'from', 'around', 'the', 'world', '[', '13', ']', '.', 'RED', 'or', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'is', 'not', 'a', 'blueprint', 'but', 'an', 'evolving', 'worldview', ',', 'finding', 'resonance', 'in', 'different', 'forms', 'and', 'different', 'names', 'in', 'different', 'parts', 'of', 'the', 'world', '.', 'It', 'is', 'also', 'the', 'basis', 'of', 'multiple', 'visions', 'of', 'the', 'future', '[', '14', ']', '.', 'In', 'its', 'very', 'process', 'of', 'democratic', 'grassroots', 'evolution', ',', 'it', 'forms', 'an', 'alternative', 'to', 'top-down', 'ideologies', 'and', 'formulations', ',', 'even', 'as', 'it', 'takes', 'on', 'board', 'the', 'relevant', 'elements', 'of', 'such', 'ideologies', '.', 'This', 'is', 'the', 'foundation', 'of', 'its', 'transformative', 'potential', '.', 'While', 'still', 'struggling', 'in', 'the', 'face', 'of', 'the', 'powerful', 'forces', 'of', 'capitalism', ',', 'stateism', '[', '15', ']', ',', 'patriarchy', ',', 'and', 'other', 'structures', 'of', 'inequity', 'and', 'exploitation', ',', 'alternative', 'approaches', 'like', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'and', 'RED', 'appear', 'to', 'be', 'gaining', 'ground', 'as', 'more', 'and', 'more', 'people', 'are', 'confronted', 'by', 'multiple', 'crises', 'and', 'searching', 'for', 'ways', 'out', '.', 'They', 'face', 'multiple', 'challenges', 'from', 'politically', 'and', 'economically', 'powerful', 'forces', 'whose', 'power', 'they', 'confront', ';', 'they', 'also', 'find', 'it', 'difficult', 'to', 'mobilise', 'a', 'public', 'that', 'has', 'been', 'seduced', 'by', 'the', 'promise', 'of', 'affluence', 'and', 'the', 'glitter', 'of', 'consumerism', ',', 'or', 'reduced', 'to', 'seemingnly', 'helpless', 'submission', 'by', 'repressive', 'states', 'and', 'corporations', '.', 'Nonetheless', ',', 'they', 'are', 'spreading', 'and', 'finding', 'resonance', '.', 'Multiple', 'uprisings', 'in', 'various', 'countries', 'and', 'regions', 'on', 'issues', 'such', 'as', 'state', 'repression', ',', 'corporate', 'impunity', ',', 'climate', 'crisis', ',', 'inequality', ',', 'racial', 'and', 'ethnic', 'conflicts', ',', 'landgrabbing', ',', 'dispossession', 'and', 'displacement', 'of', 'communities', 'in', 'the', 'name', 'of', '‘', 'development', '’', ',', 'are', 'only', 'the', 'more', 'visible', 'signs', 'of', 'this', '.', 'Quieter', ',', 'but', 'equally', 'important', ',', 'are', 'the', 'myriad', 'attempts', 'at', 'finding', 'equitable', ',', 'sustainable', 'solutions', 'to', 'problems', ',', 'some', 'examples', 'of', 'which', 'are', 'given', 'above', '.', 'Footnotes', '1', '.', 'Parel', ',', 'Anthony', '(', 'ed', ')', ',', '1997', ',', '[', 'i', ']', 'M.', 'K.', 'Gandhi', ':', 'Hind', 'Swaraj', 'and', 'Other', 'Writings', '[', 'i', ']', ',', 'Cambridge', 'University', 'Press', ',', 'Cambridge', '.', '2', '.', 'Some', 'of', 'the', 'understanding', 'of', '[', 'i', ']', 'swaraj', '[', 'i', ']', 'used', 'here', 'comes', 'from', 'the', 'ongoing', 'work', 'of', 'Aseem', 'Shrivastava', ',', 'including', '‘', 'The', 'Imperative', 'of', 'Prakritik', 'Swaraj', '’', ',', 'June', '2016', ',', 'unpublished', '.', '3', '.', 'It', 'is', 'important', 'to', 'recognize', 'that', 'the', 'term', '‘', 'eco-', '[', 'i', ']', 'swaraj', '[', 'i', ']', '’', 'is', 'not', 'used', 'by', 'the', 'peoples', 'in', 'these', 'initiatives', ',', 'who', 'all', 'speak', 'their', 'own', 'language', ';', 'the', 'term', 'is', 'a', 'composite', 'that', 'the', 'author', 'has', 'come', 'up', 'with', ',', 'integrating', 'the', 'more', 'commonly', 'used', 'term', '‘', 'swaraj', '’', 'with', 'a', 'focus', 'on', 'ecological', 'wisdom', 'and', 'integrity', '.', '4', '.', 'Kothari', ',', 'Ashish', 'and', 'Pallav', 'Das', ',', '2016', ',', 'Power', 'in', 'India', ':', 'Radical', 'pathways', ',', 'in', '[', 'i', ']', 'State', 'of', 'Power', '2016', ':', 'Democracy', ',', 'sovereignty', 'and', 'resistance', '[', 'i', ']', ',', 'Transnational', 'Institute', ',', 'https', ':', '//www.tni.org/stateofpower2016', '5', '.', 'See', 'www.vikalpsangam.org', '(', 'alias', 'www.alternativesindia.org', ')', 'for', 'several', 'hundred', 'examples', 'from', 'rural', 'and', 'urban', 'India', ';', 'and', 'a', 'newly', 'launched', 'site', ',', 'www.radicalecologicaldemocracy.org', 'for', 'examples', 'from', 'the', 'rest', 'of', 'the', 'world', '.', 'See', 'also', 'Demaria', ',', 'Federico', 'and', 'Ashish', 'Kothari', ',', '2017', ',', 'The', 'Post-Development', 'Dictionary', 'agenda', ':', 'paths', 'to', 'the', 'pluriverse', ',', '[', 'i', ']', 'Third', 'World', 'Quarterly', '[', 'i', ']', 'for', 'details', 'of', 'a', 'forthcoming', '[', 'i', ']', 'Post-Development', 'Dictionary', '[', 'i', ']', 'containing', 'nearly', '100', 'entries', 'on', 'alternatives', 'from', 'around', 'the', 'world', '.', '6', '.', 'Parallel', 'similar', 'initiatives', 'in', 'other', 'parts', 'of', 'the', 'world', 'include', '‘', 'oil', 'in', 'the', 'soil', '’', 'and', '‘', 'coal', 'in', 'the', 'hole', '’', ',', 'anti-pipeline', 'resistance', 'movements', 'in', 'the', 'Americas', 'and', 'Africa', ',', 'the', 'Zapatista', 'and', 'Kurdish', 'autonomy', 'regions', ',', 'indigenous', 'peoples', '’', 'territorial', 'rights', 'struggles', 'across', 'the', 'global', 'South', ',', 'agroecology', ',', 'commons', 'and', 'de-growth', 'movements', 'in', 'Europe', 'and', 'elsewhere', ',', 'and', 'many', 'others', '.', '7', '.', 'See', 'Kothari', ',', 'Ashish', '(', '2014', ')', '‘', 'Radical', 'Ecological', 'Democracy', ':', 'A', 'way', 'for', 'India', 'and', 'beyond', '’', ',', '[', 'i', ']', 'Development', '[', 'i', ']', '57', '(', '1', ')', ':', '36–45', ';', 'Shrivastava', ',', 'Aseem', 'and', 'Ashish', 'Kothari', '(', '2012', ')', '[', 'i', ']', 'Churning', 'the', 'Earth', ':', 'The', 'making', 'of', 'global', 'India', '[', 'i', ']', ',', 'New', 'Delhi', ':', 'Viking/Penguin', 'India', '.', 'See', 'also', 'www.radicalecologicaldemocracy.org', 'for', 'details', 'of', 'the', 'Peoples', '’', 'Sustainability', 'Treaties', 'process', 'for', 'the', 'Rio+20', 'Conference', '.', '8', '.', 'Adapted', 'from', '‘', 'In', 'Search', 'of', 'Alternatives', '’', ',', 'a', 'discussion', 'note', 'evolving', 'through', 'the', 'Vikalp', 'Sangam', 'process', '(', 'see', 'footnote', '5', ')', ',', 'available', 'at', ':', 'http', ':', '//www.vikalpsangam.org/about/the-search-for-alternatives-key-aspects-and-principles/', '.', 'For', 'information', 'on', 'the', 'Vikalp', 'Sangam', 'process', 'and', 'its', 'outputs', ',', 'pl', '.', 'see', 'http', ':', '//kalpavriksh.org/index.php/alternatives/alternatives-knowledge-center/353-vikalpsangam-coverage', '.', '9.', 'www.vikalpsangam.org', '10.', 'http', ':', '//www.radicalecologicaldemocracy.org/treaty/', '11', '.', 'An', 'approach', 'linking', 'feminism', 'with', 'ecological', 'perspectives', ',', 'advocating', 'the', 'rehealing', 'of', 'the', 'earth', 'by', 'reconnecting', 'humans', 'and', 'nature', 'that', 'have', 'been', 'split', 'by', 'patriarchy', '.', '12', '.', 'Broadly', 'translated', 'as', '‘', 'good', 'living', '’', ',', 'this', 'and', 'other', 'equivalent', 'terms', 'like', 'sumac', 'kawsay', 'are', 'from', 'indigenous', 'peoples', 'in', 'Latin', 'America', ',', 'encompassing', 'worldviews', 'based', 'on', 'collective', ',', 'mutually', 'respectful', 'living', 'amongst', 'humans', 'and', 'between', 'humans', 'and', 'the', 'rest', 'of', 'nature', '.', '13.', 'www.radicalecologicaldemocracy.org', '14', '.', 'For', 'one', 'example', 'see', 'Kothari', ',', 'Ashish', 'and', 'KJ', 'Joy', ',', 'In', 'press', ',', '‘', 'Looking', 'back', 'into', 'the', 'future', ':', 'India', ',', 'South', 'Asia', ',', 'and', 'the', 'world', 'in', '2100', '’', ',', 'in', 'Ashish', 'Kothari', 'and', 'KJ', 'Joy', ',', '[', 'i', ']', 'Alternative', 'Futures', ':', 'Unshackling', 'India', '[', 'i', ']', ',', 'Authors', 'UpFront', ',', 'Delhi', '.', '15', '.', 'A', 'system', 'in', 'which', 'the', 'state', 'concentrates', 'most', 'power', 'in', 'itself', '.', 'References', 'Demaria', ',', 'Federico', 'and', 'Ashish', 'Kothari', ',', '2017', ',', 'The', 'Post-Development', 'Dictionary', 'agenda', ':', 'paths', 'to', 'the', 'pluriverse', ',', '[', 'i', ']', 'Third', 'World', 'Quarterly', '[', 'i', ']', ',', 'DOI', ':', '10.1080/01436597.2017.1350821', 'Kothari', ',', 'Ashish', '(', '2014', ')', '‘', 'Radical', 'Ecological', 'Democracy', ':', 'A', 'way', 'for', 'India', 'and', 'beyond', '’', ',', '[', 'i', ']', 'Development', '[', 'i', ']', '57', '(', '1', ')', ':', '36–45', 'Kothari', ',', 'Ashish', 'and', 'Pallav', 'Das', ',', '2016', ',', 'Power', 'in', 'India', ':', 'Radical', 'pathways', ',', 'in', '[', 'i', ']', 'State', 'of', 'Power', '2016', ':', 'Democracy', ',', 'sovereignty', 'and', 'resistance', '[', 'i', ']', ',', 'Transnational', 'Institute', ',', 'https', ':', '//www.tni.org/stateofpower2016', 'Kothari', ',', 'Ashish', 'and', 'KJ', 'Joy', ',', 'In', 'press', ',', '‘', 'Looking', 'back', 'into', 'the', 'future', ':', 'India', ',', 'South', 'Asia', ',', 'and', 'the', 'world', 'in', '2100', '’', ',', 'in', 'Ashish', 'Kothari', 'and', 'KJ', 'Joy', ',', '[', 'i', ']', 'Alternative', 'Futures', ':', 'Unshackling', 'India', '[', 'i', ']', ',', 'Authors', 'UpFront', ',', 'Delhi', '.', 'Parel', ',', 'Anthony', '(', 'ed', ')', ',', '1997', ',', 'M.', 'K.', '[', 'i', ']', 'Gandhi', ':', 'Hind', 'Swaraj', 'and', 'Other', 'Writings', '[', 'i', ']', ',', 'Cambridge', 'University', 'Press', ',', 'Cambridge', '.', 'Shrivastava', ',', 'Aseem', 'and', 'Ashish', 'Kothari', '(', '2012', ')', '[', 'i', ']', 'Churning', 'the', 'Earth', ':', 'The', 'making', 'of', 'global', 'India', '[', 'i', ']', ',', 'New', 'Delhi', ':', 'Viking/Penguin', 'India', '.', 'Bio', 'Ashish', 'Kothari', 'is', 'a', 'researcher', 'and', 'activist', ',', 'working', 'on', 'development-environment', 'interface', ',', 'biodiversity', 'issues', ',', 'and', 'alternatives', 'to', 'development', '.', 'He', 'has', 'been', 'associated', 'with', 'peoples', \"'\", 'movements', 'like', 'Narmada', 'Bachao', 'Andolan', 'and', 'Beej', 'Bachao', 'Andolan', ',', 'and', 'doing', 'action', 'research', 'regarding', 'and', 'with', 'communities', 'in', 'various', 'parts', 'of', 'India', '.', 'A', 'founder', 'of', 'Indian', 'environmental', 'group', 'Kalpavriksh', ',', 'Ashish', 'taught', 'at', 'Indian', 'Institute', 'of', 'Public', 'Administration', ',', 'coordinated', 'India', '’', 's', 'National', 'Biodiversity', 'Strategy', 'and', 'Action', 'Plan', ',', 'served', 'on', 'Greenpeace', 'International', 'and', 'India', 'Boards', ',', 'helped', 'initiate', 'the', 'global', 'ICCA', 'Consortium', ',', 'and', 'chaired', 'an', 'IUCN', 'network', 'on', 'protected', 'areas', 'and', 'communities', '.', 'Ashish', 'has', '(', 'co', ')', 'authored', 'or', '(', 'co', ')', 'edited', 'over', '30', 'books', '(', 'including', '[', 'i', ']', 'Birds', 'in', 'our', 'Lives', '[', 'i', ']', ',', '[', 'i', ']', 'Churning', 'the', 'Earth', '[', 'i', ']', ',', 'and', 'forthcoming', '[', 'i', ']', 'Alternative', 'Futures', ':', 'Unshackling', 'India', ',', 'and', 'Pluriverse', ':', 'A', 'Post-Development', 'Dictionary', '[', 'i', ']', ')', '.', 'He', 'helps', 'coordinate', 'the', 'Vikalp', 'Sangam', 'process', 'in', 'India', ',', 'and', 'networks', 'with', 'movements', 'in', 'other', 'parts', 'of', 'the', 'world', 'on', 'ideas', 'and', 'practices', 'of', 'Radical', 'Ecological', 'Democracy', '(', 'RED', ')', '.', 'chikikothari', '@', 'gmail.com']}\n" + ] + } + ], + "source": [ + "print(corpus)" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "dict_keys(['RESURGENCE', 'ATATA', 'UNDECIDABILITY', 'TENSE', 'PRACTICAL-VISION', 'OTHERNESS', '!?', 'HOPE', 'LIQUID', 'ECO-SWARAJ'])\n" + ] + } + ], + "source": [ + "print(corpus.keys())" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# What do you want to query?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "i would like to know how relevant the" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "query = 'language'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "is for the" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "text = 'HOPE'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "thanks" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Term Frequency" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TF count: 0\n", + "Total number of words: 4067\n", + "TF - count/total: 0.0\n" + ] + } + ], + "source": [ + "tf_count = 0\n", + "\n", + "for word in corpus[text]:\n", + " if query == word:\n", + " tf_count += 1\n", + "\n", + "tf = tf_count/len(words)\n", + "\n", + "print('TF count:', tf_count)\n", + "print('Total number of words:', len(words))\n", + "print('TF - count/total:', tf_count/len(words))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Inverse Document Frequency" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Total number of documents: 10\n", + "documents/count 1.4285714285714286\n", + "IDF - log(documents/count) 0.3566749439387324\n" + ] + } + ], + "source": [ + "idf_count = 0\n", + "\n", + "for name, words in corpus.items():\n", + " if query in words:\n", + " idf_count += 1\n", + "\n", + "# print('count:', idf_count)\n", + "\n", + "idf = log(len(corpus)/idf_count)\n", + "\n", + "print('Total number of documents:', len(corpus))\n", + "print('documents/count', len(corpus)/idf_count)\n", + "print('IDF - log(documents/count)', log(len(corpus)/idf_count))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## TF-IDF: Term Frequency / Inverse Document Frequency" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "metadata": {}, + "outputs": [], + "source": [ + "tfidf_value = tf * idf" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "TF-IDF: 0.0006138983544556496\n" + ] + } + ], + "source": [ + "print('TF-IDF:', tfidf_value)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 4 +}