From c0bb77059e3c4afa47fe6bfebbf99e230a01992c Mon Sep 17 00:00:00 2001 From: Aleks Kissinger Date: Wed, 10 Jan 2018 09:40:41 +0100 Subject: added Doxyfile, Illustrator file for icon, and a 512x512 version --- Doxyfile | 2512 ++++++++++++++++++++++++++++++++++++++++++++++ images/tikzit.ai | 967 ++++++++++++++++++ images/tikzit48x48.png | Bin 2606 -> 2435 bytes images/tikzit512x512.png | Bin 0 -> 27019 bytes src/gui/tikzscene.cpp | 11 + 5 files changed, 3490 insertions(+) create mode 100644 Doxyfile create mode 100644 images/tikzit.ai create mode 100644 images/tikzit512x512.png diff --git a/Doxyfile b/Doxyfile new file mode 100644 index 0000000..039ed89 --- /dev/null +++ b/Doxyfile @@ -0,0 +1,2512 @@ +# Doxyfile 1.8.14 + +# This file describes the settings to be used by the documentation system +# doxygen (www.doxygen.org) for a project. +# +# All text after a double hash (##) is considered a comment and is placed in +# front of the TAG it is preceding. +# +# All text after a single hash (#) is considered a comment and will be ignored. +# The format is: +# TAG = value [value, ...] +# For lists, items can also be appended using: +# TAG += value [value, ...] +# Values that contain spaces should be placed between quotes (\" \"). + +#--------------------------------------------------------------------------- +# Project related configuration options +#--------------------------------------------------------------------------- + +# This tag specifies the encoding used for all characters in the config file +# that follow. The default is UTF-8 which is also the encoding used for all text +# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv +# built into libc) for the transcoding. See +# https://www.gnu.org/software/libiconv/ for the list of possible encodings. +# The default value is: UTF-8. + +DOXYFILE_ENCODING = UTF-8 + +# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by +# double-quotes, unless you are using Doxywizard) that should identify the +# project for which the documentation is generated. This name is used in the +# title of most generated pages and in a few other places. +# The default value is: My Project. + +PROJECT_NAME = TikZiT + +# The PROJECT_NUMBER tag can be used to enter a project or revision number. This +# could be handy for archiving the generated documentation or if some version +# control system is used. + +PROJECT_NUMBER = 2.0 + +# Using the PROJECT_BRIEF tag one can provide an optional one line description +# for a project that appears at the top of each page and should give viewer a +# quick idea about the purpose of the project. Keep the description short. + +PROJECT_BRIEF = "A GUI diagram editor for TikZ" + +# With the PROJECT_LOGO tag one can specify a logo or an icon that is included +# in the documentation. The maximum height of the logo should not exceed 55 +# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy +# the logo to the output directory. + +PROJECT_LOGO = images/tikzit48x48.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path +# into which the generated documentation will be written. If a relative path is +# entered, it will be relative to the location where doxygen was started. If +# left blank the current directory will be used. + +OUTPUT_DIRECTORY = ../tikzit.github.io/docs + +# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- +# directories (in 2 levels) under the output directory of each output format and +# will distribute the generated files over these directories. Enabling this +# option can be useful when feeding doxygen a huge amount of source files, where +# putting all generated files in the same directory would otherwise causes +# performance problems for the file system. +# The default value is: NO. + +CREATE_SUBDIRS = NO + +# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII +# characters to appear in the names of generated files. If set to NO, non-ASCII +# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode +# U+3044. +# The default value is: NO. + +ALLOW_UNICODE_NAMES = NO + +# The OUTPUT_LANGUAGE tag is used to specify the language in which all +# documentation generated by doxygen is written. Doxygen will use this +# information to generate all constant output in the proper language. +# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, +# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), +# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, +# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), +# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, +# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, +# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, +# Ukrainian and Vietnamese. +# The default value is: English. + +OUTPUT_LANGUAGE = English + +# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member +# descriptions after the members that are listed in the file and class +# documentation (similar to Javadoc). Set to NO to disable this. +# The default value is: YES. + +BRIEF_MEMBER_DESC = YES + +# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief +# description of a member or function before the detailed description +# +# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the +# brief descriptions will be completely suppressed. +# The default value is: YES. + +REPEAT_BRIEF = YES + +# This tag implements a quasi-intelligent brief description abbreviator that is +# used to form the text in various listings. Each string in this list, if found +# as the leading text of the brief description, will be stripped from the text +# and the result, after processing the whole list, is used as the annotated +# text. Otherwise, the brief description is used as-is. If left blank, the +# following values are used ($name is automatically replaced with the name of +# the entity):The $name class, The $name widget, The $name file, is, provides, +# specifies, contains, represents, a, an and the. + +ABBREVIATE_BRIEF = "The $name class" \ + "The $name widget" \ + "The $name file" \ + is \ + provides \ + specifies \ + contains \ + represents \ + a \ + an \ + the + +# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then +# doxygen will generate a detailed section even if there is only a brief +# description. +# The default value is: NO. + +ALWAYS_DETAILED_SEC = NO + +# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all +# inherited members of a class in the documentation of that class as if those +# members were ordinary class members. Constructors, destructors and assignment +# operators of the base classes will not be shown. +# The default value is: NO. + +INLINE_INHERITED_MEMB = NO + +# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path +# before files name in the file list and in the header files. If set to NO the +# shortest path that makes the file name unique will be used +# The default value is: YES. + +FULL_PATH_NAMES = YES + +# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. +# Stripping is only done if one of the specified strings matches the left-hand +# part of the path. The tag can be used to show relative paths in the file list. +# If left blank the directory from which doxygen is run is used as the path to +# strip. +# +# Note that you can specify absolute paths here, but also relative paths, which +# will be relative from the directory where doxygen is started. +# This tag requires that the tag FULL_PATH_NAMES is set to YES. + +STRIP_FROM_PATH = + +# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the +# path mentioned in the documentation of a class, which tells the reader which +# header file to include in order to use a class. If left blank only the name of +# the header file containing the class definition is used. Otherwise one should +# specify the list of include paths that are normally passed to the compiler +# using the -I flag. + +STRIP_FROM_INC_PATH = + +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but +# less readable) file names. This can be useful is your file systems doesn't +# support long names like on DOS, Mac, or CD-ROM. +# The default value is: NO. + +SHORT_NAMES = NO + +# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the +# first line (until the first dot) of a Javadoc-style comment as the brief +# description. If set to NO, the Javadoc-style will behave just like regular Qt- +# style comments (thus requiring an explicit @brief command for a brief +# description.) +# The default value is: NO. + +JAVADOC_AUTOBRIEF = NO + +# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first +# line (until the first dot) of a Qt-style comment as the brief description. If +# set to NO, the Qt-style will behave just like regular Qt-style comments (thus +# requiring an explicit \brief command for a brief description.) +# The default value is: NO. + +QT_AUTOBRIEF = NO + +# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a +# multi-line C++ special comment block (i.e. a block of //! or /// comments) as +# a brief description. This used to be the default behavior. The new default is +# to treat a multi-line C++ comment block as a detailed description. Set this +# tag to YES if you prefer the old behavior instead. +# +# Note that setting this tag to YES also means that rational rose comments are +# not recognized any more. +# The default value is: NO. + +MULTILINE_CPP_IS_BRIEF = NO + +# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the +# documentation from any documented member that it re-implements. +# The default value is: YES. + +INHERIT_DOCS = YES + +# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new +# page for each member. If set to NO, the documentation of a member will be part +# of the file/class/namespace that contains it. +# The default value is: NO. + +SEPARATE_MEMBER_PAGES = NO + +# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen +# uses this value to replace tabs by spaces in code fragments. +# Minimum value: 1, maximum value: 16, default value: 4. + +TAB_SIZE = 4 + +# This tag can be used to specify a number of aliases that act as commands in +# the documentation. An alias has the form: +# name=value +# For example adding +# "sideeffect=@par Side Effects:\n" +# will allow you to put the command \sideeffect (or @sideeffect) in the +# documentation, which will result in a user-defined paragraph with heading +# "Side Effects:". You can put \n's in the value part of an alias to insert +# newlines (in the resulting output). You can put ^^ in the value part of an +# alias to insert a newline as if a physical newline was in the original file. + +ALIASES = + +# This tag can be used to specify a number of word-keyword mappings (TCL only). +# A mapping has the form "name=value". For example adding "class=itcl::class" +# will allow you to use the command class in the itcl::class meaning. + +TCL_SUBST = + +# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources +# only. Doxygen will then generate output that is more tailored for C. For +# instance, some of the names that are used will be different. The list of all +# members will be omitted, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_FOR_C = NO + +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or +# Python sources only. Doxygen will then generate output that is more tailored +# for that language. For instance, namespaces will be presented as packages, +# qualified scopes will look different, etc. +# The default value is: NO. + +OPTIMIZE_OUTPUT_JAVA = NO + +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources. Doxygen will then generate output that is tailored for Fortran. +# The default value is: NO. + +OPTIMIZE_FOR_FORTRAN = NO + +# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL +# sources. Doxygen will then generate output that is tailored for VHDL. +# The default value is: NO. + +OPTIMIZE_OUTPUT_VHDL = NO + +# Doxygen selects the parser to use depending on the extension of the files it +# parses. With this tag you can assign which parser to use for a given +# extension. Doxygen has a built-in mapping, but you can override or extend it +# using this tag. The format is ext=language, where ext is a file extension, and +# language is one of the parsers supported by doxygen: IDL, Java, Javascript, +# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: +# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran: +# Fortran. In the later case the parser tries to guess whether the code is fixed +# or free formatted code, this is the default for Fortran type files), VHDL. For +# instance to make doxygen treat .inc files as Fortran files (default is PHP), +# and .f files as C (default is Fortran), use: inc=Fortran f=C. +# +# Note: For files without extension you can use no_extension as a placeholder. +# +# Note that for custom extensions you also need to set FILE_PATTERNS otherwise +# the files are not read by doxygen. + +EXTENSION_MAPPING = + +# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments +# according to the Markdown format, which allows for more readable +# documentation. See http://daringfireball.net/projects/markdown/ for details. +# The output of markdown processing is further processed by doxygen, so you can +# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in +# case of backward compatibilities issues. +# The default value is: YES. + +MARKDOWN_SUPPORT = YES + +# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up +# to that level are automatically included in the table of contents, even if +# they do not have an id attribute. +# Note: This feature currently applies only to Markdown headings. +# Minimum value: 0, maximum value: 99, default value: 0. +# This tag requires that the tag MARKDOWN_SUPPORT is set to YES. + +TOC_INCLUDE_HEADINGS = 0 + +# When enabled doxygen tries to link words that correspond to documented +# classes, or namespaces to their corresponding documentation. Such a link can +# be prevented in individual cases by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. +# The default value is: YES. + +AUTOLINK_SUPPORT = YES + +# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want +# to include (a tag file for) the STL sources as input, then you should set this +# tag to YES in order to let doxygen match functions declarations and +# definitions whose arguments contain STL classes (e.g. func(std::string); +# versus func(std::string) {}). This also make the inheritance and collaboration +# diagrams that involve STL classes more complete and accurate. +# The default value is: NO. + +BUILTIN_STL_SUPPORT = NO + +# If you use Microsoft's C++/CLI language, you should set this option to YES to +# enable parsing support. +# The default value is: NO. + +CPP_CLI_SUPPORT = NO + +# Set the SIP_SUPPORT tag to YES if your project consists of sip (see: +# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen +# will parse them like normal C++ but will assume all classes use public instead +# of private inheritance when no explicit protection keyword is present. +# The default value is: NO. + +SIP_SUPPORT = NO + +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES will make +# doxygen to replace the get and set methods by a property in the documentation. +# This will only work if the methods are indeed getting or setting a simple +# type. If this is not the case, or you want to show the methods anyway, you +# should set this option to NO. +# The default value is: YES. + +IDL_PROPERTY_SUPPORT = YES + +# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC +# tag is set to YES then doxygen will reuse the documentation of the first +# member in the group (if any) for the other members of the group. By default +# all members of a group must be documented explicitly. +# The default value is: NO. + +DISTRIBUTE_GROUP_DOC = NO + +# If one adds a struct or class to a group and this option is enabled, then also +# any nested class or struct is added to the same group. By default this option +# is disabled and one has to add nested compounds explicitly via \ingroup. +# The default value is: NO. + +GROUP_NESTED_COMPOUNDS = NO + +# Set the SUBGROUPING tag to YES to allow class member groups of the same type +# (for instance a group of public functions) to be put as a subgroup of that +# type (e.g. under the Public Functions section). Set it to NO to prevent +# subgrouping. Alternatively, this can be done per class using the +# \nosubgrouping command. +# The default value is: YES. + +SUBGROUPING = YES + +# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions +# are shown inside the group in which they are included (e.g. using \ingroup) +# instead of on a separate page (for HTML and Man pages) or section (for LaTeX +# and RTF). +# +# Note that this feature does not work in combination with +# SEPARATE_MEMBER_PAGES. +# The default value is: NO. + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions +# with only public data fields or simple typedef fields will be shown inline in +# the documentation of the scope in which they are defined (i.e. file, +# namespace, or group documentation), provided this scope is documented. If set +# to NO, structs, classes, and unions are shown on a separate page (for HTML and +# Man pages) or section (for LaTeX and RTF). +# The default value is: NO. + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or +# enum is documented as struct, union, or enum with the name of the typedef. So +# typedef struct TypeS {} TypeT, will appear in the documentation as a struct +# with name TypeT. When disabled the typedef will appear as a member of a file, +# namespace, or class. And the struct will be named TypeS. This can typically be +# useful for C code in case the coding convention dictates that all compound +# types are typedef'ed and only the typedef is referenced, never the tag name. +# The default value is: NO. + +TYPEDEF_HIDES_STRUCT = NO + +# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This +# cache is used to resolve symbols given their name and scope. Since this can be +# an expensive process and often the same symbol appears multiple times in the +# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small +# doxygen will become slower. If the cache is too large, memory is wasted. The +# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range +# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 +# symbols. At the end of a run doxygen will report the cache usage and suggest +# the optimal cache size from a speed point of view. +# Minimum value: 0, maximum value: 9, default value: 0. + +LOOKUP_CACHE_SIZE = 0 + +#--------------------------------------------------------------------------- +# Build related configuration options +#--------------------------------------------------------------------------- + +# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in +# documentation are documented, even if no documentation was available. Private +# class members and static file members will be hidden unless the +# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. +# Note: This will also disable the warnings about undocumented members that are +# normally produced when WARNINGS is set to YES. +# The default value is: NO. + +EXTRACT_ALL = NO + +# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will +# be included in the documentation. +# The default value is: NO. + +EXTRACT_PRIVATE = NO + +# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal +# scope will be included in the documentation. +# The default value is: NO. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be +# included in the documentation. +# The default value is: NO. + +EXTRACT_STATIC = NO + +# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined +# locally in source files will be included in the documentation. If set to NO, +# only classes defined in header files are included. Does not have any effect +# for Java sources. +# The default value is: YES. + +EXTRACT_LOCAL_CLASSES = YES + +# This flag is only useful for Objective-C code. If set to YES, local methods, +# which are defined in the implementation section but not in the interface are +# included in the documentation. If set to NO, only methods in the interface are +# included. +# The default value is: NO. + +EXTRACT_LOCAL_METHODS = NO + +# If this flag is set to YES, the members of anonymous namespaces will be +# extracted and appear in the documentation as a namespace called +# 'anonymous_namespace{file}', where file will be replaced with the base name of +# the file that contains the anonymous namespace. By default anonymous namespace +# are hidden. +# The default value is: NO. + +EXTRACT_ANON_NSPACES = NO + +# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all +# undocumented members inside documented classes or files. If set to NO these +# members will be included in the various overviews, but no documentation +# section is generated. This option has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_MEMBERS = NO + +# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all +# undocumented classes that are normally visible in the class hierarchy. If set +# to NO, these classes will be included in the various overviews. This option +# has no effect if EXTRACT_ALL is enabled. +# The default value is: NO. + +HIDE_UNDOC_CLASSES = NO + +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend +# (class|struct|union) declarations. If set to NO, these declarations will be +# included in the documentation. +# The default value is: NO. + +HIDE_FRIEND_COMPOUNDS = NO + +# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any +# documentation blocks found inside the body of a function. If set to NO, these +# blocks will be appended to the function's detailed documentation block. +# The default value is: NO. + +HIDE_IN_BODY_DOCS = NO + +# The INTERNAL_DOCS tag determines if documentation that is typed after a +# \internal command is included. If the tag is set to NO then the documentation +# will be excluded. Set it to YES to include the internal documentation. +# The default value is: NO. + +INTERNAL_DOCS = NO + +# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file +# names in lower-case letters. If set to YES, upper-case letters are also +# allowed. This is useful if you have classes or files whose names only differ +# in case and if your file system supports case sensitive file names. Windows +# and Mac users are advised to set this option to NO. +# The default value is: system dependent. + +CASE_SENSE_NAMES = NO + +# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with +# their full class and namespace scopes in the documentation. If set to YES, the +# scope will be hidden. +# The default value is: NO. + +HIDE_SCOPE_NAMES = NO + +# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will +# append additional text to a page's title, such as Class Reference. If set to +# YES the compound reference will be hidden. +# The default value is: NO. + +HIDE_COMPOUND_REFERENCE= NO + +# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of +# the files that are included by a file in the documentation of that file. +# The default value is: YES. + +SHOW_INCLUDE_FILES = YES + +# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each +# grouped member an include statement to the documentation, telling the reader +# which file to include in order to use the member. +# The default value is: NO. + +SHOW_GROUPED_MEMB_INC = NO + +# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include +# files with double quotes in the documentation rather than with sharp brackets. +# The default value is: NO. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the +# documentation for inline members. +# The default value is: YES. + +INLINE_INFO = YES + +# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the +# (detailed) documentation of file and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. +# The default value is: YES. + +SORT_MEMBER_DOCS = YES + +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief +# descriptions of file, namespace and class members alphabetically by member +# name. If set to NO, the members will appear in declaration order. Note that +# this will also influence the order of the classes in the class list. +# The default value is: NO. + +SORT_BRIEF_DOCS = NO + +# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the +# (brief and detailed) documentation of class members so that constructors and +# destructors are listed first. If set to NO the constructors will appear in the +# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. +# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief +# member documentation. +# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting +# detailed member documentation. +# The default value is: NO. + +SORT_MEMBERS_CTORS_1ST = NO + +# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy +# of group names into alphabetical order. If set to NO the group names will +# appear in their defined order. +# The default value is: NO. + +SORT_GROUP_NAMES = NO + +# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by +# fully-qualified names, including namespaces. If set to NO, the class list will +# be sorted only by class name, not including the namespace part. +# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. +# Note: This option applies only to the class list, not to the alphabetical +# list. +# The default value is: NO. + +SORT_BY_SCOPE_NAME = NO + +# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper +# type resolution of all parameters of a function it will reject a match between +# the prototype and the implementation of a member function even if there is +# only one candidate or it is obvious which candidate to choose by doing a +# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still +# accept a match between prototype and implementation in such cases. +# The default value is: NO. + +STRICT_PROTO_MATCHING = NO + +# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo +# list. This list is created by putting \todo commands in the documentation. +# The default value is: YES. + +GENERATE_TODOLIST = YES + +# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test +# list. This list is created by putting \test commands in the documentation. +# The default value is: YES. + +GENERATE_TESTLIST = YES + +# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug +# list. This list is created by putting \bug commands in the documentation. +# The default value is: YES. + +GENERATE_BUGLIST = YES + +# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) +# the deprecated list. This list is created by putting \deprecated commands in +# the documentation. +# The default value is: YES. + +GENERATE_DEPRECATEDLIST= YES + +# The ENABLED_SECTIONS tag can be used to enable conditional documentation +# sections, marked by \if ... \endif and \cond +# ... \endcond blocks. + +ENABLED_SECTIONS = + +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the +# initial value of a variable or macro / define can have for it to appear in the +# documentation. If the initializer consists of more lines than specified here +# it will be hidden. Use a value of 0 to hide initializers completely. The +# appearance of the value of individual variables and macros / defines can be +# controlled using \showinitializer or \hideinitializer command in the +# documentation regardless of this setting. +# Minimum value: 0, maximum value: 10000, default value: 30. + +MAX_INITIALIZER_LINES = 30 + +# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at +# the bottom of the documentation of classes and structs. If set to YES, the +# list will mention the files that were used to generate the documentation. +# The default value is: YES. + +SHOW_USED_FILES = YES + +# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This +# will remove the Files entry from the Quick Index and from the Folder Tree View +# (if specified). +# The default value is: YES. + +SHOW_FILES = YES + +# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces +# page. This will remove the Namespaces entry from the Quick Index and from the +# Folder Tree View (if specified). +# The default value is: YES. + +SHOW_NAMESPACES = YES + +# The FILE_VERSION_FILTER tag can be used to specify a program or script that +# doxygen should invoke to get the current version for each file (typically from +# the version control system). Doxygen will invoke the program by executing (via +# popen()) the command command input-file, where command is the value of the +# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided +# by doxygen. Whatever the program writes to standard output is used as the file +# version. For an example see the documentation. + +FILE_VERSION_FILTER = + +# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed +# by doxygen. The layout file controls the global structure of the generated +# output files in an output format independent way. To create the layout file +# that represents doxygen's defaults, run doxygen with the -l option. You can +# optionally specify a file name after the option, if omitted DoxygenLayout.xml +# will be used as the name of the layout file. +# +# Note that if you run doxygen from a directory containing a file called +# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE +# tag is left empty. + +LAYOUT_FILE = + +# The CITE_BIB_FILES tag can be used to specify one or more bib files containing +# the reference definitions. This must be a list of .bib files. The .bib +# extension is automatically appended if omitted. This requires the bibtex tool +# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. +# For LaTeX the style of the bibliography can be controlled using +# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the +# search path. See also \cite for info how to create references. + +CITE_BIB_FILES = + +#--------------------------------------------------------------------------- +# Configuration options related to warning and progress messages +#--------------------------------------------------------------------------- + +# The QUIET tag can be used to turn on/off the messages that are generated to +# standard output by doxygen. If QUIET is set to YES this implies that the +# messages are off. +# The default value is: NO. + +QUIET = NO + +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES +# this implies that the warnings are on. +# +# Tip: Turn warnings on while writing the documentation. +# The default value is: YES. + +WARNINGS = YES + +# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate +# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag +# will automatically be disabled. +# The default value is: YES. + +WARN_IF_UNDOCUMENTED = YES + +# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for +# potential errors in the documentation, such as not documenting some parameters +# in a documented function, or documenting parameters that don't exist or using +# markup commands wrongly. +# The default value is: YES. + +WARN_IF_DOC_ERROR = YES + +# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that +# are documented, but have no documentation for their parameters or return +# value. If set to NO, doxygen will only warn about wrong or incomplete +# parameter documentation, but not about the absence of documentation. +# The default value is: NO. + +WARN_NO_PARAMDOC = NO + +# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when +# a warning is encountered. +# The default value is: NO. + +WARN_AS_ERROR = NO + +# The WARN_FORMAT tag determines the format of the warning messages that doxygen +# can produce. The string should contain the $file, $line, and $text tags, which +# will be replaced by the file and line number from which the warning originated +# and the warning text. Optionally the format may contain $version, which will +# be replaced by the version of the file (if it could be obtained via +# FILE_VERSION_FILTER) +# The default value is: $file:$line: $text. + +WARN_FORMAT = "$file:$line: $text" + +# The WARN_LOGFILE tag can be used to specify a file to which warning and error +# messages should be written. If left blank the output is written to standard +# error (stderr). + +WARN_LOGFILE = + +#--------------------------------------------------------------------------- +# Configuration options related to the input files +#--------------------------------------------------------------------------- + +# The INPUT tag is used to specify the files and/or directories that contain +# documented source files. You may enter file names like myfile.cpp or +# directories like /usr/src/myproject. Separate the files or directories with +# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING +# Note: If this tag is empty the current directory is searched. + +INPUT = /Users/alek/git/tikzit/src + +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses +# libiconv (or the iconv built into libc) for the transcoding. See the libiconv +# documentation (see: https://www.gnu.org/software/libiconv/) for the list of +# possible encodings. +# The default value is: UTF-8. + +INPUT_ENCODING = UTF-8 + +# If the value of the INPUT tag contains directories, you can use the +# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and +# *.h) to filter out the source-files in the directories. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# read by doxygen. +# +# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, +# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, +# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, +# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, +# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf. + +FILE_PATTERNS = *.c \ + *.cc \ + *.cxx \ + *.cpp \ + *.c++ \ + *.java \ + *.ii \ + *.ixx \ + *.ipp \ + *.i++ \ + *.inl \ + *.idl \ + *.ddl \ + *.odl \ + *.h \ + *.hh \ + *.hxx \ + *.hpp \ + *.h++ \ + *.cs \ + *.d \ + *.php \ + *.php4 \ + *.php5 \ + *.phtml \ + *.inc \ + *.m \ + *.markdown \ + *.md \ + *.mm \ + *.dox \ + *.py \ + *.pyw \ + *.f90 \ + *.f95 \ + *.f03 \ + *.f08 \ + *.f \ + *.for \ + *.tcl \ + *.vhd \ + *.vhdl \ + *.ucf \ + *.qsf + +# The RECURSIVE tag can be used to specify whether or not subdirectories should +# be searched for input files as well. +# The default value is: NO. + +RECURSIVE = YES + +# The EXCLUDE tag can be used to specify files and/or directories that should be +# excluded from the INPUT source files. This way you can easily exclude a +# subdirectory from a directory tree whose root is specified with the INPUT tag. +# +# Note that relative paths are relative to the directory from which doxygen is +# run. + +EXCLUDE = + +# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or +# directories that are symbolic links (a Unix file system feature) are excluded +# from the input. +# The default value is: NO. + +EXCLUDE_SYMLINKS = NO + +# If the value of the INPUT tag contains directories, you can use the +# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude +# certain files from those directories. +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories for example use the pattern */test/* + +EXCLUDE_PATTERNS = + +# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names +# (namespaces, classes, functions, etc.) that should be excluded from the +# output. The symbol name can be a fully qualified name, a word, or if the +# wildcard * is used, a substring. Examples: ANamespace, AClass, +# AClass::ANamespace, ANamespace::*Test +# +# Note that the wildcards are matched against the file with absolute path, so to +# exclude all test directories use the pattern */test/* + +EXCLUDE_SYMBOLS = + +# The EXAMPLE_PATH tag can be used to specify one or more files or directories +# that contain example code fragments that are included (see the \include +# command). + +EXAMPLE_PATH = + +# If the value of the EXAMPLE_PATH tag contains directories, you can use the +# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and +# *.h) to filter out the source-files in the directories. If left blank all +# files are included. + +EXAMPLE_PATTERNS = * + +# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be +# searched for input files to be used with the \include or \dontinclude commands +# irrespective of the value of the RECURSIVE tag. +# The default value is: NO. + +EXAMPLE_RECURSIVE = NO + +# The IMAGE_PATH tag can be used to specify one or more files or directories +# that contain images that are to be included in the documentation (see the +# \image command). + +IMAGE_PATH = + +# The INPUT_FILTER tag can be used to specify a program that doxygen should +# invoke to filter for each input file. Doxygen will invoke the filter program +# by executing (via popen()) the command: +# +# +# +# where is the value of the INPUT_FILTER tag, and is the +# name of an input file. Doxygen will then use the output that the filter +# program writes to standard output. If FILTER_PATTERNS is specified, this tag +# will be ignored. +# +# Note that the filter must not add or remove lines; it is applied before the +# code is scanned, but not when the output code is generated. If lines are added +# or removed, the anchors will not be placed correctly. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +INPUT_FILTER = + +# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern +# basis. Doxygen will compare the file name with each pattern and apply the +# filter if there is a match. The filters are a list of the form: pattern=filter +# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how +# filters are used. If the FILTER_PATTERNS tag is empty or if none of the +# patterns match the file name, INPUT_FILTER is applied. +# +# Note that for custom extensions or not directly supported extensions you also +# need to set EXTENSION_MAPPING for the extension otherwise the files are not +# properly processed by doxygen. + +FILTER_PATTERNS = + +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will also be used to filter the input files that are used for +# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). +# The default value is: NO. + +FILTER_SOURCE_FILES = NO + +# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file +# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and +# it is also possible to disable source filtering for a specific pattern using +# *.ext= (so without naming a filter). +# This tag requires that the tag FILTER_SOURCE_FILES is set to YES. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that +# is part of the input, its contents will be placed on the main page +# (index.html). This can be useful if you have a project on for instance GitHub +# and want to reuse the introduction page also for the doxygen output. + +USE_MDFILE_AS_MAINPAGE = + +#--------------------------------------------------------------------------- +# Configuration options related to source browsing +#--------------------------------------------------------------------------- + +# If the SOURCE_BROWSER tag is set to YES then a list of source files will be +# generated. Documented entities will be cross-referenced with these sources. +# +# Note: To get rid of all source code in the generated output, make sure that +# also VERBATIM_HEADERS is set to NO. +# The default value is: NO. + +SOURCE_BROWSER = YES + +# Setting the INLINE_SOURCES tag to YES will include the body of functions, +# classes and enums directly into the documentation. +# The default value is: NO. + +INLINE_SOURCES = NO + +# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any +# special comment blocks from generated source code fragments. Normal C, C++ and +# Fortran comments will always remain visible. +# The default value is: YES. + +STRIP_CODE_COMMENTS = YES + +# If the REFERENCED_BY_RELATION tag is set to YES then for each documented +# function all documented functions referencing it will be listed. +# The default value is: NO. + +REFERENCED_BY_RELATION = NO + +# If the REFERENCES_RELATION tag is set to YES then for each documented function +# all documented entities called/used by that function will be listed. +# The default value is: NO. + +REFERENCES_RELATION = NO + +# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set +# to YES then the hyperlinks from functions in REFERENCES_RELATION and +# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will +# link to the documentation. +# The default value is: YES. + +REFERENCES_LINK_SOURCE = YES + +# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the +# source code will show a tooltip with additional information such as prototype, +# brief description and links to the definition and documentation. Since this +# will make the HTML file larger and loading of large files a bit slower, you +# can opt to disable this feature. +# The default value is: YES. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +SOURCE_TOOLTIPS = YES + +# If the USE_HTAGS tag is set to YES then the references to source code will +# point to the HTML generated by the htags(1) tool instead of doxygen built-in +# source browser. The htags tool is part of GNU's global source tagging system +# (see https://www.gnu.org/software/global/global.html). You will need version +# 4.8.6 or higher. +# +# To use it do the following: +# - Install the latest version of global +# - Enable SOURCE_BROWSER and USE_HTAGS in the config file +# - Make sure the INPUT points to the root of the source tree +# - Run doxygen as normal +# +# Doxygen will invoke htags (and that will in turn invoke gtags), so these +# tools must be available from the command line (i.e. in the search path). +# +# The result: instead of the source browser generated by doxygen, the links to +# source code will now point to the output of htags. +# The default value is: NO. +# This tag requires that the tag SOURCE_BROWSER is set to YES. + +USE_HTAGS = NO + +# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a +# verbatim copy of the header file for each class for which an include is +# specified. Set to NO to disable this. +# See also: Section \class. +# The default value is: YES. + +VERBATIM_HEADERS = YES + +# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the +# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the +# cost of reduced performance. This can be particularly helpful with template +# rich C++ code for which doxygen's built-in parser lacks the necessary type +# information. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse-libclang=ON option for CMake. +# The default value is: NO. + +CLANG_ASSISTED_PARSING = NO + +# If clang assisted parsing is enabled you can provide the compiler with command +# line options that you would normally use when invoking the compiler. Note that +# the include paths will already be set by doxygen for the files and directories +# specified with INPUT and INCLUDE_PATH. +# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES. + +CLANG_OPTIONS = + +# If clang assisted parsing is enabled you can provide the clang parser with the +# path to the compilation database (see: +# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files +# were built. This is equivalent to specifying the "-p" option to a clang tool, +# such as clang-check. These options will then be passed to the parser. +# Note: The availability of this option depends on whether or not doxygen was +# generated with the -Duse-libclang=ON option for CMake. +# The default value is: 0. + +CLANG_COMPILATION_DATABASE_PATH= 0 + +#--------------------------------------------------------------------------- +# Configuration options related to the alphabetical class index +#--------------------------------------------------------------------------- + +# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all +# compounds will be generated. Enable this if the project contains a lot of +# classes, structs, unions or interfaces. +# The default value is: YES. + +ALPHABETICAL_INDEX = YES + +# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in +# which the alphabetical index list will be split. +# Minimum value: 1, maximum value: 20, default value: 5. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +COLS_IN_ALPHA_INDEX = 5 + +# In case all classes in a project start with a common prefix, all classes will +# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag +# can be used to specify a prefix (or a list of prefixes) that should be ignored +# while generating the index headers. +# This tag requires that the tag ALPHABETICAL_INDEX is set to YES. + +IGNORE_PREFIX = + +#--------------------------------------------------------------------------- +# Configuration options related to the HTML output +#--------------------------------------------------------------------------- + +# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output +# The default value is: YES. + +GENERATE_HTML = YES + +# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a +# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of +# it. +# The default directory is: html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_OUTPUT = html + +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each +# generated HTML page (for example: .htm, .php, .asp). +# The default value is: .html. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FILE_EXTENSION = .html + +# The HTML_HEADER tag can be used to specify a user-defined HTML header file for +# each generated HTML page. If the tag is left blank doxygen will generate a +# standard header. +# +# To get valid HTML the header file that includes any scripts and style sheets +# that doxygen needs, which is dependent on the configuration options used (e.g. +# the setting GENERATE_TREEVIEW). It is highly recommended to start with a +# default header using +# doxygen -w html new_header.html new_footer.html new_stylesheet.css +# YourConfigFile +# and then modify the file new_header.html. See also section "Doxygen usage" +# for information on how to generate the default header that doxygen normally +# uses. +# Note: The header is subject to change so you typically have to regenerate the +# default header when upgrading to a newer version of doxygen. For a description +# of the possible markers and block names see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each +# generated HTML page. If the tag is left blank doxygen will generate a standard +# footer. See HTML_HEADER for more information on how to generate a default +# footer and what special commands can be used inside the footer. See also +# section "Doxygen usage" for information on how to generate the default footer +# that doxygen normally uses. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_FOOTER = + +# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style +# sheet that is used by each HTML page. It can be used to fine-tune the look of +# the HTML output. If left blank doxygen will generate a default style sheet. +# See also section "Doxygen usage" for information on how to generate the style +# sheet that doxygen normally uses. +# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as +# it is more robust and this tag (HTML_STYLESHEET) will in the future become +# obsolete. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined +# cascading style sheets that are included after the standard style sheets +# created by doxygen. Using this option one can overrule certain style aspects. +# This is preferred over using HTML_STYLESHEET since it does not replace the +# standard style sheet and is therefore more robust against future updates. +# Doxygen will copy the style sheet files to the output directory. +# Note: The order of the extra style sheet files is of importance (e.g. the last +# style sheet in the list overrules the setting of the previous ones in the +# list). For an example see the documentation. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_STYLESHEET = + +# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or +# other source files which should be copied to the HTML output directory. Note +# that these files will be copied to the base HTML output directory. Use the +# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these +# files. In the HTML_STYLESHEET file, use the file name only. Also note that the +# files will be copied as-is; there are no commands or markers available. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_EXTRA_FILES = + +# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen +# will adjust the colors in the style sheet and background images according to +# this color. Hue is specified as an angle on a colorwheel, see +# https://en.wikipedia.org/wiki/Hue for more information. For instance the value +# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 +# purple, and 360 is red again. +# Minimum value: 0, maximum value: 359, default value: 220. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_HUE = 220 + +# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors +# in the HTML output. For a value of 0 the output will use grayscales only. A +# value of 255 will produce the most vivid colors. +# Minimum value: 0, maximum value: 255, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_SAT = 100 + +# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the +# luminance component of the colors in the HTML output. Values below 100 +# gradually make the output lighter, whereas values above 100 make the output +# darker. The value divided by 100 is the actual gamma applied, so 80 represents +# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not +# change the gamma. +# Minimum value: 40, maximum value: 240, default value: 80. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_COLORSTYLE_GAMMA = 80 + +# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML +# page will contain the date and time when the page was generated. Setting this +# to YES can help to show when doxygen was last run and thus if the +# documentation is up to date. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_TIMESTAMP = NO + +# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML +# documentation will contain a main index with vertical navigation menus that +# are dynamically created via Javascript. If disabled, the navigation index will +# consists of multiple levels of tabs that are statically embedded in every HTML +# page. Disable this option to support browsers that do not have Javascript, +# like the Qt help browser. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_MENUS = YES + +# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML +# documentation will contain sections that can be hidden and shown after the +# page has loaded. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_DYNAMIC_SECTIONS = NO + +# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries +# shown in the various tree structured indices initially; the user can expand +# and collapse entries dynamically later on. Doxygen will expand the tree to +# such a level that at most the specified number of entries are visible (unless +# a fully collapsed tree already exceeds this amount). So setting the number of +# entries 1 will produce a full collapsed tree by default. 0 is a special value +# representing an infinite number of entries and will result in a full expanded +# tree by default. +# Minimum value: 0, maximum value: 9999, default value: 100. +# This tag requires that the tag GENERATE_HTML is set to YES. + +HTML_INDEX_NUM_ENTRIES = 100 + +# If the GENERATE_DOCSET tag is set to YES, additional index files will be +# generated that can be used as input for Apple's Xcode 3 integrated development +# environment (see: https://developer.apple.com/tools/xcode/), introduced with +# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a +# Makefile in the HTML output directory. Running make will produce the docset in +# that directory and running make install will install the docset in +# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at +# startup. See https://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_DOCSET = NO + +# This tag determines the name of the docset feed. A documentation feed provides +# an umbrella under which multiple documentation sets from a single provider +# (such as a company or product suite) can be grouped. +# The default value is: Doxygen generated docs. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_FEEDNAME = "Doxygen generated docs" + +# This tag specifies a string that should uniquely identify the documentation +# set bundle. This should be a reverse domain-name style string, e.g. +# com.mycompany.MyDocSet. Doxygen will append .docset to the name. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_BUNDLE_ID = org.doxygen.Project + +# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify +# the documentation publisher. This should be a reverse domain-name style +# string, e.g. com.mycompany.MyDocSet.documentation. +# The default value is: org.doxygen.Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. +# The default value is: Publisher. +# This tag requires that the tag GENERATE_DOCSET is set to YES. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three +# additional HTML index files: index.hhp, index.hhc, and index.hhk. The +# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop +# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on +# Windows. +# +# The HTML Help Workshop contains a compiler that can convert all HTML output +# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML +# files are now used as the Windows 98 help format, and will replace the old +# Windows help format (.hlp) on all Windows platforms in the future. Compressed +# HTML files also contain an index, a table of contents, and you can search for +# words in the documentation. The HTML workshop also contains a viewer for +# compressed HTML files. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_HTMLHELP = NO + +# The CHM_FILE tag can be used to specify the file name of the resulting .chm +# file. You can add a path in front of the file if the result should not be +# written to the html output directory. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_FILE = + +# The HHC_LOCATION tag can be used to specify the location (absolute path +# including file name) of the HTML help compiler (hhc.exe). If non-empty, +# doxygen will try to run the HTML help compiler on the generated index.hhp. +# The file has to be specified with full path. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +HHC_LOCATION = + +# The GENERATE_CHI flag controls if a separate .chi index file is generated +# (YES) or that it should be included in the master .chm file (NO). +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +GENERATE_CHI = NO + +# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) +# and project file content. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +CHM_INDEX_ENCODING = + +# The BINARY_TOC flag controls whether a binary table of contents is generated +# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it +# enables the Previous and Next buttons. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +BINARY_TOC = NO + +# The TOC_EXPAND flag can be set to YES to add extra items for group members to +# the table of contents of the HTML help documentation and to the tree view. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTMLHELP is set to YES. + +TOC_EXPAND = NO + +# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and +# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that +# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help +# (.qch) of the generated HTML documentation. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_QHP = NO + +# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify +# the file name of the resulting .qch file. The path specified is relative to +# the HTML output folder. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QCH_FILE = + +# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help +# Project output. For more information please see Qt Help Project / Namespace +# (see: http://doc.qt.io/qt-4.8/qthelpproject.html#namespace). +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_NAMESPACE = org.doxygen.Project + +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt +# Help Project output. For more information please see Qt Help Project / Virtual +# Folders (see: http://doc.qt.io/qt-4.8/qthelpproject.html#virtual-folders). +# The default value is: doc. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_VIRTUAL_FOLDER = doc + +# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom +# filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_NAME = + +# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see Qt Help Project / Custom +# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_CUST_FILTER_ATTRS = + +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's filter section matches. Qt Help Project / Filter Attributes (see: +# http://doc.qt.io/qt-4.8/qthelpproject.html#filter-attributes). +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHP_SECT_FILTER_ATTRS = + +# The QHG_LOCATION tag can be used to specify the location of Qt's +# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the +# generated .qhp file. +# This tag requires that the tag GENERATE_QHP is set to YES. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be +# generated, together with the HTML files, they form an Eclipse help plugin. To +# install this plugin and make it available under the help contents menu in +# Eclipse, the contents of the directory containing the HTML and XML files needs +# to be copied into the plugins directory of eclipse. The name of the directory +# within the plugins directory should be the same as the ECLIPSE_DOC_ID value. +# After copying Eclipse needs to be restarted before the help appears. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_ECLIPSEHELP = NO + +# A unique identifier for the Eclipse help plugin. When installing the plugin +# the directory name containing the HTML and XML files should also have this +# name. Each documentation set should have its own identifier. +# The default value is: org.doxygen.Project. +# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# If you want full control over the layout of the generated HTML pages it might +# be necessary to disable the index and replace it with your own. The +# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top +# of each HTML page. A value of NO enables the index and the value YES disables +# it. Since the tabs in the index contain the same information as the navigation +# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +DISABLE_INDEX = NO + +# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index +# structure should be generated to display hierarchical information. If the tag +# value is set to YES, a side panel will be generated containing a tree-like +# index structure (just like the one that is generated for HTML Help). For this +# to work a browser that supports JavaScript, DHTML, CSS and frames is required +# (i.e. any modern browser). Windows users are probably better off using the +# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can +# further fine-tune the look of the index. As an example, the default style +# sheet generated by doxygen has an example that shows how to put an image at +# the root of the tree instead of the PROJECT_NAME. Since the tree basically has +# the same information as the tab index, you could consider setting +# DISABLE_INDEX to YES when enabling this option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +GENERATE_TREEVIEW = NO + +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that +# doxygen will group on one line in the generated HTML documentation. +# +# Note that a value of 0 will completely suppress the enum values from appearing +# in the overview section. +# Minimum value: 0, maximum value: 20, default value: 4. +# This tag requires that the tag GENERATE_HTML is set to YES. + +ENUM_VALUES_PER_LINE = 4 + +# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used +# to set the initial width (in pixels) of the frame in which the tree is shown. +# Minimum value: 0, maximum value: 1500, default value: 250. +# This tag requires that the tag GENERATE_HTML is set to YES. + +TREEVIEW_WIDTH = 250 + +# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to +# external symbols imported via tag files in a separate window. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of LaTeX formulas included as images in +# the HTML documentation. When you change the font size after a successful +# doxygen run you need to manually remove any form_*.png images from the HTML +# output directory to force them to be regenerated. +# Minimum value: 8, maximum value: 50, default value: 10. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_FONTSIZE = 10 + +# Use the FORMULA_TRANSPARENT tag to determine whether or not the images +# generated for formulas are transparent PNGs. Transparent PNGs are not +# supported properly for IE 6.0, but are supported on all modern browsers. +# +# Note that when changing this option you need to delete any form_*.png files in +# the HTML output directory before the changes have effect. +# The default value is: YES. +# This tag requires that the tag GENERATE_HTML is set to YES. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see +# https://www.mathjax.org) which uses client side Javascript for the rendering +# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX +# installed or if you want to formulas look prettier in the HTML output. When +# enabled you may also need to install MathJax separately and configure the path +# to it using the MATHJAX_RELPATH option. +# The default value is: NO. +# This tag requires that the tag GENERATE_HTML is set to YES. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# the MathJax output. See the MathJax site (see: +# http://docs.mathjax.org/en/latest/output.html) for more details. +# Possible values are: HTML-CSS (which is slower, but has the best +# compatibility), NativeMML (i.e. MathML) and SVG. +# The default value is: HTML-CSS. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_FORMAT = HTML-CSS + +# When MathJax is enabled you need to specify the location relative to the HTML +# output directory using the MATHJAX_RELPATH option. The destination directory +# should contain the MathJax.js script. For instance, if the mathjax directory +# is located at the same level as the HTML output directory, then +# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax +# Content Delivery Network so you can quickly see the result without installing +# MathJax. However, it is strongly recommended to install a local copy of +# MathJax from https://www.mathjax.org before deployment. +# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/ + +# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax +# extension names that should be enabled during MathJax rendering. For example +# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_EXTENSIONS = + +# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces +# of code that will be used on startup of the MathJax code. See the MathJax site +# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an +# example see the documentation. +# This tag requires that the tag USE_MATHJAX is set to YES. + +MATHJAX_CODEFILE = + +# When the SEARCHENGINE tag is enabled doxygen will generate a search box for +# the HTML output. The underlying search engine uses javascript and DHTML and +# should work on any modern browser. Note that when using HTML help +# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) +# there is already a search function so this one should typically be disabled. +# For large projects the javascript based search engine can be slow, then +# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to +# search using the keyboard; to jump to the search box use + S +# (what the is depends on the OS and browser, but it is typically +# , />stream +HW˲7 WגrHL(‚9{* uƒ:ˣ{x܋nDm OOiyx} 6qFoڜcPw(8k>Tqϵles➗{$-D'|?FJub NRk?1.Q̇`4brV}D6 y/Ky&|eo\ ^'e} B]>5DIrOCTq. bZ]ROim`_|T!A>/'e4NAN q?1.DHqdGD4=͂BC !YxQ%<ϘBynXtQXӨDyR!a'oѨĹL!58tZfLnà څ] iw+|)Z;8 )Pf]>w޹|W=<'?"}vѽqӮN[%FSm麬:%g HT~kL-uiD/(UP1Orv5p~# + NJ={jpoUH4v-l6N^S_,"Q++Bx1m.#HR R*PܻتOT^Gq2 &h-!$m  m Pd%&vUL{gf&b}QVETɈ B">dcRW7 7{'u/P47щ:|顀v#'4‰&a KpbR -a<ic(JxH&)*9"_@R1;r Sd1yeWs`82INWzN;Ixl0%GgC9e{LrN18:kfg$\SS)ݝV7$דн=8aqٲӷq^ Eue4 sܸ_r4Vrp3y Gaqfiy\e\qR7i ?*^fٗ70pZTʘ/UAc +)V|pRpS͋9t Φ /îՓ7[ut)oe |_VB)PM۔mSWs~`}22 t@F/nH2:9acݺH|%}%Oؓ<5>g`pw)@2baBp +q;KݤW*ōD:°~ T`JOh\ZSBn7Q}K'{I葤LM +z +Do]̡/A/f'ўCt"ӁJAke9siBزPO`&^R 3φB$#IDh]+ ٞ’AzWt|߻[%UdTMK, k:b|9n@T"eeBonaP^UQhJ9 us#Ў١Wb`j0^(grO#YYl?sh^J܍.@+EI:c~Я7ǤVp\jJODK͎ZpIo~7h뫸SR endstream endobj 77 0 obj <> endobj 90 0 obj <>stream +8;ZD.gPs,o%!4_eHG&pt:\mXE#6aOKEBq.IT0"9n@!b"'E$!X((QH?s"5?G?K#P20 +O/d)\T,/P1'qS?i"`crJ?H8d*KjRXIZ+u6FTjS-):gaeT(>+?(!Z6FT)AEal%;;Q@ +kb3O4qsuY.N]*EB(@]Z27":::JI9hMb@0>:^nab-+NNs/JHE@q?G;3L!m9!^.::8g +iM>Jef*'=g%mLeUpPAmn5I8u&(:V"^JE7%&U-SUuQX1AZ47 +)b\i'orh[PJOC%+(N\UM53;RTZn-;X. +d$#BDrYE[.o3UD]5(MDElGJ=9>,`#5E]% +cN&-!^1@~> endstream endobj 92 0 obj [/Indexed/DeviceRGB 255 93 0 R] endobj 93 0 obj <>stream +8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0 +b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup` +E1r!/,*0[*9.aFIR2&b-C#soRZ7Dl%MLY\.?d>Mn +6%Q2oYfNRF$$+ON<+]RUJmC0InDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j$XKrcYp0n+Xl_nU*O( +l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 88 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 0 0 0 scn +/GS0 gs +507.579 6.422 -494.579 114.578 re +f + endstream endobj 89 0 obj <>/ExtGState<>>>/Subtype/Form>>stream +/CS0 cs 1 1 1 scn +/GS0 gs +q 1 0 0 1 536.5762 405.4023 cm +0 0 m +0 -88.638 -130.614 -160.492 -291.735 -160.492 c +-452.856 -160.492 -583.471 -88.638 -583.471 0 c +-583.471 88.637 -452.856 160.492 -291.735 160.492 c +-130.614 160.492 0 88.637 0 0 c +f +Q + endstream endobj 95 0 obj <> endobj 81 0 obj <> endobj 79 0 obj [/ICCBased 96 0 R] endobj 96 0 obj <>stream +HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽'0 ֠Jb  + 2y.-;!KZ ^i"L0- @8(r;q7Ly&Qq4j|9 +V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'Kt;\ ӥ$պFZUn(4T%)뫔0C&Zi8bxEB;Pӓ̹A om?W= +x-[0}y)7ta>jT7@tܛ`q2ʀ&6ZLĄ?_yxg)˔zçLU*uSkSeO4?׸c. R ߁-25 S>ӣVd`rn~Y&+`;A4 A9=-tl`;~p Gp| [`L`< "A YA+Cb(R,*T2B- +ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9 +N')].uJr + wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4 +n3ܣkGݯz=[==<=GTB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O[$h՛BdҞ@iءG&vVǥ8nRĩ7u\ЭD-u`ֲK³8%yhYѹJº;.! +zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km endstream endobj 94 0 obj <> endobj 84 0 obj <> endobj 85 0 obj <> endobj 86 0 obj <> endobj 87 0 obj <> endobj 98 0 obj <>stream + endstream endobj 97 0 obj <> endobj 99 0 obj <> endobj 100 0 obj <> endobj 71 0 obj <> endobj 72 0 obj <> endobj 73 0 obj <> endobj 74 0 obj <> endobj 107 0 obj [/View/Design] endobj 108 0 obj <>>> endobj 105 0 obj [/View/Design] endobj 106 0 obj <>>> endobj 103 0 obj [/View/Design] endobj 104 0 obj <>>> endobj 101 0 obj [/View/Design] endobj 102 0 obj <>>> endobj 80 0 obj <> endobj 82 0 obj <> endobj 83 0 obj <> endobj 110 0 obj <> endobj 111 0 obj [0.0] endobj 112 0 obj <>/XObject<>>>/Subtype/Form>>stream +0 g +/GS0 gs +-46.895 565.894 583.471 -320.984 re +f +q +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Fm0 Do +Q + endstream endobj 113 0 obj <> endobj 114 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +419.6 365.446 m +414.319 365.446 409.165 364.915 404.179 363.916 c +374.027 434.636 303.875 484.212 222.14 484.212 c +112.892 484.212 24.329 395.649 24.329 286.402 c +24.329 241.821 39.081 200.689 63.963 167.609 c +51.904 153.863 44.578 135.862 44.578 116.139 c +44.578 73.004 79.545 38.036 122.68 38.036 c +156.741 38.036 185.693 59.849 196.373 90.261 c +204.807 89.163 213.406 88.591 222.14 88.591 c +230.657 88.591 239.049 89.13 247.283 90.175 c +257.895 59.637 286.907 37.708 321.059 37.708 c +364.193 37.708 399.16 72.675 399.16 115.81 c +399.16 135.448 391.896 153.38 379.928 167.104 c +390 180.404 398.426 195.017 404.91 210.641 c +409.67 209.734 414.576 209.241 419.6 209.241 c +462.734 209.241 497.701 244.209 497.701 287.343 c +497.701 330.478 462.734 365.446 419.6 365.446 c +W n +q +0 g +/GS0 gs +-0.0000153 446.5039062 446.5039062 0.0000153 261.0146484 37.7080078 cm +BX /Sh0 sh EX Q +Q +/CS1 CS 0 0 0 SCN +10 w 4 M 0 j 0 J []0 d +/GS0 gs +q 1 0 0 1 419.5996 365.4458 cm +0 0 m +-5.28 0 -10.435 -0.531 -15.421 -1.53 c +-45.572 69.19 -115.725 118.767 -197.46 118.767 c +-306.708 118.767 -395.271 30.204 -395.271 -79.044 c +-395.271 -123.625 -380.519 -164.756 -355.636 -197.836 c +-367.696 -211.583 -375.022 -229.583 -375.022 -249.307 c +-375.022 -292.442 -340.055 -327.41 -296.92 -327.41 c +-262.858 -327.41 -233.907 -305.597 -223.227 -275.185 c +-214.792 -276.283 -206.193 -276.855 -197.46 -276.855 c +-188.942 -276.855 -180.55 -276.316 -172.316 -275.271 c +-161.705 -305.809 -132.692 -327.738 -98.541 -327.738 c +-55.406 -327.738 -20.439 -292.771 -20.439 -249.636 c +-20.439 -229.998 -27.704 -212.066 -39.672 -198.342 c +-29.6 -185.042 -21.174 -170.429 -14.689 -154.805 c +-9.93 -155.711 -5.023 -156.205 0 -156.205 c +43.135 -156.205 78.102 -121.237 78.102 -78.103 c +78.102 -34.968 43.135 0 0 0 c +h +S +Q + endstream endobj 115 0 obj <> endobj 116 0 obj <> endobj 118 0 obj <> endobj 119 0 obj <> endobj 120 0 obj <> endobj 121 0 obj <> endobj 117 0 obj [/ICCBased 96 0 R] endobj 109 0 obj <> endobj 122 0 obj [0.0] endobj 123 0 obj <>/XObject<>>>/Subtype/Form>>stream +0 g +/GS0 gs +13 121 494.579 -114.578 re +f +q +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Fm0 Do +Q + endstream endobj 124 0 obj <> endobj 125 0 obj <>/XObject<>>>/Subtype/Form>>stream +q +/GS0 gs +0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Fm0 Do +Q + endstream endobj 126 0 obj <> endobj 128 0 obj <>/ExtGState<>/Shading<>>>/Subtype/Form>>stream +q +7.977 8.752 m +113.295 8.752 l +408.581 8.752 l +507.01 8.752 l +507.01 37.756 l +507.01 77.308 l +408.581 77.308 l +113.295 77.308 l +7.977 77.308 l +7.977 37.756 l +h +W n +q +0 g +/GS0 gs +1 0 0 -1 0 0 cm +BX /Sh0 sh EX Q +Q + endstream endobj 129 0 obj <> endobj 130 0 obj <>stream +  1} p pԓ4 p)I pY] 1}Y]Y]Y])Iԓ4ԓ4 1}ԓ4 1})I)I Y]Y] 1}Y] pY] pUr p p 1}UrUr 1}Ur 1}  p b     ԓ4 )I Y]Y]bY] pY] p)I pԓ4bԓ4ԓ4)Ib)I pY]bY]Y] Y] Ur  b p p pUrbUrUrb ;;; 1} p pd p& pC 1}CCC&dd 1}d 1}&&---CC 1}C pC p pnp p1 1}111np 1} 1}npnp---333 pb  d & CCbC pC p& pdbdd&b&;;;PPP--- pCbCC C  np 11b1 p1 pnp pbnpbnp---PPPXXX333   $ (V{ (V{ԓ4(V{)I(V{Y]$Y]Y] Y] )I ԓ4ԓ4$ԓ4$)I)I--- Y]Y]$Y](V{Y](V{Ur(V{(V{$   UrUr$Ur$---PPP;;;(V{ - 1w 6 6ԓ46)I6Y]1wY]-Y](V{Y](V{)I(V{ԓ4-ԓ41wԓ41w)I-)I333---(V{Y]-Y]1wY]6Y]6Ur661w-(V{(V{(V{Ur-Ur1wUr1w----333XXXPPP $(V{(V{d(V{&(V{C$CC C & dd$d$&&;;;PPPfffPPP CC$C(V{C(V{(V{np(V{1$11 1 np $$npnpPPPfffnnnXXX(V{-1w66d6&6C1wC-C(V{C(V{&(V{d-d1wd1w&-&PPPXXXnnnfff(V{C-C1wC6C66np611w1-1(V{1(V{np(V{-1w1wnp-npfffnnnuuunnn6 hF   ́ ́ԓ4́)ÍY] Y]hFY]6Y]6)I6ԓ4hFԓ4 ԓ4 )IhF)I3333336Y]hFY] Y]́Y]́Uŕ́ hF666UrhFUr Ur hF333333XXXXXX6hF ́́d́&́Cٛ ChFC6C6&6dhFd d &hF&XXXXXXnnnnnn6ChFCٛ ĆĆ́nṕ1 1hF1616np6hF  nphFnpnnnnnnuuuuuú Ѷ D !8 !8ԓ4!8)I!8Y]DY]ѶY]́Y]́)Íԓ4Ѷԓ4Dԓ4D)IѶ)I---333́Y]ѶY]DY]!8Y]!8Ur!8!8DѶ́́́UrѶUrDUrDѶ333---PPPXXX!8 VX ⋨ И Иԓ4И)IИY]⋨Y]VXY]!8Y]!8)I!8ԓ4VXԓ4⋨ԓ4⋨)IVX)I---!8Y]VXY]⋨Y]ИY]ИUrИИ⋨VX!8!8!8UrVXUr⋨Ur⋨VX---;;;PPṔѶD!8!8d!8&!8CDCѶĆĆ&́dѶdDdD&Ѷ&XXXPPPfffnnńCѶCDC!8C!8!8np!81D1Ѷ1́1́nṕѶDDnpѶnpnnnfffnnnuuu!8VX⋨ИИdИ&ИC⋨CVXC!8C!8&!8dVXd⋨d⋨&VX&PPP;;;PPPfff!8CVXC⋨CИCИИnpИ1⋨1VX1!81!8np!8VX⋨⋨npVXnpfffPPPXXXnnnИ 7 + `hK `hKԓ4`hK)I`hKY]+Y]7Y]ИY]И)IИԓ47ԓ4+ԓ4+)I7)I ИY]7Y]+Y]`hKY]`hKUr`hK`hK+7ИИИUr7Ur+Ur+7 ;;;`hK  ʷ  ԓ4)IY]ʷY]Y]`hKY]`hK)I`hKԓ4ԓ4ʷԓ4ʷ)I)I `hKY]Y]ʷY]Y]Urʷ`hK`hK`hKUrUrʷUrʷ И7+`hK`hKd`hK&`hKC+C7CИCИ&Иd7d+d+&7&;;;---PPPИC7C+C`hKC`hK`hKnp`hK1+171И1ИnpИ7++np7npPPP---333XXX`hKʷd&CʷCC`hKC`hK&`hKddʷdʷ&&---`hKCCʷCCnp1ʷ11`hK1`hKnp`hKʷʷnpnp---33311 1}1 p1 p/ pY pS 1}SSSY// 1}/ 1}YY333---SS 1}S pS pm p p 1}  mm 1}m 1}--- p1b11 1 / Y SSbS pS pY p/b//YbY333XXXPPP--- pSbSS S m   b p p pmbmmb---PPP;;;  1} p p[*O pT p} 1}}}}T[*O[*O 1}[*O 1}TT }} 1}} p} pH pܗu p4 1}444ܗuHH 1}H 1}ܗuܗu p b    [*O T }}b} p} pT p[*Ob[*O[*OTbT;;; p}b}} } H ܗu 44b4 p4 pܗu pHbHHܗubܗu  11$1(V{1(V{/(V{Y(V{S$SS S Y //$/$YYXXXnnnfffPPP SS$S(V{S(V{m(V{(V{ $     mm$m$PPPfffPPP;;;(V{1-11w1616/6Y6S1wS-S(V{S(V{Y(V{/-/1w/1wY-Ynnnuuunnnfff(V{S-S1wS6S6m66 1w - (V{ (V{(V{m-m1wm1w-fffnnnXXXPPP  $ (V{ (V{[*O(V{T(V{}$}} } T [*O[*O$[*O$TT;;;PPP--- }}$}(V{}(V{H(V{ܗu(V{4$44 4 ܗu HH$H$ܗuܗu---(V{ - 1w 6 6[*O6T6}1w}-}(V{}(V{T(V{[*O-[*O1w[*O1wT-TPPPXXX333---(V{}-}1w}6}6H6ܗu641w4-4(V{4(V{ܗu(V{H-H1wH1wܗu-ܗu---33361hF1 1́1́/́ÝS ShFS6S6Y6/hF/՛ /՛ YhFYuuuuuunnnnnn6ShFS ŚŚḿ́  hF 6 66mhFm m hFnnnnnnXXXXXX6 hF  ́ ́[*ÓT́}͛ }hF}6}6T6[*OhF[*O [*O ThFTXXXXXX3333336}hF}͛ }́}́H́ܗú4 4hF4646ܗu6HhFH H ܗuhFܗu333333́1Ѷ1D1!81!8/!8Y!8SDSѶŚŚÝ/Ѷ/D/DYѶYuuunnnfffnnńSѶSDS!8S!8m!8!8 D Ѷ ́ ́́mѶmDmDѶnnnfffPPPXXX!81VX1⋨1И1И/ИYИS⋨SVXS!8S!8Y!8/VX/⋨/⋨YVXYnnnXXXPPPfff!8SVXS⋨SИSИmИИ ⋨ VX !8 !8!8mVXm⋨m⋨VXfffPPP;;;PPṔ Ѷ D !8 !8[*O!8T!8}D}Ѷ}́}́T́[*OѶ[*OD[*ODTѶTXXXPPP---333́}Ѷ}D}!8}!8H!8ܗu!84D4Ѷ4́4́ܗúHѶHDHDܗuѶܗu333---!8 VX ⋨ И И[*OИTИ}⋨}VX}!8}!8T!8[*OVX[*O⋨[*O⋨TVXTPPP;;;---!8}VX}⋨}И}ИHИܗuИ4⋨4VX4!84!8ܗu!8HVXH⋨H⋨ܗuVXܗu---И171+1`hK1`hK/`hKY`hKS+S7SИSИYИ/7/+/+Y7YXXX333---PPPИS7S+S`hKS`hKm`hK`hK + 7 И ИИm7m+m+7PPP---;;;`hK11ʷ11/YSʷSS`hKS`hKY`hK//ʷ/ʷYY333---`hKSSʷSSm ʷ `hK `hK`hKmmʷmʷ---И 7 + `hK `hK[*O`hKT`hK}+}7}И}ИTИ[*O7[*O+[*O+T7T;;; И}7}+}`hK}`hKH`hKܗu`hK4+474И4ИܗuИH7H+H+ܗu7ܗu `hK ʷ [*OT}ʷ}}`hK}`hKT`hK[*O[*Oʷ[*OʷTT `hK}}ʷ}}Hܗu4ʷ44`hK4`hKܗu`hKHHʷHʷܗuܗu endstream endobj 127 0 obj <> endobj 78 0 obj <> endobj 131 0 obj <> endobj 132 0 obj <>stream +%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 15.0 %%AI8_CreatorVersion: 15.0.2 %%For: (Aleks Kissinger) () %%Title: (tikzit.ai) %%CreationDate: 10/01/2018 09:38 %%Canvassize: 16383 %%BoundingBox: -47 32 537 566 %%HiResBoundingBox: -46.8945 32.708 536.5762 565.894 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 11.0 %AI12_BuildNumber: 399 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 0 0 512 512 %AI3_TemplateBox: 256.5 255.5 256.5 255.5 %AI3_TileBox: -50 -140 562 652 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 4 %AI9_OpenToView: -745 843 0.5 979 715 18 0 0 73 134 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7772 %%PageOrigin:0 0 %AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 133 0 obj <>stream +%%BoundingBox: -47 32 537 566 %%HiResBoundingBox: -46.8945 32.708 536.5762 565.894 %AI7_Thumbnail: 128 120 8 %%BeginData: 14412 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFD5BFF %A8FD76FFA8A85252FD0427F827F8272752527D7DA8A8FD6AFF7D52FD13F8 %27277DA8FD63FFA85227FD07F827277D527D7DA87D7D52522727FD06F827 %7DA8FD5EFF7D52FD05F85252A8A8FD0FFFA87D2727FD04F827A8FD5AFF7D %27FD04F8527DFD0BFFA8FD0BFFA8A85227F8F8F8277DFD56FF7D27F8F8F8 %277DFD1DFFA97D27F8F8F827A8FD52FFA827F8F8F827A8FD04FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF7D52F8F8 %F827A8FD4FFF7DF8F8F8277DFD26FFA827F8F8F852FD4CFFA827F8F8F87D %FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFFFFF7D27F8F827FD4AFF7D27F8F827FD05FFA8FF %FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF %A8FFFFFFA8FFFFFFA852F8F8F8A8FD47FF52F8F8F852FFFFFFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFFF7DF8F8F87DFD45FF52F8F827A8FFFFFFCBFFFFFF %CBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFF %FFFFCBFFFFFFCBFFFFFFA9FFFFA827F8F852FD43FF27F8F827A8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF27F8F852FD41FF27F8F852 %A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF %FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF52F8F852 %FD3FFF52F8F852A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FF52F8F852FD3DFF7DF8F852FFFFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF52F8F87DFD3BFF7DF8F827A8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF27 %F8F87DFD39FFA8F8F827A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FF27F8F8A8FD37FFA827F8F87EFFA8A8A8 %FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8 %A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFFD04A8 %F8F8F8FD37FF7DF8F87DFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8F8F852FD35FFA8F8F852FFA8FF %A8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8 %A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FF %A8A8A8FFFF52F8F87DFD34FF27F8F8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA827F827FD33 %FF52F8F87DFD45A8FF7DF8F87DFD31FFA827F852A8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FF52F8F8FD31FF52F8F87DFFFD48A8F8F852FD30FFF8F852FFA8A8A8FF %A8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A9 %A8FFA8FFA8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FF %A8A8A8FFA8A8A8FFFF7DF8F8A8FD2EFF52F8F8FD22A8FFFD07A8FFFD1FA8 %AFA8F8F8527D7D527D7DA8A8FD27FF27F852A8FFA8AFA8FFA8AFA8FFA8AF %A8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8FF7D7D2752275227522752 %7DA8A8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AF %A8FFA8FF52FD08F827277DFD24FF7DF8F87DFD1CA8AFA87D27FD0CF8527D %FFFD1EA8F8F8F827F827FD05F82752FD22FF27F827FFA8A8A8A9A8A8A8A9 %A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8FF7D27F827F827F827F827 %F827F827F827F82727FD04A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 %A8A8A9A8A8A8FFA87D7DFD05A87D7D27FD04F8A8FD1FFFA8F8F87DFD1CA8 %27F8F827F827F827F827F827F827F827F827F8F8F87DFD23A8A9A8A87D52 %F8F8F852FD1EFF7DF827A8FFA8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8 %A8A9FD06A82727F827F827F827F827F827F827F827F827F827F827F87DA8 %FFA8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 %A8A8A9A8A8A8FFA8A827F8F852FD1DFF27F827FD1BA827F8F827F827F827 %F827F827F827F827F827F827F827F827F87DFD28A827F8F852FD1CFF27F8 %7DFD1AA82727F827F827F827F827F827F827F827F827F827F827F827F827 %F87DFD1DA8FFFD09A8FF52F8F852FD1AFFA8F8F87DA8A8A87DA8A8A87DA8 %A8A87DA8A8A87DA8A8A87DA8A8A87DA852F8F827F827F827F827F827F827 %F827F827F827F827F827F827F827F8FD05A87DA8A8A87DA8A8A87DA8A8A8 %7DA8A8A87DFD05A87D7D7D7E7DFD05A87DA8A8A827F8F87DFD19FF7DF8F8 %FD18A8FF7D27F8272727F8272727F8272727F8272727F8272727F8272727 %F8FD0427FFFD16A87D522727F827F82752FD08A8FF27F8F8FD19FF52F827 %FD04A87DA8A8A87DA8A8A87DA8A8A87DA8A8A87DFD04A852F827F827F827 %F827F827F827F827F827F827F827F827F827F827F827F8F87DA8A8A87DA8 %A8A87DA8A8A87DA8A8A87DFD05A827F8F827F827F827F8F8F852A8A87DFD %04A87EF8F852FD18FF27F852FFFD17A87DF8272727F8272727F8272727F8 %272727F8272727F8272727F8272727F827F852FD14A82727F827F8272727 %F8272727F852FD07A852F827A8FD16FFA8F8F87DA8A87DA87DA87DA87DA8 %7DA87DA87DA87DA87DA87DA87DA827F8F827F827F827F827F827F827F827 %F827F827F827F827F827F827F827F827F87DA8A87DA87DA87DA87DA87DA8 %7DA87DA87DA827F8F827F827F827F827F827F827F852A8A87DA87DA87DF8 %F87DFD16FFA8F8F87DFD18A827F8272727F8272727F8272727F8272727F8 %272727F8272727F8272727F827272752FFFD0FA8FF5227F8272727F82727 %27F8272727F827F87DFD06A827F827FD16FF7DF8F8A8A8A87DA87EA87DA8 %7EA87DA87EA87DA87EA87DA87EA8A87DF827F827F827F827F827F827F827 %F827F827F827F827F827F827F827F827F827F8277DA87EA87DA87EA87DA8 %7EA87DA87EA87D27F827F827F827F827F827F827F827F82727A87DA87DA8 %847DF8F8A8FD15FFA8F8277DA8A8A884A8A8A884A8A8A884A8A8A884A8A8 %A884A8A8A852272727F8272727F8272727F8272727F8272727F8272727F8 %272727F8272727F827F85284A8A8A884A8A8A884A8A8A884A8A852F82727 %27F8272727F8272727F8272727F82759A87DA87DA87DF8F8A8FD15FF52F8 %F8A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8A852F827F827 %F827F827F827F827F827F827F827F827F827F827F827F827F827F827F827 %F82752A8A8A87DA8A8A87DFD05A82727F827F827F827F827F827F827F827 %F827F8527DA87DA87DA8F8F852FD15FF7DF8277EFD17A8FD2427F827277D %7DA87DA87DA87DA87D7DFD1527A87DA87DA87D27F87DFD15FF52F827A87D %A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D27F827F827F827F8 %27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8 %27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8 %F8F8277DA87DA87DA827F852FD15FF7DF8277DA87DA87EA87DA8A8A87DA8 %A8A87DA8A8A87DA8A8A87DA82727F8272727F8272727F8272727F8272727 %F8272727F8272727F8272727F8272727F8272727F8FD0427522752275227 %27F8272727F8272727F8FD0727FD05F8A87DA87DA8A852F852FD15FF52F8 %05A87D7D7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D52F827F827 %F827F827F827F827F827F827F827F827F827F827F827F827F827F827F827 %F827275252A87DA87DA87DA87DA87D52F827F827F827F827F827F827FD07 %F8277DA87D7D7DA827F852FD15FF7DF8277DA87DA87DA87DA87DA87DA8A8 %A87DA8A8A87DA8A8A87DA852FD232752FD05A884A8A8A87EFD04A852FD0A %27FD08F827A87DA87DA87D27F87DFD15FF7DF8F87E7D7D7DA87D7D7DA87D %7D7DA87DA87DA87DA87DA87DA87D7DF827F827F827F827F827F827F827F8 %27F827F827F827F827F827F827F827F827F82752A87DA87DA87DA87DA87D %A87DA87DA85227F827F827F827FD0BF8527DA8FD047DF8F87DFD15FFA8F8 %277DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DFD2227A8 %7DA87DA87DA87DA87DA87DA87DA8A8A8FD0427FD0DF8277DA87DA87DA852 %F8F8FD16FF7DF8F8FD127DA87DA87DA87D7E2727F827F827F827F827F827 %F827F827F827F827F827F827F827F827F827F827F8527DA87DA87DA87DA8 %7DA87DA87DA87DA87D52FD10F852A8FD057D27F827FD17FFF8F852A87DA8 %7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8A87DFD20277DA87DA87D %A87DA87DA87DA87DA87DA87DA87D52FD0EF827A87DA87DA87D7DF8F852FD %16FFA827F852FD177DA87D27F827F8272727F8272727F8272727F8272727 %F8272727F8272727F8FD0427A87DA87DA87DA87DA8FD0B7D27FD0CF827FD %067DA852F8F8A8FD17FF27F827A87DA87D7D7DA87D7D7DA87D7D7DA87D7D %7DA87D7D7D847DA827F8F827F8FD1A277D7DA87DA87DA87D7D7DA87D7D7D %847D7D7DA87DA87D52FD09F82752A87D7D7DA87DA87D27F852FD18FF52F8 %27FD1A7DFD0DF827F827F827F827F827F827F827F8F8F852FD187D2727F8 %F8F827F852FD097D27F8F8A8FD18FF7DF8F87D7DA87D7D7DA87D7D7DA87D %7D7DA87D7D7DA87D7D7DA87D7D7D52FD1BF8277D7E7D847D7D7DA87D7D7D %A87D7D7DA87D7D7DA87D7D7D847DA8FD057DA87D847DA87D7D7DA87D52F8 %F852FD19FFA8F8F852FD1A7D27FD1AF8527EFD277D52F8F827FD1BFF27F8 %52FD1B7D27FD18F852A8FD257D7E7D52F8F8F8FD1CFF52F8F87D7D7D537D %7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7D52FD18F87D7D7D53 %7D7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D %7D537D7D7D5227F8F8F8A8FD1CFFA8F8F852FD1B7DFD17F852FD237DA87D %7D5227F8F827FD1EFFA827F8527D7D597D7D7D597D7D7D597D7D7D597D7D %7D597D7D7D597D7D7D5327FD16F8277D7D7D597D7D7D597D7D7D597D7D7D %597D7D7D597D7D7D597D7D7D52FD077D5252FD04F852FD20FF52F8F8FD1B %7DFD17F852FD1B7D27F8FD0527FD05F852A8FD21FFA8F8F8527D527D527D %527D527D527D527D527D527D527D527D527D527D52FD05F8275252522727 %F827275252522827FD04F8277D527D527D527D527D527D527D527D527D52 %7D527D527D527D7D52FD09F82727A8FD24FF27F827FD197D52F8F8F8527D %7EFD0E7DF8F8F827FD1A7D27F8F87D5252277D7DA8FD27FF7DF8F8527D7D %527D537D527D537D527D537D527D537D527D537D527D27F8F8527D7D527D %537D527D537D527D537D527D7D7DF8F8F8527D7D537D527D537D527D537D %527D537D527D537D527D537D52F8F87DFD2FFF27F8277D7D7D537D7D7D53 %7D7D7D537D7D7D537D7D7D537D7D7D52F8F852FD047D537D7D7D537D7D7D %537D7D7D537D7D7DF8F8277D537D7D7D537D7D7D537D7D7D537D7D7D537D %7D7D537D7D27F827FD30FF7DF8F82E7D527D527D527D527D527D527D527D %527D527D527D7D27F8277D7D527D527D527D527D527D527D527D527D527D %7D52F8F8527D527D527D527D527D527D527D527D527D527D527D5252F8F8 %52FD31FF27F8277D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7DF8 %27527D537D7D7D537D7D7D537D7D7D537D7D7D53FD047D52F827FD047D53 %7D7D7D537D7D7D537D7D7D53FD057D27F827FD32FF7DF8F8527D7D527D52 %7D527D527D527D527D527D527D527D05F8277D527D527D527D527D527D52 %7D527D527D527D527D527D5227F852527D527D527D527D527D527D527D52 %7D527D527D27F8F87DFD33FF52F8F87D7D7D527D537D527D537D527D537D %527D537D52F8F87D527D537D527D537D527D537D527D537D527D537D527D %537D27F8F87D527D537D527D537D527D537D527D537D527D52F8F852FD35 %FFF8F8F87D527D527D527D527D527D527D527D527D52F8F852527D527D52 %7D527D527D527D527D527D527D527D527D527D527DF8F8277D527D527D52 %7D527D527D527D527D527D5227F8F8A8FD35FFA8F8F8277D527D537D527D %537D527D7D7D527D7D27F8277D7D527D537D527D537D527D537D527D537D %527D537D527D537D7D52F8F8527D7D7D537D7D7D527D527D527D537D7D52 %F8F87DFD36FF52F8F852527D527D527D527D525227FD045227F8F8277D52 %7D527D527D527D527D527D527D527D527D527D527D527D527D5227F8F827 %7D52522752527D527D527D527D527D27F8F87DFD35FF7DF8F82E527D527D %527D7D522727FD09F87D527D527D527D527D527D527D527D527D527D527D %527D527D527D527D27FD04F827F8F8F8272752527D527D527D527D27F8F8 %A8FD34FF27F8275259527D527D5227FD0BF8005253527D5252527D525252 %7D5252527D5252527D5252527D5252527D5252FD0CF8277D5252527D5252 %F8F827FD33FFA8F8F8527D527D527D5227FD0DF852527D527D527D527D52 %7D527D527D527D527D527D527D527D527D527D27FD0DF8527D527D527D52 %52F8F87DFD32FF27F8F87D5252527D5227FD0FF852527D5252527D525252 %7D5252527D5252527D5252527D5252527D27FD0FF8527D527D52525227F8 %52FD31FFA8F8F852527D527D5252FD10F8277D527D527D527D527D527D52 %7D527D527D527D527D527D527D52FD10F827527D527D527D27F8F8FD31FF %7DF8F8FD0652FD12F827FD185227FD11F8FD0752F8F87DFD30FF52F8277D %527D527D27FD12F827527D527D527D527D527D527D527D527D527D527D52 %7D5252FD13F87D527D527D5227F852FD30FF27F827FD055227FD13F8FD16 %527D27FD13F8FD05525327F827FD30FFF8F8277D5252527D27FD13F85253 %527D5252527D5252527D5252527D5252527D52525227FD13F8FD04527D52 %52F827FD2FFFA8F8F8FD065227FD13F8FD1752FD14F827FD055227F8F8FD %30FFF8F8277D5252527D27FD12F827527D527D5252527D5252527D525252 %7D5252527D52525227FD13F8FD04527D5252F827FD2FFFA8F8F8FD065227 %FD13F8FD175227FD13F827FD055227F8F8FD30FFF8F827FD04525327FD12 %F827FD1852FD13F8FD0752F827FD30FF27F827525228525252FD12F82752 %28FD07522852525228FD0752285227FD12F827525228525252F8F827FD30 %FF52F8F8FD065227FD11F8FD0A527D52525259FD0A5227FD11F827FD0652 %27F87DFD30FF7DF8F828FD055227FD10F827FD0652FD05F827F827F827F8 %F8F827FD0652FD11F8FD0752F8F87DFD31FF27F8FD06525327FD0EF82752 %535252525952FD0EF8FD0752FD0FF8FD06527D27F8F8FD32FF27F8F8FD07 %5227FD0CF827FD075227F8F8527D525227FD04527DF8F827FD065227FD0D %F8FD0852F8F852FD32FFA8F8F8277D527D5259527D5227FD09F852527D52 %7D52595253F8F852FD0AFF52F827527D527D52595252FD0AF8277D525952 %7D52595252F8F8A8FD33FF52F8F8525252535252527D5228F827F8F8F827 %27525259525252535259F8F8F8A8FD0AFFA8F8F827525252535252525327 %27F827F8F8F8275253FD0852F8F827FD34FFA8F8F827527D527D527D527D %527D527D527D527D527D527D527D527D27F8F87DFD0CFF52F8F852537D52 %7D527D527D527D527D527D527D527D527D527D527D27F8F8FD36FF7DF8F8 %2752595259525252595252527D5252525952525259527D27F8F827FD0EFF %F8F8F8FD045259525252595252527D5252525952525259527D00F8F87DFD %37FF52F8F827527D527D527D527D527D527D527D527D527D537D5205F827 %A8FD0EFFA8F8F8F8527D7D527D527D527D527D527D527D527D527D7D7D27 %F8F852FD39FF27F8F827527D527D527D527D527D527D527D527D527D27F8 %F827A8FD10FFA8F8F8F852527D527D527D527D527D527D527D527D5259F8 %F8F852FD3BFF52F8F8F8277D7D7D527D537D527D537D527D7D52F8F8F827 %A8FD12FFA8F8F8F827527D7D7D527D537D527D597D537D5952F8F8F852FD %3DFF7DFD04F827527D527D597D527D52592727F8F8F852A8FD14FFA827F8 %F8F82752527D527D537D527D52522727F8F8F87DFD3FFFA852FD05F82827 %5227522727FD04F827A8FD18FF7D27F8F8F82727FD05522727FD04F827FD %43FFA85227FD0BF8277DFD1BFFA87DFD0DF8527DFD46FFA8A85252FD0527 %527DA8FD20FFA87D2727F827F827277D7DFD7AFFA8FD2EFFFF %%EndData endstream endobj 134 0 obj <>stream +%AI12_CompressedDatax=BI 0zDk`sOWuwL guSU]wWOr[;K^}lfnԩzfW~Ab֗yV];Um[GyVB~>otQ]X^4z:|k|k"=pk==y~<֗ +r.]AAV*>ml׻CCT>q a@MJpS?z[~-N~ʮ׎Zml-6k'ܭ6u >rb<Ձ<w5ʗ]hg٩z0Yx rx{n~  hvgI >ÿӳ&0V3I _ VI/ @Q"SҨ}?n +ގY!7띗FM6kG]ҏ5^:G,iii :.0<^_9.Yh(2W>~x { j8j+A~ˆMB>L诙+[ 7xxbuPj"( -f|~֟3C}ih!̆$jᣕN:lgl:VJ]=[r @+/f,AjZr[ZjüԀw )Y}oCpG?En}[n pJ|iz`ꭃC`~d]>}Nw/C;n-}Cke4$;`I`|R}4c/՚Qvv1'Ϯ"X_OF4d5^"lȍFqٶO0g︪G8rp.-el0+A,8>/[i {dAY-fB{l .G&*Up( +d$ȋVrXa( T ESB?j&Be(aGqzW~P2`pWYTT(bʇ3O0у8 Vk̄.\ pqr\|̀,[NAZ7\"..9 Z"2 "AT**)#Fp+j.VJ\-UB5a (ʪ>xjR)WJbP*a%++++rT. `% *˲(2JRT.JRBXJU%Q%V+VbX*06a1+ȋ ,)T BP* BqD2$ Ul@B Fl( A2%" ( O4SPHq#g | rux.3eP $3C1qdxy:J;]D U>'1Cˏ ./゚<7WYkb2Q5*TtR3=ߏBQq dLl|nt\$d +x"{ +ƇJf@ :1 vĻ1\ xA "to.VFX1W^}U*\t?$ZPdBрi4 [fKp)ډl(sN9fuPjg=K؟ѵqK\/$W:9)Yq)ĸwp%fW2$†FI+C<5o8 012Ur\Lb n(QyR~^L&,Lr0B[<F#^̀Uq-sIA  + _(]>"2#A`2Ra ŰK`XbTJ+@GC2XYB MNzA~ r5|MfLR +؃X[B`9'2X"u+K9_x +ƨ&T) AVȌ)(XEł-+*SX I:e~*f&_Cb<応\Btҭf*iVs 9eO.Ƞؘ a(*I{aHh/'@`2 +T.W$/.ϔuHŷ2E-b +tWKŗA/LMefڿkAaR^Ѓe@ʕ^)CFH]/Py=}6qc,wEgVQ ]e@eP*AAAAڛ5/5Ou.\l|`Di1'V{b~QvG, +0~z$s<(5t]m5ي ho0 \evBHG:!(B mA@ks1! aaL09 TNddǤn6fH2:Meɡa6W]YQU hi>i+1pL=8הqbQ甹,րhd;j?s+Lk\]s?O4sU_k]9v]vK$&WV؊ N ./^ e.l? +Oʓ+ZEWL'. +PP(~e*%J~hPSSA*Ҹ̟v\檠K;2̒K\-|t릗=nBߖ+ o yf[RŶk@3jT7W?Ͽ<Fb􏒿NM RDg>q}E &}&}&ÄOO{6L/J/i^E; :QMT A&8Lš4[K#oX?j[*6,v1^J }nU ̠CF6:lq(j^f7Ԏ<{;R{sT+TǥrG{fPM9Ya;O>xoɍW7M`cX &0/('|\|+cc.5rcpʸUs^䕱?/~TιkL2ku,jUDE:<;s$uꚰyfڗѩM3f}/tB.DX#cs1 DAT]uH +aC[m lqŦ.u 3'b>㰞E9CA|ц]ڠBvQ36@+CQ9c4L2׾e0l泶4'mp;fy~ҷUB%)Z^M1( Ij tkvQdu|(26DLri87bǝyq@_ɸ ya8XOy̆<%}< E|!bPW"+|&D D9P<;`"B;E1e<L}{Dz-tykVdwc ?՚声?(vO;ʧӎiGӎiGBv:kuO)>iwgPlL5vAM* +*M{2̴cq](i __9ײO_F8=2=2=2=2=2=+ӷLn2}IJNn2}&7&N\<?#ߜqߧ{ʧ]ӮiW|U~ iW|U~c;]Zv]cs2ӋN\Y~#'!<<{ٝZޥBd̷˼0뾦&7_O;+w쁆ٶ|9Xk[MB!ʁdI3tN N/tML+H'u6}S}^'2dJ?`, !ƅ<]f 15"Rd>< q2ҝ`[5^ra q3ߖ%p3Y֜0ϕoн`{[D"I\)XRyJa}$ +1;ЫKK4U? ga <݃̂@k B4; +'9b1W$YMG$ /}4/pf X*< , Bi`>*8Gm]oP`E) 13l)x?`[Gث -B\Bs\W{|#yɁ:i6h=7fm}#Pp,L! <8RnakI2+s8XAE% <~j@k1H9#Pah:GWlwܶoτ6 1dp>ķg9!eКxyEy~,^#^ [KB%KsAeF(y#7J4=jfI}B ,;wT K K46{(9M.S(^BzKB2:;Z "s,y8=sn1338duaQl-#w,yEz|iP93s Yg1G4\KX.6@ d L +#ڽL$!>鱡ay 7k\2JZʀq oJ ^Ӣ Xz;1H+ CE<(F ٱ@BF~h2~Z131@-W& m le|( &c͋Iq3 }HYI9 Y`D s'<󕕣0`$`Hs!9M*@[B&t0"*2c ƤFxDW(AZFIfe$(9-)r@"i Z1O(@^Hx 9 XNq 0$I + t/3/( AXVk͠- H03f[ |;c N!h}iF"^IAu`Ƃ 0Zj!9HXرh-0 HTAЄL 4f!=)"G06ph&lS@QИ?F>IW91 W: +Rݐ{X!9`T2tױ H)]IiR@[|3nFFIm P',B9Ecpyf uYr%#@'aZ"(a%04n#E̍`답}(7Ĝ )sH_8֎ 瓧xApZd74Y,:ZwDf x@{PcAqyP=V輐D<A`9 4ͳ$<,!OB mO) ހ"ΚI0D!MGqE,>)IdEqx@#ZvMǷcO8`Y1f! Xl'֘0t- )WE`% hM(V9&S0W,aH~o211 F tgEǮfI'^L)Y N<0p@%XĽ(#Eq8f`!y-@gMhˡt" “P0NH[0*PHW{䩰 q_P're| +B!" +suS)s%!LC7 17"2dѣ8 XXWPH @)Ȧ)UX`k8A O;ubȍTd# I@Wѐ,EBg)80N`HlX#%(0lhb(Z-<0߅ |>w@02L8 NC1 %!1StZRFYИU(pR6Z PF#599&PLR$bKe@76X(N" \|.MtKBF9{(& ѭI.g5Főh[zd2+6 XPC \+\ p`80: AJëlm[b@` &B\B*/b $d.'Bᶦ܏FL i\PF2 =, <6R#@GvG\p|ĐQGRdNBψ=yDN#r"G` yvYGEa "mUFfidWέ0*96=zJi% O- $yD߷Oؤk'P0BF-06DJ7ǝpY`@{WG${}WѷX$Y?8ѨJ (0tbV-TEҥIGȑ p1"ߋTӼi*&zwf@iSyVwBo +7 _l@a+zDhߝAvI(j"&RpŅ-L#R% S;IX\qŀ|G֫[fƝT5 T +^A"֮ +hH\"Z)M$a 3if7p4慉ʞI0Ht4zJoyc9(J*[G r7%Ɖ9FJv_E653p +)|0r0 8B_%% QV + +hβȅsmvr +|6Q"7l @!5[AL#QI=X#*G6@u|/PD:i12q]26WrP[`_9'!M@9/}}܅Q\F +'@]>M6tq~q@!=LO1i@#<:3@ *S[w6Fk%lގD pۘTU,Qd0$ d&H ,qlaɀɽj!`5 ,T&GiS##IAG31mP8`RO[B\j@JAlLG@]^g|4',鷏8 ++h`q;f6h@a]0e tZlji+R[ZfX#0 ӑ*aB Aʥ:Dku/ F,Xhmh \8=e3!XΖJX,u ΗYWCLˆ@qD4\)L4utf @ooeDYX-U9pHCD 5#^H^SHDqE aY\r+|KWduPr3a#r5!{ &Iz<k3fVl=8e5 jpb kmb΄c#g#d`l> ֜F(@ 2H#EP]dEءR +p@|tB@a2:VuI PGu؜Ympu0[XL#T-#] •[mEĚLdH)Tw{6cu# ̬MCdvZtU۱0azo@%"10IKgL(XΧ*[uǡʉ7xs%#WTT$u9NQO pɭ18]&B`l a|(C@"hw8'λOGOO*CAw +\ 4-]:5TqΐF`#"ڥ@,AzdCn䐁M=)%ĂinN4'Rt۽3D0r(BQ#+l j +0Fu5e +I^5zpQܡm؅8PJ9= ] [Qsb$Aң9X8JW䕰5CZl"YnSF}i L]KLO6Ѧ?(O co As694~ڮg$Js&)E~! FFE."h0 ^ٔ-ǹ UnbRF +ʧL^eʏ0xBu  ͳPcj0b^"L=y, v!U~(8ʬ+ +`:9F$($ٶF7{6vU 98S.zv-v!fl3>Tɽ؀*]7u8G!"AS8e2\M(b,jR]m@dR2a*IAIOX m8-IڇI:=]t2A,i= KK:g8$HxL2߹'qIL"I햔k{|+I"n4M+za4lʃD\m7I+_Tmt-65f;L=XFelap QW!prh_9H "ןc +X#!vn_j"N x?JNZw]O$#.<Aje}fzPEn/*w84Mm kܺl75P]@h)h^#HAaDmUv3:{ mAY';5 ;ϸ +nXSLB;k`Nt=i͂c9ԅv-CzM7au4ABkJgIV6(I0kQq>這Fzl;.&.[BO[JX9]ź`+tV}+]aڞCõ^{),Vi)]MdeTm77nsƮDꦪ\ 7[KfԶ q#Kz5\g;ȅR*ʩRoKh] %Qo.Xh(}jTDSG@[JY~f]70 m \g`/fi=ԯ@jٷ\`M#0x)/='왰A7U%ݴ덲78<{o3IO2.`!XۯJ,Z3 Z|[ []"ԍ7' B%4A&X 4<3N#z p.VVU]o3g=/Xt8;Zu)>.QaHz7G!ހ5 5 z17G0@ -TQj}|j绖yl==I0 Nx#R}Ǎw Hk_>tnZLw;Upl{M"j[HgΟm%n %i=3Ly{AGB5@ۺyAJ`;v {I>CP{AdY3xTIIPaDc# +()lu 3 #X1 +Eb ⳭxnFtp<>a +^mp>%SwKJxޝGI9Uop붤OQ)G 5'Oj }ɜ6x[i%Nbs{ +f'@h2w6WG9(X|NT"#2& +tքyętb([mqڢ1}e#v |E`=Y|iu0ײ/#w%e"\ }]Θ<3ň5 02A`:;:Io`H,(Mm l8w%YH/i=sZD0Ũ{Tr%N=c}#ہw-Yap#2Pu~QDo + ]rvj:T1=EEH tmHN/e|J{S MFySrhDO ,݉У,E(.k@I1^lLe~7r!PQ3Z4X|^]B(5Q_)kV=Qi#Z=QK,e|F(bKs\;h07eh9;n7G_袮⧫t ]1>h4k)+kt$oQS;h'zMjcu>f-e25fi1ezR_&UČpXӵ, +?qKRZQzPuzZ^kK;տ?~rהk8t-ϥaTntϚi[7]͆_ + ĝ?iSѦu>]26TwЈ.Z:)ZzsެO^NeD m[~T9J;Rz FGt$锈H\?=JW~]ך.w4]2&M,]ّSE5x%{#ZqZKgaٜUKW~j[׾^.5 40&tQd>_6__ҵ4z⃴7$vp5LFv8*bIm}0)iF^KWxLТO7$*Y!h膞d&~M 1?M{2E͖Rc\#[J׺)]m +F/hOׂLaR,i SEɴkO~ݴfX ]u +æ1]Ŧj0f$~=&mrvaXOa0vem $z]ך2#~4]ai;͈ӕ^H qWqCOhc$] +=b`CyѡR$o+(;g}R;ӺӴ[ԝlԝlJuiVxZw֝RAٴ4;4qۼ[~z;-Mh籥k2 iQyoN .RF㩼j&]hPF<5UD:Q{Vg'3"F۪5.s_7"4oR:}w9t+̻ƻ3ҵxwglE)#|gT3ufznީN~W|T:/ΩKOsԽFsjT'7魫H6T]Iyښ Ado8:!-K!i%iz7)69⪤}+F&;ǵ7ܬsMSij6azHf)%L!HRF45flM}vͥ4AYq0H2)ԯ.2]ԌxIk(g$pBQ#]8ӢF/~=mޏtiNLOa3lpzA o:2}uG?c~jzS_I?}O|ѕ3ىsةj͍v#eA+_'U 1Ha ebS>)Lm9Dwnqblߤo`K0Ւ+S}vryJ*L߻26JAwb;QWK۩iuZjBKvtiq#c~t::RM_F̉aJ"ZxEҟ /R~M"jF,͊?l/oESG8uo=D13_yY?y5Ymz?mQKܯSFiVk|SVtl{WУ>!)5-yM_Mf 3Kqoe| Q&L*Lש>ԕ4~tO;~m"]6fAI.M|:>NנuL׉Ճ +-sHFhRc.up/U1^Z8׏~ĪYUǦKIGO华$FMr7i%k>F5=U;NlRY=uzt% q}irI$҈=DȤQK>iZkTt`:o}~י2Bu,~י2B:_/H}_ߙjNDo/D"/՝fn0(ZXn}?%"ҳ׶+00NJh)GO`b#5'ID,/f]?d1}d8+f T5Kc)]15ގ.cpc:{H ʋ:)V_0NZtDyH!F=-xѩ?~k;|*[2O8Ȧg*MW~p le*e|ZrVY:̿D߀6:Z_8Mm! ZjUy4kZ^1G4~+\h6SŕDX\۟dʾ|SHַ?-)滿)u|7@n:9?C?V}o:p_ ݍvk (/fY2bJ~88h^ "^x}w//aHd27,/y?d2q؛3Ίz/{3K2*e1(+%=]0cx穐+QKFF%@Xfva}{K8? m* vvav3/3Qva1Oc1K+h(| Vimt{􅕹]6:ߥCrnia c80dgHʈHSh>jMp RzwVnvŋ?˚Kfqd;ٳ^>[mzv(tøRf!\:u۵b6of + {δxދu)BEfXbĭEWXξl=ctL/U"Oz||?FmY~jҿѯ=Rϗu ܄v=G5pvN^5 P0D8aW?bOi'{+۽~T?4,Zo4zAƸl&C + *UPVj$D%\rqżx]G2ءF:+[|6&r}%mϧvqZ 4([ZѻO>M$k {͖&#/ok0ficűC0LQAтc M>|%Y~SI3/zGg{9A yeb]ʆ L|4e+8>A#~!awgMgѬ%0q['jSk.uX[f1='. ~XDgGZ9R6zZ"(QjnJ1]?=GvHI_vطf =\@A@V:uH0&Q䈣ѥ5B~0 TQ\ f*<<=f^ի񾊀B.y | +~Ka|GB/F|E(B>ABB*?dfrB(q8CB!}n0Sȸ0if&wV: "0 ZB w4 :_,c^kt\jF!VBYH`F8=E|31 +a 0AO}@RC@#>Gf LA%th\RKYhAaSҬmQS<$@դn:# 8wB!p2^zVBRg,0R Zȴ*/ZQd6_!QƔ" )l#8+H@rɔc):JL80$nG,F0."[)-~Ŵ3SWh6װ^_Zdi.sJz48!LŌo)2Xr"b3JJ 3z@9ЎU!,0?dפYҦ̯/H :MT<-&*/Kx$ R9ფi3#{5'Hb?`+<*@IׁXsp7Pat@S yMP˾Xepr#@ zچ+C8Kt}>Z;gY8vma`"m"CΓ +].iR"L)p?Ը 4 a4ĩjUұQƺ<ҜWC#hs\XbuЈjBF2\ˌ{iӫb9 YRūP}rBFhFig!<'_k}GhJ/`_ h`ݎ)pPDvnZ}WS1V!AbFXc F(akTۚZy\[]LŽ .5ZZbAC<i#b131"ކ!%;Ο&4dӼ|:np]ٹl&[8o mC].~Ww|݅M~)1XO[EVRxɄU@GW=򻶑6?4`>\6;#ݟz1q %T}k6^F0ky]9~46V;2Nw7:7K'?*y0KaGjױXy(qݬ5KN}la/8Z+5Oh@'?W!21V˓d('p'vCtLwVjX0ݝ^ޫ[6_=0qcxFs#]20t\fmh6z_UY?ˮZGQ=>럍F'r +^9rd0e*l _j;ٮ7_Mt?e4qmқ!άviv7ncؔݳfm B?U?i߬w ʹ)houzK=O/[9hjCCwtQE;[ٹhqsם1 C=,J{N…w3:Yklv/esv64a)wzZsd< P?iNp)^vn/npHm,yTsKzh^:n4t4 0w }1o$ބ7eQ8Ѿ&o]vbD-]&a'twػpH.5F,k_&Od _yyVYxx_zΑKv.kgoַZe0g!:l7qlr] 6dl:0;$/πZ/IO~ P=l\2`8ospێdu ޣ#T̗5\? O51$Cɨ61ao:fUvyQ;h~@vG #?Gai&B+rA6zIFzz!y%AjӽI÷pH[9ŝ:餤*le8^ki5k;1['Y+,WW@lŎBkU; %yN~B5?SS5s$q`I)3,M[T}πEp5 k~G^4֙_;q&&ʞ`}~3Q_qm{g M<=0!G<ܳ^_rǥщ;JoZP}g3>ڪk,r xdS{/O IPԚMeZ<<yu /tNZ0vdq~dIg#U[1ܾܞ}[mvMAR)\es\m=+>z˛O\aqp}v?:ܼx^ԨnWWξ}-UܞdBVؓΟ>p(ܟLR|R_?W>/o_+>__<|4_o>-3aaqQ>O=^;ӽ Rjt_,z^KZw>/ץ_>/5'EvѿjZ"ᇇqe7S/;Ux;W0‡ޭʇΕG2L̿[*_g[{}?yԳƑz[*.>K둙z .swvR;Kwn¥Lp=/ /YoZfin\ZvJg=];fro>܏h +#.|f ^/5>.vn>73~n^y#w7%Jnq]ny L1wWObn0nA=g{rRr\vrui܃}|] ѳWrOZ\rnv7WU>?=;{[<=_rk㻋ysKܫܛJ)߼ rlB9;̜mjvfskv^<>]l콞]QOg}6la=8}gOw듇[/>=\};x{Ct63[X~~s:=mmg[3oݾW:u-Od[n[Oya[Wn_~uvݭǷNoVs7ksw֜1h̭y5b7_b.ͷʯ׷绯n/՗>o?mq{usGon,?^}޽}{w1ؿۏћ ?Ju /Z; -4Z,.KwG?v+ŭg׋s^S?7Cyg;COɝVΟڝ;ܼsNч,l}tfn/ƽr7Oanof;[؝-cՍ{,ݫt{{o?l{ʽӽK3'KKs. +Kϯ7K{K'kS_-οZV|Y<R=>. [9{=5:*ksՅ̜o,.w՚lKmt(0]]i祏oٛ;An>Wb/^[Az?b˽]`^<{{wFs'oouEʻ'wz2zȕRiN\\KG|N)>VSU-.;jTBAoWIpi [7_<}z>/EG6'',b[QqYg-{4y~u&6˙7Di\}agj?YǓҧ[|>_-=|t`Fx[=ѽG{m<<[z\+?բ'˛+O +dga.䬐kׇۣOk|*FOϼNcqexٿ+7R=*zJ{+ʷFl3/x}\(SYԨ;sJןQu~򲺷/>\KǕ xʇw;Oyiysq;ͣ{/?Z-,.~Z}n)Z<[쳍gw8UwsH#Byp3sk; w֎_^?jK/^6x*6^ٍ?ޗ7|7ӿrr{?y﹞$ +_` + 2&'c 8޳\ne! |9ꮮ]]㮥V:nqL8tK^ۧs<7^\5ןfyo֢n{v_,ϙ{#U4cӗ`;A܏/3l{v%oL툽L-5}=Z_Tܝޣ{]9ں>ǠK~:}g6y쭒_/ߍ{ײ9 ]~4ړ{~w2鿍@y]Ǯߵ{k=UktZ{z/Zo=ؒ];`O91ӗ\:4xp~6OS|ަ +/vs'-+%u9%+xjj6WLu;\3nRM*nQsH+{ d5pA:ۓth_w6ABCId۟3UF5Aqh?Fz/|d鮤 _p=}k_.+Xmh`qE/"6|(H8/⦝;V[d׍`2Ǝ|kֆ:ySR2> PJ%$WjN^Jν1ІiKjp/qtٗ<}ɓؗ<}ɓؗ<}I%yȾ#K¾IKW-`-m Kƾ녏2̻IKĻ)KĻ)K(yWCecN]$%{aձYc\G7}Gfi9K +]'Z* +>| {7LjS? s`8I׷2ϥUu|\ w߯LIϗ-;X\_M܈TYCQnf}/H_n}swcd*|wkEG.;2r|du_Y8m^§5D0g_k,>u{-p`ݑ:xF߸3o{\K2)4qG1$fbNڕAff{7}ڸY;Sʘ6٘W*}&&()@* [> :0} 3PmΎU50/ƒ emwez/ 6˂ye Ddfdk eAX&&ѻ.gw>_wl'ZTXp'yIpp^gR0{9,(S:%vt$Pa? 3&5k +0o?s#:ڭ\rd95k>ݤhte o߷{D,ش=gM27jt'-Wvd-!/[lρ-ppa`\wfi+I)<؉EL;wr32CTQS$&,$[buYII ۘѳ&ȱoVi7+gv<{Dܕn6bXKĄQ-;s[]@+Η+g'4Xҏ}!; 7(d*sP̘īURӒPd^ sũmqH*gW\]"w,H]AQrIUlJ~r"w'*'1ڪ3ߕpX#{I7?f[ȇo&[M?rUao0H?]uY|axLOKڮ-BOc/}j,L6wRcn2ɍL< +y2w1%)rOeFk(2i@+,7;`hۇhhfԤ+y |Љߢl}ʖUq}·W j'~N7fkrZYЧ$8 -qdogIM%~fPLJ eXP鸷 +zsOT}GM Qs 'ʠF" ':~MPojK0fu +Q00 $Rؐ&a܊dαT\ d,%uD(dSLD,6 <*+%`.}0sTc9)a? b_YSe lWQYv,J#+'GB3jFTJ5&h&+U E\wjRZQ"TbBk`K5JjItfQTxh<  p0|ğX # 1/_{"4nPݢ"ɩV;@&-^욮TʼV9! +^p2r XT[⚑pX2L?燦7W izj`?@> 7vLB^(]X2aixN7vy];ogTĶ❊'|u1!2€0H%F(~J>+O ,}wu=ۦpÙ~U&j'>}As@; `.7oI:4u iB&9 ҏk';e$Cu+Gۘ}9`7yK$s?^-N'P{gV?I&\$EAHi +TYS-&jx/%LwY]$#b+4wA]fzӾ6lEZڙ)0/@gR"b<>Kw嫻o_kA3ݵ}Ӎ%R< Ǟ" n=H*`iwDs^*lIdTpvks3𙢡7%  -2+,GZC +-3ziiDQ+Z?gm+;rB4KV%7S1=a^Le= ̳uaB|z9b)&0\'X4S3> 6;IoSт2oCVNGe`3(^pTnga$؝5=XʗshAa >N;Wr˛Yycm:o8yH.˸&[MYn*آ +a,l LT X +1Ci:L"O?wfM""W]xy^Xv'W(bAܨf]%h]?rf L~uǤHVp_.{D%懂UۥZ@4q0 tz)8/+d +u?,sHe&H{/gkU >ʋ>d5ըz[ȓ#G!~'gt2V\;ȟY zBԗ+_gAZPܳ +)bׁ9_ +f&Bʡaކ%`i:f]l79n2wAo-+\(m2ou4nfseZU`93vc h~G?qzJ}h65GxIwtSFo& + Ey~reӏw. nՓd;U[ÏXlYN3#`3Ϗ,5Ol1we8{sZHw,h+XVLw+}a1m37tЋʱp\X/:M&-ąT9)gǩ7We_!; iL8]{,%żtt'H#f>(0P) ]!TxI7*(_Ozqk_Z yDH:c}{XQ."V㌲ +' JFD-_#wU{YY#ku=+f@e(eqI4P(BJj]B%Y-jh]BWZ +E]u烫@w=<*o *"! +{߰_3WNp$6U/IiHo]IoQ4rsl710%FpfKnYMjVЧxb)^Cy5Yk2UƮQ;O}p8XFvK-ҟ[1ޥ.l4;} dcy/Jvk?;}l>^=;}wXtxt7Pm(=d@ tyMv>@ H1\@t~:{Ѭ..٠F˟B`rl)EC} b_y;DU6wPތ;uvrnEvOWvcZ>:.d +Mel-7j4jNfE’-vgF@rel8R-⥽6|#2qkmeVK^wܨ%z8ͦNb6q:@AMV\Zn}d g`؄*^-wz%E -Dh*S]ʬ{0N~(Zm|L=6@KmmxxDDi G Wr#~.)T%#4 Z<6ZDB;Q TJ3>JjA[KGB܎n5_ڨQ3dhLR2nyvsA+z=|ci摫T?ʳQ0Y-W7$ĸz +K\$bEOeY·&6) 撺^dI)]z t""\$[((i\yP9I2"# ^c(6v@(Crr1VEyX'^)U'zWBjG ,~[t'g.uV-R.6r3 + +BGKQÂD _P"PCoTP}jˉayЇ";{+b._!fΝ  15CqK' SUrLɨ7J>GQF9> PO-k1Z% ,LVc`_6u?$3 +w/:4]n|= coԃ̎OHHoύ8Ђ5ײo(t=j5^4Nقe9%ˢB%{B,=_QֺXuKI3:N~1v$ɀh\t OHd;} h +QZxQ>1FdyJts#R36;R۟L6;9g~'L3KoRg56d*6._}{%|'rVH'+ZpXhkݝ_.; ]X YevmS&; gpaBbpCb̏"ޝ,o>6\ ױ_Z[99g]i1Fm*Ҷj)ЊH]Ѧ4nvlmF~KDjhvϽWip[yu;Nlլ6VKi e,ƙ@jCCD i"-&yd#^s +OVZ:Znjt򀕪DCZHyg%"9E|M .*XIU'-%J;bcIi=LRwlMHa^}O=# ZD!B<".OsQ F +ce,>K=/HD>tZɦ$吶o iA=NTC^!u)lp|;H_Mqlc(/w:*m{. uʵRKx #z{SGzw/U_2FX[AAgμH~WHV ,m]hxckH[D~2" ?xͩ//1@]+;pH{Shծ #IGI>*튦R w FtIpHwnH͟'4"rAlfh}Rc݁(,]3,[ΫU45Hu)@٤K+fm7ihݧ r4qða*=ߴQͷ:9z;&J߶@hƝ; )2anU,ojYX+G?5߆)ӷqm(v>Mݼ5V݋[Jmq*(XƯåRy˾o8=*{VӍW[o~&xCVͷڪvBeͧd[Хz,BoFU7Km>}jPפ6fj |ŏ9)޺-6+We]tm$Ϸmޮ8w '>drY5{+xMLJ̞Syཱ2}osM5/'ϑcI mVxm OG"ط=7 ,It}^\l"Zh e,PGhk"%K*1Xҁi>m!Ӑ XD +"_iq&ClaUVF[H-" h#Eֿ&R c>=U&RlSHڗE6ES6&™}̍k hXv1w?Ӝswy֙Wݬ9>M!95ϟE1"YXo, K4A;O$JY*~O*y8bSHE&mbEPrCk17R +]=kuykǓ8ڑ uڵfM*qvjd;e~&ӭ'?( ++1K?u&/_װ8ffpa5,Nbm.b9`~4LPNk;1 Rj]L)&h'k%|6.=:@JjΠA|DI lUUy[[Os؃,-H䉟NQC-In|4nBAuVStî:-ϣɑe/#5TO ?NMI!#l$mTF4HY0NL h}lj٨(=>]f+g(-y1[FzTE ; hc(r;Vz25%N\2b KF~ȗ}<\{m,BK(CdyEnk8C04Bf0IK7$eW*{Z>#|I2>W +1t +m]Ad9Sx c%rSiXL^iJh9lFTSҧЎpl1_oCvGH|>oDN;Q hNdp:\#nmAӑ97FΑ IlYBCR[Dա*<3 NYﴘjN+jx i[բgoENX|,M + #t"eZL)ѶSDNx$j$ I/hϢDS,x%dp ;_ &N^tv`\.^1 O!M65k@^ztPF x-9gned_k!YNm1,{1$dM6M1{b~?@YSjҒ0358 P+vޏÑo /&``fu!ύ 6K{ v{|oFY؅6|=ɾ׏"`k5]xCvzHP!8(.<_a8*{ՀcTB,a>kC.(1x'ǑQ=J)-LoooĪq~vKem럵֡!sIE#Z:Y_'re8K]^JŔyR7WPLTmyهasJW%8`4kӦNǗS8N1]幢wI_Q{|za˜3<>Ep'.id>\uI-e夤9C&8 +"9-jwQaZAc|3ע?4d7ISa/nZ6r/X y 2Wd32"wlzX1-Uh#'ܷ{Y}{ ^`Ύ"L}V=4{ƎUQXJE0(#g4/9 ؟enĝ̔SxX/4Q%Y~[+?TRW2f|,a?- 4LY7&џo]2 gdAlg#gg"LmiLЙck;/5c$D +ka8upA qb%l4N<׮P,Bh%PL>D.]LZ59 [+PG>_Te 9mh#?IipָMKGoCG5:=1,|QZH%= "gev;H fv{FBGR$#s7_d|3RHEp]p}iɇ^neHSc +T8yTr'I pT8 N=>f?kRQ ?Y/iyVȍr{,;=@ E 0Na.>usA2w;/r5'b9ܬ̫ԼG訊z/Q.q|g/N2 k]h&kg_hކZlx=IKLl4V:]"N\,3%q9Jygz&e/y[x/ >K.[ܼʰ ~MD˰=NZHu Re.VԽDnqULHv%>Ry=\+ÎXS+C/lal65Tҡ~=6GQh!3‚F?q|5.֎*Z> 5:!{I~TzcGn{EGTYMjʨv.It:upsʎܩb WI(G#ِN+"{8?)"9>oNJZ~Έ. _/šv!"F Gzɦ;/sj6l:\MT˳r|ΦSū$NFnͪ?vQ6#7MwF>1NmFЕMK'&N-ٞb|˦S]l:5Fzvor4n Kctn6qju60N hMᳲl˿ͦ3NK{MwNΦͱl:ΦSX8NmDqă{l#;#Mw\E61DkerM6Z.f=@ꋝtuv"GV-tivy^uaN;$:TD9G , KPzꔢKFEr򍩳(:^RhJ:]H=[UxD5:R\?2'T+twq;=WMsiV3d̝V&D:C$'.bkeʌnPEDq6~ܱoG + 3| +;ѭ˾?||+UԹ}p vU"9df +e %jՀP&6 +I!cc[#L4IT#zzg][('uzIfp!*‹|Rj7Txbsw8pK j,~pxYg ':*@"Jwg,C֭>^ːg4ݟT;OdRޥDB˗N;y^s*{E5NpgVstybZ4sWÉ츙c2b谵KUf>/{tpΐwD 8yOŎ΅U$1]3坒߮$Es #a }3d$ɞh+=Q3$ةJ4P.ʨȪ4dO,~IILZ'PDM{a^p+0T,ր׬OV1俜ZrXﮦjݷ?qmi^Mu ۞TH<9)0|<d8Y/Ǖx+%)+9˰0rF3v3X}€'s]I$K{}"Ùl[K& UE-|8vf%2YGr5JD +c.hͱE&R{Ѫ +\"kAJTn:"!55dix]ewRb <2#hew5[$KT"}ҫ#x4.NvZ+z>qI{W/}vtl'ͯ$]Ѵr$Pf +ϬNXPtMQN$bv Ħ픤ãU]BݩԦMۿ̂G*$ViNAe@8^֝ Ҏdd2OMS'DQU5tpJK^ SZ&^ħu 9-?gc*t75Ss%vGb_]ph I7lt&Z1'ʸԷO׺?3,Ee^z ]qbǼût ЈkpRm S3[PJswل;uwL?4*ixs=Qɞx<-젞e3NʱtρKAQ/v|uIrTۭSV{tR4>2xYY]:W9EWd(d,|QHQc(3o\^dS +(a}DQ>YPKI +Sf8K ֮wP`]?CwC]\O2?Jiέ_כּTG=3Pg;QOd߱L? +V3N +j"vqv]?YGQDNSO5QVs1)zuo/맫XA]?I7PwuUOAQO-MR\zCAq맿b2 weFuTLMIU?iu₺~eHȫ:9={~UNkIFEu-5^Tsuv]?}b 鬵z|.}()'gEu(l~:yGOOoɣ9I±0W +WrxN{f!J?iza̟ S`8V\?և +}wۘb;4}4qs\8#k^7Ym9u,֝ڶI-íJ;mQ.;cG`9rkv&N;NSD!s! +~(27Owıن_[Kmit'W]\iosE,ln ޫH__!Z(II+VԈݠyfͱFG>Y^ޛIb/Pe60P&iO5=:v9tٴd_) $͉V@!ز{-^ٯ\x%beZ˿6m,^>%8/k,[>A!jbU*=_"NN߽v|(iú`k='¿s+AD:p(Zא g)kƒ%Zc>!O݇lp<}Q*I};z甾 E7لW^vh(K_? RYٳH_<oH)+YhI'.q#=l5@"ʐ}oD(oiNoˈlulָQۍrZRNoYM Y(m*b Jjln,)l d厫Mpf(gW|.z5!@w5I7I}P#ШH̽,'S_v*;Ij<{5nC}~^TEϳ+}l$g_9b>§ "3~'OnCb'|oid^|o;W^pZ5k6bj܎*; Nw$_>? ^)|Y@7K+sK%,8U ڷkj_н30{s&ٚ 9ޢWgzD/k=o%kmH5+`H Z4~z5dOʒd%wyQ2Aзn\r>+XT(^En,K Gx|m_T0eYku.D)2@}r"فvE84OaOkZZw>$r&$ hյٵN]1DBY}+}H = ,h=K)=M-xo{}aE74s<=Rk-Ry!.s °*7;VQ;p}RzN lfXFcrDZh&-c 7 2{)")ˈ"9s2'f e?kmDžߘۗ;upK/"f3nfx WQ{ p-`4 萴kkltҨQpWp*^)_QCȬQ\P[: .;ǖS7 ,łm!+&[ 7@nY> +eK߉z1R%NPL1රYQ-ܪ R. V A䷜e8C0/AYsԯ +p?.lHz6N&d;/ySmi;PZ=dk_zeCU,eDTNkI;Ɲ|~Ie_!T vV: 8$J,}d`ĤۡO")r:"J}RP>ĥ6ROH]b)ۧkmv(We{mTE1EFE=_4-rvQoQrh[d3zz\ LѨh_4-lFErh[Uyh[7/ʽEto0"j;Od]pbRvt+N|5 _C,F[.Xs /Paɽpa-gPgm@|*˞!A"̯"*,AyDmLgXrJ굏E)7{T-N),VS ŒOp ?gf3Y\yL1?]&`Y r~>\쮢Wt#[.a9^ wH=K dȍ"iFD+)B^.%PdCA6$̞o}-0ø7,0e 7}}_}U.g:^U)E&?2T#t׾43H"'Bf3b =BX  +zre' A֖X=0O]jlxzÿ l3weCk%75@(b2,˄DqS|!A2ᖼZ E "2Ϸ_b?i"b%>b.f=P{[X! S.@W O6\DR) j#LmяDu}i[bV+ `Mga._N†86"EV=l"(謄p aVS<% :g ^n@zW^G,={sl{#^O$zm*)S0W.ژ>7' ыO+7?j֣$כ逖hi7 Yt&Lcös3,l K!dyea<IKc] d$i@8 &{)X{}_EC$zbas&2#8ŪA:0 +swDawy 6m ~jY3{ķM b߫qę7Sxs58(VM +",(ADHrg"+ts mPl,qrOklz +=QYbs\PZÞa8-;qMk>): 0E= [ֻNYL ٖo셼a`6\Pj;̾v?tg +_d3ϟ;{ů[|a\@?kn^|]ѭ }NjE`xHy@|)_Jt6thQ V8~Fn)rD) }VA]jf)i} .<?wNr)ޏQ߇}LKǨlrc1]}X\Ǩ(vczgy?F}Ǩ#N~í<`>(h2`xu^~7&b ;mđG謊D>vƞ2q~%`O}emcs& *{Cyыg%p<\xd{VL)^vm<2:{L^dX|v#WN cXSS|$X$ )>x)#)d'HÛ& 4 +5v2ßɢg1WG_"`ѣjMΫdӛ]nM柫(zv_}.箢Wl]93DZ+' +v+f7UV2NzUsym4wLUƔӣ1(!H&k|_xq5@LA" " Pd8|57𥊾*6T|4zN!~v|fԕe¯,U g5d~Wו1o?uw0TxW'_𩘹gbk/!_$0Wa ,u}"#þ\As}T$~s +:AVqG/_¥C`D4PDW +Ol^EJi @"0)t$x>qCz$*D%MhUF&a?)!T!1)ggEQXhF`CTlaWUdb$|dOb? 6*l||EǷo2j:n]>@CjdR@$K6:\z-_W) *¬J> >:TADܯ"BH:dC gYh-_ r!cV(:xHGm_*a?qq:#:%&`6>zz{O/"|{s06;qW,Áav6Y&1?M]ſ`p Ib A͏aml Sb YN[0 Ծz2NC2#h2A_ Dw h2BDG2`gGbu`P8Ohx\eM4" +`M| "$h_8 +`/P)GҀLx7$ G`Tb+N%KBD|@'Jx ,LS@G@!FQ P, &c5I  9bhi|* <$H: +G!/“fA `HA +& #P "p #QU,)A(h6Ba 9 U"DX@h!JlCP(?T 40@a + S5BX @h0мCI$&|@$t~$<~f+_ +4D J!h^AR$p8z@%=ğ Bt px8&DO(4 O`rm. +&JAkg3+`]M(bѝW?`NIфTo/o%7`|A]IVwIXFos4 A U|E#&CW^X +> +R0gx̀ SXo'dug2u* r{Pqr0ߓU t I; 5kǰ!8B2V (MS0΁LH +0CgdPi! O|;,0M@P'<Jl%t8iĪ㫢 $r$IblKU"k_B j =ZG#%& 0HX %>A:*TxF" K( 'ן$lyG;ĦQSg•z,aG&y,pXůPym5+ݴL·R3o, lRu{&:S ϢmZ +][% mS/[zAB/p! O`,L%hJm1G!MF (|>oWG;;׮CJtܺ\mw¯g4A^fzQ!~` VGz76l0 6"oLhGdSy(yj6\yCb@z׽ސ%ț Jt=K |s[zϝ?(_[AM}x>5 +NWBēd%xCx!;pSt*JTR&p?fA!7 +dɪwX@Bz' ^v'Yfg@QAOz#ɰ`LY rd0G L%XAq(“>]Hڈ +}Y ~=F#,%f;ZD?Jǿ΍\yi"9 NN${6*QHçnTN)5'6GTg~3}3C/\R3NM=MQm?^>(Ry\+K3 ;yf т'bv:]Z8W*ؓd'ދXsw tsgxD>b'JRr,,CO:|Yۻ"G졜}j_RK?Q#S ,!id }J~K F+D,K@oKe-"ÓBpF~7; ?˻+i%0$`߂0psY!%iO6Ĝ]v5{1,W5O stQ/LmY67kV+"JwuRY+ ^Hx}Z)hWCZiy<0rT5,~LzF{=hZ׎H7ؐ9N+'/DB1uB('2*Ռʘ7xc>LG/p/VS!cL‘R tM78AK\Gp4C4Qx;Uơo >kL-}qm7^&  fYaD HcZ8Fg20to_Jdl* +ΣqCpAkQHw>SsX6#%bP+۔fjФ71 2e#KB赹Q`9",̅.(AU|$׆QH <}cohZeU鸋ŞZ,yuqE|kx{;8ߙqXq +ziV\$ [cт:4uűDJKhn5v YC/eZ7bÚ =҈BA6(oQ|dg,ӗh;=c^dE-ga^<+:PG{+wׅA胱cbwr=:=|qlSHjC;aW7$q69,"tm?9@I,mQ{Y|"UҖcXEqtՖ0rOS/N*ADRSPV7Ntg^ooc?c^O֤$e^&qp4鵤O+X/PMW9*lܛ~Ŵz}1f R+ YwW`,Iz7n(vqÇ3rϏmώB :Xz7|RҶvAeCvv}QKY?)w+2h].H;ZFO2,y>[=KfcOi^B: 2LlUSE/=*s=4i +_!" 7/H4̾؊jMV!ӉuϡUǒ%򭛾 +e띢 $F5`umtCa} a +ĵd0i\0ђӐ0AP> endobj 6 0 obj <> endobj 7 0 obj <> endobj 8 0 obj <> endobj 42 0 obj [/View/Design] endobj 43 0 obj <>>> endobj 40 0 obj [/View/Design] endobj 41 0 obj <>>> endobj 38 0 obj [/View/Design] endobj 39 0 obj <>>> endobj 36 0 obj [/View/Design] endobj 37 0 obj <>>> endobj 75 0 obj [74 0 R 73 0 R 72 0 R 71 0 R] endobj 135 0 obj <> endobj xref 0 136 0000000004 65535 f +0000000016 00000 n +0000000242 00000 n +0000042777 00000 n +0000000000 00000 f +0000134069 00000 n +0000134139 00000 n +0000134209 00000 n +0000134279 00000 n +0000000000 00000 f +0000042829 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000134702 00000 n +0000134733 00000 n +0000134586 00000 n +0000134617 00000 n +0000134470 00000 n +0000134501 00000 n +0000134354 00000 n +0000134385 00000 n +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000000000 00000 f +0000051735 00000 n +0000051808 00000 n +0000051881 00000 n +0000051954 00000 n +0000134818 00000 n +0000043361 00000 n +0000045264 00000 n +0000067864 00000 n +0000047535 00000 n +0000052504 00000 n +0000047422 00000 n +0000052620 00000 n +0000052733 00000 n +0000050281 00000 n +0000050424 00000 n +0000050615 00000 n +0000050807 00000 n +0000046632 00000 n +0000046900 00000 n +0000045326 00000 n +0000134034 00000 n +0000046071 00000 n +0000046119 00000 n +0000050218 00000 n +0000047359 00000 n +0000047570 00000 n +0000051390 00000 n +0000051000 00000 n +0000051509 00000 n +0000051614 00000 n +0000052386 00000 n +0000052418 00000 n +0000052268 00000 n +0000052300 00000 n +0000052150 00000 n +0000052182 00000 n +0000052032 00000 n +0000052064 00000 n +0000056072 00000 n +0000052859 00000 n +0000052925 00000 n +0000052948 00000 n +0000053249 00000 n +0000053327 00000 n +0000055354 00000 n +0000055428 00000 n +0000056036 00000 n +0000055573 00000 n +0000055718 00000 n +0000055809 00000 n +0000055915 00000 n +0000056138 00000 n +0000056161 00000 n +0000056448 00000 n +0000056526 00000 n +0000056781 00000 n +0000067740 00000 n +0000056855 00000 n +0000057304 00000 n +0000057368 00000 n +0000067939 00000 n +0000068117 00000 n +0000069113 00000 n +0000083726 00000 n +0000134864 00000 n +trailer <<779150255FD24E0494C6DDB168101D01>]>> startxref 135035 %%EOF \ No newline at end of file diff --git a/images/tikzit48x48.png b/images/tikzit48x48.png index 056d04b..802d504 100644 Binary files a/images/tikzit48x48.png and b/images/tikzit48x48.png differ diff --git a/images/tikzit512x512.png b/images/tikzit512x512.png new file mode 100644 index 0000000..89b17ec Binary files /dev/null and b/images/tikzit512x512.png differ diff --git a/src/gui/tikzscene.cpp b/src/gui/tikzscene.cpp index 3431c0c..edc1af4 100644 --- a/src/gui/tikzscene.cpp +++ b/src/gui/tikzscene.cpp @@ -124,6 +124,11 @@ void TikzScene::mousePressEvent(QGraphicsSceneMouseEvent *event) case ToolPalette::VERTEX: break; case ToolPalette::EDGE: + { + QLineF line(mousePos,mousePos); + _drawEdgeItem->setLine(line); + _drawEdgeItem->setVisible(true); + } break; case ToolPalette::CROP: break; @@ -226,6 +231,11 @@ void TikzScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event) case ToolPalette::VERTEX: break; case ToolPalette::EDGE: + if (_drawEdgeItem->isVisible()) { + QPointF p1 = _drawEdgeItem->line().p1(); + QLineF line(p1, mousePos); + _drawEdgeItem->setLine(line); + } break; case ToolPalette::CROP: break; @@ -293,6 +303,7 @@ void TikzScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) } break; case ToolPalette::EDGE: + _drawEdgeItem->setVisible(false); break; case ToolPalette::CROP: break; -- cgit v1.2.3