confdefs.c
confdefs.err
gnunet-doc.scm
+guix-env-gillmann.scm
src/namestore/test_namestore_api_zone_to_name
src/credential/gnunet-credential
src/credential/gnunet-service-credential
- libogg >= 1.3.0 (optional for experimental conversation tool)
- python-zbar >= 0.10 (optional for gnunet-qr)
- TeX Live >= 2012 (optional for gnunet-bcd[*])
-- Texinfo >= 5.2
+- Texinfo >= 5.2 [*1]
- libglpk >= 4.45 (optional for experimental code)
Recommended autotools for compiling the git version are:
[*] Mandatory for compiling the info output of the documentation,
a limited subset ('texlive-tiny' in Guix) is enough.
+[*1] The default configuration is to build the info output of the documentation,
+and therefore require texinfo. You can pass --disable-documentation to
+the configure script to change this.
+
How to install?
===============
Some of the testcases require python >= 2.6 and pexpect to be
installed. If any testcases fail to pass on your system, run
-"contrib/report.sh" and report the output together with
+"contrib/scripts/report.sh" (in the repository) or "gnunet-bugreport"
+when you already have GNUnet installed and report the output together with
information about the failing testcase to the Mantis bugtracking
system at https://gnunet.org/bugs/.
--- /dev/null
+#!/bin/sh
+find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in
+grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in
+
+++ /dev/null
--- declare our protocol
-gwlan_proto = Proto("gnunet","Gnunet Layer")
--- create a function to dissect it
-local f = gwlan_proto.fields
-
-f.len = ProtoField.uint16 ("gnunet.len", "Gnunet Message Len")
-f.type = ProtoField.uint16 ("gnunet.type", "Gnunet Message Type")
--- rhs_proto.fields.sequence = ProtoField.uint16("rhs.sequence","Sequence number")
-f_proto = DissectorTable.new("gnunet.proto", "Gnunet Protocoll", FT_UINT16, BASE_DEC)
---gwlan_proto.fields = {f_len, f_type}
-
-function gwlan_proto.dissector(buffer,pinfo,tree)
- pinfo.cols.protocol = "Gnunet Packet"
- gnunet_packet_disector(buffer,pinfo,tree)
-end
-
-function gwlan_proto.init()
-end
-
-function gnunet_packet_disector(buffer,pinfo,tree)
- if (buffer:len() > 4) then
- local len = buffer(0,2):uint()
- local type = buffer(2,2):uint()
- if (len <= buffer:len()) then
- local dissect = f_proto:get_dissector(type)
- if dissect ~= nil then
- dissect:call(buffer(0, len):tvb(), pinfo, tree)
- else
- local subtree = tree:add(fragmentack, buffer(),"Gnunet Packet Type: " .. buffer(2,2):uint() .. "(" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
- end
- end
- --if (len < buffer:len()) then
- -- gwlan_proto.dissector(buffer(len, buffer:len() - len):tvb(), pinfo, tree)
- --end
- else
- if (buffer:len() == 4) then
- local subtree = tree:add(fragmentack, buffer(),"Gnunet Packet (" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
- end
- end
-end
-
-function gnunet_message_header(buffer, pinfo, tree)
- if (buffer:len() >= 4) then
- local len = buffer(0,2)
- local type = buffer(2,2)
- tree:add(buffer(0,2), "Message Len: " .. buffer(0,2):uint())
- tree:add(buffer(2,2), "Message Type: " .. buffer(2,2):uint())
- end
-end
-
--- load the udp.port table
-llc_table = DissectorTable.get("llc.dsap")
--- register our protocol to handle llc.dsap 0x1e
-llc_table:add(31,gwlan_proto)
-
-fragmentack = Proto("gnunet.fragmentack","Gnunet Fragment Ack")
-
-function fragmentack.dissector(buffer,pinfo,tree)
- pinfo.cols.protocol = "Gnunet Fragment Ack"
- local subtree = tree:add(fragmentack, buffer(),"Gnunet Data ack (" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
- if buffer:len() >= 16 then
- subtree:add(buffer(4,4),"Fragment Id: " .. buffer(4,4):uint())
- subtree:add(buffer(8,8),"Bits: " .. buffer(8,8))
- end
-end
-
-fragment = Proto("gnunet.fragment","Gnunet Fragment")
-
-function fragment.dissector(buffer,pinfo,tree)
- pinfo.cols.protocol = "Gnunet Fragment"
- local subtree = tree:add(fragment, buffer(),"Gnunet Fragment (" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
- if buffer:len() >= 13 then
- subtree:add(buffer(4,4),"Fragment Id: " .. buffer(4,4):uint())
- subtree:add(buffer(8,2),"Total Size: " .. buffer(8,2):uint())
- subtree:add(buffer(10,2),"Offset: " .. buffer(10,2):uint())
- if buffer(10,2):uint() == 0 then
- if (buffer(8,2):uint() <= buffer:len() - 12) then
- gnunet_packet_disector(buffer(12):tvb(),pinfo,tree)
- end
- else
- subtree:add(buffer(12), "Data: " .. buffer(12))
- end
- end
-end
-
-hello = Proto("gnunet.hello","Gnunet Hello Message")
-
-function hello.dissector(buffer,pinfo,tree)
- pinfo.cols.protocol = "Gnunet Hello Message"
- local subtree = tree:add(hello, buffer(),"Gnunet Hello Message (" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
- if buffer:len() > (264 + 8) then
- subtree:add(buffer(4,4),"Reserved: " .. buffer(4,4):uint())
- RsaPublicKeyBinaryEncoded(buffer(8 , 264):tvb(),pinfo, subtree)
- else
- subtree:add(buffer(4), "SIZE WRONG (< 272)")
- end
-end
-
-wlan = Proto("gnunet.wlan","Gnunet WLAN Message")
-
-function wlan.dissector(buffer,pinfo,tree)
- pinfo.cols.protocol = "Gnunet WLAN Message"
- local subtree = tree:add(wlan, buffer(),"Gnunet WLAN Message (" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
- if buffer:len() > (4 + 4 + 2*64) then
- subtree:add(buffer(4,4),"CRC: " .. buffer(4,4):uint())
- local peer = GNUNET_PeerIdentity(buffer(8,64), pinfo, subtree)
- peer:append_text(" Traget")
- peer = GNUNET_PeerIdentity(buffer(8 + 64,64), pinfo, subtree)
- peer:append_text(" Source")
- else
- subtree:add(buffer(8), "SIZE WRONG (< 4 + 4 + 2*64)")
- end
- if (buffer:len() - (4 + 4 + 2*64) > 0) then
- gnunet_packet_disector(buffer(4 + 4 + 2*64):tvb(),pinfo,tree)
- end
-end
-
-function RsaPublicKeyBinaryEncoded(buffer,pinfo,tree)
- local subtree = tree:add(gwlan_proto,buffer(),"Gnunet RsaPublicKeyBinaryEncoded(" .. buffer:len() .. ")")
- subtree:add(buffer(0,2),"Len: " .. buffer(0,2):uint())
- subtree:add(buffer(2,2),"Sizen: " .. buffer(2,2):uint())
- subtree:add(buffer(4,258),"Pub Key: " .. buffer(4,258))
- subtree:add(buffer(262,2),"Padding: " .. buffer(262,2):uint())
-end
-
-function GNUNET_PeerIdentity(buffer,pinfo,tree)
- local subtree = tree:add(gwlan_proto,buffer(),"Gnunet PeerIdentity(" .. buffer:len() .. ")")
- subtree:add(buffer(0),"hashPubKey: " .. buffer(0))
- return subtree
-end
-
-transport_session_keepalive = Proto("gnunet.transport_session_keepalive","Gnunet transport session keepalive")
-
-function transport_session_keepalive.dissector(buffer,pinfo,tree)
- pinfo.cols.protocol = "Gnunet transport session keepalive"
- local subtree = tree:add(transport_session_keepalive, buffer(),"Gnunet transport session keepalive (" .. buffer:len() .. ")")
- gnunet_message_header(buffer, pinfo, subtree)
-end
-
-f_proto:add(43,wlan)
-f_proto:add(39,transport_session_keepalive)
-f_proto:add(19,fragmentack)
-f_proto:add(18,fragment)
-f_proto:add(16,hello)
exit 1
}
autoreconf -if
-contrib/pogen.sh
+. "bin/pogen.sh"
--- /dev/null
+ GNU GENERAL PUBLIC LICENSE
+ Version 2, June 1991
+
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ Everyone is permitted to copy and distribute verbatim copies
+ of this license document, but changing it is not allowed.
+
+ Preamble
+
+ The licenses for most software are designed to take away your
+freedom to share and change it. By contrast, the GNU General Public
+License is intended to guarantee your freedom to share and change free
+software--to make sure the software is free for all its users. This
+General Public License applies to most of the Free Software
+Foundation's software and to any other program whose authors commit to
+using it. (Some other Free Software Foundation software is covered by
+the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+ When we speak of free software, we are referring to freedom, not
+price. Our General Public Licenses are designed to make sure that you
+have the freedom to distribute copies of free software (and charge for
+this service if you wish), that you receive source code or can get it
+if you want it, that you can change the software or use pieces of it
+in new free programs; and that you know you can do these things.
+
+ To protect your rights, we need to make restrictions that forbid
+anyone to deny you these rights or to ask you to surrender the rights.
+These restrictions translate to certain responsibilities for you if you
+distribute copies of the software, or if you modify it.
+
+ For example, if you distribute copies of such a program, whether
+gratis or for a fee, you must give the recipients all the rights that
+you have. You must make sure that they, too, receive or can get the
+source code. And you must show them these terms so they know their
+rights.
+
+ We protect your rights with two steps: (1) copyright the software, and
+(2) offer you this license which gives you legal permission to copy,
+distribute and/or modify the software.
+
+ Also, for each author's protection and ours, we want to make certain
+that everyone understands that there is no warranty for this free
+software. If the software is modified by someone else and passed on, we
+want its recipients to know that what they have is not the original, so
+that any problems introduced by others will not reflect on the original
+authors' reputations.
+
+ Finally, any free program is threatened constantly by software
+patents. We wish to avoid the danger that redistributors of a free
+program will individually obtain patent licenses, in effect making the
+program proprietary. To prevent this, we have made it clear that any
+patent must be licensed for everyone's free use or not licensed at all.
+
+ The precise terms and conditions for copying, distribution and
+modification follow.
+\f
+ GNU GENERAL PUBLIC LICENSE
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+ 0. This License applies to any program or other work which contains
+a notice placed by the copyright holder saying it may be distributed
+under the terms of this General Public License. The "Program", below,
+refers to any such program or work, and a "work based on the Program"
+means either the Program or any derivative work under copyright law:
+that is to say, a work containing the Program or a portion of it,
+either verbatim or with modifications and/or translated into another
+language. (Hereinafter, translation is included without limitation in
+the term "modification".) Each licensee is addressed as "you".
+
+Activities other than copying, distribution and modification are not
+covered by this License; they are outside its scope. The act of
+running the Program is not restricted, and the output from the Program
+is covered only if its contents constitute a work based on the
+Program (independent of having been made by running the Program).
+Whether that is true depends on what the Program does.
+
+ 1. You may copy and distribute verbatim copies of the Program's
+source code as you receive it, in any medium, provided that you
+conspicuously and appropriately publish on each copy an appropriate
+copyright notice and disclaimer of warranty; keep intact all the
+notices that refer to this License and to the absence of any warranty;
+and give any other recipients of the Program a copy of this License
+along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and
+you may at your option offer warranty protection in exchange for a fee.
+
+ 2. You may modify your copy or copies of the Program or any portion
+of it, thus forming a work based on the Program, and copy and
+distribute such modifications or work under the terms of Section 1
+above, provided that you also meet all of these conditions:
+
+ a) You must cause the modified files to carry prominent notices
+ stating that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in
+ whole or in part contains or is derived from the Program or any
+ part thereof, to be licensed as a whole at no charge to all third
+ parties under the terms of this License.
+
+ c) If the modified program normally reads commands interactively
+ when run, you must cause it, when started running for such
+ interactive use in the most ordinary way, to print or display an
+ announcement including an appropriate copyright notice and a
+ notice that there is no warranty (or else, saying that you provide
+ a warranty) and that users may redistribute the program under
+ these conditions, and telling the user how to view a copy of this
+ License. (Exception: if the Program itself is interactive but
+ does not normally print such an announcement, your work based on
+ the Program is not required to print an announcement.)
+\f
+These requirements apply to the modified work as a whole. If
+identifiable sections of that work are not derived from the Program,
+and can be reasonably considered independent and separate works in
+themselves, then this License, and its terms, do not apply to those
+sections when you distribute them as separate works. But when you
+distribute the same sections as part of a whole which is a work based
+on the Program, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the
+entire whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest
+your rights to work written entirely by you; rather, the intent is to
+exercise the right to control the distribution of derivative or
+collective works based on the Program.
+
+In addition, mere aggregation of another work not based on the Program
+with the Program (or with a work based on the Program) on a volume of
+a storage or distribution medium does not bring the other work under
+the scope of this License.
+
+ 3. You may copy and distribute the Program (or a work based on it,
+under Section 2) in object code or executable form under the terms of
+Sections 1 and 2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable
+ source code, which must be distributed under the terms of Sections
+ 1 and 2 above on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three
+ years, to give any third party, for a charge no more than your
+ cost of physically performing source distribution, a complete
+ machine-readable copy of the corresponding source code, to be
+ distributed under the terms of Sections 1 and 2 above on a medium
+ customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer
+ to distribute corresponding source code. (This alternative is
+ allowed only for noncommercial distribution and only if you
+ received the program in object code or executable form with such
+ an offer, in accord with Subsection b above.)
+
+The source code for a work means the preferred form of the work for
+making modifications to it. For an executable work, complete source
+code means all the source code for all modules it contains, plus any
+associated interface definition files, plus the scripts used to
+control compilation and installation of the executable. However, as a
+special exception, the source code distributed need not include
+anything that is normally distributed (in either source or binary
+form) with the major components (compiler, kernel, and so on) of the
+operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering
+access to copy from a designated place, then offering equivalent
+access to copy the source code from the same place counts as
+distribution of the source code, even though third parties are not
+compelled to copy the source along with the object code.
+\f
+ 4. You may not copy, modify, sublicense, or distribute the Program
+except as expressly provided under this License. Any attempt
+otherwise to copy, modify, sublicense or distribute the Program is
+void, and will automatically terminate your rights under this License.
+However, parties who have received copies, or rights, from you under
+this License will not have their licenses terminated so long as such
+parties remain in full compliance.
+
+ 5. You are not required to accept this License, since you have not
+signed it. However, nothing else grants you permission to modify or
+distribute the Program or its derivative works. These actions are
+prohibited by law if you do not accept this License. Therefore, by
+modifying or distributing the Program (or any work based on the
+Program), you indicate your acceptance of this License to do so, and
+all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+ 6. Each time you redistribute the Program (or any work based on the
+Program), the recipient automatically receives a license from the
+original licensor to copy, distribute or modify the Program subject to
+these terms and conditions. You may not impose any further
+restrictions on the recipients' exercise of the rights granted herein.
+You are not responsible for enforcing compliance by third parties to
+this License.
+
+ 7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues),
+conditions are imposed on you (whether by court order, agreement or
+otherwise) that contradict the conditions of this License, they do not
+excuse you from the conditions of this License. If you cannot
+distribute so as to satisfy simultaneously your obligations under this
+License and any other pertinent obligations, then as a consequence you
+may not distribute the Program at all. For example, if a patent
+license would not permit royalty-free redistribution of the Program by
+all those who receive copies directly or indirectly through you, then
+the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under
+any particular circumstance, the balance of the section is intended to
+apply and the section as a whole is intended to apply in other
+circumstances.
+
+It is not the purpose of this section to induce you to infringe any
+patents or other property right claims or to contest validity of any
+such claims; this section has the sole purpose of protecting the
+integrity of the free software distribution system, which is
+implemented by public license practices. Many people have made
+generous contributions to the wide range of software distributed
+through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing
+to distribute software through any other system and a licensee cannot
+impose that choice.
+
+This section is intended to make thoroughly clear what is believed to
+be a consequence of the rest of this License.
+\f
+ 8. If the distribution and/or use of the Program is restricted in
+certain countries either by patents or by copyrighted interfaces, the
+original copyright holder who places the Program under this License
+may add an explicit geographical distribution limitation excluding
+those countries, so that distribution is permitted only in or among
+countries not thus excluded. In such case, this License incorporates
+the limitation as if written in the body of this License.
+
+ 9. The Free Software Foundation may publish revised and/or new versions
+of the General Public License from time to time. Such new versions will
+be similar in spirit to the present version, but may differ in detail to
+address new problems or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any
+later version", you have the option of following the terms and conditions
+either of that version or of any later version published by the Free
+Software Foundation. If the Program does not specify a version number of
+this License, you may choose any version ever published by the Free Software
+Foundation.
+
+ 10. If you wish to incorporate parts of the Program into other free
+programs whose distribution conditions are different, write to the author
+to ask for permission. For software which is copyrighted by the Free
+Software Foundation, write to the Free Software Foundation; we sometimes
+make exceptions for this. Our decision will be guided by the two goals
+of preserving the free status of all derivatives of our free software and
+of promoting the sharing and reuse of software generally.
+
+ NO WARRANTY
+
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
+FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
+OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
+PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
+OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
+PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
+REPAIR OR CORRECTION.
+
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
+WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
+REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
+INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
+OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
+TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
+YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
+PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
+POSSIBILITY OF SUCH DAMAGES.
+
+ END OF TERMS AND CONDITIONS
+\f
+ How to Apply These Terms to Your New Programs
+
+ If you develop a new program, and you want it to be of the greatest
+possible use to the public, the best way to achieve this is to make it
+free software which everyone can redistribute and change under these terms.
+
+ To do so, attach the following notices to the program. It is safest
+to attach them to the start of each source file to most effectively
+convey the exclusion of warranty; and each file should have at least
+the "copyright" line and a pointer to where the full notice is found.
+
+ <one line to give the program's name and a brief idea of what it does.>
+ Copyright (C) <year> <name of author>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this
+when it starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author
+ Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
+ This is free software, and you are welcome to redistribute it
+ under certain conditions; type `show c' for details.
+
+The hypothetical commands `show w' and `show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may
+be called something other than `show w' and `show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your
+school, if any, to sign a "copyright disclaimer" for the program, if
+necessary. Here is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ `Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ <signature of Ty Coon>, 1 April 1989
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General
+Public License instead of this License.
--- /dev/null
+You need devcon.exe or equivalent functionality to install the openvpn-signed driver included in tap-win32-signed.zip.\r
+This version of tap32 works with gnunet-vpn-helper-windows and can be loaded/installed by it. \r
+\r
+Additional information is included in OemWin2k.inf which is included in the driver archives.
\ No newline at end of file
--- /dev/null
+; ****************************************************************************\r
+; * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. *\r
+; * This program is free software; you can redistribute it and/or modify *\r
+; * it under the terms of the GNU General Public License version 2 *\r
+; * as published by the Free Software Foundation. *\r
+; ****************************************************************************\r
+\r
+; SYNTAX CHECKER\r
+; cd \WINDDK\3790\tools\chkinf\r
+; chkinf c:\src\openvpn\tap-win32\i386\oemwin2k.inf\r
+; OUTPUT -> file:///c:/WINDDK/3790/tools/chkinf/htm/c%23+src+openvpn+tap-win32+i386+__OemWin2k.htm\r
+\r
+; INSTALL/REMOVE DRIVER\r
+; tapinstall install OemWin2k.inf TAP0901\r
+; tapinstall update OemWin2k.inf TAP0901\r
+; tapinstall remove TAP0901\r
+\r
+;*********************************************************\r
+; Note to Developers:\r
+;\r
+; If you are bundling the TAP-Windows driver with your app,\r
+; you should try to rename it in such a way that it will\r
+; not collide with other instances of TAP-Windows defined\r
+; by other apps. Multiple versions of the TAP-Windows\r
+; driver, each installed by different apps, can coexist\r
+; on the same machine if you follow these guidelines.\r
+; NOTE: these instructions assume you are editing the\r
+; generated OemWin2k.inf file, not the source\r
+; OemWin2k.inf.in file which is preprocessed by winconfig\r
+; and uses macro definitions from settings.in.\r
+;\r
+; (1) Rename all tapXXXX instances in this file to\r
+; something different (use at least 5 characters\r
+; for this name!)\r
+; (2) Change the "!define TAP" definition in openvpn.nsi\r
+; to match what you changed tapXXXX to.\r
+; (3) Change TARGETNAME in SOURCES to match what you\r
+; changed tapXXXX to.\r
+; (4) Change TAP_COMPONENT_ID in common.h to match what\r
+; you changed tapXXXX to.\r
+; (5) Change SZDEPENDENCIES in service.h to match what\r
+; you changed tapXXXX to.\r
+; (6) Change DeviceDescription and Provider strings.\r
+; (7) Change PRODUCT_TAP_WIN_DEVICE_DESCRIPTION in constants.h to what you\r
+; set DeviceDescription to.\r
+;\r
+;*********************************************************\r
+\r
+[Version]\r
+ Signature = "$Windows NT$"\r
+ CatalogFile = tap0901.cat\r
+ ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}\r
+ Provider = %Provider%\r
+ Class = Net\r
+\r
+; This version number should match the version\r
+; number given in SOURCES.\r
+ DriverVer=07/02/2012,9.00.00.9\r
+\r
+[Strings]\r
+ DeviceDescription = "TAP-Windows Adapter V9"\r
+ Provider = "TAP-Windows Provider V9"\r
+\r
+;----------------------------------------------------------------\r
+; Manufacturer + Product Section (Done)\r
+;----------------------------------------------------------------\r
+[Manufacturer]\r
+ %Provider% = tap0901\r
+\r
+[tap0901]\r
+ %DeviceDescription% = tap0901.ndi, tap0901\r
+\r
+;---------------------------------------------------------------\r
+; Driver Section (Done)\r
+;---------------------------------------------------------------\r
+\r
+;----------------- Characteristics ------------\r
+; NCF_PHYSICAL = 0x04\r
+; NCF_VIRTUAL = 0x01\r
+; NCF_SOFTWARE_ENUMERATED = 0x02\r
+; NCF_HIDDEN = 0x08\r
+; NCF_NO_SERVICE = 0x10\r
+; NCF_HAS_UI = 0x80\r
+;----------------- Characteristics ------------\r
+\r
+[tap0901.ndi]\r
+ CopyFiles = tap0901.driver, tap0901.files\r
+ AddReg = tap0901.reg\r
+ AddReg = tap0901.params.reg\r
+ Characteristics = 0x81\r
+\r
+[tap0901.ndi.Services]\r
+ AddService = tap0901, 2, tap0901.service\r
+\r
+[tap0901.reg]\r
+ HKR, Ndi, Service, 0, "tap0901"\r
+ HKR, Ndi\Interfaces, UpperRange, 0, "ndis5"\r
+ HKR, Ndi\Interfaces, LowerRange, 0, "ethernet"\r
+ HKR, , Manufacturer, 0, "%Provider%"\r
+ HKR, , ProductName, 0, "%DeviceDescription%"\r
+\r
+[tap0901.params.reg]\r
+ HKR, Ndi\params\MTU, ParamDesc, 0, "MTU"\r
+ HKR, Ndi\params\MTU, Type, 0, "int"\r
+ HKR, Ndi\params\MTU, Default, 0, "1500"\r
+ HKR, Ndi\params\MTU, Optional, 0, "0"\r
+ HKR, Ndi\params\MTU, Min, 0, "100"\r
+ HKR, Ndi\params\MTU, Max, 0, "1500"\r
+ HKR, Ndi\params\MTU, Step, 0, "1"\r
+ HKR, Ndi\params\MediaStatus, ParamDesc, 0, "Media Status"\r
+ HKR, Ndi\params\MediaStatus, Type, 0, "enum"\r
+ HKR, Ndi\params\MediaStatus, Default, 0, "0"\r
+ HKR, Ndi\params\MediaStatus, Optional, 0, "0"\r
+ HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"\r
+ HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"\r
+ HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"\r
+ HKR, Ndi\params\MAC, Type, 0, "edit"\r
+ HKR, Ndi\params\MAC, Optional, 0, "1"\r
+ HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"\r
+ HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"\r
+ HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"\r
+ HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"\r
+ HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"\r
+ HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"\r
+\r
+;----------------------------------------------------------------\r
+; Service Section\r
+;----------------------------------------------------------------\r
+\r
+;---------- Service Type -------------\r
+; SERVICE_KERNEL_DRIVER = 0x01\r
+; SERVICE_WIN32_OWN_PROCESS = 0x10\r
+;---------- Service Type -------------\r
+\r
+;---------- Start Mode ---------------\r
+; SERVICE_BOOT_START = 0x0\r
+; SERVICE_SYSTEM_START = 0x1\r
+; SERVICE_AUTO_START = 0x2\r
+; SERVICE_DEMAND_START = 0x3\r
+; SERVICE_DISABLED = 0x4\r
+;---------- Start Mode ---------------\r
+\r
+[tap0901.service]\r
+ DisplayName = %DeviceDescription%\r
+ ServiceType = 1\r
+ StartType = 3\r
+ ErrorControl = 1\r
+ LoadOrderGroup = NDIS\r
+ ServiceBinary = %12%\tap0901.sys\r
+\r
+;-----------------------------------------------------------------\r
+; File Installation\r
+;-----------------------------------------------------------------\r
+\r
+;----------------- Copy Flags ------------\r
+; COPYFLG_NOSKIP = 0x02\r
+; COPYFLG_NOVERSIONCHECK = 0x04\r
+;----------------- Copy Flags ------------\r
+\r
+; SourceDisksNames\r
+; diskid = description[, [tagfile] [, <unused>, subdir]]\r
+; 1 = "Intel Driver Disk 1",e100bex.sys,,\r
+\r
+[SourceDisksNames]\r
+ 1 = %DeviceDescription%, tap0901.sys\r
+\r
+; SourceDisksFiles\r
+; filename_on_source = diskID[, [subdir][, size]]\r
+; e100bex.sys = 1,, ; on distribution disk 1\r
+\r
+[SourceDisksFiles]\r
+tap0901.sys = 1\r
+\r
+[DestinationDirs]\r
+ tap0901.files = 11\r
+ tap0901.driver = 12\r
+\r
+[tap0901.files]\r
+; TapPanel.cpl,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
+; cipsrvr.exe,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
+\r
+[tap0901.driver]\r
+ tap0901.sys,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
+\r
+;---------------------------------------------------------------\r
+; End\r
+;---------------------------------------------------------------\r
--- /dev/null
+; ****************************************************************************\r
+; * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. *\r
+; * This program is free software; you can redistribute it and/or modify *\r
+; * it under the terms of the GNU General Public License version 2 *\r
+; * as published by the Free Software Foundation. *\r
+; ****************************************************************************\r
+\r
+; SYNTAX CHECKER\r
+; cd \WINDDK\3790\tools\chkinf\r
+; chkinf c:\src\openvpn\tap-win32\i386\oemwin2k.inf\r
+; OUTPUT -> file:///c:/WINDDK/3790/tools/chkinf/htm/c%23+src+openvpn+tap-win32+i386+__OemWin2k.htm\r
+\r
+; INSTALL/REMOVE DRIVER\r
+; tapinstall install OemWin2k.inf TAP0901\r
+; tapinstall update OemWin2k.inf TAP0901\r
+; tapinstall remove TAP0901\r
+\r
+;*********************************************************\r
+; Note to Developers:\r
+;\r
+; If you are bundling the TAP-Windows driver with your app,\r
+; you should try to rename it in such a way that it will\r
+; not collide with other instances of TAP-Windows defined\r
+; by other apps. Multiple versions of the TAP-Windows\r
+; driver, each installed by different apps, can coexist\r
+; on the same machine if you follow these guidelines.\r
+; NOTE: these instructions assume you are editing the\r
+; generated OemWin2k.inf file, not the source\r
+; OemWin2k.inf.in file which is preprocessed by winconfig\r
+; and uses macro definitions from settings.in.\r
+;\r
+; (1) Rename all tapXXXX instances in this file to\r
+; something different (use at least 5 characters\r
+; for this name!)\r
+; (2) Change the "!define TAP" definition in openvpn.nsi\r
+; to match what you changed tapXXXX to.\r
+; (3) Change TARGETNAME in SOURCES to match what you\r
+; changed tapXXXX to.\r
+; (4) Change TAP_COMPONENT_ID in common.h to match what\r
+; you changed tapXXXX to.\r
+; (5) Change SZDEPENDENCIES in service.h to match what\r
+; you changed tapXXXX to.\r
+; (6) Change DeviceDescription and Provider strings.\r
+; (7) Change PRODUCT_TAP_WIN_DEVICE_DESCRIPTION in constants.h to what you\r
+; set DeviceDescription to.\r
+;\r
+;*********************************************************\r
+\r
+[Version]\r
+ Signature = "$Windows NT$"\r
+ CatalogFile = tap0901.cat\r
+ ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}\r
+ Provider = %Provider%\r
+ Class = Net\r
+\r
+; This version number should match the version\r
+; number given in SOURCES.\r
+ DriverVer=07/02/2012,9.00.00.9\r
+\r
+[Strings]\r
+ DeviceDescription = "TAP-Windows Adapter V9"\r
+ Provider = "TAP-Windows Provider V9"\r
+\r
+;----------------------------------------------------------------\r
+; Manufacturer + Product Section (Done)\r
+;----------------------------------------------------------------\r
+[Manufacturer]\r
+ %Provider% = tap0901, NTamd64\r
+\r
+[tap0901.NTamd64]\r
+ %DeviceDescription% = tap0901.ndi, tap0901\r
+\r
+;---------------------------------------------------------------\r
+; Driver Section (Done)\r
+;---------------------------------------------------------------\r
+\r
+;----------------- Characteristics ------------\r
+; NCF_PHYSICAL = 0x04\r
+; NCF_VIRTUAL = 0x01\r
+; NCF_SOFTWARE_ENUMERATED = 0x02\r
+; NCF_HIDDEN = 0x08\r
+; NCF_NO_SERVICE = 0x10\r
+; NCF_HAS_UI = 0x80\r
+;----------------- Characteristics ------------\r
+\r
+[tap0901.ndi]\r
+ CopyFiles = tap0901.driver, tap0901.files\r
+ AddReg = tap0901.reg\r
+ AddReg = tap0901.params.reg\r
+ Characteristics = 0x81\r
+\r
+[tap0901.ndi.Services]\r
+ AddService = tap0901, 2, tap0901.service\r
+\r
+[tap0901.reg]\r
+ HKR, Ndi, Service, 0, "tap0901"\r
+ HKR, Ndi\Interfaces, UpperRange, 0, "ndis5"\r
+ HKR, Ndi\Interfaces, LowerRange, 0, "ethernet"\r
+ HKR, , Manufacturer, 0, "%Provider%"\r
+ HKR, , ProductName, 0, "%DeviceDescription%"\r
+\r
+[tap0901.params.reg]\r
+ HKR, Ndi\params\MTU, ParamDesc, 0, "MTU"\r
+ HKR, Ndi\params\MTU, Type, 0, "int"\r
+ HKR, Ndi\params\MTU, Default, 0, "1500"\r
+ HKR, Ndi\params\MTU, Optional, 0, "0"\r
+ HKR, Ndi\params\MTU, Min, 0, "100"\r
+ HKR, Ndi\params\MTU, Max, 0, "1500"\r
+ HKR, Ndi\params\MTU, Step, 0, "1"\r
+ HKR, Ndi\params\MediaStatus, ParamDesc, 0, "Media Status"\r
+ HKR, Ndi\params\MediaStatus, Type, 0, "enum"\r
+ HKR, Ndi\params\MediaStatus, Default, 0, "0"\r
+ HKR, Ndi\params\MediaStatus, Optional, 0, "0"\r
+ HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"\r
+ HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"\r
+ HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"\r
+ HKR, Ndi\params\MAC, Type, 0, "edit"\r
+ HKR, Ndi\params\MAC, Optional, 0, "1"\r
+ HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"\r
+ HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"\r
+ HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"\r
+ HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"\r
+ HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"\r
+ HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"\r
+\r
+;----------------------------------------------------------------\r
+; Service Section\r
+;----------------------------------------------------------------\r
+\r
+;---------- Service Type -------------\r
+; SERVICE_KERNEL_DRIVER = 0x01\r
+; SERVICE_WIN32_OWN_PROCESS = 0x10\r
+;---------- Service Type -------------\r
+\r
+;---------- Start Mode ---------------\r
+; SERVICE_BOOT_START = 0x0\r
+; SERVICE_SYSTEM_START = 0x1\r
+; SERVICE_AUTO_START = 0x2\r
+; SERVICE_DEMAND_START = 0x3\r
+; SERVICE_DISABLED = 0x4\r
+;---------- Start Mode ---------------\r
+\r
+[tap0901.service]\r
+ DisplayName = %DeviceDescription%\r
+ ServiceType = 1\r
+ StartType = 3\r
+ ErrorControl = 1\r
+ LoadOrderGroup = NDIS\r
+ ServiceBinary = %12%\tap0901.sys\r
+\r
+;-----------------------------------------------------------------\r
+; File Installation\r
+;-----------------------------------------------------------------\r
+\r
+;----------------- Copy Flags ------------\r
+; COPYFLG_NOSKIP = 0x02\r
+; COPYFLG_NOVERSIONCHECK = 0x04\r
+;----------------- Copy Flags ------------\r
+\r
+; SourceDisksNames\r
+; diskid = description[, [tagfile] [, <unused>, subdir]]\r
+; 1 = "Intel Driver Disk 1",e100bex.sys,,\r
+\r
+[SourceDisksNames]\r
+ 1 = %DeviceDescription%, tap0901.sys\r
+\r
+; SourceDisksFiles\r
+; filename_on_source = diskID[, [subdir][, size]]\r
+; e100bex.sys = 1,, ; on distribution disk 1\r
+\r
+[SourceDisksFiles]\r
+tap0901.sys = 1\r
+\r
+[DestinationDirs]\r
+ tap0901.files = 11\r
+ tap0901.driver = 12\r
+\r
+[tap0901.files]\r
+; TapPanel.cpl,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
+; cipsrvr.exe,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
+\r
+[tap0901.driver]\r
+ tap0901.sys,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
+\r
+;---------------------------------------------------------------\r
+; End\r
+;---------------------------------------------------------------\r
+++ /dev/null
-from fedora:26
-
-# Install the required build tools
-RUN dnf -y update && dnf -y install which git automake texinfo gettext-devel autoconf libtool libtool-ltdl-devel libidn-devel libunistring-devel glpk libextractor-devel libmicrohttpd-devel gnutls libgcrypt-devel jansson-devel sqlite-devel npm
-
-WORKDIR /usr/src
-
-# Install gnurl
-RUN wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.59.0.tar.gz
-RUN tar xvzpf gnurl-7.59.0.tar.gz
-WORKDIR /usr/src/gnurl-7.59.0
-RUN autoreconf -i
-RUN ./configure --disable-ntlm-wb
-RUN make install
-WORKDIR /usr/src
-
-RUN dnf -y install wget flex bison
-
-# Install libpbc
-RUN wget https://crypto.stanford.edu/pbc/files/pbc-0.5.14.tar.gz
-RUN tar xvzpf pbc-0.5.14.tar.gz
-WORKDIR /usr/src/pbc-0.5.14
-RUN ./configure --prefix=/usr
-RUN make install
-WORKDIR /usr/src
-
-RUN dnf -y install glib2-devel
-
-# Install libbswabe
-RUN git clone https://github.com/schanzen/libgabe.git
-WORKDIR /usr/src/libgabe
-RUN ./configure --prefix=/usr
-RUN make install
-
-# Install WebUI
-WORKDIR /usr/src/
-RUN git clone https://github.com/schanzen/gnunet-webui.git
-WORKDIR /usr/src/gnunet-webui
-RUN git checkout gnuidentity
-
-RUN mkdir /usr/src/gnunet
-WORKDIR /usr/src/gnunet
-ADD . .
-ARG NUM_JOBS
-RUN ./bootstrap
-RUN ./configure --prefix=/usr/local
-RUN make -j$NUM_JOBS
-RUN make install
-
-RUN groupadd gnunetdns
-RUN adduser -S -m -h /var/lib/gnunet gnunet
-RUN chown gnunet:gnunet /var/lib/gnunet
-RUN echo '[arm]\nSYSTEM_ONLY = YES\nUSER_ONLY = NO\n' > /etc/gnunet.conf
-
-ADD docker-entrypoint.sh .
-
-CMD ["sh", "docker-entrypoint.sh"]
endif
noinst_SCRIPTS = \
- terminate.py \
- pydiffer.py \
- removetrailingwhitespace.py \
- gnunet_pyexpect.py \
- gnunet_janitor.py \
- gnunet-chk.py
+ scripts/terminate.py \
+ scripts/pydiffer.py \
+ scripts/removetrailingwhitespace.py \
+ scripts/gnunet_pyexpect.py \
+ scripts/gnunet_janitor.py \
+ scripts/gnunet-chk.py
dist_pkgdata_DATA = \
- gns-bcd.html \
- gns-bcd.tex \
- gnunet-logo.pdf \
- gnunet-logo-color.png \
+ gns/gns-bcd.html \
+ gns/gns-bcd.tex \
+ gns/def.tex \
+ gns/gns-form-fields.xml \
+ gns/gns-form.xslt \
+ branding/logo/gnunet-logo.pdf \
+ branding/logo/gnunet-logo-color.png \
+ scripts/report.sh \
testing_hostkeys.ecc
if MINGW
tap32_DATA = \
- openvpn-tap32/tapw32/tap0901.sys \
- openvpn-tap32/tapw32/tap0901.cat \
- openvpn-tap32/tapw32/OemWin2k.inf
+ 3rdparty/Windows/openvpn-tap32/tapw32/tap0901.sys \
+ 3rdparty/Windows/openvpn-tap32/tapw32/tap0901.cat \
+ 3rdparty/Windows/openvpn-tap32/tapw32/OemWin2k.inf
tap64_DATA = \
- openvpn-tap32/tapw64/tap0901.sys \
- openvpn-tap32/tapw64/tap0901.cat \
- openvpn-tap32/tapw64/OemWin2k.inf
+ 3rdparty/Windows/openvpn-tap32/tapw64/tap0901.sys \
+ 3rdparty/Windows/openvpn-tap32/tapw64/tap0901.cat \
+ 3rdparty/Windows/openvpn-tap32/tapw64/OemWin2k.inf
endif
EXTRA_DIST = \
- no_forcestart.conf \
- no_autostart_above_core.conf \
- coverage.sh \
- nssswitch.conf \
- report.sh \
- terminate.py.in \
- gnunet_pyexpect.py.in \
- gnunet_janitor.py.in \
- gnunet-chk.py.in \
- removetrailingwhitespace.py.in \
- pydiffer.py.in \
- gnunet-gns-import.sh \
- openvpn-tap32/tapw32/tap0901.sys \
- openvpn-tap32/tapw32/tap0901.cat \
- openvpn-tap32/tapw32/OemWin2k.inf \
- openvpn-tap32/tapw64/tap0901.sys \
- openvpn-tap32/tapw64/tap0901.cat \
- openvpn-tap32/tapw64/OemWin2k.inf \
- openvpn-tap32/INSTALL \
- openvpn-tap32/tap32-signed-i386-2.1.zip \
- openvpn-tap32/tap32-source-2.1.zip
+ conf/colorit/colorit.conf \
+ conf/editors/eclipse/gnunet_codingstyle.xml \
+ conf/gnunet/no_forcestart.conf \
+ conf/gnunet/no_autostart_above_core.conf \
+ conf/nss/nssswitch.conf \
+ conf/wireshark/wireshark.lua \
+ scripts/coverage.sh \
+ scripts/terminate.py.in \
+ scripts/gnunet_pyexpect.py.in \
+ scripts/gnunet_janitor.py.in \
+ scripts/gnunet-chk.py.in \
+ scripts/removetrailingwhitespace.py.in \
+ scripts/pydiffer.py.in \
+ scripts/gnunet-gns-import.sh \
+ packages/nix/default.nix \
+ packages/nix/gnunet-dex.nix \
+ 3rdparty/Windows/openvpn-tap32/tapw32/tap0901.sys \
+ 3rdparty/Windows/openvpn-tap32/tapw32/tap0901.cat \
+ 3rdparty/Windows/openvpn-tap32/tapw32/OemWin2k.inf \
+ 3rdparty/Windows/openvpn-tap32/tapw64/tap0901.sys \
+ 3rdparty/Windows/openvpn-tap32/tapw64/tap0901.cat \
+ 3rdparty/Windows/openvpn-tap32/tapw64/OemWin2k.inf \
+ 3rdparty/Windows/openvpn-tap32/INSTALL \
+ 3rdparty/Windows/openvpn-tap32/tap32-signed-i386-2.1.zip \
+ 3rdparty/Windows/openvpn-tap32/tap32-source-2.1.zip
CLEANFILES = \
$(noinst_SCRIPTS)
#
# instead of this:
+SUFFIXES =
SUFFIXES = .py.in .py
.py.in.py:
$(do_subst) < $< > $@
chmod +x $@
-# init_gnunet_redhat \
-# init_gnunet_ubuntu \
-# visualize_stats.sh \
-# gnmessage.sh \
-# junkinsert.sh \
-# junklookup.sh \
-# namespacehelper.sh
-
-
check_PROGRAMS = \
test_gnunet_prefix
+++ /dev/null
-/*!
- * Bootstrap v3.0.3 (http://getbootstrap.com)
- * Copyright 2013 Twitter, Inc.
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
- */
-
-/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#8a6d3b}.text-warning:hover{color:#66512c}.text-danger{color:#a94442}.text-danger:hover{color:#843534}.text-success{color:#3c763d}.text-success:hover{color:#2b542c}.text-info{color:#31708f}.text-info:hover{color:#245269}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small,blockquote .small{display:block;line-height:1.428571429;color:#999}blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>.active,.table>tbody>tr>.active,.table>tfoot>tr>.active,.table>thead>.active>td,.table>tbody>.active>td,.table>tfoot>.active>td,.table>thead>.active>th,.table>tbody>.active>th,.table>tfoot>.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>.active:hover,.table-hover>tbody>.active:hover>td,.table-hover>tbody>.active:hover>th{background-color:#e8e8e8}.table>thead>tr>.success,.table>tbody>tr>.success,.table>tfoot>tr>.success,.table>thead>.success>td,.table>tbody>.success>td,.table>tfoot>.success>td,.table>thead>.success>th,.table>tbody>.success>th,.table>tfoot>.success>th{background-color:#dff0d8}.table-hover>tbody>tr>.success:hover,.table-hover>tbody>.success:hover>td,.table-hover>tbody>.success:hover>th{background-color:#d0e9c6}.table>thead>tr>.danger,.table>tbody>tr>.danger,.table>tfoot>tr>.danger,.table>thead>.danger>td,.table>tbody>.danger>td,.table>tfoot>.danger>td,.table>thead>.danger>th,.table>tbody>.danger>th,.table>tfoot>.danger>th{background-color:#f2dede}.table-hover>tbody>tr>.danger:hover,.table-hover>tbody>.danger:hover>td,.table-hover>tbody>.danger:hover>th{background-color:#ebcccc}.table>thead>tr>.warning,.table>tbody>tr>.warning,.table>tfoot>tr>.warning,.table>thead>.warning>td,.table>tbody>.warning>td,.table>tfoot>.warning>td,.table>thead>.warning>th,.table>tbody>.warning>th,.table>tfoot>.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>.warning:hover,.table-hover>tbody>.warning:hover>td,.table-hover>tbody>.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline select.form-control{width:auto}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#fff}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form select.form-control{width:auto}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child th,.panel>.table>tbody:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;outline:0;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
\ No newline at end of file
+++ /dev/null
-#!/bin/sh
-
-COMMAND='svn up; cp -v gauger-cli.py `which gauger-cli.py`'
-
-#debian-amd64-grothoff.gnunet.org
-echo debian-amd64-grothoff
-BASEPATH='/home/buildslave/gauger'
-ssh root@buildslave "cd $BASEPATH; $COMMAND"
-echo
-
-#ubuntu-armv71-evans
-echo ubuntu-armv71-evans
-BASEPATH='/home/oem/gauger'
-ssh root@efikamx "cd $BASEPATH; $COMMAND"
-echo
-
-#freebsd7-amd64-wachs
-echo freebsd7-amd64-wachs
-BASEPATH='/home/gnunet/gauger'
-ssh root@gnunet.org -p 2220 "cd $BASEPATH; $COMMAND"
-echo
-
-#wachs-lenny-powerpc
-echo wachs-lenny-powerpc
-BASEPATH='/home/gnunet/gauger'
-ssh root@powerbot "cd $BASEPATH; $COMMAND"
-echo
+++ /dev/null
-diff -urN /src/buildbot-slave-0.8.6p1.orig/buildslave/runprocess.py /src/buildbot-slave-0.8.6p1/buildslave/runprocess.py
---- buildbot-slave-0.8.6p1.orig/buildslave/runprocess.py 2012-03-26 04:09:10 +0400
-+++ buildbot-slave-0.8.6p1/buildslave/runprocess.py 2013-03-31 05:18:55 +0400
-@@ -24,6 +24,7 @@
- import re
- import subprocess
- import traceback
-+import tempfile
- import stat
- from collections import deque
-
-@@ -36,6 +37,89 @@
- if runtime.platformType == 'posix':
- from twisted.internet.process import Process
-
-+if os.name == 'nt':
-+ import win32api
-+ import win32process
-+ import win32event
-+ import pywintypes
-+
-+def safe_terminate_process (proc, code):
-+ if os.name == 'nt':
-+ log.msg ("Obtaining current process handle")
-+ cp = win32api.GetCurrentProcess ()
-+ result = False
-+ log.msg ("Expanding target process handle permissions")
-+ dupproc = win32api.DuplicateHandle (cp, proc._handle, cp, 2 | 1024 | 8 | 32 | 16 | 0x100000, 0, 0)
-+ log.msg ("Expanded.")
-+ try:
-+ log.msg ("Checking exit code of target process")
-+ exitcode = win32process.GetExitCodeProcess (dupproc)
-+ log.msg ("Exit code is %d" % exitcode)
-+ if exitcode == 0x103:
-+ log.msg ("Opening kernel32.dll")
-+ kernel32 = win32api.GetModuleHandle ("kernel32")
-+ log.msg ("Getting ExitProcess() address")
-+ exitprocess = win32api.GetProcAddress (kernel32, "ExitProcess")
-+ try:
-+ log.msg ("Creating remote thread")
-+ th = 0
-+ tid = 0
-+ failed = False
-+ th, tid = win32process.CreateRemoteThread (dupproc, None, 0, exitprocess, code, 0)
-+ log.msg ("Created remote thread %d" % tid)
-+ except pywintypes.error as e:
-+ if e[0] == 5:
-+ log.msg ("Access denied. It still might die, so don't fail yet")
-+ pass
-+ else:
-+ log.msg("exception %s - %s" % (sys.exc_info()[0], sys.exc_info()[1]))
-+ failed = True
-+ except Exception as e:
-+ log.msg("exception %s - %s" % (sys.exc_info()[0], sys.exc_info()[1]))
-+ failed = True
-+ if not failed:
-+ log.msg ("Wait for 5 seconds or until it dies (usually takes around 1 microsecond)")
-+ waitresult = win32event.WaitForSingleObject (dupproc, 5)
-+ log.msg ("Result of waiting: %d" % waitresult)
-+ win32api.CloseHandle (th)
-+ if waitresult == 0:
-+ result = True
-+ else:
-+ result = True
-+ except:
-+ log.msg("exception %s - %s" % (sys.exc_info()[0], sys.exc_info()[1]))
-+ finally:
-+ win32api.CloseHandle (dupproc)
-+ return result
-+ else:
-+ return proc.kill ()
-+
-+class Dummy(object):
-+ def SetHandle (self, h):
-+ self._handle = h
-+
-+def safe_terminate_process_by_pid (proc, code):
-+ if os.name == 'nt':
-+ try:
-+ log.msg("Opening process %d" % proc)
-+ openproc = win32api.OpenProcess (2 | 1024 | 8 | 32 | 16 | 0x100000, 0, proc)
-+ log.msg("Opened process %d" % proc)
-+ try:
-+ d = Dummy ()
-+ d.SetHandle (openproc)
-+ log.msg("Terminating it safely")
-+ safe_terminate_process (d, code)
-+ log.msg("Finished terminating")
-+ finally:
-+ log.msg("Closing process handle")
-+ win32api.CloseHandle (openproc)
-+ except:
-+ log.msg("exception %s - %s" % (sys.exc_info()[0], sys.exc_info()[1]))
-+ pass
-+ else:
-+ return os.kill (proc, code)
-+
-+
- def shell_quote(cmd_list):
- # attempt to quote cmd_list such that a shell will properly re-interpret
- # it. The pipes module is only available on UNIX, and Windows "shell"
-@@ -148,6 +232,7 @@
- self.pending_stdin = ""
- self.stdin_finished = False
- self.killed = False
-+ self.scriptfile = ""
-
- def setStdin(self, data):
- assert not self.connected
-@@ -198,6 +283,11 @@
- rc = 1
- else:
- rc = -1
-+ if self.scriptfile:
-+ try:
-+ os.remove (self.scriptfile)
-+ except:
-+ pass
- self.command.finished(sig, rc)
-
-
-@@ -408,9 +498,14 @@
-
- if type(self.command) in types.StringTypes:
- if runtime.platformType == 'win32':
-- argv = os.environ['COMSPEC'].split() # allow %COMSPEC% to have args
-- if '/c' not in argv: argv += ['/c']
-- argv += [self.command]
-+ if os.environ['BUILDSLAVE_SHELL']:
-+ argv = os.environ['BUILDSLAVE_SHELL'].split() # allow %COMSPEC% to have args
-+ argv += [self.command]
-+ else:
-+ argv = os.environ['COMSPEC'].split() # allow %COMSPEC% to have args
-+ if '/c' not in argv:
-+ argv += ['/c']
-+ argv += [self.command]
- else:
- # for posix, use /bin/sh. for other non-posix, well, doesn't
- # hurt to try
-@@ -424,9 +519,26 @@
- # handle path searching, etc.
- if runtime.platformType == 'win32' and not \
- (self.command[0].lower().endswith(".exe") and os.path.isabs(self.command[0])):
-- argv = os.environ['COMSPEC'].split() # allow %COMSPEC% to have args
-- if '/c' not in argv: argv += ['/c']
-- argv += list(self.command)
-+ if os.environ['BUILDSLAVE_SHELL']:
-+ argv = os.environ['BUILDSLAVE_SHELL'].split()
-+ # Create a temporary script file that changes current directory
-+ # and runs the command we want
-+ # It will be deleted after command is finished running (see RunProcessPP)
-+ tf, tf_name = tempfile.mkstemp ()
-+ f = os.fdopen (tf, 'wb')
-+ fcontents = '#!/bin/sh\ncd {}\n{}'.format (
-+ re.sub(r'(?<!\\) ','\\ ', self.workdir.replace('\\','/')),
-+ ' '.join (self.command))
-+ f.write (fcontents)
-+ log.msg("Script: {}".format (fcontents))
-+ f.close ()
-+ self.pp.scriptfile = tf_name
-+ argv += [tf_name.replace('\\','/')]
-+ else:
-+ argv = os.environ['COMSPEC'].split() # allow %COMSPEC% to have args
-+ if '/c' not in argv:
-+ argv += ['/c']
-+ argv += list(self.command)
- else:
- argv = self.command
- # Attempt to format this for use by a shell, although the process isn't perfect
-@@ -439,7 +551,7 @@
- self.environ['PWD'] = os.path.abspath(self.workdir)
-
- # self.stdin is handled in RunProcessPP.connectionMade
--
-+ log.msg("Running {}".format (argv))
- log.msg(" " + display)
- self._addToBuffers('header', display+"\n")
-
-@@ -770,9 +882,7 @@
- if self.interruptSignal == None:
- log.msg("self.interruptSignal==None, only pretending to kill child")
- else:
-- log.msg("using TASKKILL /F PID /T to kill pid %s" % self.process.pid)
-- subprocess.check_call("TASKKILL /F /PID %s /T" % self.process.pid)
-- log.msg("taskkill'd pid %s" % self.process.pid)
-+ safe_terminate_process_by_pid (self.process.pid, 1)
- hit = 1
-
- # try signalling the process itself (works on Windows too, sorta)
-@@ -795,10 +905,11 @@
- if not hit:
- log.msg("signalProcess/os.kill failed both times")
-
-- if runtime.platformType == "posix":
-+ if runtime.platformType == "posix" or runtime.platformType == "win32":
- # we only do this under posix because the win32eventreactor
- # blocks here until the process has terminated, while closing
- # stderr. This is weird.
-+ # LRN: Turns out, things don't work without this on W32. At all.
- self.pp.transport.loseConnection()
-
- if self.deferred:
--- /dev/null
+#!/bin/sh
+
+COMMAND='svn up; cp -v gauger-cli.py `which gauger-cli.py`'
+
+#debian-amd64-grothoff.gnunet.org
+echo debian-amd64-grothoff
+BASEPATH='/home/buildslave/gauger'
+ssh root@buildslave "cd $BASEPATH; $COMMAND"
+echo
+
+#ubuntu-armv71-evans
+echo ubuntu-armv71-evans
+BASEPATH='/home/oem/gauger'
+ssh root@efikamx "cd $BASEPATH; $COMMAND"
+echo
+
+#freebsd7-amd64-wachs
+echo freebsd7-amd64-wachs
+BASEPATH='/home/gnunet/gauger'
+ssh root@gnunet.org -p 2220 "cd $BASEPATH; $COMMAND"
+echo
+
+#wachs-lenny-powerpc
+echo wachs-lenny-powerpc
+BASEPATH='/home/gnunet/gauger'
+ssh root@powerbot "cd $BASEPATH; $COMMAND"
+echo
--- /dev/null
+# ~/.ssh/config for buildbots
+
+Host *.buildbot.gnunet
+ User root
+
+Host debian-amd64-grothoff.buildbot.gnunet
+ Hostname gnunet.org
+ Port 20004
+
+Host debian-i686-wachs.buildbot.gnunet
+ Hostname gnunet.org
+ Port 20000
+
+Host ubuntu-amd64-wachs.buildbot.gnunet
+ Hostname gnunet.org
+ Port 20003
+
+Host opensuse-amd64-wachs.buildbot.gnunet
+ Hostname gnunet.org
+ Port 20002
+
+Host freebsd-amd64-wachs.buildbot.gnunet
+ Hostname gnunet.org
+ Port 20006
+
+Host debian-powerpc-wachs.buildbot.gnunet
+ Hostname powerpcbot.decentralise.rennes.inria.fr
+
+Host debian-armv7l-evans.buildbot.gnunet
+ Hostname efikamxbot.decentralise.rennes.inria.fr
+
+Host debian-sparc64-wachs.buildbot.gnunet
+ Hostname sparcbot.decentralise.rennes.inria.fr
--- /dev/null
+ssh-dss AAAAB3NzaC1kc3MAAAIBAPmoUwxO5VkAR2j7AJh1/UfySsvtqPJWlzZ4i33LoNis6KpaHn7JO9dEL/psg10ZAqqqFahcTvqFDeXjS5DBzOHWA/u0TgXj58i1rOO2TgmxKF3UatYfD51omlPvw3IcnTPIX+Dsiq/cDkJAHxBdAYo9KjFGu9hM090UN7rY/ykBP/VwKbA/9fg0ASPgGrRF7JRylpMu424c8CbvM/iMZCew2BeE21g1u6WgewJjLgWcdGH2r4GO2FPvHSUlVJJ/wXdCDweboPsB+CuiEmBVruKcbG+DJddRWe4L7aUnIHTL6/i85bNwyjQ/toS2PFBx0jp04OcMyF7PxcIeEYI1+cimH//XIo3eOESGjRWpOKJR+yWlxcg2rKTFuHDO1tTTgqC+e2Kcvp7XrQPf4RuBWtD2YRGUMtEhQhvt2+Qd7KDQuuYR8TPXhHEh/sh7pQkCR/I9ijkxiPTCINjwkLD9X6tdYhT0XtG13dweog6EDrxXjtiIM1XY+jfTYvXVmDIn/lzvEfnhMkErTu/ZXt8bGVIRC5THDASFdQTnsCnVc1OU6AH3xVKa3F9CzOCwhrJ2EpQQMc8022ltmBYu9wFF0HPDoe56mqKdNnHDeaLp8CCuf9pLMeih9csYJlAQ3GsOzX9WR044+JqbS+b/++lOZjJdFlUlONZu0F+166rX4pipAAAAFQCA2XLNDkiQ93HpAFgZmBbavTVdxQAAAgA8cpggPUORDfTcgWgcdrJCQz4bIaGKdD/KhiLu15FqF02WkBYC8xsySK8DHkS41bHiqLB8vM5Yh2FiTjpwIzpQ9QH74JSdncUMxYncEcHrlHulASQZ7fuNMFK5vK7XVY2zAjrsjP+/H3vLrEOBoiI625gpGMTLB8QILBBbkGTpQ3Ks6LSJqEQfsCHmGYUhtkIQjgWIzDyzvvAOCjKMjNpkFyEKLkUYIWajt5y8AaFW5uNeXBqk5ejV4Y4pUg67zOJt92moqK5TQWIEjL0kKM7lFMXZDZow+DQQ47q9NYPLWVAwgWGbCdvvewWkJ5+xMTbxfTZgcUmvXz1zc/yGXoeSLoL+iJKyqQgEi6Jv8a+TnnTZivoxIgWYd/uByUvsxZrMXNlc1MUTKNI5CnEz3Dprb+qHw36SXKymnhSgC2948YRTWqU9emR8qNG8EKOoisHX9EPq+Ex5/IJQh2UlSScpnt2xANtoAZuEt/P5W6Djq6UtwMyI8E6yycEP+myKR/JKnydzjtxWEQV9ytfIQQkndPCr49N3RnrVA47aoBzhUQfiLyWbYFpc/oTZRhL5X86Sm9dXDhIyaPslSM8/C0DqzfhqOw53XxROj2IAAu3Aqsg4mkSEwuPzv2PTj0KjagGIuz3J/71CpUOz+6CUWh+tCzkYC3joLYXh0v/MUVZ5JgAAAgEA9IO/Nv4zdZtHSN2RN1lEyGGi+Oi5mFS5Wjo/tsw3VM53H7HiyxVCE8mcLWT/UOEcG4uitonxTUypZGhNra7sTkbje5tuLVKF99e3W4/wV6aWwLpryeZL5BOhlnmTJsZPgTuu3A7eNnh+C45L5SW7qmXLgS8jl3CKqGdzl3XO+eB5oN8EIjWGk+VbD0iPVYobDEUOo1TCj5ZGUENw4R6lRXKsPtHDqa+iMGSUa6hQXaM13oJTI+P4Dr9WcUjqbceHT3LPoYs8dCT9rrqHDX4HGIJr9A6aV/djPVoloPgONQVfqW+xci+yUVYLp8Xdj2zC8P0NCOWiFzke1v7fFvDzs2stotAfXtLvCHje2W4rbpz6InKfbysOEc/o2ybeb2Pu9F6oIamd9qiZhCGog422YyNh1+w1sAvUCBHuF38zPHxDB2YgF4tf2K4kU++PAuZOxnsYLErZly9Nxm2uGKvgKAEgaeMEYR1jK1llRmiGPIapJZIk3cav8tLEP6MNTrjDB52D56DeLdPrgL3cUfLtGcZOJhyBTcz5W07kyGQyT7VZiqlErsg6KQxRzEda6DWNYCAMc32yj8kgEY5hCt7ei1cfyL1Wox61rrdchjGgBDxikVeUL/Sw5H8Yuh8o7j6sT1RHfui5kW5M0ykCjKMniDiOE4sBtVSHFouERamDKA0= grothoff@gnunet.org
+ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAgEArczTGb2rBEUa6mamO6jx5CILCMcF3ZWYlDOk7J0OavsqFV0bnpwKQVypW1TEXwFXgzXJvg6dKenpmWW3EPPN6S6mxxyA6O8dlBwRKLtaFQ5L1KBK1sGt9/1jN5UlyciYxoyKCpkb8RPqcb0u+uzO1o8LIiBbJc/52iiNv2FdgLIOFntWytoV63uXQ3gC1sMJWX/AgbifZpSAijYJEOOU3d1s2944EKT0ZmyC8mKm2lAq8/OoJGM0er3pD7jmd+5CLoiEQWUiOlNaJ14a1Pqv9DoqqsIsnJSrvigAX1JIdgD21BmD6nqwbzzE5SQUatC2yErRFHX0MZAJRpt+T1x56Gqt/+VUvVEB9dW0q5ZCBf18knlROjR8kXHyzbibiXk46W44oP3Uf21/MeoIEzhiXxODXMKuJnqDcxJHWN7/bHbEBDPdfucpLSChlx2F9tKRhfJhLJ/YItC9qUb800PXcAVW25un6KfRALlFSQuEhFoOCq8K5Eje5U/9RMvC0eFV/6V0bmlnDzicjC1XgBfjKL3oCvIxjZizKgrKgU+WT4Y1eT8oP2D8+HYAyYsEGhPYkMUY4Aqan+UcGJppeKA/3xFDEP/fa0Usvi1r9cMKgL3zt/23FTGCDz52cNq50sZgrkIQEUIfk4qGZi36L5GvZtGVU/oIGr7hwBmpAt/PefE= grothoff@gnunet.org
+ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxpjDxPCAVHRmn/D4u7DtR+P6DUhSOiVXUMTC7VPcBpfBzdiEjsdlME1MBvlYJ5kXUENnB/zpPGNPVj6OCk0nQLEK6nX8diaJ+U4T13EiT7+HAQjBsvil+lWIsbKzZ6CyRulkcextFgi5kd/VM7QL+oRTdrP6Pleky/MvrcUEz2W7z4vLM7SZXnkMvIN19qhEW5HTkVzi8XhPQLplWYL4QdzvL/VGsPRmFY7/lRCRp2iHgJuxBSnGT/S9HjgbC4VlsSuO+I4ee6GgR7A0WcoCFXAkxXu43IcDnceRcWSY0e6vJlg59T4QardVBfRdxmp0g7YSft+ilrBdCD3y4T68Sw== mwachs TUM key
+ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAgB78mdEOXz5qMmxtNlsazJTvMkLc9GCO1Hnp6sNvQCecsXs85aEiGHDiJsJAVH808KLqfZ5cFN5as/6JZx5bAc3WhWJFXi8oGJT3iOiPXVtdu3yPjNAN34eW18fzYGs4QkDvj6Xf/BZZmAivK/hebhlgG/knNWaOPpSzQIexqcXbDT/hkD1Izr8W/ObGA8uben2ucOM7uuKEGPQAZn901RwRanKdFIiBE6TRbXbhaR23/ygjNMmG20kRpIGriWJ95wrw8E7ZnYnAnXzzg/4GWgzf5gSGeB2LopZ474Wz1OqZsmzSONIKrQ8AI7e2R0mfnfU9NG18m2GrS5l6zuplbQNECrZf2fTROpT8fAaKqlQ0iXfFI8tZuOPT/j8hB3RlZFPsa1mdyZwzCvON/hJ9nBtLNhIuXO/QWydQ+smJxgBBdtF+q3EdEn++0RV7lJ+RrGoexNyzLDVuOQX/1HPWjQR7GzxGmbIL4IhJ4QSvrOLMMrWGZ3JwAbDgxT58WfOFWGEzdeAESCaTo/OHS3zm6K3qmyY+doa1cVrdoyPV9+L32iP1cmRQF5j6P3it6TdtxStXDjvyMd0j9wsR0+DL5Hmxt/0mjXScTuv3slwGan1gs/MaViLXY3E4zSLnHS4YkNA2DpHND475VYOEECLgZrR16zIhsl4C6FpPp3m/mdKyQ== ndurner@web.de
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDWlt7hcFgIHyvCuCw/4S+iP6TFi7aHs1RCT7FzePK4KWoxqnrTYRNhtJsAOHFXCUw8U0V884P9e7SaglCuwrxEQ77CVDDJViI0CwJd3WqB4ehJEbzZYrQmexyaJ0rKSUvL0QW0pQpDuVJswmGK/sRAoEHyTZA9L9b76RdJO0NWqx4tAZau/2AMaxpsJQ3uePeZbabNIbEWdfX+35zCg8hDJfkk13vva68y88y4cPeuNxBti0K9LunhQAWZGzB0Is5pOMzWJ21rNF9ZVXn7kwdFX9gR1DZUEnTe7byj/GbGe2NLIfLxTARUcS6sJbAKrd5xqQH2FbZFiyUU5HDGZxFkRMIPbjypF2Q5fHT8UAc7UADy548nMWUuCXkL/Ji0vpVFZgFzjPQk28v2DAN4vh/L91Gwsd+LwHkW1EKTwq1wbzjeplNc2+vu6knFNf5zhdwlW8EMTvbg8+GnWD/PJEmmY5ci6b5f5WeR8a7YW7UKrDOS1yyUHyXSQ//gXxbelgCSwJnASTU2O/7uNcMh6/c7tpQ9n532hK3t9/zp40whqFJofkJcOYsaJHF8tY54efFPQcQKiwi6U2s2FJMis5yM2+LvOvDmfpiU4DkfR2F8dkhDLnUmZ+CfyoKmRTuDXSQiW7lQPnmPiexfy6XHlen19vFHF5cSxRgClFYJmxz0Rw== bart@ranger
+ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxcmXWIGT3szxGyBDHJhORmCsAmfFYGjt3eFDPLcVgAQ26ug35zwtYT7CAeYrEzroau+7t2655Rj3TUkyZcibbhYCsst/46/Qz0beOVsS+GNtRjJu55jbaFrIxbvdidNUV4IL/cBgd/+yXiqyAD9zl3UO4l6yeCL5yXimkgsiyq2/c6LXPcdZRrwSYuJnUwqgiFIz55vOyF+kJfIc3LrbqoEBJZmxMYqxd2ymoNVaMr47/qHnries0a+/p9YBYlxoBBMIQzn+eq5XXkOsAcEkDQGpTJ46hC7JgcyKmSou+KCmilj+bL1b2L8lJt3KGFqPjShGeNx6838kMMfiLG8xVw== totakura@in.tum.de
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDCwY5XSDyXVqobwR+UfQ0+lPJTVj8MchnOYAJWNC9xvks4s7ZapBkzbpxcnCi27hb31NBtXECgMCfbDI4HuaaphgbGZjOoIWQeMLn8yHCgo7WJT0KDm4o7nODl/6drgab9XmQKhobTtrzmM+MY+MPCSXNDGRk53rM8knT+8cuPsdafEUa67mTC0p/VQJOgX0JVUF45MfVUtl1914Uot22AMHChGGg+7EMPge9QV3z5ZlP9tzXLUkw28+dkeqkXhGgAtBu2alaAy+sxiRbVHVgedOQzYCmhfQZBly8wMBvlnnTNLK023jT9FAp6j2h9/mnfGaXncElzZqkqMTXTkLe1 dold@dold-ThinkPad-T400
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw/lnVcAoYrMhfRpr6iXlpyVWoFpbJG7sxaNmNKR6qxASNg5tI3/+yPZ/UVL6H8AjEkPhGq/4+Km22ofolNsNtsANJn94B7va8eAyPrY097MV33srTNXpylaFRH6JUq4wxgLTFnG13FQ9eyzr2NPwlJqTtosdzvn2pRfhxG5phYt0ZXPE4jozUgPhxlrWMsORHzlDyhoyYjRMvXHo/U5dXPbq0t5SIdPJnj1poJqKzB9wZGk3vgDiYNKUuWW2h9lqDqUqZa445UZH4Rib2Bll45zJYsfLNj+iqU71djKVfUoUlj8lRQXjyiDhsUgFnBMCJrEYzkCKMYznZrHUp/9NV lrn
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oQC+WndedWTKdjLPJGiyiOrlSStLBaLOSNLWKso3xH24MCD4ga55Tf0ZkKFCwalC/LLoftD/z0nnyxbTgoIKrtDjSycet08HL+2p/+e1Xl0kbqLYy+e7PmUdkxgBuIPMXHpFexcn0O44oCDsP9VE28GUJcjWXL/l07wvS7tvIip8sxxz0nf5AJ/Ixa+pjFbTD2ivh06KfuRJNeyxrS1yBtL7nA3LOgZahcX13WReJM6zZapO/hyX24eU+cQJqN9Hgji1qBYRqtRhFrl3/7w5fpv0pV0Dzjh75PKhThAUV8Le8X0pCTGlooMD989ToXi/m3vj9BHXx30XedEp6NM5 harsha@nautophone.net.in.tum.de
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyWni+1l6L4tMhdhlEe5+yVv9Hr03tvtKJkmjqOpJV37gLisdxxWhfGYGNycccpqn7lZhsU1eCqnfEuhhEHZWcWUKdY3Wx8xKzBt5E2wo0Kk/oyxasLxSv542fP9HlKY0/GVXJG8wf8XkiPdOAU9aMVeDi+qrQc61SF1Zyx2I5QyfuJR72lmOdzHFyUUTT0YL/ug3+HBoHFqk8NfgOEQe/O5/Ppj6n7iUc+LOJokq6eFeg7m7uszfYpy9IWrVelPG2YxH4t4TXpKpdnRkg1asNqHrWDS/COoCx+OlIknAEVr0P2I5YlUp9dDYU6qPVO9G2PQAuv36UEVOwahaXcru9 tarabai@devegypt.com
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCRm+/pobQVbTqfosN3eahouoKmOMCAxfNM/nQT7ELJWIGlKHYAgmwiCQcYzFZvUEqqfLhIOQ6WgeLvl0sqiCkzvz2LuFHhePqQ9QmmP1zple+9GEqP86RUOarrJZTkx5HPszfn+ak1lpYLD2XoBItKUkTPL6nRNLX9mSPX+N0w7UapuM42QrAeGWv8Lv+U0idJ9akpNb4kRgW8DTeG01EM7h+Tw0iSKA8J9QKe7Sz4X/jTD2zZuCmIzK4/PhvypCcyEfn/e0E84qcPMkH2YulxSDtnSD3UkLgyI/KeW2K0HzKoyRs51x62L9xuNbFwaqVkKgU0Lx+t1II1RU2MsyCQHMR7lqFGna2j0U6aYsn/fubxgh9yiuqHEaK3MbjKlHeMOGAptyDUJXzR8lTrQFW/dF22KhA6gvb+S2uI/MEMlvS/7xLCpoOHMPr72k+R/W4bVhNfFx+msUt0PB+F/WLpuHRmPETOijNempQsspKEIexC0zVIngMXeNtH4w/ZyUa4LAsKWnaJQGm5Z5148DMMJbk0P8wTncy5F+mSngupwBs3LzPzDfdGYqUT/W5QV5yFrHJq4qYT7rf0nzNU1KsUIrpJVpul5jW5bzgJH4uUAiUpzXiTp7pZZpwCzJWvNJT2ttvYTODHxAGBcvGlM5v0UUrKgqiGvOCnTGr9H/jgTQ== cfuchs
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEKm10NKw0pdcJRBfO3o32KdhEiRVvu34cNyiobYFFVX7wBPyeqveFD5NxuRbIibPnZh62aw9areWwlZydot3jZHHD8XqgIJH32WdvOoIqYSwtL9iPePk+yzJ4mSAgzYe1v/FmI7yGTWj42SK5gpDME7qPClmP28vJyc3TB6KkvPZFnjRTeeaVIAhdIYZCxItxiCFQcJELvmeoAhHPtM6ug2OHEOdHR12Rc+phXPCD1F87vnHyWuDvqHgcpiIFncce0kPscFsjt8o9nWzG7lH6KuMT8wIio/ybKRYCC9kVmE8gjEIh56HCL2BlOoQo//h7thVLJZJTOSwyoloNzvuv oehlmann@in.tum.de
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCZfH/w+XKNgMasTaqs6BqX8IbzA10gD4on0jsYV35CqW/wwmHEwj/7EmThY/yLnzUeNMcHFs3B11p7ZTZvlZ2WZJ5FZr/0FMoWXp5uMN9i6ykVa4D5WoO+VyxGhZEtrHb8+lAl1ekXep+gTwViKNmSiu+ogJ2f49h+losbEsLFBV0FDTUPChFYpSB3OGTuAkTuUJ6qxDsK7NpY4nXTLG3Iyke7LjCw9uTkSP8a2q2xzheXrOG8o13F8CBL7hGFc6laZG3TfmM1WheJJQ+CkY11s0sRvddEhKlB7Ru8u23Crw5cJEkHiKUOyFln3+tvyLCb5ETlbMlHxhZVPblsYN8L martin@nietzsche
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCud/+43em7FFIm81c7POZ5TwheiO2w+ZNajKn0sDTBgCd2kf1bKn3bancbYC3kp574iFVmy91NaGJY9XZ5tLHrchFZjppM3x6KVwxY3BTm5ABSmvgNYWZIM2eIbLDWFinOV2QIJrxYY6XEdIOG6ZyQ/lqyITopmvRw2tqvdnz0PaSjAQpoLwY8HxfgNSNeCTbh2xQC+UYEiMOmANJ5FjNA27ZpLPZB+RYpAFu4H5EU1uVMUwjFP8GI9AD1DcnNsVn714IhqS3U9xjB8GzYvZg/KgeniUCliUYfHdrxyNcvgcWClDvVpdy7vuYdZObiBJjs2a5AXEXUoW5AEeu6/ODBGCTL45IpHSR6wB5s2pSU3IwAxbyH6fPB0mwbijYZmHLvNtD3Ka1+dessUrVyVBHSoteWyCuhmTr0r9QUsonS4BDr808SitJ6DXWheSupckdpCWo8c+UnMkvHTXEGCU6YZVaGyZAXEIF8iO6bYLV+IJU2BnoRgWi394NHRf/OIK99Tgxwqlclautm5A6q6gSshg8rgvLgt2tj7dmIqDFdjk/foyd7BEAXMBv4QjJGOJQu0w1i4igFNw3Kg9W5pDmhRgERttjkbXeqJA4C8t90TKigLeJ+gz198tCf4XI6+YtTld5cOTpyzI9h3G3mSCIrUG1Ik7gDcibAu8uKThyEbQ== tg
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCqlkUztOQ65gRvfxI6gwkP+095eEEc5DtHzZd1x9e7AWM4yF+vK/LkQPC8Mq9fwSlN17oFFM/07CeY8LV3RQ3wck1JgDECobk6kByUtxhFpuKlViVz3sTD5KqeQHzoQXwxb5fZWuWkXs2NmalpEMCaSNDnDQdyL/PRNiWF6FsNDCSVa8hhHcSzizrF/RL0bfhzQVCSMl5RxsOQ6VEqtUNeImEyQYQ0ijlk/NErcHKipjVkj9Sa4DMKKztcccj8AEFYoqPoJrZ3pEg6puUiJ2UlPllQf7ba6+Z+U91kN4i3m8PwcuuUh5ky3cnQe2D1njUdnYg0Vamug2xrAebNSHdT supritisingh08@gmail.com
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQ2JbS5dNBxiSRGeNIE+VvvJBUStgndjduH2HmGyy7Z7VGNrykSDgjkcLj1+808zWzkniUZTUKvH5uT4rjSYrc8Au2l65e+J6gYypaOhn7oQKW9KQ3P7K8VpHSc407iQk0fM6bmpRKcd5GK0U6mlpi3nKvPhd9JttwfeNF6HWo4goCuYXdnLmWIimP6BBg6dZRBqO0y00bjSlMJmHnlQXI3YUBvceB3tBe6hOaEx5X3pCpE9CPaAUp6pAohHv97k6Dq7OcXeJulDaHKYvEGTCOq5v3V4zSYH4tJCrAO5OL83fsoAwn70l2qy+BkuThhiud2cff/jL1gB1+oU06s42N bart@voyager
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC4/0jIkaaWtGolhWJPijpaPA1QHeQNlaZTc3wlCr/PGnFxY/TfXMKwEFX+JBvtYAuBsD+NXshKUssFtDSSQ5ljqbjGfA1SFv7ueRcuEVfg8MSTic7crHo23afjYWC9GND0LFDwy8IGrT6QtmbOV1cACTDk3GRcFT3wK2ZsTYAlsq7o+TTfD6A2OncqQGyIrgZl+eNx3je19xQ6OK+RTOXhvsNx77IdOluNkItAS8XEJpqnrYAqrqrtX5eyzHkwmPvu/gxrjO55YuXXXj4yramy5j++SkjH1y1XXMdAl1zNsDwT4U0/bNLm/0vvMQ8qgEVOak6vq+Qw0iyIyJP6RFI/J2S/mISCGyasAWULynhFP0DaCwFkFOnn3tv+A+caoxYKUU3nD+zD2q04FaIaOastTbDfeUSseHeKX08mSHxcPd/alYKcXA+Qm9SWsHGHJ8PAMPJNOcMwtkgGDKKzKJLW6CTUIEgl9BZXs0GXv1erAYu7zqNCRU/PWIKV2J509sk65dkykDRDkHMJ1esG+2Rg094hbNHsB4uoRZjlibS/9WYEOdn1eLt2xAvMXa1Vs8RpysMfv98zJabz8+mADf5u1prLGk9zSQA7akVoFe6OLqnQBVJr1E5simMZaCqZBYbYfgTveo8xtPZw7NDcH6/xrV2j0sN2xGHfkRFpuMpnCQ== burdges@gmail.com
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4UL53uXZCis1C9VNWJjVXTtyRHVmzFmg3vajTXrRF6LBYpEtDRA3OCtzCsj88AlL2VEtIiBWBqZrntE0TKDia1Czru3sM1ieKCra1F1GlSj4Yk+7VaRSS1hGwMBUb0zyaiIHjizGH45+zL5TXeAiGbeiF/iiRJJG/qQ+txTXVg51QLuMv9W5wKs9Dz+o+vbbUwVaauJo/TmhVz1VFjqhQBOt9N/CtaTe84B1716/d/YTZLH1bmjxMja+a6aCyABaPM5JcMNYEZT2UMCP5fTyJRUpfNlimpdRkcxaA5/K8AKTW7R35cQpLrngnnOChUB+KT6683omDr2edXGqkWNsZ grothoff@firefly
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCvbeMnZGlujN9IsLxUSTuHBUESoN6ZTXmEFi/GkBKp9RQ7xZAS84JDcV0GFddiCfTHGQL04mkeYXkof5d9NkMWjtTvQ9QFtUgGOqI3PbGCGW83vSwJHsqVbfbv5uqFCODjpTx4/WiJNkEpN/HgE2eIYFcm+Dcpo1vTgC26LjdMfqUaAGv/OTmKWmaMqyOzc4MXuUiBQT83oTfn2zSWDEOJG67yULqg5jMzaXqzPbhsaokBIPehks0bJR/q7OWNwDQJyM1oTKeRIh0ZmC0qYwGu/vlc3rYW4cp//ErAXG5iPfCXXUySUc0DTFHazzkNzUStuUwugznxuUCgbvg2tu5WEnrh/PpzIMuvNaUk2ZSDq00hHDrpVJyKKCih2d1cGV+qs9XFjDoD6Ch2NiSdPnG7fSsTxVw1SB7/APuMqfXWrQDfT5ee5xOKGzKOxQckGihQi39kmqf4WjNESOw4tmhNFZOee9dpC7ESYSpG/3zK8WG6FDln1nU6rHGjVgaSK6HwZUOsneS2fntiQZR2olzEY9+ybL1vh1fk6pkhS78X/PiwS3cSiu4q7JWJ4tUiB0T/cHAFBaODDKHXmEaGefLrPBWLLFRdjbnepWo1d0k1z/NLVovXDCGlF4IOBKqcImIffods/jTpH0hjU/vBjIQHH3Ii0J6vtGJw9whcNAGQfw== t3sserakt@posteo.de
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDRzeeUMJKn/9lY8FJIuU6HuQpWZozerTtbgsoGUNW0n0P/RsPYMQjweURDlJyKQisSZt+xRzRorSr0j9P016L8N13wGR9wtJwoJOi8DpwqEMxleYwPAZOu1zsA1Qty3ftNu6c3xB2wnlSPC0oZ2RYBOlxvIGtSGoNcDY43MKmsJ+IPsNpKOOS3x1J+xE7jOnQ0LHvxt4b54Sdr0uruTbHupwBbzBIxMFzS9hzEN6gL5cYp2fggZM8Qt707UlzIUuNzsU50qM6A8UJ+0Kun1GhKhK2J7T4Dok7M6m8ZtaKGexMfZwCl4luXlP/r1Kn48kXx/EtoQ/OcR23ymxZ95X+X8TB0ZdYcj17M7B+kk7OFz/2SVdJqYDqnMIOmXtAEdUsmSAmI7YxWyYOutRnEIkzQvHfW0h3D2pSA6EApR5huLOi40N5Ga3XLSBJC1yC8+qdiNE/t+5nGGxdlLvJ7VuzkwTEKQs33LNUdS4qKVBcIppZ7yUMjqJ5VzFk6xwEqGPCYcEWzYpNmzBiE/EFvwVSNV15Rknyieq7RB/gY/DNKX7yuC7lRZdEgGG6xu7l34c1ZhtIFhUGCnEtYsx5kJQFGMMP7bi/LNVnm+M7YZGp+uKgsnmWzrYw+YORzLwqBncs6N1tvwOG9DRKJ00S3JqSEDJ5FH/VDIUlWWbIgNwtAIQ== lurchi
+ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1WzIhCxeYQzjAHvwkSN7oQ3hhakwLzrTC6fXqnGUn71sQQKe4Rb2lmcUqVepnuKx2wEw3GLev89rVBSXwneiiVHwOEPNqFJXKHV5AsQbLYBvt9qlkK0Wff71Ptc9xB+M1qDVluA/4ieLDOemXYvkcK/6fqimyIdBMSlXSs2PKQkpjkAvE3qh0c41HKlagq7Y4rHV/chs1XPWCWX19ZO2EnZoVx6KeZHouc/FoE/lC7X1FudJxSKf5ZIcy3CIiYTQsL//hb6DT/mCgssCL+NtTDDXNsYiuIlj8Oi+nCpW/GkisIeyTZpbPiokDP+r0V3T8jcMbbGCVN6Um33lG2/LR amatus@atom
--- /dev/null
+from fedora:26
+
+# Install the required build tools
+RUN dnf -y update && dnf -y install which git automake texinfo gettext-devel autoconf libtool libtool-ltdl-devel libidn-devel libunistring-devel glpk libextractor-devel libmicrohttpd-devel gnutls libgcrypt-devel jansson-devel sqlite-devel npm
+
+WORKDIR /usr/src
+
+# Install gnurl
+RUN wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.59.0.tar.gz
+RUN tar xvzpf gnurl-7.59.0.tar.gz
+WORKDIR /usr/src/gnurl-7.59.0
+RUN autoreconf -i
+RUN ./configure --disable-ntlm-wb
+RUN make install
+WORKDIR /usr/src
+
+RUN dnf -y install wget flex bison
+
+# Install libpbc
+RUN wget https://crypto.stanford.edu/pbc/files/pbc-0.5.14.tar.gz
+RUN tar xvzpf pbc-0.5.14.tar.gz
+WORKDIR /usr/src/pbc-0.5.14
+RUN ./configure --prefix=/usr
+RUN make install
+WORKDIR /usr/src
+
+RUN dnf -y install glib2-devel
+
+# Install libbswabe
+RUN git clone https://github.com/schanzen/libgabe.git
+WORKDIR /usr/src/libgabe
+RUN ./configure --prefix=/usr
+RUN make install
+
+# Install WebUI
+WORKDIR /usr/src/
+RUN git clone https://github.com/schanzen/gnunet-webui.git
+WORKDIR /usr/src/gnunet-webui
+RUN git checkout gnuidentity
+
+RUN mkdir /usr/src/gnunet
+WORKDIR /usr/src/gnunet
+ADD . .
+ARG NUM_JOBS
+RUN ./bootstrap
+RUN ./configure --prefix=/usr/local
+RUN make -j$NUM_JOBS
+RUN make install
+
+RUN groupadd gnunetdns
+RUN adduser -S -m -h /var/lib/gnunet gnunet
+RUN chown gnunet:gnunet /var/lib/gnunet
+RUN echo '[arm]\nSYSTEM_ONLY = YES\nUSER_ONLY = NO\n' > /etc/gnunet.conf
+
+ADD docker-entrypoint.sh .
+
+CMD ["sh", "docker-entrypoint.sh"]
--- /dev/null
+#!/bin/bash
+gnunet-arm -s > $HOME/gnunet.log 2>&1
+exec bash
\ No newline at end of file
+++ /dev/null
-dnl -*- m4 -*-
-dnl vim:ft=m4
-dnl
-dnl colorit(1) configuration for gnunet logs
-dnl
-divert(-1)
-dnl
-dnl Define some useful color variables
-dnl
-define(`black', `0')
-define(`red', `1')
-define(`green', `2')
-define(`yellow', `3')
-define(`blue', `4')
-define(`magenta', `5')
-define(`cyan', `6')
-define(`white', `7')
-dnl
-dnl Mark macro arguments: regexp foreground-color [background-color]
-dnl
-define(`mark', ``mark "$1"'' `ifelse(`$#', `3', ``"\033[3$2;4$3m"'', ``"\033[3$2m"'')' `"\033[m"')
-dnl
-divert
-
-mark(`^[A-Z][a-z]{2} .[0-9] [0-9:]{8}(-[0-9]{6})?', yellow)
-
-mark(`ERROR', red)
-mark(`WARNING', yellow)
-mark(`INFO', green)
-mark(`DEBUG', cyan)
--- /dev/null
+dnl -*- m4 -*-
+dnl vim:ft=m4
+dnl
+dnl colorit(1) configuration for gnunet logs
+dnl
+divert(-1)
+dnl
+dnl Define some useful color variables
+dnl
+define(`black', `0')
+define(`red', `1')
+define(`green', `2')
+define(`yellow', `3')
+define(`blue', `4')
+define(`magenta', `5')
+define(`cyan', `6')
+define(`white', `7')
+dnl
+dnl Mark macro arguments: regexp foreground-color [background-color]
+dnl
+define(`mark', ``mark "$1"'' `ifelse(`$#', `3', ``"\033[3$2;4$3m"'', ``"\033[3$2m"'')' `"\033[m"')
+dnl
+divert
+
+mark(`^[A-Z][a-z]{2} .[0-9] [0-9:]{8}(-[0-9]{6})?', yellow)
+
+mark(`ERROR', red)
+mark(`WARNING', yellow)
+mark(`INFO', green)
+mark(`DEBUG', cyan)
--- /dev/null
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<profiles version="12">
+<profile kind="CodeFormatterProfile" name="GNUnet" version="12">
+<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_field" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.use_on_off_tags" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_binary_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_array_initializer" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_package" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="82"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_binary_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_package" value="0"/>
+<setting id="org.eclipse.jdt.core.compiler.source" value="1.7"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="82"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_member_type" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_unary_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.indent_parameter_description" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.lineSplit" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indentation.size" value="4"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.enabling_tag" value="@formatter:on"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/>
+<setting id="org.eclipse.jdt.core.compiler.problem.assertIdentifier" value="error"/>
+<setting id="org.eclipse.jdt.core.formatter.tabulation.char" value="space"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_body" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_method" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_method_declaration" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="next_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.compiler.problem.enumIdentifier" value="error"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_ellipsis" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block" value="next_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" value="next_line"/>
+<setting id="org.eclipse.jdt.core.formatter.compact_else_if" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.indent_root_tags" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="next_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.tabulation.size" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_empty_lines" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="82"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" value="insert"/>
+<setting id="org.eclipse.jdt.core.compiler.compliance" value="1.7"/>
+<setting id="org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer" value="2"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="82"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_unary_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" value="next_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode" value="enabled"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_label" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_javadoc_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.line_length" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.wrap_before_binary_operator" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_block" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.join_lines_in_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_html" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_source_code" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" value="16"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.compiler.codegen.targetPlatform" value="1.7"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_resources_in_try" value="80"/>
+<setting id="org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_header" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" value="end_of_line"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_imports" value="1"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header" value="true"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
+<setting id="org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>
+<setting id="org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column" value="false"/>
+<setting id="org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line" value="false"/>
+</profile>
+</profiles>
--- /dev/null
+# Configuration to disable autostarting of
+# all services above the 'core' level.
+# (including resolver)
+
+[dns]
+AUTOSTART = NO
+
+[dht]
+AUTOSTART = NO
+
+[nse]
+AUTOSTART = NO
+
+[cadet]
+AUTOSTART = NO
+
+[datastore]
+AUTOSTART = NO
+
+[fs]
+AUTOSTART = NO
+
+[dv]
+AUTOSTART = NO
+
+[vpn]
+AUTOSTART = NO
+
+[consensus]
+AUTOSTART = NO
+
+[resolver]
+AUTOSTART = NO
+
+[namestore]
+AUTOSTART = NO
+
+[namecache]
+AUTOSTART = NO
+
+[identity]
+AUTOSTART = NO
+
+[revocation]
+AUTOSTART = NO
+
+[conversation]
+AUTOSTART = NO
+
+[peerstore]
+AUTOSTART = NO
+
+[psycstore]
+AUTOSTART = NO
+
+[gns]
+AUTOSTART = NO
+
+[regex]
+AUTOSTART = NO
+
+[set]
+AUTOSTART = NO
+
+[scalarproduct-bob]
+AUTOSTART = NO
+
+[scalarproduct-alice]
+AUTOSTART = NO
+
+[social]
+AUTOSTART = NO
+
+[psyc]
+AUTOSTART = NO
+
+[rps]
+AUTOSTART = NO
+
+[multicast]
+AUTOSTART = NO
+
+[sensordashboard]
+AUTOSTART = NO
+
+[sensor]
+AUTOSTART = NO
+
+[zonemaster-monitor]
+AUTOSTART = NO
--- /dev/null
+# Configuration file that can be included to prevent ANY of the usual
+# FORCESTART = YES to be set. Also disables NSE POW calculation.
+#
+# This configuration is included from various configuration test files.
+# Whenever a new service is added that has FORCESTART = YES for
+# production should be disabled for (most) test suites, the option should
+# be added here instead of all over the place ;-).
+
+[core]
+FORCESTART = NO
+
+[fs]
+FORCESTART = NO
+
+[dht]
+FORCESTART = NO
+
+[cadet]
+FORCESTART = NO
+
+[nse]
+FORCESTART = NO
+WORKBITS = 0
+
+[revocation]
+FORCESTART = NO
+
+[topology]
+FORCESTART = NO
+
+[hostlist]
+FORCESTART = NO
+
+[gns]
+FORCESTART = NO
+
+[zonemaster]
+FORCESTART = NO
+
+[zonemaster-monitor]
+FORCESTART = NO
--- /dev/null
+# /etc/nsswitch.conf
+# Modified to support GNUnet's GNS (.gnu, .zkey etc)
+# Compare with your distributions' "nsswitch.conf" file.
+
+passwd: compat
+shadow: compat
+group: compat
+
+# passwd: db files nis
+# shadow: db files nis
+# group: db files nis
+
+hosts: files gns [NOTFOUND=return] dns
+networks: files dns
+
+services: db files
+protocols: db files
+rpc: db files
+ethers: db files
+netmasks: files
+netgroup: files
+bootparams: files
+
+automount: files
+aliases: files
\ No newline at end of file
--- /dev/null
+-- declare our protocol
+gwlan_proto = Proto("gnunet","Gnunet Layer")
+-- create a function to dissect it
+local f = gwlan_proto.fields
+
+f.len = ProtoField.uint16 ("gnunet.len", "Gnunet Message Len")
+f.type = ProtoField.uint16 ("gnunet.type", "Gnunet Message Type")
+-- rhs_proto.fields.sequence = ProtoField.uint16("rhs.sequence","Sequence number")
+f_proto = DissectorTable.new("gnunet.proto", "Gnunet Protocoll", FT_UINT16, BASE_DEC)
+--gwlan_proto.fields = {f_len, f_type}
+
+function gwlan_proto.dissector(buffer,pinfo,tree)
+ pinfo.cols.protocol = "Gnunet Packet"
+ gnunet_packet_disector(buffer,pinfo,tree)
+end
+
+function gwlan_proto.init()
+end
+
+function gnunet_packet_disector(buffer,pinfo,tree)
+ if (buffer:len() > 4) then
+ local len = buffer(0,2):uint()
+ local type = buffer(2,2):uint()
+ if (len <= buffer:len()) then
+ local dissect = f_proto:get_dissector(type)
+ if dissect ~= nil then
+ dissect:call(buffer(0, len):tvb(), pinfo, tree)
+ else
+ local subtree = tree:add(fragmentack, buffer(),"Gnunet Packet Type: " .. buffer(2,2):uint() .. "(" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+ end
+ end
+ --if (len < buffer:len()) then
+ -- gwlan_proto.dissector(buffer(len, buffer:len() - len):tvb(), pinfo, tree)
+ --end
+ else
+ if (buffer:len() == 4) then
+ local subtree = tree:add(fragmentack, buffer(),"Gnunet Packet (" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+ end
+ end
+end
+
+function gnunet_message_header(buffer, pinfo, tree)
+ if (buffer:len() >= 4) then
+ local len = buffer(0,2)
+ local type = buffer(2,2)
+ tree:add(buffer(0,2), "Message Len: " .. buffer(0,2):uint())
+ tree:add(buffer(2,2), "Message Type: " .. buffer(2,2):uint())
+ end
+end
+
+-- load the udp.port table
+llc_table = DissectorTable.get("llc.dsap")
+-- register our protocol to handle llc.dsap 0x1e
+llc_table:add(31,gwlan_proto)
+
+fragmentack = Proto("gnunet.fragmentack","Gnunet Fragment Ack")
+
+function fragmentack.dissector(buffer,pinfo,tree)
+ pinfo.cols.protocol = "Gnunet Fragment Ack"
+ local subtree = tree:add(fragmentack, buffer(),"Gnunet Data ack (" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+ if buffer:len() >= 16 then
+ subtree:add(buffer(4,4),"Fragment Id: " .. buffer(4,4):uint())
+ subtree:add(buffer(8,8),"Bits: " .. buffer(8,8))
+ end
+end
+
+fragment = Proto("gnunet.fragment","Gnunet Fragment")
+
+function fragment.dissector(buffer,pinfo,tree)
+ pinfo.cols.protocol = "Gnunet Fragment"
+ local subtree = tree:add(fragment, buffer(),"Gnunet Fragment (" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+ if buffer:len() >= 13 then
+ subtree:add(buffer(4,4),"Fragment Id: " .. buffer(4,4):uint())
+ subtree:add(buffer(8,2),"Total Size: " .. buffer(8,2):uint())
+ subtree:add(buffer(10,2),"Offset: " .. buffer(10,2):uint())
+ if buffer(10,2):uint() == 0 then
+ if (buffer(8,2):uint() <= buffer:len() - 12) then
+ gnunet_packet_disector(buffer(12):tvb(),pinfo,tree)
+ end
+ else
+ subtree:add(buffer(12), "Data: " .. buffer(12))
+ end
+ end
+end
+
+hello = Proto("gnunet.hello","Gnunet Hello Message")
+
+function hello.dissector(buffer,pinfo,tree)
+ pinfo.cols.protocol = "Gnunet Hello Message"
+ local subtree = tree:add(hello, buffer(),"Gnunet Hello Message (" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+ if buffer:len() > (264 + 8) then
+ subtree:add(buffer(4,4),"Reserved: " .. buffer(4,4):uint())
+ RsaPublicKeyBinaryEncoded(buffer(8 , 264):tvb(),pinfo, subtree)
+ else
+ subtree:add(buffer(4), "SIZE WRONG (< 272)")
+ end
+end
+
+wlan = Proto("gnunet.wlan","Gnunet WLAN Message")
+
+function wlan.dissector(buffer,pinfo,tree)
+ pinfo.cols.protocol = "Gnunet WLAN Message"
+ local subtree = tree:add(wlan, buffer(),"Gnunet WLAN Message (" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+ if buffer:len() > (4 + 4 + 2*64) then
+ subtree:add(buffer(4,4),"CRC: " .. buffer(4,4):uint())
+ local peer = GNUNET_PeerIdentity(buffer(8,64), pinfo, subtree)
+ peer:append_text(" Traget")
+ peer = GNUNET_PeerIdentity(buffer(8 + 64,64), pinfo, subtree)
+ peer:append_text(" Source")
+ else
+ subtree:add(buffer(8), "SIZE WRONG (< 4 + 4 + 2*64)")
+ end
+ if (buffer:len() - (4 + 4 + 2*64) > 0) then
+ gnunet_packet_disector(buffer(4 + 4 + 2*64):tvb(),pinfo,tree)
+ end
+end
+
+function RsaPublicKeyBinaryEncoded(buffer,pinfo,tree)
+ local subtree = tree:add(gwlan_proto,buffer(),"Gnunet RsaPublicKeyBinaryEncoded(" .. buffer:len() .. ")")
+ subtree:add(buffer(0,2),"Len: " .. buffer(0,2):uint())
+ subtree:add(buffer(2,2),"Sizen: " .. buffer(2,2):uint())
+ subtree:add(buffer(4,258),"Pub Key: " .. buffer(4,258))
+ subtree:add(buffer(262,2),"Padding: " .. buffer(262,2):uint())
+end
+
+function GNUNET_PeerIdentity(buffer,pinfo,tree)
+ local subtree = tree:add(gwlan_proto,buffer(),"Gnunet PeerIdentity(" .. buffer:len() .. ")")
+ subtree:add(buffer(0),"hashPubKey: " .. buffer(0))
+ return subtree
+end
+
+transport_session_keepalive = Proto("gnunet.transport_session_keepalive","Gnunet transport session keepalive")
+
+function transport_session_keepalive.dissector(buffer,pinfo,tree)
+ pinfo.cols.protocol = "Gnunet transport session keepalive"
+ local subtree = tree:add(transport_session_keepalive, buffer(),"Gnunet transport session keepalive (" .. buffer:len() .. ")")
+ gnunet_message_header(buffer, pinfo, subtree)
+end
+
+f_proto:add(43,wlan)
+f_proto:add(39,transport_session_keepalive)
+f_proto:add(19,fragmentack)
+f_proto:add(18,fragment)
+f_proto:add(16,hello)
+++ /dev/null
-#!/bin/sh
-# make sure configure was run with coverage enabled...
-lcov --directory . --zerocounters
-make check
-rm `find * -name "test_*.gc??"` `find * -name "perf_*.gc??"`
-for n in `find * -name "*.gc??" | grep libs`
-do
- cd `dirname $n`
- mv `basename $n` ..
- cd -
-done
-lcov --directory . --capture --output-file app.info
-mkdir -p doc/coverage
-genhtml -o doc/coverage app.info
+++ /dev/null
-#!/bin/bash
-# /proc/sys/kernel/core_pattern should be core.%p.%E
-
-COREPID=$1
-
-COREFILES=`ls -1 *core.$COREPID* 2>/dev/null | wc -l`
-COREFILE=`ls -1 *core.$COREPID* 2>/dev/null | head -n 1`
-
-if [ $COREFILES -gt 1 ]; then
- echo "Multiple files, using $COREFILE"
-fi
-
-
-if [ $COREFILES -eq 0 ]; then
- SERVICENAME=$1
- COREFILES=`ls -1 core.*.*$SERVICENAME 2>/dev/null | wc -l`
- COREFILE=`ls -1 core.*.*$SERVICENAME 2>/dev/null | head -n 1`
-
- if [ $COREFILES -gt 1 ]; then
- echo "Multiple files, using $COREFILE"
- fi
-fi
-
-if [ $COREFILES -eq 0 ]; then
- echo "Core file for $1 not found"
- exit 1
-fi
-
-echo "Using $COREFILE"
-
-EXECPATH=${COREFILE#*!}
-EXECPATH=`echo $EXECPATH | sed -e 's/!/\//g'`
-echo $EXECPATH
-echo ""
-echo ""
-
-gdb --core $COREFILE /$EXECPATH
+++ /dev/null
-\def\prefix{}
-\def\name{Sree Harsha Totakura}
-\def\suffix{M.Sc.}
-\def\phone{+49-89-289-18011}
-\def\fax{+49-89-289-18033}
-\def\email{sreeharsha@totakura.in}
-\def\homepage{http://sreeharsha.totakura.in/}
-\def\orga{Technische Universit\"at M\"unchen}
-\def\departmentde{Department of Computer Science}
-\def\departmenten{Department of Computer Science}
-\def\subdepartmentde{Network Architectures and Services}
-\def\subdepartmenten{Network Architectures and Services}
-\def\jobtitlegerman{Free Secure Network Systems Group}
-\def\jobtitleenglish{Free Secure Network Systems Group}
-\def\gpglineone{8E68 1D8A 25AB B102 AFB5}
-\def\gpglinetwo{4B40 3B6F 8AF1 43C2 1F3B}
-\def\gns{LOC36VTJD3IRULMM6C20TGE6D3SVEAJOHI9KRI5KAQVQ87UJGPJG/totakura}
-
+++ /dev/null
-#!/bin/bash
-gnunet-arm -s > $HOME/gnunet.log 2>&1
-exec bash
\ No newline at end of file
+++ /dev/null
-[PATHS]
-SERVICEHOME = $GNUNET_TMP/nse-profiler/
-
-[testbed]
-AUTOSTART = NO
-PORT = 12113
-ACCEPT_FROM = 127.0.0.1;192.168.0.0/16;
-HOSTNAME = localhost
-MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 5
-OVERLAY_TOPOLOGY = RANDOM
-OVERLAY_RANDOM_LINKS = 1000
-OPERATION_TIMEOUT = 45 s
-
-[nse]
-PORT = 12114
-UNIXPATH = $GNUNET_TMP/test-nse-service-nse.unix
-BINARY = gnunet-service-nse
-#BINARY = /home/mrwiggles/documents/research/gnunet/gnunet-ng/src/nse/.libs/gnunet-service-nse
-#PREFIX = valgrind --leak-check=full --log-file=valgrind_nse.%p
-AUTOSTART = NO
-# Overriding network settings for faster testing (do NOT use
-# these values in production just because they are here)
-WORKDELAY = 60 s
-INTERVAL = 10 s
-WORKBITS = 0
-PROOFFILE = $SERVICEHOME/nse.proof
-
-[arm]
-UNIXPATH = $GNUNET_TMP/test-nse-service-arm.unix
-
-[statistics]
-AUTOSTART = YES
-PORT = 12115
-
-[fs]
-AUTOSTART = NO
-
-[datastore]
-AUTOSTART = NO
-
-[dht]
-AUTOSTART = NO
-
-[nat]
-DISABLEV6 = YES
-BINDTO = 127.0.0.1
-ENABLE_UPNP = NO
-BEHIND_NAT = NO
-ALLOW_NAT = NO
-INTERNAL_ADDRESS = 127.0.0.1
-EXTERNAL_ADDRESS = 127.0.0.1
-
-[transport]
-plugins = udp
-
-[transport-udp]
-PORT = 12116
-
-[core]
-AUTOSTART = YES
-
-[peerinfo]
-AUTOSTART = YES
-
-[dns]
-AUTOSTART = NO
-
-[topology]
-AUTOSTART = NO
-
-[dv]
-AUTOSTART = NO
-
-[resolver]
-AUTOSTART = YES
-
-[cadet]
-AUTOSTART = NO
-
-[chat]
-AUTOSTART = NO
-
-[gns]
-AUTOSTART = NO
-
-[vpn]
-AUTOSTART = NO
-
-[nse-profiler]
-OUTPUT_FILE = nse_output_2000_peers.dat
-TOPOLOGY_OUTPUT_FILE = nse_topo_2000_peers
-DATA_OUTPUT_FILE = nse_stats_2000_peers
-ROUND0 = 1000
-#ROUND1 = 2000
-ROUND2 = 2000
-ROUND3 = 2000
-ROUND4 = 2000
-ROUND5 = 2000
-ROUND6 = 2000
-ROUND7 = 2000
-ROUND8 = 2000
-ROUND9 = 2000
-ROUND10 = 2000
-ROUND11 = 1000
-ROUND12 = 1000
-ROUND13 = 1000
-ROUND14 = 1000
-ROUND15 = 1000
-ROUND16 = 1000
-ROUND17 = 1000
-ROUND18 = 1000
-ROUND19 = 1000
-ROUND20 = 1000
-ROUND21 = 2000
-ROUND22 = 2000
-ROUND23 = 2000
-ROUND24 = 2000
-ROUND25 = 2000
-ROUND26 = 2000
-ROUND27 = 2000
-ROUND28 = 2000
-ROUND29 = 2000
-ROUND30 = 2000
-WAIT_TIME = 1920 s
-CONNECTION_LIMIT = 10
+++ /dev/null
-from __future__ import print_function
-import os
-import re
-import sys
-
-
-debug = False
-
-
-def get_td_from_function_signature(line, file, num):
- left_paren = line.find('(')
- if left_paren > 0:
- left_paren += 1
- li = line[left_paren:]
- right_paren = line.find(')')
- if right_paren > 0 and right_paren > left_paren and line[right_paren:].find('(') >= 0:
- fname = line[:right_paren]
- fname = fname.lstrip(' ').lstrip('*').lstrip(' ').rstrip(' ')
- if len(fname) > 0:
- if debug:
- print("from {0}:{1}".format(file, num))
- print("-T {0}".format(fname))
-
-
-def get_td_from_simple_type(line, file, num):
- line = line.rstrip(' ').rstrip('\t').rstrip(' ').rstrip('\t')
- right_space = line.rfind(' ')
- right_tab = line.rfind('\t')
- sep = right_tab if right_tab > right_space else right_space
- sep += 1
- tname = line[sep:]
- tname = tname.lstrip('*')
- if len(tname) > 0:
- if debug:
- print("from {0}:{1}".format(file, num))
- print("-T {0}".format(tname))
-
-
-def find_typedefs(file):
- with open(file, 'rb') as f:
- td = False
- td_struct = False
- td_level = 0
- td_line = []
- data = f.read()
- for i, l in enumerate(data.splitlines(False)):
- # Don't try to be too smart: only count lines that begin with 'typedef '
- l = l.rstrip(' ').rstrip('\t')
- if len(l) == 0:
- continue
- if not td:
- if l[:8] != 'typedef ':
- continue
- else:
- td = True
- if l[8:].lstrip(' ').lstrip('\t')[:6] == 'struct':
- td_struct = True
- if td_struct:
- leftcbrace = l.find('{')
- if leftcbrace >= 0:
- if td_level == 0:
- td_line.append(l[:leftcbrace])
- l = l[leftcbrace + 1:]
- td_level += 1
- rightcbrace = l.rfind('}')
- if rightcbrace >= 0:
- td_level -= 1
- if td_level == 0:
- td_line.append(l[rightcbrace + 1:])
- else:
- td_line.append(l)
- if len(l) > 0 and l[-1] == ';' and(not td_struct or td_level == 0):
- td_line = ' '.join(td_line)
- td_line = td_line[:-1]
- if len(td_line) > 0:
- if td_line[-1] == ')':
- get_td_from_function_signature(td_line, file, i)
- else:
- get_td_from_simple_type(td_line, file, i)
- td_line = []
- td = False
- td_struct = False
- td_level = 0
-
-
-def scan_dir(d):
- for dirpath, dirs, files in os.walk(d):
- for f in files:
- if re.match(r'(?!lt_).+\.(c|cc|h)$', f):
- file = os.path.join(dirpath, f)
- find_typedefs(file)
-
-
-if __name__ == '__main__':
- if len(sys.argv[1:]) == 0:
- arg = os.getcwd()
- else:
- arg = sys.argv[1]
- scan_dir(arg)
+++ /dev/null
-from gdb import *
-
-
-def search_dll(head, field, match, pfield):
- """
- Search in a DLL by iterates over it.
-
- head: name of the symbol denoting the head of the DLL
- field: the field that should be search for match
- match: the mathing value for field
- pfield: the field whose value is to be printed for matched elements; None to
- print all fields of the matched elemented
- """
-
- (symbol, _) = lookup_symbol(head)
- if symbol is None:
- print("Can't find symbol: " + head)
- return
- symbol_val = symbol.value()
- while symbol_val:
- symbol_val_def = symbol_val.dereference()
- field_val = symbol_val_def[field]
- if field_val.type.code == gdb.TYPE_CODE_INT:
- val = int(field_val)
- res = (match == val)
- elif (field_val.type.code == gdb.TYPE_CODE_STRING) or (field_val.type.code == gdb.TYPE_CODE_ARRAY):
- val = str(field_val)
- res = (match == val)
- elif (field_val.type.code == gdb.TYPE_CODE_TYPEDEF):
- val = str(field_val)
- res = match in val
- else:
- continue
-
- if res:
- if pfield is None:
- print(symbol_val_def)
- else:
- print(symbol_val_def[pfield])
- symbol_val = symbol_val_def["next"]
+++ /dev/null
-#!/bin/sh
-
-BASEPATH="$(dirname $0)"
-OLDDIR="${pwd}"
-GN_HOME="/usr/local/bin"
-
-export CC="cparser"
-export CFLAGS="-m32 --seaspider"
-
-cd $BASEPATH/.. && ./configure --prefix=$GN_HOME --with-extractor=$GN_HOME --with-microhttpd=$GN_HOME --with-libgcrypt=$GN_HOME && make && seaspider
-if test "$?" -ne 0
-then
- echo "FAIL: building GNUnet"
- exit 1
-fi
-
-cd $OLDDIR
+++ /dev/null
-<!DOCTYPE html>
-<html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <title>Create your GNU Name System Business Card</title>
- <meta name="viewport" content=
- "width=device-width, initial-scale=1.0, maximum-scale=1.0">
- <!-- link href="bootstrap.min.css" rel="stylesheet" type="text/css" -->
- <style>
-/*!
- * Bootstrap v3.0.3 (http://getbootstrap.com)
- * Copyright 2013 Twitter, Inc.
- * Licensed under http://www.apache.org/licenses/LICENSE-2.0
- */
-
-/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#8a6d3b}.text-warning:hover{color:#66512c}.text-danger{color:#a94442}.text-danger:hover{color:#843534}.text-success{color:#3c763d}.text-success:hover{color:#2b542c}.text-info{color:#31708f}.text-info:hover{color:#245269}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small,blockquote .small{display:block;line-height:1.428571429;color:#999}blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>.active,.table>tbody>tr>.active,.table>tfoot>tr>.active,.table>thead>.active>td,.table>tbody>.active>td,.table>tfoot>.active>td,.table>thead>.active>th,.table>tbody>.active>th,.table>tfoot>.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>.active:hover,.table-hover>tbody>.active:hover>td,.table-hover>tbody>.active:hover>th{background-color:#e8e8e8}.table>thead>tr>.success,.table>tbody>tr>.success,.table>tfoot>tr>.success,.table>thead>.success>td,.table>tbody>.success>td,.table>tfoot>.success>td,.table>thead>.success>th,.table>tbody>.success>th,.table>tfoot>.success>th{background-color:#dff0d8}.table-hover>tbody>tr>.success:hover,.table-hover>tbody>.success:hover>td,.table-hover>tbody>.success:hover>th{background-color:#d0e9c6}.table>thead>tr>.danger,.table>tbody>tr>.danger,.table>tfoot>tr>.danger,.table>thead>.danger>td,.table>tbody>.danger>td,.table>tfoot>.danger>td,.table>thead>.danger>th,.table>tbody>.danger>th,.table>tfoot>.danger>th{background-color:#f2dede}.table-hover>tbody>tr>.danger:hover,.table-hover>tbody>.danger:hover>td,.table-hover>tbody>.danger:hover>th{background-color:#ebcccc}.table>thead>tr>.warning,.table>tbody>tr>.warning,.table>tfoot>tr>.warning,.table>thead>.warning>td,.table>tbody>.warning>td,.table>tfoot>.warning>td,.table>thead>.warning>th,.table>tbody>.warning>th,.table>tfoot>.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>.warning:hover,.table-hover>tbody>.warning:hover>td,.table-hover>tbody>.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline select.form-control{width:auto}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#fff}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form select.form-control{width:auto}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child th,.panel>.table>tbody:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;outline:0;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
- </style>
- </head>
-
- <body>
- <div class="container">
- <h1>GNU Name System Business Card</h1>
-
- <p>Please fill in the information below to generate your business
- card.</p>
-
- <form class="form-horizontal" name="gnsinput" action="submit.pdf" method=
- "get" accept-charset="utf-8" id="gnsinput">
- <fieldset>
- <legend></legend>
- <div class="form-group">
- <label class="col-sm-2 control-label" for="prefix">Academic Title
- (prefix):</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="prefix" name="prefix"
- type="text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for="name">Name:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="name" name="name" type=
- "text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for="suffix">Academic Title
- (suffix):</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="suffix" name="suffix"
- type="text">
- </div>
- </div>
- </fieldset>
-
- <fieldset>
- <legend></legend>
- <div class="form-group">
- <label class="col-sm-2 control-label" for="phone">Phone:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="phone" name="phone"
- type="text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for="fax">Fax:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="fax" name="fax" type=
- "text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for="email">E-mail:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="email" name="email"
- type="text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for=
- "homepage">Homepage:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="homepage" name=
- "homepage" type="text">
- </div>
- </div>
- </fieldset>
-
- <fieldset>
- <legend></legend>
- <div class="form-group">
- <label class="col-sm-2 control-label" for=
- "orga">Organization:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="orga" name="orga" type=
- "text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for=
- "departmenti18n">Department:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="departmenti18n" name=
- "departmenti18n" type="text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for=
- "subdepartmenti18n">Division:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="subdepartmenti18n" name=
- "subdepartmenti18n" type="text">
- </div>
- </div>
- </fieldset>
-
- <fieldset>
- <legend></legend>
- <div class="form-group">
- <label class="col-sm-2 control-label" for=
- "jobtitlei18n">Jobtitle:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="jobtitlei18n" name=
- "jobtitlei18n" type="text">
- </div>
- </div>
- </fieldset>
-
- <fieldset>
- <legend></legend>
- <div class="form-group">
- <label class="col-sm-2 control-label" for="gpgfingerprint">GPG
- Fingerprint:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="gpgfingerprint" name=
- "gpgfingerprint" type="text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for="gnskey">GNS Public
- Key:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="gnskey" name="gnskey"
- type="text">
- </div>
- </div>
-
- <div class="form-group">
- <label class="col-sm-2 control-label" for="gnsnick">GNS
- Nickname:</label>
-
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="gnsnick" name="gnsnick"
- type="text">
- </div>
- </div>
- </fieldset>
-
- <div class="form-group">
- <div class="col-sm-offset-2 col-sm-10">
- <input class="btn btn-submit" type="submit">
- </div>
- </div>
- </form>
- </div>
- </body>
-</html>
+++ /dev/null
-\documentclass[14pt,a4paper,oneside,ngerman]{scrartcl}
-
-\usepackage{geometry}
-%\geometry{paperwidth=95mm, paperheight=65mm,left=0mm,right=0mm, top=0mm, bottom=0mm}
-\usepackage[utf8]{inputenc}
-\usepackage[T1]{fontenc}
-\usepackage{graphicx}
-\usepackage{units}
-\usepackage{tikz}
-\usepackage{url}
-\usepackage[newdimens]{labels}
-\usepackage{pspicture}
-\usepackage{pst-barcode}
-\usepackage{auto-pst-pdf}
-\usetikzlibrary{positioning,shapes,shadows,arrows}
-
-
-\LabelCols=2%
-\LabelRows=5%
-\LeftPageMargin=17.0mm%
-\RightPageMargin=17.0mm%
-\TopPageMargin=10.0mm%
-\BottomPageMargin=10.0mm%
-\InterLabelColumn=3.5mm%
-\InterLabelRow=3.0mm%
-\LeftLabelBorder=2mm%
-\RightLabelBorder=2mm%
-\TopLabelBorder=2mm%
-\BottomLabelBorder=2mm%
-\numberoflabels=10%
-\LabelGridfalse% <-- or \LabelGridfalse
-
-
-
-\renewcommand{\rmdefault}{phv}
-\renewcommand{\seriesdefault}{m}
-\renewcommand{\shapedefault}{n}
-
-\definecolor{MyBlack}{cmyk}{0,0,0,1}
-\input{def.tex}
-
-\setlength\parindent{0pt}
-\newlength{\width}
-\newlength{\height}
-\setlength{\width}{85mm}
-\setlength{\height}{50mm}
-
-\newcommand{\logo}{
-%LaTeX with PSTricks extensions
-%%Creator: inkscape 0.48.4
-%%Please note this file requires PSTricks extensions
-\psset{xunit=.1pt,yunit=.1pt,runit=.1pt}
-\begin{pspicture}(744.09448242,1052.36218262)
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.57414055,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,1179.80841262)
-\lineto(-381.25674,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-282.64454,1133.40272062)
-\lineto(-381.25674,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-242.03964,1034.79060862)
-\lineto(-381.25674,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-281.67794,935.21172262)
-\lineto(-381.25674,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-382.22354,1034.79060862)
-\lineto(-521.44064,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-479.86894,936.17850262)
-\lineto(-381.25674,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-479.86894,1134.36951062)
-\lineto(-381.25674,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,1034.79060862)
-\lineto(-381.25674,888.80601262)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.57414055,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.35404,1179.66521262)
-\curveto(-352.25324,1156.60557262)(-317.44894,1142.47793062)(-282.64454,1133.40272062)
-\curveto(-273.72464,1095.34014862)(-259.44184,1067.08441862)(-242.03964,1034.79060862)
-\curveto(-265.24254,1003.07363862)(-276.84404,970.98276862)(-282.64454,936.17850262)
-\curveto(-323.24954,930.37778262)(-352.25324,912.97565262)(-381.25674,889.77279262)
-\curveto(-410.26034,918.77635262)(-433.46314,930.37778262)(-479.86894,936.17850262)
-\curveto(-482.44324,970.98276862)(-494.24764,1002.49677862)(-520.47384,1034.79060862)
-\curveto(-494.96354,1078.62190862)(-488.55394,1089.91334862)(-479.86894,1133.40272062)
-\curveto(-439.26394,1147.09291062)(-410.26034,1156.60557262)(-381.35404,1179.66521262)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.29664,1144.91591062)
-\curveto(-358.05394,1127.60200862)(-332.72784,1116.00057862)(-305.84754,1110.19985862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.00044,1112.41446862)
-\curveto(-363.85464,1098.59843862)(-346.45254,1090.27762862)(-329.05034,1086.99701862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-352.25324,1063.79416862)
-\lineto(-381.25674,1081.19630862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,1144.91591062)
-\curveto(-404.45964,1127.60200862)(-430.40244,1118.91690862)(-456.70584,1110.19985862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.55294,1112.41446862)
-\curveto(-395.40834,1101.05761862)(-413.30194,1092.79772862)(-433.50304,1086.99701862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-410.42664,1063.77335862)
-\lineto(-381.29664,1081.19630862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,924.57707262)
-\curveto(-358.05394,945.40846262)(-332.71464,956.43303862)(-305.84754,959.38134862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,959.38134862)
-\curveto(-363.85464,973.46123862)(-352.25324,980.27668862)(-329.05034,982.58418862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-352.25324,1005.78704862)
-\lineto(-381.25674,988.38490862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,924.57707262)
-\curveto(-410.26034,950.02348262)(-419.41524,953.58061862)(-456.66604,959.38134862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.25674,959.38134862)
-\curveto(-395.77454,976.78347862)(-413.75354,982.58418862)(-433.46314,982.58418862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-410.26034,1005.78704862)
-\lineto(-381.25674,988.38490862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-456.66604,959.38134862)
-\curveto(-462.46674,990.86337862)(-471.79264,1011.58774862)(-491.47034,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.46314,982.58418862)
-\curveto(-436.00564,1003.44757862)(-445.06464,1017.38846862)(-456.66604,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-427.66244,1034.79060862)
-\lineto(-410.26034,1005.78704862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-305.84754,959.38134862)
-\curveto(-300.04684,988.38490862)(-288.44534,1011.58774862)(-271.04324,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.05034,982.58418862)
-\curveto(-323.24954,1005.78704862)(-317.44894,1017.38846862)(-305.84754,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.85114,1034.79060862)
-\curveto(-342.95924,1026.27648862)(-348.76004,1017.38846862)(-352.25324,1005.78704862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-305.84754,1110.19985862)
-\curveto(-296.72764,1075.39557862)(-286.23964,1057.99345812)(-271.04324,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.05034,1086.99701862)
-\curveto(-325.35424,1067.28736862)(-317.44894,1052.19274815)(-305.84754,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.85114,1034.79060862)
-\lineto(-352.25324,1063.79416862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-456.66604,1110.19985862)
-\curveto(-462.46674,1083.90969862)(-474.06814,1057.99345812)(-491.47034,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.46314,1086.99701862)
-\curveto(-439.26394,1069.59487862)(-445.06464,1052.19274815)(-456.66604,1034.79060862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=6.66012001,linecolor=curcolor]
-{
-\newpath
-\moveto(-427.66244,1034.79060862)
-\lineto(-410.26034,1063.79416862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.86714172,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,1180.91840262)
-\lineto(-384.86194,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-286.24984,1134.51270062)
-\lineto(-384.86194,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-245.64484,1035.90058862)
-\lineto(-384.86194,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-285.28304,936.32170262)
-\lineto(-384.86194,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-385.82874,1035.90058862)
-\lineto(-525.04584,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-483.47404,937.28848262)
-\lineto(-384.86194,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-483.47404,1135.47950062)
-\lineto(-384.86194,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,1035.90058862)
-\lineto(-384.86194,889.91599262)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.86714172,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.95924,1180.77520262)
-\curveto(-355.85834,1157.71555262)(-321.05404,1143.58791062)(-286.24984,1134.51270062)
-\curveto(-277.32984,1096.45013862)(-263.04704,1068.19441862)(-245.64484,1035.90058862)
-\curveto(-268.84764,1004.18361862)(-280.44904,972.09274862)(-286.24984,937.28848262)
-\curveto(-326.85484,931.48776262)(-355.85834,914.08563262)(-384.86194,890.88278262)
-\curveto(-413.86544,919.88634262)(-437.06834,931.48776262)(-483.47404,937.28848262)
-\curveto(-486.04844,972.09274862)(-497.85284,1003.60676862)(-524.07904,1035.90058862)
-\curveto(-498.56864,1079.73189862)(-492.15914,1091.02332862)(-483.47404,1134.51270062)
-\curveto(-442.86904,1148.20291062)(-413.86544,1157.71555262)(-384.95924,1180.77520262)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.90174,1146.02590062)
-\curveto(-361.65904,1128.71199062)(-336.33294,1117.11056862)(-309.45264,1111.30984862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.60564,1113.52444862)
-\curveto(-367.45974,1099.70842862)(-350.05764,1091.38760862)(-332.65554,1088.10700862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-355.85834,1064.90414862)
-\lineto(-384.86194,1082.30629862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,1146.02590062)
-\curveto(-408.06474,1128.71199062)(-434.00754,1120.02688862)(-460.31104,1111.30984862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-385.15804,1113.52444862)
-\curveto(-399.01354,1102.16759862)(-416.90704,1093.90770862)(-437.10814,1088.10700862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-414.03174,1064.88334862)
-\lineto(-384.90174,1082.30629862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,925.68706262)
-\curveto(-361.65904,946.51845262)(-336.31974,957.54301862)(-309.45264,960.49133862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,960.49133862)
-\curveto(-367.45974,974.57122862)(-355.85834,981.38668862)(-332.65554,983.69417862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-355.85834,1006.89702862)
-\lineto(-384.86194,989.49489862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,925.68706262)
-\curveto(-413.86544,951.13347262)(-423.02044,954.69060862)(-460.27114,960.49133862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.86194,960.49133862)
-\curveto(-399.37974,977.89345862)(-417.35874,983.69417862)(-437.06834,983.69417862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-413.86544,1006.89702862)
-\lineto(-384.86194,989.49489862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-460.27114,960.49133862)
-\curveto(-466.07194,991.97335862)(-475.39784,1012.69773862)(-495.07544,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.06834,983.69417862)
-\curveto(-439.61074,1004.55755862)(-448.66974,1018.49844862)(-460.27114,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.26764,1035.90058862)
-\lineto(-413.86544,1006.89702862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-309.45264,960.49133862)
-\curveto(-303.65194,989.49489862)(-292.05064,1012.69773862)(-274.64834,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-332.65554,983.69417862)
-\curveto(-326.85484,1006.89702862)(-321.05404,1018.49844862)(-309.45264,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-338.45624,1035.90058862)
-\curveto(-346.56444,1027.38647862)(-352.36514,1018.49844862)(-355.85834,1006.89702862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-309.45264,1111.30984862)
-\curveto(-300.33274,1076.50557862)(-289.84464,1059.10344812)(-274.64834,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-332.65554,1088.10700862)
-\curveto(-328.95944,1068.39735862)(-321.05404,1053.30273815)(-309.45264,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-338.45624,1035.90058862)
-\lineto(-355.85834,1064.90414862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-460.27114,1111.30984862)
-\curveto(-466.07194,1085.01967862)(-477.67334,1059.10344812)(-495.07544,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.06834,1088.10700862)
-\curveto(-442.86904,1070.70485862)(-448.66974,1053.30273815)(-460.27114,1035.90058862)
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=3.91771698,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.26764,1035.90058862)
-\lineto(-413.86544,1064.90414862)
-}
-}
-{
-\newrgbcolor{curcolor}{1 1 1}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-393.8088526,985.67869244)
-\curveto(-393.8088526,985.67869244)(-393.44546987,985.76087805)(-393.67396775,984.76553303)
-\curveto(-394.05309973,983.16620422)(-395.79555868,982.55700599)(-396.87725482,981.47163855)
-\curveto(-398.351462,980.48101881)(-398.6104145,978.72434872)(-397.21444931,977.75378495)
-\curveto(-398.7210224,978.22655517)(-400.8061979,979.66881501)(-399.57477539,981.47163855)
-\curveto(-398.22764147,983.19752119)(-395.09015533,983.91500755)(-395.42734981,986.59184681)
-\curveto(-396.37998575,989.53091147)(-400.50677037,988.15464924)(-401.53047213,991.51637193)
-\curveto(-402.56322605,991.80858295)(-404.01218802,991.93029551)(-404.1942803,993.24484667)
-\curveto(-404.2680542,994.15904494)(-403.90643652,994.92636108)(-403.48616886,995.69080272)
-\curveto(-398.64953801,998.87380689)(-404.01974746,1002.29292386)(-407.26268253,1003.58308712)
-\curveto(-407.6434434,1004.01109576)(-407.57924109,1004.56329308)(-407.56616462,1005.11588376)
-\curveto(-408.00450635,1007.01133693)(-404.29139316,1007.79143201)(-405.57675045,1009.38815359)
-\curveto(-406.80790064,1008.0810358)(-410.1193649,1006.25080865)(-409.48814897,1004.0396643)
-\curveto(-407.40162194,1002.49382145)(-405.04265242,1000.92449843)(-403.28385923,999.1477522)
-\lineto(-409.69046364,1003.71353414)
-\curveto(-410.77513515,1005.27372934)(-409.16701137,1006.53519295)(-408.13939121,1007.56183981)
-\lineto(-410.49971225,1006.84435849)
-\curveto(-407.00643307,1008.34976665)(-409.81008841,1010.72005768)(-412.38797917,1010.88834226)
-\curveto(-412.80366779,1011.24238537)(-412.67526822,1011.80423497)(-412.69143605,1012.29068683)
-\curveto(-409.99391548,1014.99232752)(-415.61149367,1012.6301204)(-416.43423228,1014.93232098)
-\curveto(-417.47225612,1016.45207141)(-415.71318557,1017.56090388)(-415.25407176,1018.81323463)
-\curveto(-417.95564689,1019.93198161)(-420.70037488,1022.59761535)(-417.68185288,1025.20533035)
-\curveto(-418.15605531,1027.3773411)(-420.21344898,1029.4084608)(-418.52481891,1031.69526513)
-\curveto(-421.06182111,1028.99623671)(-425.19981125,1029.49195254)(-427.89868334,1027.12948319)
-\lineto(-428.60678973,1025.9880377)
-\curveto(-430.35882532,1015.89113459)(-427.87009967,1005.36374167)(-421.99787569,997.02792631)
-\curveto(-420.19863268,993.38312546)(-414.14674714,991.72770347)(-414.61342039,987.40716718)
-\curveto(-414.92741712,987.05834356)(-415.26582697,986.71107823)(-415.79358091,986.85275094)
-\lineto(-414.81573507,987.7332923)
-\curveto(-414.61747496,988.13873357)(-414.65306838,988.74155242)(-414.95061992,989.1030289)
-\lineto(-415.79358091,990.37492645)
-\lineto(-416.56911713,990.92934268)
-\curveto(-418.00420584,992.20919807)(-414.66333087,988.06985641)(-416.87259923,988.4181606)
-\lineto(-416.46797492,989.07041588)
-\lineto(-416.73771942,990.11402232)
-\lineto(-417.91787994,991.71205003)
-\curveto(-427.39964418,1000.49661586)(-431.11951497,1013.52344574)(-429.31487092,1025.95542469)
-\curveto(-430.26656382,1025.78766458)(-430.67306411,1026.6697743)(-431.27056765,1027.12948319)
-\curveto(-433.23975943,1025.53406774)(-435.53400217,1022.53369545)(-438.28411104,1023.99865883)
-\curveto(-439.63960119,1023.1836007)(-442.18606908,1022.46716833)(-442.90361595,1024.422623)
-\curveto(-443.13707613,1028.72489863)(-436.22321249,1029.80764371)(-437.64345968,1034.33689928)
-\lineto(-437.20511794,1035.47834477)
-\curveto(-434.73956987,1036.86112254)(-433.95056887,1039.41013713)(-434.44014234,1042.00089256)
-\curveto(-445.86414358,1042.63579491)(-455.00871283,1052.19172136)(-458.69081416,1062.12947276)
-\curveto(-462.89758161,1077.75750209)(-454.49077809,1096.84247586)(-437.65018702,1101.26475952)
-\curveto(-434.47523651,1102.26179898)(-431.11143106,1103.2958893)(-427.66938867,1102.96063132)
-\curveto(-423.73641624,1102.81452582)(-419.63754961,1103.1857857)(-416.03637062,1101.94963286)
-\lineto(-407.87637911,1097.84042306)
-\curveto(-405.93417237,1096.63832049)(-403.38097209,1097.3364922)(-401.40234992,1097.84042306)
-\lineto(-401.36863249,1097.22078079)
-\curveto(-402.69700649,1094.04430225)(-406.3684545,1093.01634926)(-409.46116393,1092.39409976)
-\lineto(-415.395689,1092.52454679)
-\curveto(-417.50111211,1093.08431363)(-419.64698505,1092.9453843)(-421.86974845,1092.91590298)
-\curveto(-423.64200642,1092.95400277)(-425.35627001,1092.80106401)(-426.99501987,1092.39409976)
-\curveto(-440.79280693,1091.49633156)(-449.54624238,1070.12611679)(-436.84093842,1062.39037689)
-\curveto(-434.47655777,1062.09882147)(-432.65304285,1063.55960925)(-430.7378161,1064.57543385)
-\curveto(-428.61622517,1065.94647155)(-426.68075082,1067.60841412)(-424.87072589,1069.46734092)
-\lineto(-420.82444252,1074.03312286)
-\curveto(-419.87034916,1075.3793793)(-418.9038097,1076.75693758)(-417.58744306,1077.8162025)
-\curveto(-410.65617101,1087.7526528)(-394.60461121,1089.62853918)(-386.63344436,1080.29477157)
-\lineto(-383.59875453,1081.99063329)
-\curveto(-372.52814586,1090.46212021)(-359.1997351,1078.86111507)(-353.18426499,1069.59779298)
-\lineto(-349.94726048,1066.07561748)
-\curveto(-348.69964493,1065.25455819)(-347.29965039,1064.60673569)(-345.79980969,1064.47758976)
-\curveto(-344.71866828,1064.18381542)(-343.50962151,1064.38074418)(-342.46163776,1064.64065484)
-\curveto(-334.57411899,1069.13860353)(-335.48586637,1080.22954553)(-339.35949289,1087.01299746)
-\curveto(-342.82716881,1091.17438203)(-348.54183464,1092.71761766)(-353.76424414,1092.13319563)
-\lineto(-359.83365407,1092.52454679)
-\curveto(-361.76774664,1093.03826609)(-363.67221164,1094.10300266)(-364.79032825,1095.81843622)
-\curveto(-364.92923741,1096.64823501)(-365.47603369,1097.52734416)(-365.0600677,1098.36222628)
-\curveto(-361.7825932,1096.74594294)(-357.75521096,1096.52287132)(-354.47232533,1098.42745231)
-\curveto(-344.68304964,1105.30613606)(-328.58968849,1104.10729126)(-323.31604222,1092.36148675)
-\curveto(-320.72777803,1086.5590275)(-319.80792152,1079.96472804)(-320.58480926,1073.47218604)
-\curveto(-319.76206562,1060.58493604)(-330.83264907,1047.51244693)(-344.7005942,1048.25601564)
-\lineto(-341.46356448,1042.19004503)
-\curveto(-340.7944404,1040.95597999)(-338.70535153,1037.47815758)(-337.82191046,1040.29851025)
-\curveto(-337.68501345,1040.42604747)(-337.50132254,1040.71294821)(-337.34985634,1040.42895728)
-\curveto(-336.79768423,1039.02921993)(-337.72211977,1037.58904284)(-338.69861914,1036.58065665)
-\curveto(-346.41485779,1034.94349533)(-356.42129471,1036.39802477)(-361.02054698,1043.16843047)
-\lineto(-360.88566213,1034.49343873)
-\curveto(-358.52804413,1030.8368978)(-354.6948876,1035.98449454)(-352.32107657,1033.38460626)
-\curveto(-350.97231376,1030.58903989)(-349.90273088,1027.59389214)(-350.97231376,1024.44871543)
-\lineto(-357.37889296,1017.60004252)
-\curveto(-357.86647949,1015.4345574)(-353.69949215,1014.93884157)(-353.77097653,1012.6755174)
-\curveto(-355.36790488,1010.67179123)(-357.7133844,1009.19508776)(-359.94155388,1008.07712244)
-\curveto(-357.89953124,1006.06556955)(-358.11533591,1002.36075711)(-360.27872315,1000.44574218)
-\lineto(-361.59376852,1000.02177801)
-\curveto(-365.2259619,1001.37976948)(-371.67439287,997.479284)(-368.2364,993.59706422)
-\lineto(-367.79806331,992.32516667)
-\curveto(-367.81138688,991.52733035)(-367.68635099,990.7023577)(-368.10151514,990.00966268)
-\curveto(-368.75405788,988.07768313)(-370.44970275,986.86187875)(-372.14779851,985.83523189)
-\curveto(-377.09909183,983.99065744)(-379.81142365,978.3134358)(-377.07075526,973.70328059)
-\lineto(-375.78945254,973.6380596)
-\curveto(-379.00622961,972.50171258)(-374.37728926,971.86001227)(-373.09193197,972.00741887)
-\curveto(-374.83047252,971.19786769)(-377.84091061,971.34083645)(-377.94746395,973.76853184)
-\curveto(-381.85074829,976.7910832)(-379.88440076,974.72472309)(-378.99273961,974.05551832)
-\lineto(-378.75671255,973.30541894)
-\curveto(-379.26841466,973.46769731)(-379.89033132,973.73514725)(-380.5865766,974.08488365)
-\curveto(-381.28279163,974.43462005)(-383.24157972,977.3525344)(-384.05050053,977.84397378)
-\curveto(-384.85944656,978.33541315)(-385.09533746,979.02980262)(-384.74023532,980.94777275)
-\curveto(-385.08510019,977.15423899)(-385.08510019,976.80937412)(-385.24258268,976.11963934)
-\curveto(-385.47358692,975.10792981)(-387.49916941,978.87857344)(-387.67601699,979.91317309)
-\curveto(-387.83804826,980.86105854)(-388.84944512,983.10603126)(-389.39063863,983.70670685)
-\curveto(-389.93185736,984.30738747)(-392.32730283,988.87971017)(-393.85801671,988.034147)
-\curveto(-393.85014965,987.15537573)(-393.8326303,985.29793661)(-393.8088526,985.67869244)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.10980392 0.10980392 0.10980392}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-361.9777559,1018.19375575)
-\lineto(-361.84288013,1018.32420681)
-\curveto(-361.58863929,1018.30596975)(-361.86172227,1018.57010705)(-361.84288013,1018.32420681)
-\lineto(-361.9777559,1018.19375575)
-\lineto(-364.37180093,1016.40005372)
-\lineto(-364.50667671,1016.59573031)
-\curveto(-363.07429596,1017.97851151)(-361.21570777,1019.72003311)(-359.4488351,1020.24835989)
-\lineto(-360.25808976,1019.13952591)
-\curveto(-358.37387517,1020.54839732)(-356.31971709,1021.76420117)(-354.25611772,1022.85738103)
-\curveto(-352.45282859,1022.85238867)(-351.09597828,1024.85458671)(-351.05281804,1026.54262338)
-\curveto(-351.49075968,1028.70680641)(-351.71708123,1030.90360221)(-352.70504629,1032.9021124)
-\curveto(-354.65804753,1035.11586683)(-357.32454163,1031.36278993)(-359.65114877,1032.96733792)
-\lineto(-361.67428541,1034.53275061)
-\curveto(-364.13576832,1040.19693549)(-367.29995403,1045.71110166)(-371.25046551,1050.57823058)
-\lineto(-372.36319067,1052.76328578)
-\curveto(-372.79492803,1056.24371998)(-372.12850682,1060.24074035)(-369.49708042,1062.90585544)
-\curveto(-368.82067841,1063.28155449)(-368.09167484,1063.68595276)(-367.27163012,1063.55811073)
-\lineto(-368.72154471,1062.80801715)
-\lineto(-367.87857111,1061.2099917)
-\lineto(-371.25046551,1056.05717496)
-\curveto(-370.1709198,1057.71259887)(-366.82384254,1058.94014332)(-365.51824503,1057.16600895)
-\curveto(-365.42124237,1056.9139775)(-365.44600556,1056.33203534)(-365.85543447,1056.44852813)
-\lineto(-366.19262391,1057.29646)
-\curveto(-368.99534254,1058.28893164)(-372.2471975,1055.32534454)(-371.65509284,1052.66544749)
-\curveto(-369.80864347,1053.14955136)(-367.29590776,1054.4447999)(-365.1136177,1053.51337936)
-\lineto(-364.03461149,1053.05680066)
-\curveto(-363.62796103,1053.43054294)(-363.3936818,1055.35926181)(-364.23692515,1054.7526644)
-\lineto(-364.37180093,1054.94834098)
-\curveto(-362.76947671,1056.51505817)(-362.74519907,1059.00406434)(-363.62998416,1060.94908959)
-\lineto(-368.68782577,1066.81938714)
-\lineto(-365.6531208,1064.60171918)
-\curveto(-364.4621677,1063.36373865)(-363.35483758,1062.05531455)(-362.75329162,1060.49251089)
-\curveto(-362.21972305,1058.90361702)(-362.11735233,1056.77074224)(-363.19163789,1055.37230692)
-\curveto(-363.07140962,1054.55503105)(-363.09922101,1053.67513867)(-363.46138944,1052.89373684)
-\curveto(-361.87120404,1053.0868044)(-360.99855777,1050.03164065)(-363.02304317,1050.18687741)
-\lineto(-363.22535683,1050.90435822)
-\lineto(-363.83229783,1051.36093692)
-\lineto(-364.50667671,1051.42616245)
-\curveto(-363.38963553,1049.37677635)(-365.72352596,1047.03909341)(-367.91229005,1047.93659668)
-\lineto(-368.04716583,1047.54524351)
-\curveto(-367.03883453,1046.36661822)(-364.12228074,1046.09854129)(-363.4276705,1048.03443498)
-\curveto(-362.65833907,1047.95705141)(-363.62661227,1047.10170992)(-363.83229783,1046.79514994)
-\lineto(-361.7417233,1048.29533709)
-\lineto(-361.87659907,1047.31695416)
-\curveto(-364.30840932,1046.15306984)(-361.89304043,1043.43342621)(-361.60684752,1041.70755872)
-\lineto(-361.57312858,1043.50126075)
-\curveto(-361.66319862,1043.89391844)(-361.53649631,1045.28974474)(-361.06734441,1044.51225644)
-\curveto(-358.6314879,1039.07636091)(-351.65841027,1036.57430964)(-346.09613326,1037.98970361)
-\lineto(-347.95067518,1036.97870792)
-\lineto(-348.18670779,1036.88086963)
-\curveto(-346.52099196,1036.11133884)(-344.55045687,1036.90660762)(-342.82539569,1036.97870792)
-\curveto(-341.77269026,1036.00554304)(-339.20667862,1036.62609871)(-338.27333825,1038.05492914)
-\lineto(-339.82440967,1038.44628231)
-\lineto(-340.7685401,1039.3594397)
-\lineto(-352.97479785,1060.94908959)
-\curveto(-355.08290623,1063.31286274)(-357.69814753,1065.02698962)(-360.52784131,1066.42803397)
-\lineto(-361.67428541,1066.36280845)
-\lineto(-362.92188634,1067.24335308)
-\lineto(-364.8101472,1066.85199991)
-\lineto(-365.21477453,1067.7651573)
-\curveto(-365.69385329,1067.30205605)(-366.04331642,1066.51961062)(-366.83328385,1066.46064674)
-\lineto(-366.32749968,1067.8629956)
-\lineto(-367.40650589,1067.08028926)
-\curveto(-367.67989909,1067.40798231)(-367.85388884,1067.73971935)(-367.67625745,1068.12389771)
-\curveto(-370.19438819,1068.83629093)(-373.43140681,1068.00341311)(-375.22930091,1065.84100422)
-\lineto(-375.97111768,1065.51487658)
-\curveto(-375.09429026,1064.39612831)(-374.37823476,1062.55233308)(-375.49905246,1061.27521723)
-\curveto(-376.21537771,1060.08485134)(-377.60716084,1059.7893797)(-378.9721037,1059.9380939)
-\curveto(-379.23929261,1060.08172052)(-380.10762286,1060.09593968)(-379.61276364,1060.55773642)
-\curveto(-379.25035242,1060.53125486)(-379.10657485,1060.67362914)(-378.93838475,1060.94908959)
-\curveto(-376.62391644,1061.22708079)(-377.70413653,1064.54171169)(-378.33144376,1065.90622975)
-\curveto(-380.65939966,1066.86647998)(-382.41278475,1069.2209911)(-382.47887388,1071.67868901)
-\lineto(-383.1869717,1072.82013575)
-\curveto(-383.23262715,1070.83075714)(-382.65947254,1068.49959675)(-381.29871084,1066.81938714)
-\curveto(-380.26057199,1065.87100796)(-378.09541115,1064.33559902)(-379.14069842,1062.71017886)
-\lineto(-380.08482885,1064.99307235)
-\curveto(-383.62801549,1065.23205869)(-386.16368008,1068.33001038)(-386.42399033,1071.64607624)
-\curveto(-387.01137434,1070.22024619)(-386.35358518,1068.28565702)(-385.41242201,1067.01506373)
-\curveto(-384.12300959,1065.25788799)(-380.9709627,1065.41442926)(-379.68020152,1063.4928852)
-\lineto(-380.05110991,1063.32982138)
-\curveto(-381.59813506,1064.51588238)(-383.44863071,1065.22657974)(-385.27754623,1065.84100422)
-\curveto(-386.38393223,1067.24465759)(-387.12264685,1068.83616048)(-387.23324499,1070.60246779)
-\curveto(-387.74752632,1070.26316459)(-388.34246337,1070.19637365)(-388.91919219,1070.34156568)
-\curveto(-389.40609374,1069.94903845)(-390.43114964,1069.33683164)(-390.80745306,1070.08066356)
-\lineto(-394.38166112,1068.05867218)
-\lineto(-395.73041888,1067.01506373)
-\lineto(-395.86529466,1067.8629956)
-\curveto(-396.62235239,1067.78699481)(-397.08753894,1068.3259664)(-397.48380397,1068.77615299)
-\lineto(-398.12446391,1067.50425519)
-\lineto(-399.37206484,1068.38479982)
-\curveto(-400.15043295,1068.05084512)(-400.43124431,1068.39384921)(-400.1813195,1069.16750616)
-\lineto(-401.8672667,1068.3195743)
-\curveto(-401.31292726,1069.42697332)(-401.75666856,1070.23459581)(-402.4067698,1071.12427202)
-\lineto(-402.81139713,1069.62408486)
-\curveto(-402.33096962,1069.65020116)(-401.80050319,1069.57718771)(-402.06958036,1068.97182958)
-\lineto(-402.47420769,1068.58047641)
-\curveto(-403.15667912,1068.82546349)(-403.76807101,1068.71718912)(-404.09271701,1067.92822113)
-\curveto(-405.16349579,1067.68036412)(-405.27517294,1068.04826219)(-405.0031285,1068.80876576)
-\curveto(-405.34800585,1068.58321588)(-405.78958915,1067.96526923)(-406.0821347,1068.54786365)
-\curveto(-406.52102048,1068.24469539)(-407.25258669,1068.05697632)(-407.66692507,1068.38479982)
-\lineto(-409.48774805,1066.75416162)
-\curveto(-415.33326419,1065.76064637)(-422.31443436,1063.97685862)(-426.21234429,1058.6661961)
-\lineto(-427.49366417,1057.55736212)
-\curveto(-428.72966578,1055.03052515)(-429.44666541,1052.2597447)(-431.2701859,1049.99120083)
-\lineto(-433.22588465,1041.1857545)
-\curveto(-434.11296263,1041.11902878)(-432.92214441,1042.97945653)(-434.00142037,1042.32720124)
-\curveto(-433.87730768,1040.00647695)(-433.43305385,1036.9265275)(-436.12571384,1035.77203564)
-\lineto(-436.9349685,1034.85887825)
-\lineto(-437.10356322,1033.58698044)
-\curveto(-436.18006878,1030.04914779)(-440.44308744,1028.65853952)(-442.06024799,1026.11865745)
-\curveto(-442.46986572,1025.41409129)(-442.32028849,1024.68630484)(-442.06024799,1023.96621501)
-\curveto(-441.64887687,1023.40344915)(-441.06810178,1023.72409785)(-440.47545762,1023.67270013)
-\curveto(-438.38623185,1024.09797058)(-437.3787098,1026.56871359)(-434.97926974,1026.31433403)
-\curveto(-434.21519847,1027.47456573)(-432.94534304,1028.32849835)(-431.47249956,1028.14064883)
-\curveto(-429.87017534,1030.22003867)(-426.99867007,1029.66170815)(-424.72871076,1029.83651256)
-\lineto(-422.84044989,1031.72805289)
-\lineto(-423.51482877,1029.96696362)
-\lineto(-421.32309741,1030.7170572)
-\curveto(-421.06885657,1030.69882014)(-421.34193955,1030.96295744)(-421.32309741,1030.7170572)
-\lineto(-421.42425424,1031.33669972)
-\lineto(-419.67086915,1032.77166134)
-\curveto(-418.92514098,1032.98507927)(-418.38995391,1033.77026418)(-417.91748406,1034.33707402)
-\curveto(-416.71762916,1035.24892691)(-415.74463531,1036.49342999)(-414.95021699,1037.72880149)
-\lineto(-414.71418438,1037.50051215)
-\curveto(-414.86848227,1037.06258795)(-415.86912565,1036.37198005)(-415.15253065,1036.22861434)
-\lineto(-415.75947164,1035.18500589)
-\lineto(-414.61302755,1035.70681012)
-\lineto(-412.32013935,1038.31583125)
-\lineto(-411.03881948,1041.25098003)
-\lineto(-410.70163004,1041.57710767)
-\lineto(-409.04940178,1046.50163506)
-\lineto(-408.64477445,1049.63246042)
-\curveto(-408.26806641,1050.30402246)(-408.24675604,1051.07524911)(-408.24014712,1051.85012838)
-\lineto(-407.56576824,1054.06779635)
-\lineto(-407.43089247,1056.67681748)
-\lineto(-406.58791886,1058.86187268)
-\lineto(-402.74395924,1062.18837463)
-\lineto(-402.74395924,1062.38405122)
-\lineto(-403.24974341,1062.54711504)
-\curveto(-405.05303253,1061.98030519)(-406.58791886,1060.49251089)(-407.32973563,1058.79664716)
-\lineto(-410.83650581,1054.7526644)
-\lineto(-412.52245302,1053.70905594)
-\lineto(-412.52245302,1053.90473253)
-\lineto(-410.09468904,1055.99194944)
-\lineto(-409.7574996,1056.31807708)
-\lineto(-408.914526,1057.85087699)
-\lineto(-408.77965023,1057.98132805)
-\curveto(-408.52540939,1057.96310404)(-408.79849237,1058.22722829)(-408.77965023,1057.98132805)
-\lineto(-408.914526,1057.85087699)
-\lineto(-409.31915333,1057.58997488)
-\lineto(-409.42031016,1057.62258764)
-\lineto(-408.47617973,1058.99232374)
-\lineto(-408.24014712,1059.28583862)
-\lineto(-408.10527135,1059.41628967)
-\lineto(-407.97039557,1059.54674073)
-\curveto(-407.71615473,1059.52851672)(-407.98923772,1059.79264097)(-407.97039557,1059.54674073)
-\lineto(-408.10527135,1059.41628967)
-\lineto(-408.24014712,1059.28583862)
-\lineto(-410.63419215,1057.36168553)
-\lineto(-405.50891266,1063.29720861)
-\curveto(-402.68596266,1063.4497059)(-400.10039403,1063.11692525)(-398.56281018,1065.64532763)
-\curveto(-398.053789,1065.1475264)(-398.86075077,1064.66603155)(-399.0348754,1064.21036601)
-\lineto(-398.39421546,1063.59072349)
-\curveto(-399.25337416,1060.90864976)(-401.63797788,1058.78229754)(-403.5532139,1056.57897919)
-\curveto(-403.81001738,1056.32525189)(-404.14680219,1055.56550493)(-404.56478222,1055.92672391)
-\curveto(-402.39867726,1057.45169676)(-403.98535589,1059.19974092)(-403.5532139,1060.81863853)
-\lineto(-406.18329154,1058.34006846)
-\curveto(-408.31567756,1049.0376036)(-408.89294588,1038.08101935)(-417.91748406,1031.988955)
-\curveto(-418.3276413,1031.08336376)(-418.64473425,1030.17046727)(-418.62558189,1029.15164452)
-\lineto(-417.27682412,1026.15127021)
-\curveto(-417.2885219,1023.35439955)(-417.61428332,1020.15704415)(-414.47815177,1019.07430038)
-\lineto(-414.0398055,1018.06330469)
-\curveto(-415.11962096,1013.57839736)(-407.54688563,1013.30575466)(-406.31816731,1009.61659877)
-\curveto(-405.8416512,1009.85493285)(-405.10752235,1009.70149632)(-404.86825272,1009.19263284)
-\curveto(-405.03199191,1007.24238954)(-408.45594836,1006.08398416)(-406.99254619,1003.74630122)
-\lineto(-405.77866421,1002.96359488)
-\curveto(-401.62718782,1002.59950598)(-398.92157975,997.78990597)(-403.21602446,995.46265912)
-\lineto(-403.78924651,994.32121237)
-\curveto(-403.80667246,993.63895334)(-403.87226255,992.90842743)(-403.35090024,992.39705928)
-\lineto(-401.79982881,992.00570611)
-\curveto(-401.79898854,993.93507724)(-400.34856546,995.19132092)(-398.96743751,996.44104204)
-\curveto(-398.50643211,997.62932072)(-397.9619386,997.12447513)(-398.76512385,996.24536546)
-\curveto(-399.99991158,995.09322172)(-401.38845769,993.93116371)(-401.49635832,992.23399546)
-\curveto(-400.70126561,990.53943624)(-399.20751639,988.84487701)(-397.07917665,989.00533181)
-\curveto(-397.98972301,990.27357698)(-400.09230149,991.58304469)(-399.23718906,993.31021668)
-\curveto(-399.01963444,994.29864434)(-397.99808531,994.78953166)(-398.79884279,993.53850603)
-\curveto(-399.14533866,993.03066007)(-399.34225729,992.44636978)(-399.0348754,991.87525506)
-\lineto(-395.15719684,986.75505108)
-\curveto(-394.77455426,984.5230335)(-396.90114062,983.08807188)(-398.63024807,982.15665133)
-\lineto(-399.57437851,980.85214076)
-\curveto(-399.84143254,980.05051902)(-399.40376065,979.42891974)(-398.76512385,978.96060044)
-\curveto(-398.66361634,981.8931402)(-393.99861392,982.66541045)(-393.80843907,985.71144263)
-\lineto(-393.90959591,988.02694888)
-\curveto(-393.39733771,987.21176023)(-393.44508373,985.79362679)(-393.6735633,984.79828523)
-\curveto(-394.05269911,983.19895527)(-395.79515926,982.58974884)(-396.87686298,981.50439605)
-\curveto(-398.35105522,980.51375072)(-398.61001671,978.75709679)(-397.21405242,977.78654093)
-\curveto(-398.72061484,978.25929556)(-400.80579434,979.70156244)(-399.57437851,981.50439605)
-\curveto(-398.22723925,983.23026353)(-395.08975895,983.94774434)(-395.42694839,986.62460002)
-\curveto(-396.379576,989.56366233)(-400.50637012,988.18740368)(-401.53007726,991.54912742)
-\curveto(-402.56282108,991.84133778)(-404.01179154,991.96304862)(-404.19387384,993.27760392)
-\curveto(-404.26765089,994.19180492)(-403.90604893,994.95911804)(-403.48577601,995.72356123)
-\curveto(-398.64913068,998.90656701)(-404.01934458,1002.32568921)(-407.26229775,1003.61585016)
-\curveto(-407.64305206,1004.04386008)(-407.57885119,1004.5960594)(-407.56576824,1005.14865008)
-\curveto(-408.00411451,1007.04410393)(-404.2909844,1007.82420125)(-405.57635054,1009.42092219)
-\curveto(-406.80749663,1008.1138026)(-410.11896668,1006.28357427)(-409.48774805,1004.07242886)
-\curveto(-407.40121979,1002.52658384)(-405.04224247,1000.95725763)(-403.28346235,999.18051423)
-\lineto(-409.69006172,1003.74630122)
-\curveto(-410.77473271,1005.30649586)(-409.16660883,1006.56795758)(-408.13899029,1007.59460739)
-\lineto(-410.49931637,1006.87712658)
-\curveto(-407.00603377,1008.38253177)(-409.80969653,1010.75282748)(-412.38757724,1010.92110934)
-\curveto(-412.80326438,1011.27515351)(-412.67486264,1011.83700621)(-412.69104774,1012.3234582)
-\curveto(-409.99353221,1015.02509958)(-415.61110829,1012.66289185)(-416.43385052,1014.9650921)
-\curveto(-417.4718545,1016.48484691)(-415.71280462,1017.59368089)(-415.25368748,1018.84601103)
-\curveto(-417.95524928,1019.9647593)(-420.69997132,1022.63039619)(-417.68145145,1025.23811281)
-\curveto(-418.15567468,1027.41012291)(-420.21306977,1029.44124586)(-418.52442505,1031.72805289)
-\curveto(-421.0614384,1029.02902052)(-425.19942722,1029.52473454)(-427.8982915,1027.1622659)
-\lineto(-428.60638932,1026.02081915)
-\curveto(-430.35842565,1015.92390736)(-427.86969783,1005.39650709)(-421.99747629,997.06068456)
-\curveto(-420.19823344,993.41588204)(-414.14635736,991.76045813)(-414.61302755,987.43991913)
-\curveto(-414.92701835,987.091093)(-415.26542167,986.74383229)(-415.79319059,986.88550214)
-\lineto(-414.81534121,987.76604677)
-\curveto(-414.61707382,988.17148865)(-414.65268102,988.77430299)(-414.95021699,989.13578287)
-\lineto(-415.79319059,990.40768067)
-\lineto(-416.5687263,990.96209766)
-\curveto(-418.00380456,992.24195298)(-414.66293158,988.1026105)(-416.8721968,988.45091482)
-\lineto(-416.46756947,989.1031701)
-\lineto(-416.73732102,990.14677856)
-\lineto(-417.91748406,991.744804)
-\curveto(-427.39925112,1000.52937816)(-431.11912503,1013.55622068)(-429.31448715,1025.98820639)
-\curveto(-430.26617062,1025.82044633)(-430.67268621,1026.70255638)(-431.2701859,1027.1622659)
-\curveto(-433.23937223,1025.56684948)(-435.53360918,1022.56647517)(-438.28372626,1024.03144054)
-\curveto(-439.63922781,1023.21638234)(-442.18568246,1022.49994513)(-442.90322159,1024.45540647)
-\curveto(-443.13669156,1028.75768232)(-436.2228244,1029.84042609)(-437.64306632,1034.36968678)
-\lineto(-437.20472005,1035.51113353)
-\curveto(-434.73919086,1036.89391473)(-433.95016757,1039.44292838)(-434.43976664,1042.03368637)
-\curveto(-445.86374488,1042.66859166)(-455.0083225,1052.22452292)(-458.69043119,1062.16228442)
-\curveto(-462.89720665,1077.79032101)(-454.49039952,1096.87531061)(-437.64981011,1101.29760144)
-\curveto(-434.47483434,1102.29463886)(-431.11103248,1103.32872439)(-427.66900268,1102.99346517)
-\curveto(-423.73602504,1102.84735999)(-419.63715021,1103.2186237)(-416.03596698,1101.98246948)
-\lineto(-407.87598253,1097.8732612)
-\curveto(-405.93377135,1096.67115471)(-403.38057291,1097.36932876)(-401.40194527,1097.8732612)
-\lineto(-401.36822633,1097.25361868)
-\curveto(-402.69661785,1094.07713545)(-406.36807135,1093.04918112)(-409.4607729,1092.42692958)
-\lineto(-415.39530705,1092.55738063)
-\curveto(-417.50071791,1093.11714612)(-419.64659151,1092.97821574)(-421.8693443,1092.94873381)
-\curveto(-423.641612,1092.98683856)(-425.35588312,1092.83389774)(-426.9946238,1092.42692958)
-\curveto(-440.7924157,1091.52916541)(-449.54585357,1070.1589342)(-436.84055545,1062.42318653)
-\curveto(-434.4761831,1062.13162842)(-432.65266261,1063.59241935)(-430.73742658,1064.60824173)
-\curveto(-428.61583063,1065.97928234)(-426.68036324,1067.6412288)(-424.87033032,1069.50015636)
-\lineto(-420.82405704,1074.06594334)
-\curveto(-419.8699458,1075.41219825)(-418.90342598,1076.78976141)(-417.58703841,1077.84902399)
-\curveto(-410.65577227,1087.78548098)(-394.60420615,1089.66136718)(-386.63304778,1080.32759407)
-\lineto(-383.59834282,1082.0234578)
-\curveto(-372.52773911,1090.49494943)(-359.19931492,1078.89393695)(-353.1838553,1069.63060742)
-\lineto(-349.94683667,1066.10842888)
-\curveto(-348.69923574,1065.28736993)(-347.29922519,1064.63954999)(-345.79940655,1064.51040344)
-\curveto(-344.71824233,1064.21662766)(-343.50921588,1064.41355658)(-342.4612311,1064.67346726)
-\curveto(-334.57369571,1069.1714197)(-335.48545595,1080.26236854)(-339.35908824,1087.04582349)
-\curveto(-342.82674445,1091.2072122)(-348.54143108,1092.7504482)(-353.76382114,1092.16602746)
-\lineto(-359.83323106,1092.55738063)
-\curveto(-361.76734969,1093.0710969)(-363.67179565,1094.13583842)(-364.78991584,1095.85126982)
-\curveto(-364.92883789,1096.68106899)(-365.47562428,1097.56017866)(-365.05966739,1098.39506542)
-\curveto(-361.78218603,1096.77877683)(-357.75479535,1096.55570552)(-354.47191896,1098.46029095)
-\curveto(-344.68263513,1105.33897517)(-328.58925752,1104.14012996)(-323.31561467,1092.39431681)
-\curveto(-320.72734853,1086.59185381)(-319.80749573,1079.99755289)(-320.5843802,1073.5050038)
-\curveto(-319.76163797,1060.61774391)(-330.83224168,1047.54524351)(-344.70016898,1048.28881454)
-\lineto(-341.46315035,1042.2228404)
-\curveto(-340.79403163,1040.9887734)(-338.70494073,1037.51094823)(-337.8215044,1040.33130008)
-\curveto(-337.68460548,1040.45884207)(-337.50090468,1040.74574308)(-337.34943918,1040.46175113)
-\curveto(-336.79725775,1039.06201129)(-337.72169632,1037.62183163)(-338.69819694,1036.61344496)
-\curveto(-346.41444009,1034.9762842)(-356.42087393,1036.43081348)(-361.02013789,1043.20122332)
-\lineto(-360.88526212,1034.52622805)
-\curveto(-358.52763355,1030.86968493)(-354.69446399,1036.01728363)(-352.32065033,1033.41739407)
-\curveto(-350.97189257,1030.62182792)(-349.90232767,1027.62667166)(-350.97189257,1024.48149668)
-\lineto(-357.37849194,1017.63281621)
-\curveto(-357.86606787,1015.46732867)(-353.69908076,1014.97161465)(-353.77056493,1012.70828882)
-\curveto(-355.36749411,1010.70456058)(-357.71298386,1009.22785462)(-359.94113168,1008.10988907)
-\curveto(-357.89911243,1006.09833377)(-358.11491367,1002.39352376)(-360.27832112,1000.47850225)
-\lineto(-361.59335994,1000.05453631)
-\curveto(-365.22556459,1001.41253181)(-371.67397545,997.51204522)(-368.23599192,993.62982177)
-\lineto(-367.79764564,992.35792397)
-\curveto(-367.81098216,991.5600853)(-367.68595501,990.73511282)(-368.10111614,990.04241771)
-\curveto(-368.75364515,988.11043756)(-370.4493034,986.89463371)(-372.14738943,985.86798389)
-\curveto(-377.09867917,984.02340595)(-379.81103103,978.34617596)(-377.07035525,973.73603562)
-\lineto(-375.78903538,973.67081009)
-\curveto(-379.00582264,972.53445094)(-374.37688601,971.89276219)(-373.09151986,972.04017188)
-\curveto(-374.83006861,971.23059262)(-377.84049594,971.37356698)(-377.9470478,973.80126115)
-\curveto(-381.85035276,976.82381213)(-379.67210898,983.08024481)(-375.51928383,984.9548265)
-\lineto(-372.68689253,987.56384763)
-\curveto(-371.81505551,988.62454517)(-371.3340885,989.86500427)(-371.16954005,991.18386446)
-\lineto(-371.03466427,993.14063031)
-\curveto(-369.01422515,986.45631816)(-378.93973351,984.9300408)(-379.36324345,979.20845745)
-\lineto(-375.99134905,983.83946996)
-\curveto(-371.74411085,986.25151)(-364.99897329,990.87078192)(-370.596318,995.6452906)
-\lineto(-371.06838322,997.14547775)
-\lineto(-371.4392916,997.96079685)
-\curveto(-374.35260837,997.25570889)(-375.81735929,993.31413021)(-373.46242824,991.30779296)
-\lineto(-373.32755247,989.22057605)
-\curveto(-374.16337765,987.29772748)(-376.04799687,985.7818862)(-377.81217202,984.55695077)
-\curveto(-380.47461984,982.74368109)(-381.42819158,979.5724159)(-380.88059593,976.56682355)
-\curveto(-380.65993916,975.48968918)(-379.88399882,974.75746739)(-378.99233506,974.08825347)
-\lineto(-378.75630246,973.3381599)
-\curveto(-382.84978226,974.63640881)(-386.01261921,979.13149133)(-382.60026208,982.79586151)
-\curveto(-381.1274186,984.35214262)(-379.31603693,985.3748789)(-377.27266892,985.86146134)
-\curveto(-375.05531116,988.0778248)(-372.55201675,991.27387569)(-376.12622482,993.55807369)
-\lineto(-376.29481954,994.96042255)
-\lineto(-375.78903538,997.14547775)
-\curveto(-377.40349842,997.62605944)(-377.60716084,995.15870815)(-377.47498258,993.68852475)
-\lineto(-376.73316581,992.90581841)
-\curveto(-378.82643786,993.58703382)(-377.68889556,997.76512027)(-375.78903538,998.58043937)
-\lineto(-376.39597637,998.31953726)
-\lineto(-376.93547948,998.05863515)
-\lineto(-378.62142668,996.94980116)
-\curveto(-378.75016561,996.77069186)(-379.13449413,996.46374053)(-379.26208662,996.78673734)
-\lineto(-378.01448569,997.79773303)
-\lineto(-376.93547948,998.44998832)
-\lineto(-376.59829004,998.71089043)
-\lineto(-380.57712543,996.55844799)
-\lineto(-379.9364655,997.30854157)
-\lineto(-378.89117823,998.12386067)
-\curveto(-377.3212242,999.27026456)(-379.47330208,998.36506468)(-380.17249811,998.05863515)
-\lineto(-381.65613164,997.21070328)
-\lineto(-380.61084438,998.74350319)
-\curveto(-381.57722931,997.96379723)(-384.06501301,997.26418821)(-381.85844531,998.51521384)
-\curveto(-380.03627357,999.40606411)(-377.895795,1000.65200215)(-375.89019221,1000.04801376)
-\curveto(-371.15470371,1002.82531676)(-365.55196397,1000.85028776)(-360.27157734,1001.38513709)
-\curveto(-357.26924256,1004.94384192)(-360.50814945,1009.41439963)(-364.85735372,1009.01652391)
-\lineto(-369.8140385,1008.91868562)
-\lineto(-372.91618135,1008.00552822)
-\curveto(-382.58003071,1003.78021849)(-389.06081175,1015.41253922)(-392.91825895,1022.32905425)
-\curveto(-393.6089578,1023.22942744)(-394.6379251,1023.77575647)(-395.68321236,1023.76401587)
-\curveto(-393.41729932,1024.52350192)(-392.01459125,1021.57374263)(-391.02999809,1019.98093523)
-\lineto(-389.276613,1017.30668856)
-\curveto(-388.81398908,1019.64698052)(-388.08053461,1022.41645646)(-386.03959437,1023.89446693)
-\lineto(-386.27562698,1023.40527547)
-\curveto(-387.69317138,1021.55939301)(-388.61437294,1019.36911977)(-388.56851517,1017.01317369)
-\curveto(-386.81917635,1011.77686827)(-380.284445,1006.5340403)(-374.67631023,1009.83836557)
-\curveto(-374.15703849,1009.7791147)(-372.79883942,1010.21028153)(-373.05780091,1009.4470124)
-\curveto(-375.3925006,1008.92625178)(-377.75282668,1008.09684396)(-380.17249811,1008.04466354)
-\curveto(-379.0545128,1007.65422352)(-377.94030401,1007.31361582)(-376.69944687,1007.35979549)
-\curveto(-370.40074812,1009.74835434)(-363.87006304,1011.79513142)(-356.87270778,1010.62107191)
-\lineto(-354.47866275,1012.61045052)
-\curveto(-354.34866948,1014.77072002)(-358.25653324,1015.12815592)(-357.85055715,1017.37191409)
-\curveto(-358.96314743,1016.51993824)(-358.63607367,1017.76378907)(-358.12030871,1018.41552255)
-\lineto(-360.48063479,1016.39353117)
-\lineto(-359.60394224,1017.56759068)
-\curveto(-357.53899411,1020.11138628)(-361.98045342,1015.60169325)(-361.559641,1016.85010987)
-\lineto(-360.88526212,1017.63281621)
-\curveto(-360.70506808,1017.83358038)(-359.89163227,1018.42687179)(-360.61551056,1018.28507149)
-\lineto(-363.04327454,1016.13262905)
-\lineto(-361.99798727,1018.1872332)
-\lineto(-361.9777559,1018.19375575)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.10980392 0.10980392 0.10980392}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-361.9777559,1018.19375575)
-\lineto(-361.84288013,1018.32420681)
-\curveto(-361.58863929,1018.30596975)(-361.86172227,1018.57010705)(-361.84288013,1018.32420681)
-\lineto(-361.9777559,1018.19375575)
-\lineto(-364.37180093,1016.40005372)
-\lineto(-364.50667671,1016.59573031)
-\curveto(-363.07429596,1017.97851151)(-361.21570777,1019.72003311)(-359.4488351,1020.24835989)
-\lineto(-360.25808976,1019.13952591)
-\curveto(-358.37387517,1020.54839732)(-356.31971709,1021.76420117)(-354.25611772,1022.85738103)
-\curveto(-352.45282859,1022.85238867)(-351.09597828,1024.85458671)(-351.05281804,1026.54262338)
-\curveto(-351.49075968,1028.70680641)(-351.71708123,1030.90360221)(-352.70504629,1032.9021124)
-\curveto(-354.65804753,1035.11586683)(-357.32454163,1031.36278993)(-359.65114877,1032.96733792)
-\lineto(-361.67428541,1034.53275061)
-\curveto(-364.13576832,1040.19693549)(-367.29995403,1045.71110166)(-371.25046551,1050.57823058)
-\lineto(-372.36319067,1052.76328578)
-\curveto(-372.79492803,1056.24371998)(-372.12850682,1060.24074035)(-369.49708042,1062.90585544)
-\curveto(-368.82067841,1063.28155449)(-368.09167484,1063.68595276)(-367.27163012,1063.55811073)
-\lineto(-368.72154471,1062.80801715)
-\lineto(-367.87857111,1061.2099917)
-\lineto(-371.25046551,1056.05717496)
-\curveto(-370.1709198,1057.71259887)(-366.82384254,1058.94014332)(-365.51824503,1057.16600895)
-\curveto(-365.42124237,1056.9139775)(-365.44600556,1056.33203534)(-365.85543447,1056.44852813)
-\lineto(-366.19262391,1057.29646)
-\curveto(-368.99534254,1058.28893164)(-372.2471975,1055.32534454)(-371.65509284,1052.66544749)
-\curveto(-369.80864347,1053.14955136)(-367.29590776,1054.4447999)(-365.1136177,1053.51337936)
-\lineto(-364.03461149,1053.05680066)
-\curveto(-363.62796103,1053.43054294)(-363.3936818,1055.35926181)(-364.23692515,1054.7526644)
-\lineto(-364.37180093,1054.94834098)
-\curveto(-362.76947671,1056.51505817)(-362.74519907,1059.00406434)(-363.62998416,1060.94908959)
-\lineto(-368.68782577,1066.81938714)
-\lineto(-365.6531208,1064.60171918)
-\curveto(-364.4621677,1063.36373865)(-363.35483758,1062.05531455)(-362.75329162,1060.49251089)
-\curveto(-362.21972305,1058.90361702)(-362.11735233,1056.77074224)(-363.19163789,1055.37230692)
-\curveto(-363.07140962,1054.55503105)(-363.09922101,1053.67513867)(-363.46138944,1052.89373684)
-\curveto(-361.87120404,1053.0868044)(-360.99855777,1050.03164065)(-363.02304317,1050.18687741)
-\lineto(-363.22535683,1050.90435822)
-\lineto(-363.83229783,1051.36093692)
-\lineto(-364.50667671,1051.42616245)
-\curveto(-363.38963553,1049.37677635)(-365.72352596,1047.03909341)(-367.91229005,1047.93659668)
-\lineto(-368.04716583,1047.54524351)
-\curveto(-367.03883453,1046.36661822)(-364.12228074,1046.09854129)(-363.4276705,1048.03443498)
-\curveto(-362.65833907,1047.95705141)(-363.62661227,1047.10170992)(-363.83229783,1046.79514994)
-\lineto(-361.7417233,1048.29533709)
-\lineto(-361.87659907,1047.31695416)
-\curveto(-364.30840932,1046.15306984)(-361.89304043,1043.43342621)(-361.60684752,1041.70755872)
-\lineto(-361.57312858,1043.50126075)
-\curveto(-361.66319862,1043.89391844)(-361.53649631,1045.28974474)(-361.06734441,1044.51225644)
-\curveto(-358.6314879,1039.07636091)(-351.65841027,1036.57430964)(-346.09613326,1037.98970361)
-\lineto(-347.95067518,1036.97870792)
-\lineto(-348.18670779,1036.88086963)
-\curveto(-346.52099196,1036.11133884)(-344.55045687,1036.90660762)(-342.82539569,1036.97870792)
-\curveto(-341.77269026,1036.00554304)(-339.20667862,1036.62609871)(-338.27333825,1038.05492914)
-\lineto(-339.82440967,1038.44628231)
-\lineto(-340.7685401,1039.3594397)
-\lineto(-352.97479785,1060.94908959)
-\curveto(-355.08290623,1063.31286274)(-357.69814753,1065.02698962)(-360.52784131,1066.42803397)
-\lineto(-361.67428541,1066.36280845)
-\lineto(-362.92188634,1067.24335308)
-\lineto(-364.8101472,1066.85199991)
-\lineto(-365.21477453,1067.7651573)
-\curveto(-365.69385329,1067.30205605)(-366.04331642,1066.51961062)(-366.83328385,1066.46064674)
-\lineto(-366.32749968,1067.8629956)
-\lineto(-367.40650589,1067.08028926)
-\curveto(-367.67989909,1067.40798231)(-367.85388884,1067.73971935)(-367.67625745,1068.12389771)
-\curveto(-370.19438819,1068.83629093)(-373.43140681,1068.00341311)(-375.22930091,1065.84100422)
-\lineto(-375.97111768,1065.51487658)
-\curveto(-375.09429026,1064.39612831)(-374.37823476,1062.55233308)(-375.49905246,1061.27521723)
-\curveto(-376.21537771,1060.08485134)(-377.60716084,1059.7893797)(-378.9721037,1059.9380939)
-\curveto(-379.23929261,1060.08172052)(-380.10762286,1060.09593968)(-379.61276364,1060.55773642)
-\curveto(-379.25035242,1060.53125486)(-379.10657485,1060.67362914)(-378.93838475,1060.94908959)
-\curveto(-376.62391644,1061.22708079)(-377.70413653,1064.54171169)(-378.33144376,1065.90622975)
-\curveto(-380.65939966,1066.86647998)(-382.41278475,1069.2209911)(-382.47887388,1071.67868901)
-\lineto(-383.1869717,1072.82013575)
-\curveto(-383.23262715,1070.83075714)(-382.65947254,1068.49959675)(-381.29871084,1066.81938714)
-\curveto(-380.26057199,1065.87100796)(-378.09541115,1064.33559902)(-379.14069842,1062.71017886)
-\lineto(-380.08482885,1064.99307235)
-\curveto(-383.62801549,1065.23205869)(-386.16368008,1068.33001038)(-386.42399033,1071.64607624)
-\curveto(-387.01137434,1070.22024619)(-386.35358518,1068.28565702)(-385.41242201,1067.01506373)
-\curveto(-384.12300959,1065.25788799)(-380.9709627,1065.41442926)(-379.68020152,1063.4928852)
-\lineto(-380.05110991,1063.32982138)
-\curveto(-381.59813506,1064.51588238)(-383.44863071,1065.22657974)(-385.27754623,1065.84100422)
-\curveto(-386.38393223,1067.24465759)(-387.12264685,1068.83616048)(-387.23324499,1070.60246779)
-\curveto(-387.74752632,1070.26316459)(-388.34246337,1070.19637365)(-388.91919219,1070.34156568)
-\curveto(-389.40609374,1069.94903845)(-390.43114964,1069.33683164)(-390.80745306,1070.08066356)
-\lineto(-394.38166112,1068.05867218)
-\lineto(-395.73041888,1067.01506373)
-\lineto(-395.86529466,1067.8629956)
-\curveto(-396.62235239,1067.78699481)(-397.08753894,1068.3259664)(-397.48380397,1068.77615299)
-\lineto(-398.12446391,1067.50425519)
-\lineto(-399.37206484,1068.38479982)
-\curveto(-400.15043295,1068.05084512)(-400.43124431,1068.39384921)(-400.1813195,1069.16750616)
-\lineto(-401.8672667,1068.3195743)
-\curveto(-401.31292726,1069.42697332)(-401.75666856,1070.23459581)(-402.4067698,1071.12427202)
-\lineto(-402.81139713,1069.62408486)
-\curveto(-402.33096962,1069.65020116)(-401.80050319,1069.57718771)(-402.06958036,1068.97182958)
-\lineto(-402.47420769,1068.58047641)
-\curveto(-403.15667912,1068.82546349)(-403.76807101,1068.71718912)(-404.09271701,1067.92822113)
-\curveto(-405.16349579,1067.68036412)(-405.27517294,1068.04826219)(-405.0031285,1068.80876576)
-\curveto(-405.34800585,1068.58321588)(-405.78958915,1067.96526923)(-406.0821347,1068.54786365)
-\curveto(-406.52102048,1068.24469539)(-407.25258669,1068.05697632)(-407.66692507,1068.38479982)
-\lineto(-409.48774805,1066.75416162)
-\curveto(-415.33326419,1065.76064637)(-422.31443436,1063.97685862)(-426.21234429,1058.6661961)
-\lineto(-427.49366417,1057.55736212)
-\curveto(-428.72966578,1055.03052515)(-429.44666541,1052.2597447)(-431.2701859,1049.99120083)
-\lineto(-433.22588465,1041.1857545)
-\curveto(-434.11296263,1041.11902878)(-432.92214441,1042.97945653)(-434.00142037,1042.32720124)
-\curveto(-433.87730768,1040.00647695)(-433.43305385,1036.9265275)(-436.12571384,1035.77203564)
-\lineto(-436.9349685,1034.85887825)
-\lineto(-437.10356322,1033.58698044)
-\curveto(-436.18006878,1030.04914779)(-440.44308744,1028.65853952)(-442.06024799,1026.11865745)
-\curveto(-442.46986572,1025.41409129)(-442.32028849,1024.68630484)(-442.06024799,1023.96621501)
-\curveto(-441.64887687,1023.40344915)(-441.06810178,1023.72409785)(-440.47545762,1023.67270013)
-\curveto(-438.38623185,1024.09797058)(-437.3787098,1026.56871359)(-434.97926974,1026.31433403)
-\curveto(-434.21519847,1027.47456573)(-432.94534304,1028.32849835)(-431.47249956,1028.14064883)
-\curveto(-429.87017534,1030.22003867)(-426.99867007,1029.66170815)(-424.72871076,1029.83651256)
-\lineto(-422.84044989,1031.72805289)
-\lineto(-423.51482877,1029.96696362)
-\lineto(-421.32309741,1030.7170572)
-\curveto(-421.06885657,1030.69882014)(-421.34193955,1030.96295744)(-421.32309741,1030.7170572)
-\lineto(-421.42425424,1031.33669972)
-\lineto(-419.67086915,1032.77166134)
-\curveto(-418.92514098,1032.98507927)(-418.38995391,1033.77026418)(-417.91748406,1034.33707402)
-\curveto(-416.71762916,1035.24892691)(-415.74463531,1036.49342999)(-414.95021699,1037.72880149)
-\lineto(-414.71418438,1037.50051215)
-\curveto(-414.86848227,1037.06258795)(-415.86912565,1036.37198005)(-415.15253065,1036.22861434)
-\lineto(-415.75947164,1035.18500589)
-\lineto(-414.61302755,1035.70681012)
-\lineto(-412.32013935,1038.31583125)
-\lineto(-411.03881948,1041.25098003)
-\lineto(-410.70163004,1041.57710767)
-\lineto(-409.04940178,1046.50163506)
-\lineto(-408.64477445,1049.63246042)
-\curveto(-408.26806641,1050.30402246)(-408.24675604,1051.07524911)(-408.24014712,1051.85012838)
-\lineto(-407.56576824,1054.06779635)
-\lineto(-407.43089247,1056.67681748)
-\lineto(-406.58791886,1058.86187268)
-\lineto(-402.74395924,1062.18837463)
-\lineto(-402.74395924,1062.38405122)
-\lineto(-403.24974341,1062.54711504)
-\curveto(-405.05303253,1061.98030519)(-406.58791886,1060.49251089)(-407.32973563,1058.79664716)
-\lineto(-410.83650581,1054.7526644)
-\lineto(-412.52245302,1053.70905594)
-\lineto(-412.52245302,1053.90473253)
-\lineto(-410.09468904,1055.99194944)
-\lineto(-409.7574996,1056.31807708)
-\lineto(-408.914526,1057.85087699)
-\lineto(-408.77965023,1057.98132805)
-\curveto(-408.52540939,1057.96310404)(-408.79849237,1058.22722829)(-408.77965023,1057.98132805)
-\lineto(-408.914526,1057.85087699)
-\lineto(-409.31915333,1057.58997488)
-\lineto(-409.42031016,1057.62258764)
-\lineto(-408.47617973,1058.99232374)
-\lineto(-408.24014712,1059.28583862)
-\lineto(-408.10527135,1059.41628967)
-\lineto(-407.97039557,1059.54674073)
-\curveto(-407.71615473,1059.52851672)(-407.98923772,1059.79264097)(-407.97039557,1059.54674073)
-\lineto(-408.10527135,1059.41628967)
-\lineto(-408.24014712,1059.28583862)
-\lineto(-410.63419215,1057.36168553)
-\lineto(-405.50891266,1063.29720861)
-\curveto(-402.68596266,1063.4497059)(-400.10039403,1063.11692525)(-398.56281018,1065.64532763)
-\curveto(-398.053789,1065.1475264)(-398.86075077,1064.66603155)(-399.0348754,1064.21036601)
-\lineto(-398.39421546,1063.59072349)
-\curveto(-399.25337416,1060.90864976)(-401.63797788,1058.78229754)(-403.5532139,1056.57897919)
-\curveto(-403.81001738,1056.32525189)(-404.14680219,1055.56550493)(-404.56478222,1055.92672391)
-\curveto(-402.39867726,1057.45169676)(-403.98535589,1059.19974092)(-403.5532139,1060.81863853)
-\lineto(-406.18329154,1058.34006846)
-\curveto(-408.31567756,1049.0376036)(-408.89294588,1038.08101935)(-417.91748406,1031.988955)
-\curveto(-418.3276413,1031.08336376)(-418.64473425,1030.17046727)(-418.62558189,1029.15164452)
-\lineto(-417.27682412,1026.15127021)
-\curveto(-417.2885219,1023.35439955)(-417.61428332,1020.15704415)(-414.47815177,1019.07430038)
-\lineto(-414.0398055,1018.06330469)
-\curveto(-415.11962096,1013.57839736)(-407.54688563,1013.30575466)(-406.31816731,1009.61659877)
-\curveto(-405.8416512,1009.85493285)(-405.10752235,1009.70149632)(-404.86825272,1009.19263284)
-\curveto(-405.03199191,1007.24238954)(-408.45594836,1006.08398416)(-406.99254619,1003.74630122)
-\lineto(-405.77866421,1002.96359488)
-\curveto(-401.62718782,1002.59950598)(-398.92157975,997.78990597)(-403.21602446,995.46265912)
-\lineto(-403.78924651,994.32121237)
-\curveto(-403.80667246,993.63895334)(-403.87226255,992.90842743)(-403.35090024,992.39705928)
-\lineto(-401.79982881,992.00570611)
-\curveto(-401.79898854,993.93507724)(-400.34856546,995.19132092)(-398.96743751,996.44104204)
-\curveto(-398.50643211,997.62932072)(-397.9619386,997.12447513)(-398.76512385,996.24536546)
-\curveto(-399.99991158,995.09322172)(-401.38845769,993.93116371)(-401.49635832,992.23399546)
-\curveto(-400.70126561,990.53943624)(-399.20751639,988.84487701)(-397.07917665,989.00533181)
-\curveto(-397.98972301,990.27357698)(-400.09230149,991.58304469)(-399.23718906,993.31021668)
-\curveto(-399.01963444,994.29864434)(-397.99808531,994.78953166)(-398.79884279,993.53850603)
-\curveto(-399.14533866,993.03066007)(-399.34225729,992.44636978)(-399.0348754,991.87525506)
-\lineto(-395.15719684,986.75505108)
-\curveto(-394.77455426,984.5230335)(-396.90114062,983.08807188)(-398.63024807,982.15665133)
-\lineto(-399.57437851,980.85214076)
-\curveto(-399.84143254,980.05051902)(-399.40376065,979.42891974)(-398.76512385,978.96060044)
-\curveto(-398.66361634,981.8931402)(-393.99861392,982.66541045)(-393.80843907,985.71144263)
-\lineto(-393.90959591,988.02694888)
-\curveto(-393.39733771,987.21176023)(-393.44508373,985.79362679)(-393.6735633,984.79828523)
-\curveto(-394.05269911,983.19895527)(-395.79515926,982.58974884)(-396.87686298,981.50439605)
-\curveto(-398.35105522,980.51375072)(-398.61001671,978.75709679)(-397.21405242,977.78654093)
-\curveto(-398.72061484,978.25929556)(-400.80579434,979.70156244)(-399.57437851,981.50439605)
-\curveto(-398.22723925,983.23026353)(-395.08975895,983.94774434)(-395.42694839,986.62460002)
-\curveto(-396.379576,989.56366233)(-400.50637012,988.18740368)(-401.53007726,991.54912742)
-\curveto(-402.56282108,991.84133778)(-404.01179154,991.96304862)(-404.19387384,993.27760392)
-\curveto(-404.26765089,994.19180492)(-403.90604893,994.95911804)(-403.48577601,995.72356123)
-\curveto(-398.64913068,998.90656701)(-404.01934458,1002.32568921)(-407.26229775,1003.61585016)
-\curveto(-407.64305206,1004.04386008)(-407.57885119,1004.5960594)(-407.56576824,1005.14865008)
-\curveto(-408.00411451,1007.04410393)(-404.2909844,1007.82420125)(-405.57635054,1009.42092219)
-\curveto(-406.80749663,1008.1138026)(-410.11896668,1006.28357427)(-409.48774805,1004.07242886)
-\curveto(-407.40121979,1002.52658384)(-405.04224247,1000.95725763)(-403.28346235,999.18051423)
-\lineto(-409.69006172,1003.74630122)
-\curveto(-410.77473271,1005.30649586)(-409.16660883,1006.56795758)(-408.13899029,1007.59460739)
-\lineto(-410.49931637,1006.87712658)
-\curveto(-407.00603377,1008.38253177)(-409.80969653,1010.75282748)(-412.38757724,1010.92110934)
-\curveto(-412.80326438,1011.27515351)(-412.67486264,1011.83700621)(-412.69104774,1012.3234582)
-\curveto(-409.99353221,1015.02509958)(-415.61110829,1012.66289185)(-416.43385052,1014.9650921)
-\curveto(-417.4718545,1016.48484691)(-415.71280462,1017.59368089)(-415.25368748,1018.84601103)
-\curveto(-417.95524928,1019.9647593)(-420.69997132,1022.63039619)(-417.68145145,1025.23811281)
-\curveto(-418.15567468,1027.41012291)(-420.21306977,1029.44124586)(-418.52442505,1031.72805289)
-\curveto(-421.0614384,1029.02902052)(-425.19942722,1029.52473454)(-427.8982915,1027.1622659)
-\lineto(-428.60638932,1026.02081915)
-\curveto(-430.35842565,1015.92390736)(-427.86969783,1005.39650709)(-421.99747629,997.06068456)
-\curveto(-420.19823344,993.41588204)(-414.14635736,991.76045813)(-414.61302755,987.43991913)
-\curveto(-414.92701835,987.091093)(-415.26542167,986.74383229)(-415.79319059,986.88550214)
-\lineto(-414.81534121,987.76604677)
-\curveto(-414.61707382,988.17148865)(-414.65268102,988.77430299)(-414.95021699,989.13578287)
-\lineto(-415.79319059,990.40768067)
-\lineto(-416.5687263,990.96209766)
-\curveto(-418.00380456,992.24195298)(-414.66293158,988.1026105)(-416.8721968,988.45091482)
-\lineto(-416.46756947,989.1031701)
-\lineto(-416.73732102,990.14677856)
-\lineto(-417.91748406,991.744804)
-\curveto(-427.39925112,1000.52937816)(-431.11912503,1013.55622068)(-429.31448715,1025.98820639)
-\curveto(-430.26617062,1025.82044633)(-430.67268621,1026.70255638)(-431.2701859,1027.1622659)
-\curveto(-433.23937223,1025.56684948)(-435.53360918,1022.56647517)(-438.28372626,1024.03144054)
-\curveto(-439.63922781,1023.21638234)(-442.18568246,1022.49994513)(-442.90322159,1024.45540647)
-\curveto(-443.13669156,1028.75768232)(-436.2228244,1029.84042609)(-437.64306632,1034.36968678)
-\lineto(-437.20472005,1035.51113353)
-\curveto(-434.73919086,1036.89391473)(-433.95016757,1039.44292838)(-434.43976664,1042.03368637)
-\curveto(-445.86374488,1042.66859166)(-455.0083225,1052.22452292)(-458.69043119,1062.16228442)
-\curveto(-462.89720665,1077.79032101)(-454.49039952,1096.87531061)(-437.64981011,1101.29760144)
-\curveto(-434.47483434,1102.29463886)(-431.11103248,1103.32872439)(-427.66900268,1102.99346517)
-\curveto(-423.73602504,1102.84735999)(-419.63715021,1103.2186237)(-416.03596698,1101.98246948)
-\lineto(-407.87598253,1097.8732612)
-\curveto(-405.93377135,1096.67115471)(-403.38057291,1097.36932876)(-401.40194527,1097.8732612)
-\lineto(-401.36822633,1097.25361868)
-\curveto(-402.69661785,1094.07713545)(-406.36807135,1093.04918112)(-409.4607729,1092.42692958)
-\lineto(-415.39530705,1092.55738063)
-\curveto(-417.50071791,1093.11714612)(-419.64659151,1092.97821574)(-421.8693443,1092.94873381)
-\curveto(-423.641612,1092.98683856)(-425.35588312,1092.83389774)(-426.9946238,1092.42692958)
-\curveto(-440.7924157,1091.52916541)(-449.54585357,1070.1589342)(-436.84055545,1062.42318653)
-\curveto(-434.4761831,1062.13162842)(-432.65266261,1063.59241935)(-430.73742658,1064.60824173)
-\curveto(-428.61583063,1065.97928234)(-426.68036324,1067.6412288)(-424.87033032,1069.50015636)
-\lineto(-420.82405704,1074.06594334)
-\curveto(-419.8699458,1075.41219825)(-418.90342598,1076.78976141)(-417.58703841,1077.84902399)
-\curveto(-410.65577227,1087.78548098)(-394.60420615,1089.66136718)(-386.63304778,1080.32759407)
-\lineto(-383.59834282,1082.0234578)
-\curveto(-372.52773911,1090.49494943)(-359.19931492,1078.89393695)(-353.1838553,1069.63060742)
-\lineto(-349.94683667,1066.10842888)
-\curveto(-348.69923574,1065.28736993)(-347.29922519,1064.63954999)(-345.79940655,1064.51040344)
-\curveto(-344.71824233,1064.21662766)(-343.50921588,1064.41355658)(-342.4612311,1064.67346726)
-\curveto(-334.57369571,1069.1714197)(-335.48545595,1080.26236854)(-339.35908824,1087.04582349)
-\curveto(-342.82674445,1091.2072122)(-348.54143108,1092.7504482)(-353.76382114,1092.16602746)
-\lineto(-359.83323106,1092.55738063)
-\curveto(-361.76734969,1093.0710969)(-363.67179565,1094.13583842)(-364.78991584,1095.85126982)
-\curveto(-364.92883789,1096.68106899)(-365.47562428,1097.56017866)(-365.05966739,1098.39506542)
-\curveto(-361.78218603,1096.77877683)(-357.75479535,1096.55570552)(-354.47191896,1098.46029095)
-\curveto(-344.68263513,1105.33897517)(-328.58925752,1104.14012996)(-323.31561467,1092.39431681)
-\curveto(-320.72734853,1086.59185381)(-319.80749573,1079.99755289)(-320.5843802,1073.5050038)
-\curveto(-319.76163797,1060.61774391)(-330.83224168,1047.54524351)(-344.70016898,1048.28881454)
-\lineto(-341.46315035,1042.2228404)
-\curveto(-340.79403163,1040.9887734)(-338.70494073,1037.51094823)(-337.8215044,1040.33130008)
-\curveto(-337.68460548,1040.45884207)(-337.50090468,1040.74574308)(-337.34943918,1040.46175113)
-\curveto(-336.79725775,1039.06201129)(-337.72169632,1037.62183163)(-338.69819694,1036.61344496)
-\curveto(-346.41444009,1034.9762842)(-356.42087393,1036.43081348)(-361.02013789,1043.20122332)
-\lineto(-360.88526212,1034.52622805)
-\curveto(-358.52763355,1030.86968493)(-354.69446399,1036.01728363)(-352.32065033,1033.41739407)
-\curveto(-350.97189257,1030.62182792)(-349.90232767,1027.62667166)(-350.97189257,1024.48149668)
-\lineto(-357.37849194,1017.63281621)
-\curveto(-357.86606787,1015.46732867)(-353.69908076,1014.97161465)(-353.77056493,1012.70828882)
-\curveto(-355.36749411,1010.70456058)(-357.71298386,1009.22785462)(-359.94113168,1008.10988907)
-\curveto(-357.89911243,1006.09833377)(-358.11491367,1002.39352376)(-360.27832112,1000.47850225)
-\lineto(-361.59335994,1000.05453631)
-\curveto(-365.22556459,1001.41253181)(-371.67397545,997.51204522)(-368.23599192,993.62982177)
-\lineto(-367.79764564,992.35792397)
-\curveto(-367.81098216,991.5600853)(-367.68595501,990.73511282)(-368.10111614,990.04241771)
-\curveto(-368.75364515,988.11043756)(-370.4493034,986.89463371)(-372.14738943,985.86798389)
-\curveto(-377.09867917,984.02340595)(-379.81103103,978.34617596)(-377.07035525,973.73603562)
-\lineto(-375.78903538,973.67081009)
-\curveto(-379.00582264,972.53445094)(-374.37688601,971.89276219)(-373.09151986,972.04017188)
-\curveto(-374.83006861,971.23059262)(-377.84049594,971.37356698)(-377.9470478,973.80126115)
-\curveto(-381.85035276,976.82381213)(-379.67210898,983.08024481)(-375.51928383,984.9548265)
-\lineto(-372.68689253,987.56384763)
-\curveto(-371.81505551,988.62454517)(-371.3340885,989.86500427)(-371.16954005,991.18386446)
-\lineto(-371.03466427,993.14063031)
-\curveto(-369.01422515,986.45631816)(-378.93973351,984.9300408)(-379.36324345,979.20845745)
-\lineto(-375.99134905,983.83946996)
-\curveto(-371.74411085,986.25151)(-364.99897329,990.87078192)(-370.596318,995.6452906)
-\lineto(-371.06838322,997.14547775)
-\lineto(-371.4392916,997.96079685)
-\curveto(-374.35260837,997.25570889)(-375.81735929,993.31413021)(-373.46242824,991.30779296)
-\lineto(-373.32755247,989.22057605)
-\curveto(-374.16337765,987.29772748)(-376.04799687,985.7818862)(-377.81217202,984.55695077)
-\curveto(-380.47461984,982.74368109)(-381.42819158,979.5724159)(-380.88059593,976.56682355)
-\curveto(-380.65993916,975.48968918)(-379.88399882,974.75746739)(-378.99233506,974.08825347)
-\lineto(-378.75630246,973.3381599)
-\curveto(-382.84978226,974.63640881)(-386.01261921,979.13149133)(-382.60026208,982.79586151)
-\curveto(-381.1274186,984.35214262)(-379.31603693,985.3748789)(-377.27266892,985.86146134)
-\curveto(-375.05531116,988.0778248)(-372.55201675,991.27387569)(-376.12622482,993.55807369)
-\lineto(-376.29481954,994.96042255)
-\lineto(-375.78903538,997.14547775)
-\curveto(-377.40349842,997.62605944)(-377.60716084,995.15870815)(-377.47498258,993.68852475)
-\lineto(-376.73316581,992.90581841)
-\curveto(-378.82643786,993.58703382)(-377.68889556,997.76512027)(-375.78903538,998.58043937)
-\lineto(-376.39597637,998.31953726)
-\lineto(-376.93547948,998.05863515)
-\lineto(-378.62142668,996.94980116)
-\curveto(-378.75016561,996.77069186)(-379.13449413,996.46374053)(-379.26208662,996.78673734)
-\lineto(-378.01448569,997.79773303)
-\lineto(-376.93547948,998.44998832)
-\lineto(-376.59829004,998.71089043)
-\lineto(-380.57712543,996.55844799)
-\lineto(-379.9364655,997.30854157)
-\lineto(-378.89117823,998.12386067)
-\curveto(-377.3212242,999.27026456)(-379.47330208,998.36506468)(-380.17249811,998.05863515)
-\lineto(-381.65613164,997.21070328)
-\lineto(-380.61084438,998.74350319)
-\curveto(-381.57722931,997.96379723)(-384.06501301,997.26418821)(-381.85844531,998.51521384)
-\curveto(-380.03627357,999.40606411)(-377.895795,1000.65200215)(-375.89019221,1000.04801376)
-\curveto(-371.15470371,1002.82531676)(-365.55196397,1000.85028776)(-360.27157734,1001.38513709)
-\curveto(-357.26924256,1004.94384192)(-360.50814945,1009.41439963)(-364.85735372,1009.01652391)
-\lineto(-369.8140385,1008.91868562)
-\lineto(-372.91618135,1008.00552822)
-\curveto(-382.58003071,1003.78021849)(-389.06081175,1015.41253922)(-392.91825895,1022.32905425)
-\curveto(-393.6089578,1023.22942744)(-394.6379251,1023.77575647)(-395.68321236,1023.76401587)
-\curveto(-393.41729932,1024.52350192)(-392.01459125,1021.57374263)(-391.02999809,1019.98093523)
-\lineto(-389.276613,1017.30668856)
-\curveto(-388.81398908,1019.64698052)(-388.08053461,1022.41645646)(-386.03959437,1023.89446693)
-\lineto(-386.27562698,1023.40527547)
-\curveto(-387.69317138,1021.55939301)(-388.61437294,1019.36911977)(-388.56851517,1017.01317369)
-\curveto(-386.81917635,1011.77686827)(-380.284445,1006.5340403)(-374.67631023,1009.83836557)
-\curveto(-374.15703849,1009.7791147)(-372.79883942,1010.21028153)(-373.05780091,1009.4470124)
-\curveto(-375.3925006,1008.92625178)(-377.75282668,1008.09684396)(-380.17249811,1008.04466354)
-\curveto(-379.0545128,1007.65422352)(-377.94030401,1007.31361582)(-376.69944687,1007.35979549)
-\curveto(-370.40074812,1009.74835434)(-363.87006304,1011.79513142)(-356.87270778,1010.62107191)
-\lineto(-354.47866275,1012.61045052)
-\curveto(-354.34866948,1014.77072002)(-358.25653324,1015.12815592)(-357.85055715,1017.37191409)
-\curveto(-358.96314743,1016.51993824)(-358.63607367,1017.76378907)(-358.12030871,1018.41552255)
-\lineto(-360.48063479,1016.39353117)
-\lineto(-359.60394224,1017.56759068)
-\curveto(-357.53899411,1020.11138628)(-361.98045342,1015.60169325)(-361.559641,1016.85010987)
-\lineto(-360.88526212,1017.63281621)
-\curveto(-360.70506808,1017.83358038)(-359.89163227,1018.42687179)(-360.61551056,1018.28507149)
-\lineto(-363.04327454,1016.13262905)
-\lineto(-361.99798727,1018.1872332)
-\lineto(-361.9777559,1018.19375575)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1077.54898656)
-\lineto(-454.09791101,1078.72304607)
-\lineto(-449.20866413,1077.19024615)
-\lineto(-444.69032563,1075.49438242)
-\lineto(-444.38685513,1075.85312282)
-\lineto(-443.88107097,1075.55960794)
-\curveto(-444.40924451,1071.32386213)(-443.4995074,1066.51152265)(-440.07083029,1063.59072349)
-\lineto(-442.36371849,1060.72080024)
-\lineto(-441.41958806,1062.54711504)
-\curveto(-441.54745029,1063.67434262)(-442.12336985,1062.87963478)(-442.5997511,1062.44927674)
-\curveto(-443.50233979,1062.7956243)(-442.20429532,1065.00220392)(-443.61131942,1063.75378731)
-\lineto(-443.94850886,1063.88423837)
-\lineto(-443.07181631,1065.90622975)
-\lineto(-445.16239084,1064.53649365)
-\curveto(-444.52807007,1065.49413486)(-443.67875731,1066.37976708)(-444.42057407,1067.47164243)
-\lineto(-446.24139705,1066.62371056)
-\lineto(-445.22982873,1068.51525088)
-\lineto(-445.46586134,1068.6783147)
-\curveto(-446.56482916,1067.84708057)(-446.05823575,1069.92138282)(-445.90420761,1070.47201673)
-\lineto(-447.85990637,1070.14588909)
-\lineto(-446.67974332,1071.15688478)
-\lineto(-447.08437065,1071.15688478)
-\lineto(-453.28865636,1069.5914721)
-\curveto(-454.42633353,1069.44667143)(-456.1196989,1069.7828438)(-456.79542654,1068.93921682)
-\curveto(-456.34831334,1068.67935831)(-455.57399151,1068.96944233)(-455.04204145,1069.06966787)
-\lineto(-453.05262375,1069.16750616)
-\lineto(-454.67113306,1068.58047641)
-\lineto(-456.12104766,1068.02605942)
-\lineto(-448.60172313,1069.55885933)
-\lineto(-449.78188618,1068.93921682)
-\lineto(-454.73857095,1066.9498382)
-\lineto(-454.60369517,1066.10190633)
-\lineto(-448.87147469,1067.8629956)
-\lineto(-455.311793,1065.15613617)
-\lineto(-450.89461133,1066.10190633)
-\lineto(-448.06222003,1067.21074031)
-\lineto(-448.19709581,1066.75416162)
-\curveto(-450.87033369,1065.46347886)(-453.94954766,1064.43213281)(-456.52567498,1063.59072349)
-\curveto(-455.7939739,1063.08731286)(-454.66304052,1063.76722377)(-453.82815946,1063.98207666)
-\lineto(-450.489984,1065.18874893)
-\lineto(-446.84833805,1066.81938714)
-\curveto(-449.71175077,1064.27559154)(-453.63798462,1063.45244537)(-457.03145914,1061.86224699)
-\lineto(-457.03145914,1061.40566829)
-\lineto(-453.45725108,1062.64495333)
-\lineto(-452.24336909,1062.64495333)
-\lineto(-455.8512961,1060.32944707)
-\curveto(-454.13432747,1059.90613339)(-452.15435108,1061.61530314)(-450.45626506,1062.28621292)
-\lineto(-448.87147469,1063.23198308)
-\lineto(-447.25296537,1064.07991495)
-\lineto(-452.44568276,1060.62296195)
-\curveto(-451.92438788,1060.27361402)(-451.27428664,1060.95000275)(-450.72601661,1061.11215341)
-\lineto(-447.52271693,1062.90585544)
-\lineto(-452.58055853,1059.77503008)
-\lineto(-455.27807405,1058.40529399)
-\lineto(-449.41097779,1060.68818748)
-\curveto(-449.53838145,1060.52003607)(-449.58038177,1060.13311823)(-449.27610202,1060.10115772)
-\lineto(-448.06222003,1060.42728536)
-\curveto(-448.37014143,1059.57165688)(-449.40949416,1059.26131382)(-450.15279456,1058.73142163)
-\lineto(-454.06419207,1056.44852813)
-\curveto(-451.77939642,1056.89741022)(-449.73602841,1058.41833909)(-447.75874953,1059.67719179)
-\lineto(-447.25296537,1059.90548114)
-\curveto(-448.88361351,1057.97219648)(-450.84335853,1056.42113341)(-453.25493741,1055.33969415)
-\lineto(-453.25493741,1055.01356651)
-\curveto(-452.89185182,1054.90154819)(-452.5016562,1055.02237717)(-452.24336909,1055.27446862)
-\lineto(-450.22023245,1056.44852813)
-\lineto(-448.60172313,1057.42691106)
-\curveto(-448.46347546,1056.57036942)(-447.51529876,1057.49894613)(-447.1180896,1057.68781317)
-\lineto(-452.71543431,1054.16563464)
-\lineto(-452.71543431,1053.70905594)
-\lineto(-451.13064394,1054.45914952)
-\lineto(-449.24238307,1055.50275797)
-\lineto(-446.54486755,1057.06817065)
-\curveto(-445.35607246,1057.92353823)(-445.70229858,1056.88149519)(-446.64602438,1056.51375366)
-\lineto(-451.77130387,1053.31770277)
-\curveto(-448.95644643,1054.34761387)(-445.87318618,1055.94107352)(-443.88107097,1058.2096174)
-\curveto(-444.16795175,1058.53965857)(-443.44609659,1058.83760879)(-443.20669209,1058.86187268)
-\curveto(-444.56623991,1055.50014895)(-448.72985512,1054.04561967)(-451.77130387,1052.27409432)
-\curveto(-453.11035058,1053.59947706)(-453.86592468,1055.22098369)(-454.80600884,1056.77465578)
-\curveto(-456.10675082,1058.3583316)(-456.89118834,1060.2707441)(-457.70583802,1062.05792357)
-\curveto(-461.72918243,1075.76832963)(-455.66651629,1092.64869637)(-441.58818278,1098.71467051)
-\curveto(-440.24603393,1099.60369446)(-438.73960638,1100.13006448)(-437.23843899,1100.6388236)
-\curveto(-433.04784863,1101.97072889)(-428.37170547,1102.85779607)(-423.88573716,1102.07378522)
-\curveto(-419.00728033,1102.1396891)(-413.93190488,1101.27764242)(-410.08794526,1098.06241523)
-\lineto(-407.15439712,1096.59484084)
-\curveto(-405.66132228,1096.28749815)(-404.21140769,1096.48488364)(-402.73721546,1096.82313019)
-\curveto(-404.19657135,1093.40400799)(-409.22878656,1093.281384)(-412.51570923,1093.36617719)
-\lineto(-411.90876823,1093.75753036)
-\curveto(-410.98257628,1094.38017325)(-411.41633678,1095.98172087)(-411.36926513,1097.0840323)
-\lineto(-412.1110819,1097.01880677)
-\curveto(-412.45933115,1098.43159172)(-413.75926388,1097.69219513)(-414.67372164,1097.9971897)
-\curveto(-414.65242476,1096.57396867)(-414.74790332,1094.87549591)(-415.41553841,1093.49662824)
-\lineto(-415.92132257,1093.46401548)
-\curveto(-416.30531391,1093.35925024)(-416.88406586,1093.54736066)(-416.35966885,1093.88798141)
-\curveto(-416.38799276,1094.82383729)(-415.92037844,1095.55905945)(-415.51669525,1096.33393873)
-\lineto(-415.55041419,1098.38854287)
-\lineto(-416.19107413,1099.33431303)
-\lineto(-416.89917195,1093.6270793)
-\lineto(-419.42809275,1093.72491759)
-\lineto(-419.56296853,1095.68168344)
-\lineto(-419.56296853,1096.59484084)
-\curveto(-419.41433542,1097.13216874)(-419.3927553,1097.69167333)(-418.78743282,1097.73628759)
-\lineto(-418.75371387,1096.20348767)
-\curveto(-418.99783903,1095.76269355)(-419.06878369,1094.14888353)(-418.48396232,1095.15987922)
-\lineto(-418.34908654,1095.68168344)
-\curveto(-418.03010533,1097.45973135)(-417.43597754,1095.28876486)(-418.21421077,1094.63807499)
-\lineto(-417.97817816,1094.27933458)
-\curveto(-416.45947692,1095.95041262)(-416.03192071,1098.55552022)(-417.57355083,1100.47575978)
-\lineto(-418.04561605,1100.34530872)
-\lineto(-417.97817816,1098.58421946)
-\lineto(-418.85487071,1100.47575978)
-\curveto(-419.69636067,1100.43589394)(-418.89978434,1098.11068212)(-419.52924959,1099.10602368)
-\curveto(-419.03128822,1100.46401918)(-420.64224449,1100.76536112)(-420.50709896,1099.33431303)
-\lineto(-420.87800735,1096.10564938)
-\lineto(-420.0013148,1097.34493442)
-\curveto(-420.06488176,1096.11725952)(-420.02356931,1094.72286818)(-420.94544524,1093.75753036)
-\lineto(-422.49651666,1093.75753036)
-\lineto(-420.64197474,1099.85611726)
-\curveto(-420.55886429,1100.33591625)(-420.92184197,1100.53707177)(-421.31635362,1100.6388236)
-\lineto(-422.96858188,1093.75753036)
-\lineto(-423.87899337,1093.72491759)
-\lineto(-425.59865951,1093.75753036)
-\lineto(-425.3626269,1097.89935141)
-\curveto(-425.6710878,1098.90369409)(-425.42418421,1100.4287974)(-426.40791417,1100.997564)
-\curveto(-426.0430752,1098.97165909)(-425.58517194,1096.31437107)(-426.07072473,1094.01843247)
-\lineto(-432.4773241,1091.99644109)
-\lineto(-438.58045297,1087.20236476)
-\lineto(-439.35598868,1088.27858597)
-\lineto(-438.9850803,1088.89822849)
-\lineto(-443.94176507,1093.10527507)
-\curveto(-444.2032892,1093.49597599)(-445.55083308,1094.1334903)(-445.02077128,1093.23572613)
-\lineto(-444.48126817,1092.84437296)
-\lineto(-445.42539861,1092.64869637)
-\lineto(-445.56027438,1092.19211768)
-\curveto(-444.13733494,1090.46494569)(-442.2612129,1088.77690901)(-440.50243278,1087.49587963)
-\curveto(-440.33208467,1087.82265953)(-440.73212622,1088.00176883)(-440.90706011,1088.21336045)
-\lineto(-442.59300731,1089.97444971)
-\curveto(-443.31432296,1090.65670874)(-444.45429302,1091.19912423)(-444.75101973,1092.12689215)
-\lineto(-441.98606631,1090.95283264)
-\lineto(-440.30011911,1088.47426256)
-\lineto(-440.16524334,1088.14813492)
-\curveto(-438.78951042,1087.43052365)(-438.78006912,1086.33486523)(-439.96292967,1085.40866273)
-\curveto(-441.44791197,1083.11272413)(-442.69955917,1080.70851115)(-443.33482408,1078.10340355)
-\lineto(-444.75101973,1078.88610989)
-\curveto(-445.9889096,1080.76982315)(-449.15876009,1080.68763898)(-451.22505698,1081.4299055)
-\lineto(-451.22505698,1081.10377785)
-\curveto(-448.56530668,1080.15370281)(-445.71807904,1079.47705318)(-443.57085668,1077.54898656)
-\lineto(-443.87432718,1076.1466377)
-\curveto(-446.79978277,1078.00426075)(-449.76974736,1079.94667698)(-453.01216101,1081.20161615)
-\lineto(-453.55166412,1080.94071403)
-\lineto(-450.44952127,1079.50575241)
-\curveto(-449.1258504,1079.01786546)(-448.72850636,1078.35452183)(-448.29150885,1077.54898656)
-\lineto(-448.29825264,1077.54898656)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1077.54898656)
-\lineto(-454.09791101,1078.72304607)
-\lineto(-449.20866413,1077.19024615)
-\lineto(-444.69032563,1075.49438242)
-\lineto(-444.38685513,1075.85312282)
-\lineto(-443.88107097,1075.55960794)
-\curveto(-444.40924451,1071.32386213)(-443.4995074,1066.51152265)(-440.07083029,1063.59072349)
-\lineto(-442.36371849,1060.72080024)
-\lineto(-441.41958806,1062.54711504)
-\curveto(-441.54745029,1063.67434262)(-442.12336985,1062.87963478)(-442.5997511,1062.44927674)
-\curveto(-443.50233979,1062.7956243)(-442.20429532,1065.00220392)(-443.61131942,1063.75378731)
-\lineto(-443.94850886,1063.88423837)
-\lineto(-443.07181631,1065.90622975)
-\lineto(-445.16239084,1064.53649365)
-\curveto(-444.52807007,1065.49413486)(-443.67875731,1066.37976708)(-444.42057407,1067.47164243)
-\lineto(-446.24139705,1066.62371056)
-\lineto(-445.22982873,1068.51525088)
-\lineto(-445.46586134,1068.6783147)
-\curveto(-446.56482916,1067.84708057)(-446.05823575,1069.92138282)(-445.90420761,1070.47201673)
-\lineto(-447.85990637,1070.14588909)
-\lineto(-446.67974332,1071.15688478)
-\lineto(-447.08437065,1071.15688478)
-\lineto(-453.28865636,1069.5914721)
-\curveto(-454.42633353,1069.44667143)(-456.1196989,1069.7828438)(-456.79542654,1068.93921682)
-\curveto(-456.34831334,1068.67935831)(-455.57399151,1068.96944233)(-455.04204145,1069.06966787)
-\lineto(-453.05262375,1069.16750616)
-\lineto(-454.67113306,1068.58047641)
-\lineto(-456.12104766,1068.02605942)
-\lineto(-448.60172313,1069.55885933)
-\lineto(-449.78188618,1068.93921682)
-\lineto(-454.73857095,1066.9498382)
-\lineto(-454.60369517,1066.10190633)
-\lineto(-448.87147469,1067.8629956)
-\lineto(-455.311793,1065.15613617)
-\lineto(-450.89461133,1066.10190633)
-\lineto(-448.06222003,1067.21074031)
-\lineto(-448.19709581,1066.75416162)
-\curveto(-450.87033369,1065.46347886)(-453.94954766,1064.43213281)(-456.52567498,1063.59072349)
-\curveto(-455.7939739,1063.08731286)(-454.66304052,1063.76722377)(-453.82815946,1063.98207666)
-\lineto(-450.489984,1065.18874893)
-\lineto(-446.84833805,1066.81938714)
-\curveto(-449.71175077,1064.27559154)(-453.63798462,1063.45244537)(-457.03145914,1061.86224699)
-\lineto(-457.03145914,1061.40566829)
-\lineto(-453.45725108,1062.64495333)
-\lineto(-452.24336909,1062.64495333)
-\lineto(-455.8512961,1060.32944707)
-\curveto(-454.13432747,1059.90613339)(-452.15435108,1061.61530314)(-450.45626506,1062.28621292)
-\lineto(-448.87147469,1063.23198308)
-\lineto(-447.25296537,1064.07991495)
-\lineto(-452.44568276,1060.62296195)
-\curveto(-451.92438788,1060.27361402)(-451.27428664,1060.95000275)(-450.72601661,1061.11215341)
-\lineto(-447.52271693,1062.90585544)
-\lineto(-452.58055853,1059.77503008)
-\lineto(-455.27807405,1058.40529399)
-\lineto(-449.41097779,1060.68818748)
-\curveto(-449.53838145,1060.52003607)(-449.58038177,1060.13311823)(-449.27610202,1060.10115772)
-\lineto(-448.06222003,1060.42728536)
-\curveto(-448.37014143,1059.57165688)(-449.40949416,1059.26131382)(-450.15279456,1058.73142163)
-\lineto(-454.06419207,1056.44852813)
-\curveto(-451.77939642,1056.89741022)(-449.73602841,1058.41833909)(-447.75874953,1059.67719179)
-\lineto(-447.25296537,1059.90548114)
-\curveto(-448.88361351,1057.97219648)(-450.84335853,1056.42113341)(-453.25493741,1055.33969415)
-\lineto(-453.25493741,1055.01356651)
-\curveto(-452.89185182,1054.90154819)(-452.5016562,1055.02237717)(-452.24336909,1055.27446862)
-\lineto(-450.22023245,1056.44852813)
-\lineto(-448.60172313,1057.42691106)
-\curveto(-448.46347546,1056.57036942)(-447.51529876,1057.49894613)(-447.1180896,1057.68781317)
-\lineto(-452.71543431,1054.16563464)
-\lineto(-452.71543431,1053.70905594)
-\lineto(-451.13064394,1054.45914952)
-\lineto(-449.24238307,1055.50275797)
-\lineto(-446.54486755,1057.06817065)
-\curveto(-445.35607246,1057.92353823)(-445.70229858,1056.88149519)(-446.64602438,1056.51375366)
-\lineto(-451.77130387,1053.31770277)
-\curveto(-448.95644643,1054.34761387)(-445.87318618,1055.94107352)(-443.88107097,1058.2096174)
-\curveto(-444.16795175,1058.53965857)(-443.44609659,1058.83760879)(-443.20669209,1058.86187268)
-\curveto(-444.56623991,1055.50014895)(-448.72985512,1054.04561967)(-451.77130387,1052.27409432)
-\curveto(-453.11035058,1053.59947706)(-453.86592468,1055.22098369)(-454.80600884,1056.77465578)
-\curveto(-456.10675082,1058.3583316)(-456.89118834,1060.2707441)(-457.70583802,1062.05792357)
-\curveto(-461.72918243,1075.76832963)(-455.66651629,1092.64869637)(-441.58818278,1098.71467051)
-\curveto(-440.24603393,1099.60369446)(-438.73960638,1100.13006448)(-437.23843899,1100.6388236)
-\curveto(-433.04784863,1101.97072889)(-428.37170547,1102.85779607)(-423.88573716,1102.07378522)
-\curveto(-419.00728033,1102.1396891)(-413.93190488,1101.27764242)(-410.08794526,1098.06241523)
-\lineto(-407.15439712,1096.59484084)
-\curveto(-405.66132228,1096.28749815)(-404.21140769,1096.48488364)(-402.73721546,1096.82313019)
-\curveto(-404.19657135,1093.40400799)(-409.22878656,1093.281384)(-412.51570923,1093.36617719)
-\lineto(-411.90876823,1093.75753036)
-\curveto(-410.98257628,1094.38017325)(-411.41633678,1095.98172087)(-411.36926513,1097.0840323)
-\lineto(-412.1110819,1097.01880677)
-\curveto(-412.45933115,1098.43159172)(-413.75926388,1097.69219513)(-414.67372164,1097.9971897)
-\curveto(-414.65242476,1096.57396867)(-414.74790332,1094.87549591)(-415.41553841,1093.49662824)
-\lineto(-415.92132257,1093.46401548)
-\curveto(-416.30531391,1093.35925024)(-416.88406586,1093.54736066)(-416.35966885,1093.88798141)
-\curveto(-416.38799276,1094.82383729)(-415.92037844,1095.55905945)(-415.51669525,1096.33393873)
-\lineto(-415.55041419,1098.38854287)
-\lineto(-416.19107413,1099.33431303)
-\lineto(-416.89917195,1093.6270793)
-\lineto(-419.42809275,1093.72491759)
-\lineto(-419.56296853,1095.68168344)
-\lineto(-419.56296853,1096.59484084)
-\curveto(-419.41433542,1097.13216874)(-419.3927553,1097.69167333)(-418.78743282,1097.73628759)
-\lineto(-418.75371387,1096.20348767)
-\curveto(-418.99783903,1095.76269355)(-419.06878369,1094.14888353)(-418.48396232,1095.15987922)
-\lineto(-418.34908654,1095.68168344)
-\curveto(-418.03010533,1097.45973135)(-417.43597754,1095.28876486)(-418.21421077,1094.63807499)
-\lineto(-417.97817816,1094.27933458)
-\curveto(-416.45947692,1095.95041262)(-416.03192071,1098.55552022)(-417.57355083,1100.47575978)
-\lineto(-418.04561605,1100.34530872)
-\lineto(-417.97817816,1098.58421946)
-\lineto(-418.85487071,1100.47575978)
-\curveto(-419.69636067,1100.43589394)(-418.89978434,1098.11068212)(-419.52924959,1099.10602368)
-\curveto(-419.03128822,1100.46401918)(-420.64224449,1100.76536112)(-420.50709896,1099.33431303)
-\lineto(-420.87800735,1096.10564938)
-\lineto(-420.0013148,1097.34493442)
-\curveto(-420.06488176,1096.11725952)(-420.02356931,1094.72286818)(-420.94544524,1093.75753036)
-\lineto(-422.49651666,1093.75753036)
-\lineto(-420.64197474,1099.85611726)
-\curveto(-420.55886429,1100.33591625)(-420.92184197,1100.53707177)(-421.31635362,1100.6388236)
-\lineto(-422.96858188,1093.75753036)
-\lineto(-423.87899337,1093.72491759)
-\lineto(-425.59865951,1093.75753036)
-\lineto(-425.3626269,1097.89935141)
-\curveto(-425.6710878,1098.90369409)(-425.42418421,1100.4287974)(-426.40791417,1100.997564)
-\curveto(-426.0430752,1098.97165909)(-425.58517194,1096.31437107)(-426.07072473,1094.01843247)
-\lineto(-432.4773241,1091.99644109)
-\lineto(-438.58045297,1087.20236476)
-\lineto(-439.35598868,1088.27858597)
-\lineto(-438.9850803,1088.89822849)
-\lineto(-443.94176507,1093.10527507)
-\curveto(-444.2032892,1093.49597599)(-445.55083308,1094.1334903)(-445.02077128,1093.23572613)
-\lineto(-444.48126817,1092.84437296)
-\lineto(-445.42539861,1092.64869637)
-\lineto(-445.56027438,1092.19211768)
-\curveto(-444.13733494,1090.46494569)(-442.2612129,1088.77690901)(-440.50243278,1087.49587963)
-\curveto(-440.33208467,1087.82265953)(-440.73212622,1088.00176883)(-440.90706011,1088.21336045)
-\lineto(-442.59300731,1089.97444971)
-\curveto(-443.31432296,1090.65670874)(-444.45429302,1091.19912423)(-444.75101973,1092.12689215)
-\lineto(-441.98606631,1090.95283264)
-\lineto(-440.30011911,1088.47426256)
-\lineto(-440.16524334,1088.14813492)
-\curveto(-438.78951042,1087.43052365)(-438.78006912,1086.33486523)(-439.96292967,1085.40866273)
-\curveto(-441.44791197,1083.11272413)(-442.69955917,1080.70851115)(-443.33482408,1078.10340355)
-\lineto(-444.75101973,1078.88610989)
-\curveto(-445.9889096,1080.76982315)(-449.15876009,1080.68763898)(-451.22505698,1081.4299055)
-\lineto(-451.22505698,1081.10377785)
-\curveto(-448.56530668,1080.15370281)(-445.71807904,1079.47705318)(-443.57085668,1077.54898656)
-\lineto(-443.87432718,1076.1466377)
-\curveto(-446.79978277,1078.00426075)(-449.76974736,1079.94667698)(-453.01216101,1081.20161615)
-\lineto(-453.55166412,1080.94071403)
-\lineto(-450.44952127,1079.50575241)
-\curveto(-449.1258504,1079.01786546)(-448.72850636,1078.35452183)(-448.29150885,1077.54898656)
-\lineto(-448.29825264,1077.54898656)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-331.49583049,1078.72304607)
-\curveto(-328.89137926,1079.66920758)(-325.95783113,1080.73981941)(-322.9986566,1080.28845875)
-\lineto(-322.49287244,1080.45152257)
-\lineto(-324.3811333,1081.29945444)
-\lineto(-324.71832274,1081.4299055)
-\lineto(-322.49287244,1081.62558208)
-\lineto(-322.49287244,1081.95170972)
-\lineto(-324.9880743,1082.27783737)
-\lineto(-324.92063641,1082.40828842)
-\curveto(-325.23894324,1082.92109153)(-324.94866359,1082.95135617)(-324.34741436,1082.89747988)
-\lineto(-322.22312088,1083.06054371)
-\lineto(-328.09021715,1083.19099476)
-\lineto(-327.61815193,1083.32144582)
-\curveto(-327.4301351,1083.86320906)(-326.89265513,1083.86020868)(-326.370551,1083.81063728)
-\curveto(-325.24690091,1083.93069139)(-323.96706467,1084.17798746)(-322.86378082,1083.94108834)
-\lineto(-322.62774821,1084.10415216)
-\lineto(-324.71832274,1084.62595639)
-\curveto(-324.55323479,1084.74513647)(-323.57929681,1084.73767467)(-324.11138175,1085.21298614)
-\lineto(-325.5275774,1085.40866273)
-\curveto(-326.05399755,1085.97221129)(-324.99185082,1085.84254294)(-324.71832274,1085.99569248)
-\lineto(-323.8416302,1086.19136907)
-\lineto(-324.34741436,1086.55010947)
-\lineto(-329.06806652,1086.02830525)
-\lineto(-329.57385068,1086.06091801)
-\lineto(-326.10079945,1087.59371793)
-\lineto(-326.370551,1087.85462004)
-\lineto(-330.24822957,1086.45227118)
-\curveto(-328.92145656,1087.46731085)(-327.2040833,1088.09986803)(-325.59501529,1088.53948809)
-\lineto(-326.77517833,1089.02867955)
-\lineto(-325.86476684,1089.58309654)
-\lineto(-326.20195628,1090.56147947)
-\lineto(-325.59501529,1090.95283264)
-\lineto(-328.22509292,1090.88760711)
-\curveto(-327.84285497,1091.20316822)(-325.9618774,1091.32983619)(-327.04492988,1092.02905386)
-\curveto(-326.69034147,1092.22446954)(-326.50192001,1092.52489832)(-327.01121094,1092.7139219)
-\curveto(-326.82777988,1092.95343004)(-326.89640468,1093.29482046)(-327.28096249,1093.23572613)
-\lineto(-327.17980566,1094.24672182)
-\lineto(-327.34840038,1094.47501117)
-\lineto(-329.2029423,1094.11627076)
-\lineto(-331.19236,1094.40978564)
-\lineto(-328.69715814,1094.93158987)
-\lineto(-328.69715814,1095.25771751)
-\lineto(-329.57385068,1095.38816857)
-\curveto(-329.16099593,1095.58488876)(-328.13067988,1095.33579247)(-328.29253081,1096.04042385)
-\lineto(-330.68657584,1095.68168344)
-\lineto(-331.22607894,1095.68168344)
-\lineto(-331.32723577,1095.77952174)
-\lineto(-329.10178547,1096.49700255)
-\lineto(-329.06806652,1096.7252919)
-\lineto(-330.68657584,1096.59484084)
-\lineto(-332.54111776,1096.75790466)
-\lineto(-332.54111776,1096.95358125)
-\curveto(-331.56515664,1096.80760651)(-332.08092161,1097.52091289)(-332.54111776,1097.73628759)
-\lineto(-332.20392832,1097.93196417)
-\lineto(-332.3388041,1098.38854287)
-\curveto(-333.03071683,1098.1088558)(-333.98293981,1097.56644031)(-334.49681651,1098.38854287)
-\lineto(-334.83400595,1098.4537684)
-\curveto(-334.36113148,1098.51926787)(-333.63765782,1098.74663102)(-333.82243763,1099.43215132)
-\lineto(-338.34077613,1099.23647474)
-\lineto(-337.46408359,1099.69305344)
-\curveto(-337.96973287,1100.11767163)(-338.64006548,1099.64386034)(-339.18374973,1099.59521515)
-\lineto(-338.81284135,1100.08440661)
-\lineto(-341.61151371,1099.33431303)
-\lineto(-340.70110222,1099.88873002)
-\lineto(-340.02672334,1100.41053425)
-\lineto(-340.26275594,1100.6388236)
-\lineto(-343.87068296,1098.58421946)
-\lineto(-343.23002302,1099.46476409)
-\lineto(-342.58936308,1100.21485766)
-\curveto(-343.00329684,1100.34130387)(-343.4957283,1100.35287488)(-343.87068296,1100.08440661)
-\lineto(-344.34274817,1099.88873002)
-\lineto(-345.28687861,1099.23647474)
-\curveto(-345.98607463,1099.5335118)(-346.59382488,1099.64883053)(-347.2762963,1099.07341092)
-\lineto(-347.68092363,1099.46476409)
-\lineto(-351.15397487,1097.9971897)
-\curveto(-351.38784946,1098.06887256)(-351.74446102,1098.83638135)(-351.28885064,1099.17124921)
-\lineto(-347.2762963,1100.6388236)
-\curveto(-344.89573885,1101.54115356)(-342.34388917,1102.30859712)(-339.72325284,1101.68243205)
-\curveto(-337.26446744,1102.02590969)(-334.94595285,1100.67652395)(-332.81086931,1099.62782791)
-\curveto(-329.90294758,1098.6763179)(-327.68828733,1096.61701752)(-325.86476684,1094.21410906)
-\curveto(-321.36396219,1087.53762397)(-321.08476933,1079.68186134)(-321.24527151,1071.67216645)
-\lineto(-321.91965039,1067.6281837)
-\lineto(-323.8416302,1062.31230313)
-\lineto(-325.19038796,1064.46474557)
-\lineto(-326.26939417,1065.37790297)
-\curveto(-326.96805069,1065.58766827)(-327.00406252,1066.1664796)(-327.01121094,1066.68241353)
-\curveto(-325.84291696,1066.32797801)(-324.69809138,1065.6408923)(-323.67303548,1064.8887115)
-\lineto(-323.30212709,1065.05177533)
-\lineto(-324.17881964,1065.83448167)
-\lineto(-325.86476684,1066.81286459)
-\lineto(-327.95534137,1068.11737516)
-\lineto(-325.93220473,1067.72602199)
-\lineto(-325.59501529,1067.59557093)
-\lineto(-322.89749976,1066.09538378)
-\curveto(-322.81834117,1066.73681162)(-323.68787181,1066.98545134)(-324.07766281,1067.36728158)
-\curveto(-324.85265902,1067.89626062)(-326.53375069,1068.21338714)(-326.26939417,1069.29143467)
-\lineto(-326.74145939,1069.68278784)
-\lineto(-323.94278703,1068.54134109)
-\lineto(-322.86378082,1067.75863475)
-\lineto(-322.22312088,1067.5303454)
-\lineto(-322.22312088,1067.85647304)
-\curveto(-323.31871681,1068.65731208)(-324.65627989,1069.32143841)(-325.5275774,1070.46549418)
-\lineto(-324.65088485,1070.33504312)
-\curveto(-324.4457388,1070.15123758)(-324.08642973,1069.69452843)(-323.8416302,1070.00891548)
-\lineto(-325.29154479,1071.28081328)
-\lineto(-327.14608671,1072.29180897)
-\curveto(-325.39000411,1071.96424637)(-323.65550163,1070.88554658)(-322.86378082,1069.32404743)
-\curveto(-322.50595539,1069.52702928)(-322.8875864,1069.97852038)(-322.9986566,1070.23720483)
-\lineto(-323.36956498,1072.09613239)
-\lineto(-324.17881964,1072.68316214)
-\lineto(-321.548742,1071.57432816)
-\curveto(-321.39390461,1072.00612116)(-322.04022933,1072.12561433)(-322.32427772,1072.32442174)
-\lineto(-323.16725132,1072.8136132)
-\curveto(-323.85929892,1072.92377912)(-324.55782057,1073.41994971)(-325.25782585,1073.13974084)
-\lineto(-327.28096249,1074.24857482)
-\lineto(-324.34741436,1073.6289323)
-\curveto(-323.55340066,1073.93379642)(-322.72216126,1073.81756453)(-322.29055877,1072.87883873)
-\lineto(-321.81849356,1072.74838767)
-\curveto(-321.98614415,1073.87209307)(-323.44509542,1074.13247338)(-324.17881964,1074.63992799)
-\lineto(-322.62774821,1074.31380035)
-\curveto(-322.74472597,1074.75328996)(-322.84692135,1075.34814678)(-323.36956498,1075.55308539)
-\lineto(-322.35799666,1075.55308539)
-\curveto(-322.1601339,1075.4118069)(-321.63749026,1075.35780016)(-321.51502306,1075.58569816)
-\curveto(-323.26705939,1076.16920573)(-325.18769044,1076.76380165)(-327.17980566,1076.75975767)
-\lineto(-327.85418454,1077.15111084)
-\lineto(-333.88987552,1076.7271449)
-\lineto(-333.95731341,1076.14011515)
-\lineto(-335.64326061,1075.61831092)
-\lineto(-335.64326061,1076.85759596)
-\lineto(-331.52954944,1078.096881)
-\lineto(-326.50542678,1078.71652352)
-\curveto(-325.1662452,1078.68191485)(-323.74856591,1078.74130922)(-322.59402927,1079.10787669)
-\lineto(-323.40328393,1079.49922986)
-\lineto(-331.49583049,1078.71652352)
-\lineto(-331.49583049,1078.72304607)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-331.49583049,1078.72304607)
-\curveto(-328.89137926,1079.66920758)(-325.95783113,1080.73981941)(-322.9986566,1080.28845875)
-\lineto(-322.49287244,1080.45152257)
-\lineto(-324.3811333,1081.29945444)
-\lineto(-324.71832274,1081.4299055)
-\lineto(-322.49287244,1081.62558208)
-\lineto(-322.49287244,1081.95170972)
-\lineto(-324.9880743,1082.27783737)
-\lineto(-324.92063641,1082.40828842)
-\curveto(-325.23894324,1082.92109153)(-324.94866359,1082.95135617)(-324.34741436,1082.89747988)
-\lineto(-322.22312088,1083.06054371)
-\lineto(-328.09021715,1083.19099476)
-\lineto(-327.61815193,1083.32144582)
-\curveto(-327.4301351,1083.86320906)(-326.89265513,1083.86020868)(-326.370551,1083.81063728)
-\curveto(-325.24690091,1083.93069139)(-323.96706467,1084.17798746)(-322.86378082,1083.94108834)
-\lineto(-322.62774821,1084.10415216)
-\lineto(-324.71832274,1084.62595639)
-\curveto(-324.55323479,1084.74513647)(-323.57929681,1084.73767467)(-324.11138175,1085.21298614)
-\lineto(-325.5275774,1085.40866273)
-\curveto(-326.05399755,1085.97221129)(-324.99185082,1085.84254294)(-324.71832274,1085.99569248)
-\lineto(-323.8416302,1086.19136907)
-\lineto(-324.34741436,1086.55010947)
-\lineto(-329.06806652,1086.02830525)
-\lineto(-329.57385068,1086.06091801)
-\lineto(-326.10079945,1087.59371793)
-\lineto(-326.370551,1087.85462004)
-\lineto(-330.24822957,1086.45227118)
-\curveto(-328.92145656,1087.46731085)(-327.2040833,1088.09986803)(-325.59501529,1088.53948809)
-\lineto(-326.77517833,1089.02867955)
-\lineto(-325.86476684,1089.58309654)
-\lineto(-326.20195628,1090.56147947)
-\lineto(-325.59501529,1090.95283264)
-\lineto(-328.22509292,1090.88760711)
-\curveto(-327.84285497,1091.20316822)(-325.9618774,1091.32983619)(-327.04492988,1092.02905386)
-\curveto(-326.69034147,1092.22446954)(-326.50192001,1092.52489832)(-327.01121094,1092.7139219)
-\curveto(-326.82777988,1092.95343004)(-326.89640468,1093.29482046)(-327.28096249,1093.23572613)
-\lineto(-327.17980566,1094.24672182)
-\lineto(-327.34840038,1094.47501117)
-\lineto(-329.2029423,1094.11627076)
-\lineto(-331.19236,1094.40978564)
-\lineto(-328.69715814,1094.93158987)
-\lineto(-328.69715814,1095.25771751)
-\lineto(-329.57385068,1095.38816857)
-\curveto(-329.16099593,1095.58488876)(-328.13067988,1095.33579247)(-328.29253081,1096.04042385)
-\lineto(-330.68657584,1095.68168344)
-\lineto(-331.22607894,1095.68168344)
-\lineto(-331.32723577,1095.77952174)
-\lineto(-329.10178547,1096.49700255)
-\lineto(-329.06806652,1096.7252919)
-\lineto(-330.68657584,1096.59484084)
-\lineto(-332.54111776,1096.75790466)
-\lineto(-332.54111776,1096.95358125)
-\curveto(-331.56515664,1096.80760651)(-332.08092161,1097.52091289)(-332.54111776,1097.73628759)
-\lineto(-332.20392832,1097.93196417)
-\lineto(-332.3388041,1098.38854287)
-\curveto(-333.03071683,1098.1088558)(-333.98293981,1097.56644031)(-334.49681651,1098.38854287)
-\lineto(-334.83400595,1098.4537684)
-\curveto(-334.36113148,1098.51926787)(-333.63765782,1098.74663102)(-333.82243763,1099.43215132)
-\lineto(-338.34077613,1099.23647474)
-\lineto(-337.46408359,1099.69305344)
-\curveto(-337.96973287,1100.11767163)(-338.64006548,1099.64386034)(-339.18374973,1099.59521515)
-\lineto(-338.81284135,1100.08440661)
-\lineto(-341.61151371,1099.33431303)
-\lineto(-340.70110222,1099.88873002)
-\lineto(-340.02672334,1100.41053425)
-\lineto(-340.26275594,1100.6388236)
-\lineto(-343.87068296,1098.58421946)
-\lineto(-343.23002302,1099.46476409)
-\lineto(-342.58936308,1100.21485766)
-\curveto(-343.00329684,1100.34130387)(-343.4957283,1100.35287488)(-343.87068296,1100.08440661)
-\lineto(-344.34274817,1099.88873002)
-\lineto(-345.28687861,1099.23647474)
-\curveto(-345.98607463,1099.5335118)(-346.59382488,1099.64883053)(-347.2762963,1099.07341092)
-\lineto(-347.68092363,1099.46476409)
-\lineto(-351.15397487,1097.9971897)
-\curveto(-351.38784946,1098.06887256)(-351.74446102,1098.83638135)(-351.28885064,1099.17124921)
-\lineto(-347.2762963,1100.6388236)
-\curveto(-344.89573885,1101.54115356)(-342.34388917,1102.30859712)(-339.72325284,1101.68243205)
-\curveto(-337.26446744,1102.02590969)(-334.94595285,1100.67652395)(-332.81086931,1099.62782791)
-\curveto(-329.90294758,1098.6763179)(-327.68828733,1096.61701752)(-325.86476684,1094.21410906)
-\curveto(-321.36396219,1087.53762397)(-321.08476933,1079.68186134)(-321.24527151,1071.67216645)
-\lineto(-321.91965039,1067.6281837)
-\lineto(-323.8416302,1062.31230313)
-\lineto(-325.19038796,1064.46474557)
-\lineto(-326.26939417,1065.37790297)
-\curveto(-326.96805069,1065.58766827)(-327.00406252,1066.1664796)(-327.01121094,1066.68241353)
-\curveto(-325.84291696,1066.32797801)(-324.69809138,1065.6408923)(-323.67303548,1064.8887115)
-\lineto(-323.30212709,1065.05177533)
-\lineto(-324.17881964,1065.83448167)
-\lineto(-325.86476684,1066.81286459)
-\lineto(-327.95534137,1068.11737516)
-\lineto(-325.93220473,1067.72602199)
-\lineto(-325.59501529,1067.59557093)
-\lineto(-322.89749976,1066.09538378)
-\curveto(-322.81834117,1066.73681162)(-323.68787181,1066.98545134)(-324.07766281,1067.36728158)
-\curveto(-324.85265902,1067.89626062)(-326.53375069,1068.21338714)(-326.26939417,1069.29143467)
-\lineto(-326.74145939,1069.68278784)
-\lineto(-323.94278703,1068.54134109)
-\lineto(-322.86378082,1067.75863475)
-\lineto(-322.22312088,1067.5303454)
-\lineto(-322.22312088,1067.85647304)
-\curveto(-323.31871681,1068.65731208)(-324.65627989,1069.32143841)(-325.5275774,1070.46549418)
-\lineto(-324.65088485,1070.33504312)
-\curveto(-324.4457388,1070.15123758)(-324.08642973,1069.69452843)(-323.8416302,1070.00891548)
-\lineto(-325.29154479,1071.28081328)
-\lineto(-327.14608671,1072.29180897)
-\curveto(-325.39000411,1071.96424637)(-323.65550163,1070.88554658)(-322.86378082,1069.32404743)
-\curveto(-322.50595539,1069.52702928)(-322.8875864,1069.97852038)(-322.9986566,1070.23720483)
-\lineto(-323.36956498,1072.09613239)
-\lineto(-324.17881964,1072.68316214)
-\lineto(-321.548742,1071.57432816)
-\curveto(-321.39390461,1072.00612116)(-322.04022933,1072.12561433)(-322.32427772,1072.32442174)
-\lineto(-323.16725132,1072.8136132)
-\curveto(-323.85929892,1072.92377912)(-324.55782057,1073.41994971)(-325.25782585,1073.13974084)
-\lineto(-327.28096249,1074.24857482)
-\lineto(-324.34741436,1073.6289323)
-\curveto(-323.55340066,1073.93379642)(-322.72216126,1073.81756453)(-322.29055877,1072.87883873)
-\lineto(-321.81849356,1072.74838767)
-\curveto(-321.98614415,1073.87209307)(-323.44509542,1074.13247338)(-324.17881964,1074.63992799)
-\lineto(-322.62774821,1074.31380035)
-\curveto(-322.74472597,1074.75328996)(-322.84692135,1075.34814678)(-323.36956498,1075.55308539)
-\lineto(-322.35799666,1075.55308539)
-\curveto(-322.1601339,1075.4118069)(-321.63749026,1075.35780016)(-321.51502306,1075.58569816)
-\curveto(-323.26705939,1076.16920573)(-325.18769044,1076.76380165)(-327.17980566,1076.75975767)
-\lineto(-327.85418454,1077.15111084)
-\lineto(-333.88987552,1076.7271449)
-\lineto(-333.95731341,1076.14011515)
-\lineto(-335.64326061,1075.61831092)
-\lineto(-335.64326061,1076.85759596)
-\lineto(-331.52954944,1078.096881)
-\lineto(-326.50542678,1078.71652352)
-\curveto(-325.1662452,1078.68191485)(-323.74856591,1078.74130922)(-322.59402927,1079.10787669)
-\lineto(-323.40328393,1079.49922986)
-\lineto(-331.49583049,1078.71652352)
-\lineto(-331.49583049,1078.72304607)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.94160672,1100.89972571)
-\curveto(-423.19584756,1100.88148865)(-422.92276458,1101.14562595)(-422.94160672,1100.89972571)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.94160672,1100.89972571)
-\curveto(-423.19584756,1100.88148865)(-422.92276458,1101.14562595)(-422.94160672,1100.89972571)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-424.69499181,1100.89972571)
-\lineto(-424.4589592,1100.47575978)
-\lineto(-424.4589592,1100.41053425)
-\curveto(-424.78886535,1100.26547267)(-424.68096473,1100.73013934)(-424.69499181,1100.89972571)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-424.69499181,1100.89972571)
-\lineto(-424.4589592,1100.47575978)
-\lineto(-424.4589592,1100.41053425)
-\curveto(-424.78886535,1100.26547267)(-424.68096473,1100.73013934)(-424.69499181,1100.89972571)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.94160672,1100.89972571)
-\lineto(-422.84044989,1100.86711295)
-\lineto(-422.57069834,1099.75827897)
-\lineto(-422.773012,1099.75827897)
-\lineto(-422.94160672,1100.89972571)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.94160672,1100.89972571)
-\lineto(-422.84044989,1100.86711295)
-\lineto(-422.57069834,1099.75827897)
-\lineto(-422.773012,1099.75827897)
-\lineto(-422.94160672,1100.89972571)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-430.22489863,1100.6388236)
-\curveto(-430.47913947,1100.62058654)(-430.20605649,1100.88472384)(-430.22489863,1100.6388236)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-430.22489863,1100.6388236)
-\curveto(-430.47913947,1100.62058654)(-430.20605649,1100.88472384)(-430.22489863,1100.6388236)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-428.7412651,1100.76927466)
-\curveto(-428.49390292,1100.85606374)(-428.39611799,1100.58259919)(-428.50523249,1100.41053425)
-\lineto(-428.7412651,1100.76927466)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-428.7412651,1100.76927466)
-\curveto(-428.49390292,1100.85606374)(-428.39611799,1100.58259919)(-428.50523249,1100.41053425)
-\lineto(-428.7412651,1100.76927466)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-427.66225889,1100.76927466)
-\curveto(-427.38873081,1100.83478718)(-427.14743805,1100.51385149)(-427.2913505,1100.28008319)
-\lineto(-427.35878839,1100.28008319)
-\lineto(-427.66225889,1100.76927466)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-427.66225889,1100.76927466)
-\curveto(-427.38873081,1100.83478718)(-427.14743805,1100.51385149)(-427.2913505,1100.28008319)
-\lineto(-427.35878839,1100.28008319)
-\lineto(-427.66225889,1100.76927466)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1100.24747043)
-\lineto(-430.22489863,1100.6388236)
-\lineto(-429.95514708,1100.24747043)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1100.24747043)
-\lineto(-430.22489863,1100.6388236)
-\lineto(-429.95514708,1100.24747043)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.01960784 0.01960784 0.01960784}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-430.89927752,1100.37792149)
-\curveto(-431.15351835,1100.35968443)(-430.88043537,1100.62382173)(-430.89927752,1100.37792149)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.01960784 0.01960784 0.01960784}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-430.89927752,1100.37792149)
-\curveto(-431.15351835,1100.35968443)(-430.88043537,1100.62382173)(-430.89927752,1100.37792149)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-430.62952596,1099.98656832)
-\lineto(-430.89927752,1100.37792149)
-\lineto(-430.62952596,1099.98656832)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-430.62952596,1099.98656832)
-\lineto(-430.89927752,1100.37792149)
-\lineto(-430.62952596,1099.98656832)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1100.37792149)
-\lineto(-423.24507722,1100.34530872)
-\lineto(-423.24507722,1098.97557263)
-\lineto(-423.31251511,1098.97557263)
-\lineto(-423.44739088,1100.21485766)
-\lineto(-423.34623405,1100.37792149)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1100.37792149)
-\lineto(-423.24507722,1100.34530872)
-\lineto(-423.24507722,1098.97557263)
-\lineto(-423.31251511,1098.97557263)
-\lineto(-423.44739088,1100.21485766)
-\lineto(-423.34623405,1100.37792149)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1100.24747043)
-\lineto(-429.71911447,1099.88873002)
-\lineto(-429.95514708,1100.24747043)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1100.24747043)
-\lineto(-429.71911447,1099.88873002)
-\lineto(-429.95514708,1100.24747043)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-428.47151354,1100.24747043)
-\lineto(-428.23548094,1099.62782791)
-\lineto(-428.30291882,1099.62782791)
-\lineto(-428.47151354,1100.24747043)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-428.47151354,1100.24747043)
-\lineto(-428.23548094,1099.62782791)
-\lineto(-428.30291882,1099.62782791)
-\lineto(-428.47151354,1100.24747043)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.97828372,1100.11701937)
-\curveto(-431.73092155,1100.20380846)(-431.63313661,1099.93034391)(-431.74225112,1099.75827897)
-\lineto(-431.97828372,1100.11701937)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.97828372,1100.11701937)
-\curveto(-431.73092155,1100.20380846)(-431.63313661,1099.93034391)(-431.74225112,1099.75827897)
-\lineto(-431.97828372,1100.11701937)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.35017813,1099.7256662)
-\lineto(-435.45133496,1099.95395555)
-\lineto(-435.35017813,1099.7256662)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.35017813,1099.7256662)
-\lineto(-435.45133496,1099.95395555)
-\lineto(-435.35017813,1099.7256662)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-430.49465019,1099.7256662)
-\lineto(-430.62952596,1099.98656832)
-\lineto(-430.49465019,1099.7256662)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-430.49465019,1099.7256662)
-\lineto(-430.62952596,1099.98656832)
-\lineto(-430.49465019,1099.7256662)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-426.85300423,1099.07341092)
-\lineto(-427.25763156,1099.85611726)
-\lineto(-427.22391262,1099.95395555)
-\lineto(-426.98788001,1099.59521515)
-\lineto(-426.85300423,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-426.85300423,1099.07341092)
-\lineto(-427.25763156,1099.85611726)
-\lineto(-427.22391262,1099.95395555)
-\lineto(-426.98788001,1099.59521515)
-\lineto(-426.85300423,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-424.56011604,1099.98656832)
-\lineto(-424.4589592,1099.95395555)
-\lineto(-424.32408343,1098.84512157)
-\lineto(-424.52639709,1098.84512157)
-\lineto(-424.56011604,1099.98656832)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-424.56011604,1099.98656832)
-\lineto(-424.4589592,1099.95395555)
-\lineto(-424.32408343,1098.84512157)
-\lineto(-424.52639709,1098.84512157)
-\lineto(-424.56011604,1099.98656832)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-434.00142037,1099.07341092)
-\lineto(-434.4060477,1099.20386197)
-\lineto(-434.27117192,1098.55160669)
-\lineto(-434.23745298,1097.80151312)
-\lineto(-434.6420803,1099.56260238)
-\lineto(-434.27117192,1099.85611726)
-\lineto(-434.13629614,1099.7256662)
-\lineto(-434.00142037,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-434.00142037,1099.07341092)
-\lineto(-434.4060477,1099.20386197)
-\lineto(-434.27117192,1098.55160669)
-\lineto(-434.23745298,1097.80151312)
-\lineto(-434.6420803,1099.56260238)
-\lineto(-434.27117192,1099.85611726)
-\lineto(-434.13629614,1099.7256662)
-\lineto(-434.00142037,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.35017813,1099.7256662)
-\lineto(-435.11414552,1099.30170027)
-\lineto(-435.11414552,1099.23647474)
-\curveto(-435.44405167,1099.09141316)(-435.33615105,1099.55607983)(-435.35017813,1099.7256662)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.35017813,1099.7256662)
-\lineto(-435.11414552,1099.30170027)
-\lineto(-435.11414552,1099.23647474)
-\curveto(-435.44405167,1099.09141316)(-435.33615105,1099.55607983)(-435.35017813,1099.7256662)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-432.65266261,1097.89935141)
-\lineto(-432.88869521,1098.84512157)
-\lineto(-433.15844677,1099.69305344)
-\lineto(-432.9561331,1099.69305344)
-\lineto(-432.75381944,1099.10602368)
-\lineto(-432.55150577,1099.04079815)
-\lineto(-432.1131595,1097.37754718)
-\lineto(-431.97828372,1097.11664507)
-\lineto(-432.21431633,1094.86636434)
-\lineto(-432.14687844,1094.67068775)
-\lineto(-432.24803528,1094.63807499)
-\lineto(-432.38291105,1094.76852605)
-\lineto(-432.38291105,1096.46438978)
-\lineto(-432.55150577,1097.86673864)
-\lineto(-432.65266261,1097.89935141)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-432.65266261,1097.89935141)
-\lineto(-432.88869521,1098.84512157)
-\lineto(-433.15844677,1099.69305344)
-\lineto(-432.9561331,1099.69305344)
-\lineto(-432.75381944,1099.10602368)
-\lineto(-432.55150577,1099.04079815)
-\lineto(-432.1131595,1097.37754718)
-\lineto(-431.97828372,1097.11664507)
-\lineto(-432.21431633,1094.86636434)
-\lineto(-432.14687844,1094.67068775)
-\lineto(-432.24803528,1094.63807499)
-\lineto(-432.38291105,1094.76852605)
-\lineto(-432.38291105,1096.46438978)
-\lineto(-432.55150577,1097.86673864)
-\lineto(-432.65266261,1097.89935141)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-430.22489863,1099.20386197)
-\lineto(-430.49465019,1099.7256662)
-\lineto(-430.22489863,1099.20386197)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-430.22489863,1099.20386197)
-\lineto(-430.49465019,1099.7256662)
-\lineto(-430.22489863,1099.20386197)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.41564398,1099.20386197)
-\lineto(-429.65167659,1099.69305344)
-\lineto(-429.41564398,1099.20386197)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.41564398,1099.20386197)
-\lineto(-429.65167659,1099.69305344)
-\lineto(-429.41564398,1099.20386197)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.5736564,1098.94295986)
-\lineto(-431.67481323,1099.56260238)
-\lineto(-431.5736564,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.5736564,1098.94295986)
-\lineto(-431.67481323,1099.56260238)
-\lineto(-431.5736564,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.80673095,1099.59521515)
-\lineto(-422.57069834,1099.49737685)
-\lineto(-422.80673095,1099.59521515)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.80673095,1099.59521515)
-\lineto(-422.57069834,1099.49737685)
-\lineto(-422.80673095,1099.59521515)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-428.06688622,1099.07341092)
-\lineto(-428.16804305,1099.43215132)
-\lineto(-428.06688622,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-428.06688622,1099.07341092)
-\lineto(-428.16804305,1099.43215132)
-\lineto(-428.06688622,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-341.61151371,1099.33431303)
-\lineto(-341.98242209,1099.04079815)
-\lineto(-342.72423886,1098.4537684)
-\lineto(-342.92655252,1098.4537684)
-\lineto(-342.31961153,1098.97557263)
-\lineto(-341.61151371,1099.33431303)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-341.61151371,1099.33431303)
-\lineto(-341.98242209,1099.04079815)
-\lineto(-342.72423886,1098.4537684)
-\lineto(-342.92655252,1098.4537684)
-\lineto(-342.31961153,1098.97557263)
-\lineto(-341.61151371,1099.33431303)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1098.55160669)
-\lineto(-430.22489863,1099.20386197)
-\lineto(-429.95514708,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1098.55160669)
-\lineto(-430.22489863,1099.20386197)
-\lineto(-429.95514708,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1098.94295986)
-\lineto(-429.41564398,1099.20386197)
-\lineto(-429.2807682,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1098.94295986)
-\lineto(-429.41564398,1099.20386197)
-\lineto(-429.2807682,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.67185517,1099.20386197)
-\curveto(-422.41761433,1099.22209903)(-422.69069732,1098.95796173)(-422.67185517,1099.20386197)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.67185517,1099.20386197)
-\curveto(-422.41761433,1099.22209903)(-422.69069732,1098.95796173)(-422.67185517,1099.20386197)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.35017813,1099.07341092)
-\lineto(-434.97926974,1098.38854287)
-\lineto(-434.97926974,1098.32331734)
-\lineto(-435.31645918,1098.97557263)
-\lineto(-435.35017813,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.35017813,1099.07341092)
-\lineto(-434.97926974,1098.38854287)
-\lineto(-434.97926974,1098.32331734)
-\lineto(-435.31645918,1098.97557263)
-\lineto(-435.35017813,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.86654459,1098.8125088)
-\lineto(-434.00142037,1099.07341092)
-\lineto(-433.86654459,1098.8125088)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.86654459,1098.8125088)
-\lineto(-434.00142037,1099.07341092)
-\lineto(-433.86654459,1098.8125088)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-428.06688622,1099.07341092)
-\lineto(-427.96572938,1098.58421946)
-\lineto(-428.06688622,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-428.06688622,1099.07341092)
-\lineto(-427.96572938,1098.58421946)
-\lineto(-428.06688622,1099.07341092)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-426.71812845,1098.55160669)
-\lineto(-426.85300423,1099.07341092)
-\lineto(-426.71812845,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-426.71812845,1098.55160669)
-\lineto(-426.85300423,1099.07341092)
-\lineto(-426.71812845,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.43878062,1098.29070458)
-\lineto(-431.5736564,1098.94295986)
-\lineto(-431.43878062,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.43878062,1098.29070458)
-\lineto(-431.5736564,1098.94295986)
-\lineto(-431.43878062,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1098.94295986)
-\lineto(-429.04473559,1098.32331734)
-\lineto(-429.11217348,1098.32331734)
-\lineto(-429.2807682,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1098.94295986)
-\lineto(-429.04473559,1098.32331734)
-\lineto(-429.11217348,1098.32331734)
-\lineto(-429.2807682,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.67185517,1098.94295986)
-\lineto(-422.57069834,1098.19286629)
-\lineto(-422.63813623,1098.19286629)
-\lineto(-422.67185517,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.67185517,1098.94295986)
-\lineto(-422.57069834,1098.19286629)
-\lineto(-422.63813623,1098.19286629)
-\lineto(-422.67185517,1098.94295986)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.59679304,1098.02980246)
-\lineto(-433.69794987,1098.06241523)
-\lineto(-433.86654459,1098.8125088)
-\lineto(-433.59679304,1098.02980246)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.59679304,1098.02980246)
-\lineto(-433.69794987,1098.06241523)
-\lineto(-433.86654459,1098.8125088)
-\lineto(-433.59679304,1098.02980246)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1098.8125088)
-\lineto(-423.11020144,1098.77989604)
-\lineto(-423.11020144,1097.67106206)
-\lineto(-423.17763933,1097.67106206)
-\lineto(-423.34623405,1098.68205775)
-\lineto(-423.34623405,1098.8125088)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1098.8125088)
-\lineto(-423.11020144,1098.77989604)
-\lineto(-423.11020144,1097.67106206)
-\lineto(-423.17763933,1097.67106206)
-\lineto(-423.34623405,1098.68205775)
-\lineto(-423.34623405,1098.8125088)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-339.45350129,1093.85536865)
-\lineto(-337.86871092,1094.083658)
-\curveto(-338.17218141,1093.4916711)(-338.68835101,1092.88194286)(-339.35234446,1092.45301979)
-\lineto(-340.16159911,1091.40941134)
-\curveto(-340.42851827,1091.109113)(-340.85216309,1090.7812895)(-340.7685401,1090.36580288)
-\lineto(-338.61052769,1092.38779426)
-\lineto(-336.78970471,1092.90959849)
-\lineto(-337.26176992,1092.2573432)
-\lineto(-338.20590036,1090.95283264)
-\curveto(-338.69887132,1090.35575815)(-339.6288398,1089.6274499)(-339.15003079,1088.93084126)
-\curveto(-337.35213669,1090.70758465)(-335.38969415,1092.81306471)(-332.74343142,1093.36617719)
-\lineto(-330.58541901,1093.82275589)
-\curveto(-333.69430565,1092.56272913)(-336.82746993,1090.51843062)(-338.77912241,1087.72416898)
-\curveto(-341.29050936,1090.54973887)(-345.07512364,1092.18820414)(-348.75992984,1092.94221125)
-\curveto(-353.3146848,1093.36043734)(-358.11761119,1092.22016465)(-362.21378851,1094.27933458)
-\curveto(-363.29778513,1095.052518)(-364.24097143,1096.09782231)(-364.50667671,1097.34493442)
-\lineto(-363.49510839,1097.0840323)
-\curveto(-361.2116615,1095.48861588)(-358.46693945,1096.35272368)(-356.0769407,1097.0840323)
-\lineto(-355.7734702,1096.59484084)
-\lineto(-356.6164438,1096.10564938)
-\curveto(-358.20528045,1095.72342778)(-359.65924131,1094.98416164)(-361.40453386,1095.12726645)
-\lineto(-361.70800435,1094.76852605)
-\curveto(-359.99238448,1094.33986387)(-358.2835084,1095.00946915)(-356.6164438,1095.38816857)
-\lineto(-357.29082268,1094.93158987)
-\lineto(-359.01048883,1094.11627076)
-\lineto(-356.81875747,1094.14888353)
-\lineto(-356.58272486,1094.11627076)
-\lineto(-353.31198729,1095.77952174)
-\lineto(-352.9410789,1095.55123239)
-\lineto(-350.34472021,1096.82313019)
-\lineto(-349.97381183,1096.59484084)
-\lineto(-352.43529474,1095.45339409)
-\lineto(-354.12124194,1094.5402367)
-\curveto(-352.47440872,1094.75730726)(-350.84510934,1095.43787042)(-349.40058978,1096.30132596)
-\lineto(-348.62505407,1096.07303661)
-\lineto(-344.7473755,1098.12764076)
-\lineto(-345.69150593,1094.80113881)
-\lineto(-346.09613326,1094.01843247)
-\curveto(-346.03071851,1093.54880867)(-345.33098298,1094.50892844)(-345.15200283,1094.80113881)
-\lineto(-344.41018606,1095.90997279)
-\curveto(-343.21680519,1097.14325708)(-341.80708358,1098.29853164)(-340.02672334,1098.38854287)
-\curveto(-341.31640551,1097.46586255)(-342.94543513,1096.65093479)(-343.80324507,1095.19249198)
-\curveto(-344.24873976,1094.51505964)(-344.73537156,1093.76013938)(-344.81481339,1092.97482402)
-\lineto(-344.57878078,1092.94221125)
-\curveto(-343.49599805,1096.16435235)(-339.89589383,1098.34158049)(-336.51995316,1098.77989604)
-\lineto(-339.15003079,1097.86673864)
-\lineto(-341.57779476,1096.30132596)
-\curveto(-342.60406454,1095.10913376)(-343.32983109,1093.36617719)(-342.96027147,1091.8986028)
-\lineto(-342.69051991,1092.42040703)
-\curveto(-342.87894137,1094.89375906)(-340.81439787,1096.64702126)(-338.64424663,1097.50799824)
-\lineto(-337.32920781,1097.73628759)
-\lineto(-339.21746868,1096.6274536)
-\lineto(-341.30804321,1094.73591328)
-\curveto(-342.1321342,1093.72204767)(-342.31947665,1092.26517027)(-341.98242209,1091.01805817)
-\lineto(-339.89184756,1093.10527507)
-\lineto(-339.45350129,1093.85536865)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-339.45350129,1093.85536865)
-\lineto(-337.86871092,1094.083658)
-\curveto(-338.17218141,1093.4916711)(-338.68835101,1092.88194286)(-339.35234446,1092.45301979)
-\lineto(-340.16159911,1091.40941134)
-\curveto(-340.42851827,1091.109113)(-340.85216309,1090.7812895)(-340.7685401,1090.36580288)
-\lineto(-338.61052769,1092.38779426)
-\lineto(-336.78970471,1092.90959849)
-\lineto(-337.26176992,1092.2573432)
-\lineto(-338.20590036,1090.95283264)
-\curveto(-338.69887132,1090.35575815)(-339.6288398,1089.6274499)(-339.15003079,1088.93084126)
-\curveto(-337.35213669,1090.70758465)(-335.38969415,1092.81306471)(-332.74343142,1093.36617719)
-\lineto(-330.58541901,1093.82275589)
-\curveto(-333.69430565,1092.56272913)(-336.82746993,1090.51843062)(-338.77912241,1087.72416898)
-\curveto(-341.29050936,1090.54973887)(-345.07512364,1092.18820414)(-348.75992984,1092.94221125)
-\curveto(-353.3146848,1093.36043734)(-358.11761119,1092.22016465)(-362.21378851,1094.27933458)
-\curveto(-363.29778513,1095.052518)(-364.24097143,1096.09782231)(-364.50667671,1097.34493442)
-\lineto(-363.49510839,1097.0840323)
-\curveto(-361.2116615,1095.48861588)(-358.46693945,1096.35272368)(-356.0769407,1097.0840323)
-\lineto(-355.7734702,1096.59484084)
-\lineto(-356.6164438,1096.10564938)
-\curveto(-358.20528045,1095.72342778)(-359.65924131,1094.98416164)(-361.40453386,1095.12726645)
-\lineto(-361.70800435,1094.76852605)
-\curveto(-359.99238448,1094.33986387)(-358.2835084,1095.00946915)(-356.6164438,1095.38816857)
-\lineto(-357.29082268,1094.93158987)
-\lineto(-359.01048883,1094.11627076)
-\lineto(-356.81875747,1094.14888353)
-\lineto(-356.58272486,1094.11627076)
-\lineto(-353.31198729,1095.77952174)
-\lineto(-352.9410789,1095.55123239)
-\lineto(-350.34472021,1096.82313019)
-\lineto(-349.97381183,1096.59484084)
-\lineto(-352.43529474,1095.45339409)
-\lineto(-354.12124194,1094.5402367)
-\curveto(-352.47440872,1094.75730726)(-350.84510934,1095.43787042)(-349.40058978,1096.30132596)
-\lineto(-348.62505407,1096.07303661)
-\lineto(-344.7473755,1098.12764076)
-\lineto(-345.69150593,1094.80113881)
-\lineto(-346.09613326,1094.01843247)
-\curveto(-346.03071851,1093.54880867)(-345.33098298,1094.50892844)(-345.15200283,1094.80113881)
-\lineto(-344.41018606,1095.90997279)
-\curveto(-343.21680519,1097.14325708)(-341.80708358,1098.29853164)(-340.02672334,1098.38854287)
-\curveto(-341.31640551,1097.46586255)(-342.94543513,1096.65093479)(-343.80324507,1095.19249198)
-\curveto(-344.24873976,1094.51505964)(-344.73537156,1093.76013938)(-344.81481339,1092.97482402)
-\lineto(-344.57878078,1092.94221125)
-\curveto(-343.49599805,1096.16435235)(-339.89589383,1098.34158049)(-336.51995316,1098.77989604)
-\lineto(-339.15003079,1097.86673864)
-\lineto(-341.57779476,1096.30132596)
-\curveto(-342.60406454,1095.10913376)(-343.32983109,1093.36617719)(-342.96027147,1091.8986028)
-\lineto(-342.69051991,1092.42040703)
-\curveto(-342.87894137,1094.89375906)(-340.81439787,1096.64702126)(-338.64424663,1097.50799824)
-\lineto(-337.32920781,1097.73628759)
-\lineto(-339.21746868,1096.6274536)
-\lineto(-341.30804321,1094.73591328)
-\curveto(-342.1321342,1093.72204767)(-342.31947665,1092.26517027)(-341.98242209,1091.01805817)
-\lineto(-339.89184756,1093.10527507)
-\lineto(-339.45350129,1093.85536865)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.72207253,1098.68205775)
-\curveto(-438.46783169,1098.70029481)(-438.74091468,1098.43615751)(-438.72207253,1098.68205775)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.72207253,1098.68205775)
-\curveto(-438.46783169,1098.70029481)(-438.74091468,1098.43615751)(-438.72207253,1098.68205775)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.96868744,1098.29070458)
-\lineto(-437.20472005,1098.64944498)
-\lineto(-436.96868744,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.96868744,1098.29070458)
-\lineto(-437.20472005,1098.64944498)
-\lineto(-436.96868744,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-424.42524026,1098.68205775)
-\lineto(-424.32408343,1098.64944498)
-\lineto(-424.32408343,1097.01880677)
-\lineto(-424.39152132,1097.01880677)
-\lineto(-424.42524026,1098.68205775)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-424.42524026,1098.68205775)
-\lineto(-424.32408343,1098.64944498)
-\lineto(-424.32408343,1097.01880677)
-\lineto(-424.39152132,1097.01880677)
-\lineto(-424.42524026,1098.68205775)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1098.55160669)
-\lineto(-429.71911447,1098.19286629)
-\lineto(-429.95514708,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.95514708,1098.55160669)
-\lineto(-429.71911447,1098.19286629)
-\lineto(-429.95514708,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-426.71812845,1098.55160669)
-\lineto(-426.61697162,1098.51899393)
-\lineto(-426.4483769,1097.76890035)
-\lineto(-426.34722007,1096.88835572)
-\lineto(-426.4483769,1096.85574295)
-\lineto(-426.54953373,1096.88835572)
-\lineto(-426.58325268,1097.63844929)
-\lineto(-426.71812845,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-426.71812845,1098.55160669)
-\lineto(-426.61697162,1098.51899393)
-\lineto(-426.4483769,1097.76890035)
-\lineto(-426.34722007,1096.88835572)
-\lineto(-426.4483769,1096.85574295)
-\lineto(-426.54953373,1096.88835572)
-\lineto(-426.58325268,1097.63844929)
-\lineto(-426.71812845,1098.55160669)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.72207253,1098.42115563)
-\curveto(-438.52663753,1098.47559286)(-438.23490123,1098.2629185)(-438.35116415,1098.06241523)
-\lineto(-438.72207253,1098.42115563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.72207253,1098.42115563)
-\curveto(-438.52663753,1098.47559286)(-438.23490123,1098.2629185)(-438.35116415,1098.06241523)
-\lineto(-438.72207253,1098.42115563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-427.93201044,1098.42115563)
-\lineto(-427.83085361,1098.38854287)
-\lineto(-427.66225889,1097.37754718)
-\curveto(-427.46088935,1097.08024922)(-427.46088935,1096.63123669)(-427.66225889,1096.33393873)
-\lineto(-427.79713466,1095.55123239)
-\lineto(-427.96572938,1094.67068775)
-\lineto(-428.03316727,1094.67068775)
-\lineto(-427.93201044,1095.29033027)
-\lineto(-427.79713466,1095.94258556)
-\lineto(-427.83085361,1096.56222808)
-\lineto(-427.93201044,1097.11664507)
-\curveto(-427.7379242,1097.37859079)(-427.7379242,1097.76785674)(-427.93201044,1098.02980246)
-\lineto(-427.93201044,1098.42115563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-427.93201044,1098.42115563)
-\lineto(-427.83085361,1098.38854287)
-\lineto(-427.66225889,1097.37754718)
-\curveto(-427.46088935,1097.08024922)(-427.46088935,1096.63123669)(-427.66225889,1096.33393873)
-\lineto(-427.79713466,1095.55123239)
-\lineto(-427.96572938,1094.67068775)
-\lineto(-428.03316727,1094.67068775)
-\lineto(-427.93201044,1095.29033027)
-\lineto(-427.79713466,1095.94258556)
-\lineto(-427.83085361,1096.56222808)
-\lineto(-427.93201044,1097.11664507)
-\curveto(-427.7379242,1097.37859079)(-427.7379242,1097.76785674)(-427.93201044,1098.02980246)
-\lineto(-427.93201044,1098.42115563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.96868744,1098.29070458)
-\lineto(-436.73265483,1097.80151312)
-\lineto(-436.96868744,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.96868744,1098.29070458)
-\lineto(-436.73265483,1097.80151312)
-\lineto(-436.96868744,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.43878062,1098.29070458)
-\lineto(-431.33762379,1097.67106206)
-\lineto(-431.43878062,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.43878062,1098.29070458)
-\lineto(-431.33762379,1097.67106206)
-\lineto(-431.43878062,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-343.9044019,1098.29070458)
-\lineto(-343.39861774,1098.12764076)
-\lineto(-343.80324507,1097.540611)
-\curveto(-344.04237982,1097.40872498)(-344.04237982,1097.21591832)(-343.80324507,1097.0840323)
-\lineto(-343.80324507,1096.88835572)
-\lineto(-345.42175438,1095.19249198)
-\lineto(-345.62406805,1095.19249198)
-\curveto(-345.29159926,1096.30158687)(-344.70124799,1097.38928778)(-343.9044019,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-343.9044019,1098.29070458)
-\lineto(-343.39861774,1098.12764076)
-\lineto(-343.80324507,1097.540611)
-\curveto(-344.04237982,1097.40872498)(-344.04237982,1097.21591832)(-343.80324507,1097.0840323)
-\lineto(-343.80324507,1096.88835572)
-\lineto(-345.42175438,1095.19249198)
-\lineto(-345.62406805,1095.19249198)
-\curveto(-345.29159926,1096.30158687)(-344.70124799,1097.38928778)(-343.9044019,1098.29070458)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.34058185,1098.16025352)
-\curveto(-440.08634101,1098.17849058)(-440.35943748,1097.91435328)(-440.34058185,1098.16025352)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.34058185,1098.16025352)
-\curveto(-440.08634101,1098.17849058)(-440.35943748,1097.91435328)(-440.34058185,1098.16025352)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.21530235,1098.16025352)
-\lineto(-434.97926974,1098.06241523)
-\lineto(-435.21530235,1098.16025352)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.21530235,1098.16025352)
-\lineto(-434.97926974,1098.06241523)
-\lineto(-435.21530235,1098.16025352)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.01101665,1098.16025352)
-\lineto(-428.64010827,1097.14925783)
-\lineto(-428.84242193,1097.14925783)
-\lineto(-429.01101665,1098.16025352)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.01101665,1098.16025352)
-\lineto(-428.64010827,1097.14925783)
-\lineto(-428.84242193,1097.14925783)
-\lineto(-429.01101665,1098.16025352)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.59679304,1098.02980246)
-\lineto(-433.49563621,1097.67106206)
-\lineto(-433.59679304,1098.02980246)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.59679304,1098.02980246)
-\lineto(-433.49563621,1097.67106206)
-\lineto(-433.59679304,1098.02980246)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-432.65266261,1097.89935141)
-\lineto(-432.78753838,1096.85574295)
-\lineto(-432.88869521,1096.36655149)
-\lineto(-432.92241416,1097.37754718)
-\curveto(-433.06255009,1097.56030911)(-433.14563357,1097.85278038)(-432.88869521,1097.9971897)
-\lineto(-432.65266261,1097.89935141)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-432.65266261,1097.89935141)
-\lineto(-432.78753838,1096.85574295)
-\lineto(-432.88869521,1096.36655149)
-\lineto(-432.92241416,1097.37754718)
-\curveto(-433.06255009,1097.56030911)(-433.14563357,1097.85278038)(-432.88869521,1097.9971897)
-\lineto(-432.65266261,1097.89935141)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.55051975,1097.76890035)
-\lineto(-429.65167659,1097.9971897)
-\lineto(-429.55051975,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.55051975,1097.76890035)
-\lineto(-429.65167659,1097.9971897)
-\lineto(-429.55051975,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.07083029,1097.76890035)
-\curveto(-440.32507113,1097.75066329)(-440.05197466,1098.01480059)(-440.07083029,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.07083029,1097.76890035)
-\curveto(-440.32507113,1097.75066329)(-440.05197466,1098.01480059)(-440.07083029,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.18256943,1097.76890035)
-\curveto(-438.43681027,1097.75066329)(-438.16372728,1098.01480059)(-438.18256943,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.18256943,1097.76890035)
-\curveto(-438.43681027,1097.75066329)(-438.16372728,1098.01480059)(-438.18256943,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1097.63844929)
-\lineto(-440.07083029,1097.76890035)
-\lineto(-439.93595452,1097.63844929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1097.63844929)
-\lineto(-440.07083029,1097.76890035)
-\lineto(-439.93595452,1097.63844929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.91281788,1097.24709612)
-\lineto(-438.18256943,1097.76890035)
-\lineto(-437.91281788,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.91281788,1097.24709612)
-\lineto(-438.18256943,1097.76890035)
-\lineto(-437.91281788,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.88968123,1097.24709612)
-\lineto(-435.99083807,1097.27970889)
-\lineto(-436.26058962,1097.73628759)
-\curveto(-435.97236008,1097.85639387)(-435.82291772,1097.46521029)(-435.88968123,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.88968123,1097.24709612)
-\lineto(-435.99083807,1097.27970889)
-\lineto(-436.26058962,1097.73628759)
-\curveto(-435.97236008,1097.85639387)(-435.82291772,1097.46521029)(-435.88968123,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.08042658,1097.76890035)
-\lineto(-434.97926974,1097.73628759)
-\lineto(-434.81067502,1096.46438978)
-\lineto(-434.9455508,1096.33393873)
-\lineto(-435.04670763,1096.36655149)
-\lineto(-435.08042658,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.08042658,1097.76890035)
-\lineto(-434.97926974,1097.73628759)
-\lineto(-434.81067502,1096.46438978)
-\lineto(-434.9455508,1096.33393873)
-\lineto(-435.04670763,1096.36655149)
-\lineto(-435.08042658,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.55051975,1097.76890035)
-\lineto(-429.31448715,1097.21448336)
-\lineto(-429.2807682,1097.11664507)
-\lineto(-429.31448715,1097.01880677)
-\curveto(-429.73138817,1096.9081321)(-429.48470038,1097.54543769)(-429.55051975,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.55051975,1097.76890035)
-\lineto(-429.31448715,1097.21448336)
-\lineto(-429.2807682,1097.11664507)
-\lineto(-429.31448715,1097.01880677)
-\curveto(-429.73138817,1096.9081321)(-429.48470038,1097.54543769)(-429.55051975,1097.76890035)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.80107874,1097.50799824)
-\lineto(-439.93595452,1097.63844929)
-\lineto(-439.80107874,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.80107874,1097.50799824)
-\lineto(-439.93595452,1097.63844929)
-\lineto(-439.80107874,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.42918434,1097.11664507)
-\curveto(-436.64673896,1097.15545426)(-436.77918698,1097.41511709)(-436.66521695,1097.60583653)
-\lineto(-436.59777906,1097.60583653)
-\lineto(-436.42918434,1097.11664507)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.42918434,1097.11664507)
-\curveto(-436.64673896,1097.15545426)(-436.77918698,1097.41511709)(-436.66521695,1097.60583653)
-\lineto(-436.59777906,1097.60583653)
-\lineto(-436.42918434,1097.11664507)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-334.73284912,1097.63844929)
-\lineto(-334.36194074,1097.60583653)
-\lineto(-334.36194074,1097.41015995)
-\lineto(-334.59797335,1097.37754718)
-\lineto(-335.64326061,1097.14925783)
-\curveto(-335.94834962,1097.28257881)(-335.63082506,1097.58078993)(-335.407228,1097.50799824)
-\lineto(-334.73284912,1097.63844929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.73284912,1097.63844929)
-\lineto(-334.36194074,1097.60583653)
-\lineto(-334.36194074,1097.41015995)
-\lineto(-334.59797335,1097.37754718)
-\lineto(-335.64326061,1097.14925783)
-\curveto(-335.94834962,1097.28257881)(-335.63082506,1097.58078993)(-335.407228,1097.50799824)
-\lineto(-334.73284912,1097.63844929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.34058185,1097.24709612)
-\lineto(-440.84636601,1097.41015995)
-\lineto(-440.84636601,1097.47538547)
-\curveto(-440.64917762,1097.58557748)(-440.38077483,1097.45747454)(-440.34058185,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.34058185,1097.24709612)
-\lineto(-440.84636601,1097.41015995)
-\lineto(-440.84636601,1097.47538547)
-\curveto(-440.64917762,1097.58557748)(-440.38077483,1097.45747454)(-440.34058185,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.12669986,1096.85574295)
-\lineto(-439.80107874,1097.50799824)
-\curveto(-439.4856043,1097.50451128)(-439.13034151,1097.16086798)(-439.12669986,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.12669986,1096.85574295)
-\lineto(-439.80107874,1097.50799824)
-\curveto(-439.4856043,1097.50451128)(-439.13034151,1097.16086798)(-439.12669986,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-434.13629614,1097.50799824)
-\lineto(-434.03513931,1096.88835572)
-\lineto(-434.13629614,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-434.13629614,1097.50799824)
-\lineto(-434.03513931,1096.88835572)
-\lineto(-434.13629614,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.46191726,1097.50799824)
-\lineto(-433.22588465,1096.95358125)
-\lineto(-433.22588465,1096.88835572)
-\curveto(-433.60596459,1096.7562088)(-433.41875701,1097.31388707)(-433.46191726,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.46191726,1097.50799824)
-\lineto(-433.22588465,1096.95358125)
-\lineto(-433.22588465,1096.88835572)
-\curveto(-433.60596459,1096.7562088)(-433.41875701,1097.31388707)(-433.46191726,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1097.50799824)
-\lineto(-431.20274801,1096.88835572)
-\lineto(-431.30390484,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1097.50799824)
-\lineto(-431.20274801,1096.88835572)
-\lineto(-431.30390484,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1097.50799824)
-\curveto(-422.95711744,1097.5262353)(-423.23020042,1097.262098)(-423.21135828,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1097.50799824)
-\curveto(-422.95711744,1097.5262353)(-423.23020042,1097.262098)(-423.21135828,1097.50799824)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.20570607,1097.11664507)
-\lineto(-440.34058185,1097.24709612)
-\lineto(-440.20570607,1097.11664507)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.20570607,1097.11664507)
-\lineto(-440.34058185,1097.24709612)
-\lineto(-440.20570607,1097.11664507)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.50819055,1096.33393873)
-\lineto(-437.60934738,1096.36655149)
-\lineto(-437.91281788,1097.24709612)
-\lineto(-437.81166104,1097.21448336)
-\lineto(-437.50819055,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.50819055,1096.33393873)
-\lineto(-437.60934738,1096.36655149)
-\lineto(-437.91281788,1097.24709612)
-\lineto(-437.81166104,1097.21448336)
-\lineto(-437.50819055,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.88968123,1097.24709612)
-\lineto(-435.7885244,1096.88835572)
-\lineto(-435.88968123,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.88968123,1097.24709612)
-\lineto(-435.7885244,1096.88835572)
-\lineto(-435.88968123,1097.24709612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.07083029,1096.98619401)
-\lineto(-440.20570607,1097.11664507)
-\lineto(-440.07083029,1096.98619401)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.07083029,1096.98619401)
-\lineto(-440.20570607,1097.11664507)
-\lineto(-440.07083029,1096.98619401)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.42918434,1097.11664507)
-\lineto(-436.15943279,1096.59484084)
-\lineto(-436.05827595,1096.10564938)
-\lineto(-436.42918434,1096.98619401)
-\lineto(-436.42918434,1097.11664507)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.42918434,1097.11664507)
-\lineto(-436.15943279,1096.59484084)
-\lineto(-436.05827595,1096.10564938)
-\lineto(-436.42918434,1096.98619401)
-\lineto(-436.42918434,1097.11664507)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-338.50937085,1096.46438978)
-\lineto(-338.47565191,1096.56222808)
-\lineto(-337.16061309,1097.11664507)
-\lineto(-336.92458048,1097.0840323)
-\lineto(-336.92458048,1097.01880677)
-\lineto(-338.50937085,1096.46438978)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-338.50937085,1096.46438978)
-\lineto(-338.47565191,1096.56222808)
-\lineto(-337.16061309,1097.11664507)
-\lineto(-336.92458048,1097.0840323)
-\lineto(-336.92458048,1097.01880677)
-\lineto(-338.50937085,1096.46438978)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1096.85574295)
-\lineto(-440.07083029,1096.98619401)
-\lineto(-439.93595452,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1096.85574295)
-\lineto(-440.07083029,1096.98619401)
-\lineto(-439.93595452,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.66620297,1096.59484084)
-\lineto(-439.93595452,1096.85574295)
-\lineto(-439.66620297,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.66620297,1096.59484084)
-\lineto(-439.93595452,1096.85574295)
-\lineto(-439.66620297,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.99182408,1096.7252919)
-\lineto(-439.12669986,1096.85574295)
-\lineto(-438.99182408,1096.7252919)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.99182408,1096.7252919)
-\lineto(-439.12669986,1096.85574295)
-\lineto(-438.99182408,1096.7252919)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1095.94258556)
-\lineto(-429.38192503,1095.97519832)
-\lineto(-429.38192503,1096.82313019)
-\lineto(-429.31448715,1096.82313019)
-\lineto(-429.2807682,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1095.94258556)
-\lineto(-429.38192503,1095.97519832)
-\lineto(-429.38192503,1096.82313019)
-\lineto(-429.31448715,1096.82313019)
-\lineto(-429.2807682,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-424.56011604,1096.85574295)
-\curveto(-424.3058752,1096.87398001)(-424.57895818,1096.60984271)(-424.56011604,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-424.56011604,1096.85574295)
-\curveto(-424.3058752,1096.87398001)(-424.57895818,1096.60984271)(-424.56011604,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1096.85574295)
-\lineto(-422.97532567,1096.75790466)
-\lineto(-423.21135828,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1096.85574295)
-\lineto(-422.97532567,1096.75790466)
-\lineto(-423.21135828,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-410.39815954,1096.85574295)
-\lineto(-410.16212693,1096.82313019)
-\lineto(-409.99353221,1096.46438978)
-\lineto(-410.12840799,1094.63807499)
-\lineto(-410.16212693,1094.27933458)
-\lineto(-410.63419215,1094.27933458)
-\lineto(-410.66791109,1094.63807499)
-\lineto(-410.39815954,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-410.39815954,1096.85574295)
-\lineto(-410.16212693,1096.82313019)
-\lineto(-409.99353221,1096.46438978)
-\lineto(-410.12840799,1094.63807499)
-\lineto(-410.16212693,1094.27933458)
-\lineto(-410.63419215,1094.27933458)
-\lineto(-410.66791109,1094.63807499)
-\lineto(-410.39815954,1096.85574295)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.85694831,1096.59484084)
-\lineto(-438.99182408,1096.7252919)
-\lineto(-438.85694831,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.85694831,1096.59484084)
-\lineto(-438.99182408,1096.7252919)
-\lineto(-438.85694831,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-434.13629614,1096.7252919)
-\lineto(-433.90026353,1096.69267913)
-\lineto(-433.90026353,1095.19249198)
-\lineto(-433.96770142,1095.19249198)
-\lineto(-434.13629614,1096.7252919)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-434.13629614,1096.7252919)
-\lineto(-433.90026353,1096.69267913)
-\lineto(-433.90026353,1095.19249198)
-\lineto(-433.96770142,1095.19249198)
-\lineto(-434.13629614,1096.7252919)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1096.33393873)
-\lineto(-439.66620297,1096.59484084)
-\lineto(-439.39645141,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1096.33393873)
-\lineto(-439.66620297,1096.59484084)
-\lineto(-439.39645141,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.72207253,1096.46438978)
-\lineto(-438.85694831,1096.59484084)
-\lineto(-438.72207253,1096.46438978)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.72207253,1096.46438978)
-\lineto(-438.85694831,1096.59484084)
-\lineto(-438.72207253,1096.46438978)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-435.88968123,1096.59484084)
-\lineto(-435.65364862,1096.56222808)
-\lineto(-435.4850539,1095.02942816)
-\lineto(-435.35017813,1093.59446654)
-\lineto(-435.21530235,1093.33356442)
-\lineto(-435.35017813,1093.07266231)
-\lineto(-435.2490213,1091.67031345)
-\lineto(-435.35017813,1092.68130914)
-\lineto(-435.61992968,1093.72491759)
-\lineto(-435.75480546,1093.98581971)
-\lineto(-436.02455701,1095.8121345)
-\lineto(-435.75480546,1096.07303661)
-\lineto(-435.88968123,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-435.88968123,1096.59484084)
-\lineto(-435.65364862,1096.56222808)
-\lineto(-435.4850539,1095.02942816)
-\lineto(-435.35017813,1093.59446654)
-\lineto(-435.21530235,1093.33356442)
-\lineto(-435.35017813,1093.07266231)
-\lineto(-435.2490213,1091.67031345)
-\lineto(-435.35017813,1092.68130914)
-\lineto(-435.61992968,1093.72491759)
-\lineto(-435.75480546,1093.98581971)
-\lineto(-436.02455701,1095.8121345)
-\lineto(-435.75480546,1096.07303661)
-\lineto(-435.88968123,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.32704149,1096.59484084)
-\lineto(-433.09100888,1095.64907068)
-\lineto(-433.09100888,1095.58384515)
-\lineto(-433.29332254,1095.58384515)
-\lineto(-433.32704149,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.32704149,1096.59484084)
-\lineto(-433.09100888,1095.64907068)
-\lineto(-433.09100888,1095.58384515)
-\lineto(-433.29332254,1095.58384515)
-\lineto(-433.32704149,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1096.59484084)
-\lineto(-431.06787224,1096.49700255)
-\lineto(-431.30390484,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1096.59484084)
-\lineto(-431.06787224,1096.49700255)
-\lineto(-431.30390484,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1096.59484084)
-\lineto(-422.97532567,1096.49700255)
-\lineto(-423.21135828,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1096.59484084)
-\lineto(-422.97532567,1096.49700255)
-\lineto(-423.21135828,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-346.33216587,1096.59484084)
-\curveto(-346.07792503,1096.6130779)(-346.35100802,1096.3489406)(-346.33216587,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-346.33216587,1096.59484084)
-\curveto(-346.07792503,1096.6130779)(-346.35100802,1096.3489406)(-346.33216587,1096.59484084)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1096.20348767)
-\lineto(-442.06024799,1096.43177702)
-\lineto(-441.68933961,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1096.20348767)
-\lineto(-442.06024799,1096.43177702)
-\lineto(-441.68933961,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.7779421,1095.29033027)
-\lineto(-438.01397471,1095.45339409)
-\lineto(-438.72207253,1096.46438978)
-\curveto(-438.32257048,1096.17791926)(-437.8263625,1095.79687173)(-437.7779421,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.7779421,1095.29033027)
-\lineto(-438.01397471,1095.45339409)
-\lineto(-438.72207253,1096.46438978)
-\curveto(-438.32257048,1096.17791926)(-437.8263625,1095.79687173)(-437.7779421,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.88235295 0.88235295 0.88235295}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-338.50937085,1096.46438978)
-\lineto(-338.5430898,1095.71429621)
-\lineto(-339.55465812,1094.73591328)
-\lineto(-339.62209601,1094.5402367)
-\lineto(-339.82440967,1094.47501117)
-\lineto(-341.71267054,1092.19211768)
-\lineto(-341.30804321,1094.21410906)
-\lineto(-338.50937085,1096.46438978)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.88235295 0.88235295 0.88235295}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-338.50937085,1096.46438978)
-\lineto(-338.5430898,1095.71429621)
-\lineto(-339.55465812,1094.73591328)
-\lineto(-339.62209601,1094.5402367)
-\lineto(-339.82440967,1094.47501117)
-\lineto(-341.71267054,1092.19211768)
-\lineto(-341.30804321,1094.21410906)
-\lineto(-338.50937085,1096.46438978)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1096.33393873)
-\curveto(-439.14221057,1096.35217578)(-439.41530705,1096.08803849)(-439.39645141,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1096.33393873)
-\curveto(-439.14221057,1096.35217578)(-439.41530705,1096.08803849)(-439.39645141,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.64306632,1093.98581971)
-\lineto(-437.00240639,1093.23572613)
-\lineto(-437.64306632,1095.02942816)
-\lineto(-437.33959583,1094.67068775)
-\lineto(-437.06984427,1094.14888353)
-\lineto(-437.00240639,1094.14888353)
-\lineto(-437.27215794,1095.38816857)
-\curveto(-437.53975148,1095.62285002)(-437.78792291,1096.02490017)(-437.50819055,1096.33393873)
-\lineto(-436.53034117,1094.40978564)
-\lineto(-436.46290328,1094.40978564)
-\lineto(-436.32802751,1094.9968154)
-\lineto(-436.15943279,1093.72491759)
-\curveto(-435.94430592,1093.27264378)(-435.94430592,1092.61177873)(-436.15943279,1092.15950491)
-\lineto(-436.29430856,1091.50724963)
-\lineto(-436.32802751,1091.14850922)
-\lineto(-436.39546539,1091.14850922)
-\lineto(-437.60934738,1093.75753036)
-\lineto(-437.64306632,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.64306632,1093.98581971)
-\lineto(-437.00240639,1093.23572613)
-\lineto(-437.64306632,1095.02942816)
-\lineto(-437.33959583,1094.67068775)
-\lineto(-437.06984427,1094.14888353)
-\lineto(-437.00240639,1094.14888353)
-\lineto(-437.27215794,1095.38816857)
-\curveto(-437.53975148,1095.62285002)(-437.78792291,1096.02490017)(-437.50819055,1096.33393873)
-\lineto(-436.53034117,1094.40978564)
-\lineto(-436.46290328,1094.40978564)
-\lineto(-436.32802751,1094.9968154)
-\lineto(-436.15943279,1093.72491759)
-\curveto(-435.94430592,1093.27264378)(-435.94430592,1092.61177873)(-436.15943279,1092.15950491)
-\lineto(-436.29430856,1091.50724963)
-\lineto(-436.32802751,1091.14850922)
-\lineto(-436.39546539,1091.14850922)
-\lineto(-437.60934738,1093.75753036)
-\lineto(-437.64306632,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1096.33393873)
-\lineto(-431.06787224,1096.23610043)
-\lineto(-431.30390484,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1096.33393873)
-\lineto(-431.06787224,1096.23610043)
-\lineto(-431.30390484,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-426.58325268,1096.33393873)
-\lineto(-426.34722007,1096.23610043)
-\lineto(-426.58325268,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-426.58325268,1096.33393873)
-\lineto(-426.34722007,1096.23610043)
-\lineto(-426.58325268,1096.33393873)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.914526,1096.20348767)
-\curveto(-409.16876684,1096.18525061)(-408.89568386,1096.44938791)(-408.914526,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.914526,1096.20348767)
-\curveto(-409.16876684,1096.18525061)(-408.89568386,1096.44938791)(-408.914526,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-346.87166898,1096.07303661)
-\lineto(-346.50076059,1096.30132596)
-\lineto(-346.87166898,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-346.87166898,1096.07303661)
-\lineto(-346.50076059,1096.30132596)
-\lineto(-346.87166898,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-339.45350129,1093.85536865)
-\lineto(-339.41978234,1094.083658)
-\curveto(-338.65571107,1094.9235019)(-337.8821985,1095.99215696)(-336.75598576,1096.33393873)
-\lineto(-336.38507738,1096.30132596)
-\lineto(-337.12689415,1095.77952174)
-\lineto(-337.80127303,1094.9968154)
-\lineto(-338.00358669,1094.67068775)
-\lineto(-339.45350129,1093.85536865)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-339.45350129,1093.85536865)
-\lineto(-339.41978234,1094.083658)
-\curveto(-338.65571107,1094.9235019)(-337.8821985,1095.99215696)(-336.75598576,1096.33393873)
-\lineto(-336.38507738,1096.30132596)
-\lineto(-337.12689415,1095.77952174)
-\lineto(-337.80127303,1094.9968154)
-\lineto(-338.00358669,1094.67068775)
-\lineto(-339.45350129,1093.85536865)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1096.20348767)
-\lineto(-444.2856983,1096.04042385)
-\lineto(-441.92537222,1094.27933458)
-\lineto(-441.72305855,1094.21410906)
-\lineto(-440.91380389,1093.43140272)
-\lineto(-439.43017036,1091.99644109)
-\lineto(-438.99182408,1090.85499434)
-\lineto(-439.1604188,1090.626705)
-\lineto(-439.49760824,1090.75715605)
-\curveto(-440.35690181,1092.417798)(-441.98471756,1093.72883112)(-443.47644364,1094.86636434)
-\lineto(-443.94850886,1095.06204092)
-\lineto(-444.75776351,1095.71429621)
-\lineto(-444.65660668,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1096.20348767)
-\lineto(-444.2856983,1096.04042385)
-\lineto(-441.92537222,1094.27933458)
-\lineto(-441.72305855,1094.21410906)
-\lineto(-440.91380389,1093.43140272)
-\lineto(-439.43017036,1091.99644109)
-\lineto(-438.99182408,1090.85499434)
-\lineto(-439.1604188,1090.626705)
-\lineto(-439.49760824,1090.75715605)
-\curveto(-440.35690181,1092.417798)(-441.98471756,1093.72883112)(-443.47644364,1094.86636434)
-\lineto(-443.94850886,1095.06204092)
-\lineto(-444.75776351,1095.71429621)
-\lineto(-444.65660668,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.41958806,1096.07303661)
-\lineto(-441.68933961,1096.20348767)
-\lineto(-441.41958806,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.41958806,1096.07303661)
-\lineto(-441.68933961,1096.20348767)
-\lineto(-441.41958806,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-432.92241416,1096.20348767)
-\lineto(-432.68638155,1096.17087491)
-\lineto(-432.68638155,1094.27933458)
-\lineto(-432.75381944,1094.27933458)
-\lineto(-432.92241416,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-432.92241416,1096.20348767)
-\lineto(-432.68638155,1096.17087491)
-\lineto(-432.68638155,1094.27933458)
-\lineto(-432.75381944,1094.27933458)
-\lineto(-432.92241416,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1096.20348767)
-\lineto(-423.11020144,1095.58384515)
-\lineto(-423.21135828,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.21135828,1096.20348767)
-\lineto(-423.11020144,1095.58384515)
-\lineto(-423.21135828,1096.20348767)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1095.8121345)
-\lineto(-408.914526,1096.20348767)
-\lineto(-408.77965023,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1095.8121345)
-\lineto(-408.914526,1096.20348767)
-\lineto(-408.77965023,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.1498365,1095.8121345)
-\lineto(-441.41958806,1096.07303661)
-\lineto(-441.1498365,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.1498365,1095.8121345)
-\lineto(-441.41958806,1096.07303661)
-\lineto(-441.1498365,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.99182408,1093.72491759)
-\lineto(-438.48603992,1093.6270793)
-\lineto(-438.72207253,1094.11627076)
-\lineto(-439.49760824,1095.19249198)
-\lineto(-439.7673598,1096.04042385)
-\lineto(-439.43017036,1096.04042385)
-\lineto(-437.50819055,1092.68130914)
-\lineto(-437.54190949,1092.32256873)
-\lineto(-438.01397471,1092.45301979)
-\lineto(-438.6209157,1093.43140272)
-\lineto(-438.99182408,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.99182408,1093.72491759)
-\lineto(-438.48603992,1093.6270793)
-\lineto(-438.72207253,1094.11627076)
-\lineto(-439.49760824,1095.19249198)
-\lineto(-439.7673598,1096.04042385)
-\lineto(-439.43017036,1096.04042385)
-\lineto(-437.50819055,1092.68130914)
-\lineto(-437.54190949,1092.32256873)
-\lineto(-438.01397471,1092.45301979)
-\lineto(-438.6209157,1093.43140272)
-\lineto(-438.99182408,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.85694831,1095.68168344)
-\lineto(-439.22785669,1096.04042385)
-\curveto(-439.02055262,1096.15289875)(-438.80070511,1095.87070702)(-438.85694831,1095.68168344)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.85694831,1095.68168344)
-\lineto(-439.22785669,1096.04042385)
-\curveto(-439.02055262,1096.15289875)(-438.80070511,1095.87070702)(-438.85694831,1095.68168344)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.96868744,1096.07303661)
-\curveto(-436.7144466,1096.09127367)(-436.98752959,1095.82713637)(-436.96868744,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.96868744,1096.07303661)
-\curveto(-436.7144466,1096.09127367)(-436.98752959,1095.82713637)(-436.96868744,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-434.9455508,1096.07303661)
-\lineto(-434.81067502,1095.94258556)
-\lineto(-434.81067502,1092.02905386)
-\lineto(-434.91183186,1091.93121556)
-\lineto(-435.04670763,1092.19211768)
-\lineto(-434.9455508,1092.42040703)
-\lineto(-434.9455508,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-434.9455508,1096.07303661)
-\lineto(-434.81067502,1095.94258556)
-\lineto(-434.81067502,1092.02905386)
-\lineto(-434.91183186,1091.93121556)
-\lineto(-435.04670763,1092.19211768)
-\lineto(-434.9455508,1092.42040703)
-\lineto(-434.9455508,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-426.58325268,1096.07303661)
-\curveto(-426.31120824,1096.13206572)(-426.32280756,1095.96395344)(-426.4483769,1095.8121345)
-\curveto(-426.36128761,1095.52983841)(-426.67038243,1095.52983841)(-426.58325268,1095.8121345)
-\lineto(-426.58325268,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-426.58325268,1096.07303661)
-\curveto(-426.31120824,1096.13206572)(-426.32280756,1095.96395344)(-426.4483769,1095.8121345)
-\curveto(-426.36128761,1095.52983841)(-426.67038243,1095.52983841)(-426.58325268,1095.8121345)
-\lineto(-426.58325268,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.82745099 0.82745099 0.82745099}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-413.36542662,1096.07303661)
-\lineto(-413.09567506,1095.8121345)
-\curveto(-413.3582782,1095.48078882)(-413.23689,1095.04142966)(-412.96079929,1094.76852605)
-\lineto(-413.12939401,1093.23572613)
-\lineto(-414.95021699,1093.36617719)
-\lineto(-414.41071388,1094.9968154)
-\lineto(-414.07352444,1095.25771751)
-\lineto(-413.93864866,1094.14888353)
-\lineto(-413.50030239,1095.55123239)
-\lineto(-413.36542662,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.82745099 0.82745099 0.82745099}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-413.36542662,1096.07303661)
-\lineto(-413.09567506,1095.8121345)
-\curveto(-413.3582782,1095.48078882)(-413.23689,1095.04142966)(-412.96079929,1094.76852605)
-\lineto(-413.12939401,1093.23572613)
-\lineto(-414.95021699,1093.36617719)
-\lineto(-414.41071388,1094.9968154)
-\lineto(-414.07352444,1095.25771751)
-\lineto(-413.93864866,1094.14888353)
-\lineto(-413.50030239,1095.55123239)
-\lineto(-413.36542662,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-346.87166898,1096.07303661)
-\lineto(-347.2762963,1095.94258556)
-\lineto(-346.87166898,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-346.87166898,1096.07303661)
-\lineto(-347.2762963,1095.94258556)
-\lineto(-346.87166898,1096.07303661)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1095.94258556)
-\lineto(-429.17961137,1095.45339409)
-\lineto(-429.2807682,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.2807682,1095.94258556)
-\lineto(-429.17961137,1095.45339409)
-\lineto(-429.2807682,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-407.16114091,1095.94258556)
-\lineto(-406.92510831,1095.71429621)
-\lineto(-407.16114091,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-407.16114091,1095.94258556)
-\lineto(-406.92510831,1095.71429621)
-\lineto(-407.16114091,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-355.63859442,1095.94258556)
-\lineto(-355.36884287,1095.94258556)
-\curveto(-354.630398,1095.93718488)(-356.11160377,1095.3798197)(-355.63859442,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-355.63859442,1095.94258556)
-\lineto(-355.36884287,1095.94258556)
-\curveto(-354.630398,1095.93718488)(-356.11160377,1095.3798197)(-355.63859442,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-347.2762963,1095.94258556)
-\curveto(-347.25744067,1095.69668532)(-347.53053714,1095.96082261)(-347.2762963,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-347.2762963,1095.94258556)
-\curveto(-347.25744067,1095.69668532)(-347.53053714,1095.96082261)(-347.2762963,1095.94258556)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.01496073,1095.68168344)
-\lineto(-441.1498365,1095.8121345)
-\lineto(-441.01496073,1095.68168344)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.01496073,1095.68168344)
-\lineto(-441.1498365,1095.8121345)
-\lineto(-441.01496073,1095.68168344)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.83381167,1095.8121345)
-\curveto(-436.60708549,1095.71674869)(-436.3146748,1095.46200386)(-436.46290328,1095.19249198)
-\lineto(-436.53034117,1095.19249198)
-\lineto(-436.83381167,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.83381167,1095.8121345)
-\curveto(-436.60708549,1095.71674869)(-436.3146748,1095.46200386)(-436.46290328,1095.19249198)
-\lineto(-436.53034117,1095.19249198)
-\lineto(-436.83381167,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.16902907,1095.8121345)
-\lineto(-431.06787224,1095.77952174)
-\lineto(-431.06787224,1094.67068775)
-\lineto(-431.2701859,1094.67068775)
-\lineto(-431.16902907,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.16902907,1095.8121345)
-\lineto(-431.06787224,1095.77952174)
-\lineto(-431.06787224,1094.67068775)
-\lineto(-431.2701859,1094.67068775)
-\lineto(-431.16902907,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1095.8121345)
-\lineto(-408.54361762,1094.9968154)
-\lineto(-408.54361762,1094.93158987)
-\lineto(-408.77965023,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1095.8121345)
-\lineto(-408.54361762,1094.9968154)
-\lineto(-408.54361762,1094.93158987)
-\lineto(-408.77965023,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.08555096,1095.55123239)
-\lineto(-347.71464258,1095.77952174)
-\curveto(-347.56506534,1095.5277512)(-347.92882531,1095.52983841)(-348.08555096,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.08555096,1095.55123239)
-\lineto(-347.71464258,1095.77952174)
-\curveto(-347.56506534,1095.5277512)(-347.92882531,1095.52983841)(-348.08555096,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1095.8121345)
-\lineto(-332.8783072,1095.77952174)
-\curveto(-332.96248317,1095.25380398)(-333.58627015,1095.15087809)(-334.05847024,1095.15987922)
-\lineto(-335.37350906,1095.06204092)
-\lineto(-335.37350906,1095.12726645)
-\lineto(-335.00260067,1095.29033027)
-\lineto(-334.36194074,1095.45339409)
-\lineto(-333.51896714,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1095.8121345)
-\lineto(-332.8783072,1095.77952174)
-\curveto(-332.96248317,1095.25380398)(-333.58627015,1095.15087809)(-334.05847024,1095.15987922)
-\lineto(-335.37350906,1095.06204092)
-\lineto(-335.37350906,1095.12726645)
-\lineto(-335.00260067,1095.29033027)
-\lineto(-334.36194074,1095.45339409)
-\lineto(-333.51896714,1095.8121345)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.74520917,1095.55123239)
-\lineto(-441.01496073,1095.68168344)
-\lineto(-440.74520917,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.74520917,1095.55123239)
-\lineto(-441.01496073,1095.68168344)
-\lineto(-440.74520917,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.58719676,1095.29033027)
-\lineto(-438.85694831,1095.68168344)
-\lineto(-438.58719676,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.58719676,1095.29033027)
-\lineto(-438.85694831,1095.68168344)
-\lineto(-438.58719676,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.74520917,1095.55123239)
-\curveto(-440.49096834,1095.56946944)(-440.76406481,1095.30533214)(-440.74520917,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.74520917,1095.55123239)
-\curveto(-440.49096834,1095.56946944)(-440.76406481,1095.30533214)(-440.74520917,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-407.16114091,1095.55123239)
-\curveto(-406.66452831,1095.60578702)(-407.08512493,1095.16274914)(-407.05998408,1094.93158987)
-\lineto(-407.16114091,1095.15987922)
-\lineto(-407.16114091,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-407.16114091,1095.55123239)
-\curveto(-406.66452831,1095.60578702)(-407.08512493,1095.16274914)(-407.05998408,1094.93158987)
-\lineto(-407.16114091,1095.15987922)
-\lineto(-407.16114091,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.08555096,1095.55123239)
-\curveto(-348.06669533,1095.30533214)(-348.3397918,1095.56946944)(-348.08555096,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.08555096,1095.55123239)
-\curveto(-348.06669533,1095.30533214)(-348.3397918,1095.56946944)(-348.08555096,1095.55123239)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.32704149,1095.42078133)
-\lineto(-433.09100888,1095.19249198)
-\lineto(-433.32704149,1095.42078133)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.32704149,1095.42078133)
-\lineto(-433.09100888,1095.19249198)
-\lineto(-433.32704149,1095.42078133)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1095.02942816)
-\lineto(-423.24507722,1095.38816857)
-\lineto(-423.34623405,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1095.02942816)
-\lineto(-423.24507722,1095.38816857)
-\lineto(-423.34623405,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.75992984,1095.29033027)
-\lineto(-348.52389723,1095.38816857)
-\lineto(-348.75992984,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.75992984,1095.29033027)
-\lineto(-348.52389723,1095.38816857)
-\lineto(-348.75992984,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.20570607,1095.02942816)
-\lineto(-440.44173868,1095.25771751)
-\lineto(-440.20570607,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.20570607,1095.02942816)
-\lineto(-440.44173868,1095.25771751)
-\lineto(-440.20570607,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.58719676,1095.29033027)
-\lineto(-438.35116415,1094.93158987)
-\lineto(-438.58719676,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.58719676,1095.29033027)
-\lineto(-438.35116415,1094.93158987)
-\lineto(-438.58719676,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.64306632,1095.02942816)
-\lineto(-437.7779421,1095.29033027)
-\lineto(-437.64306632,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.64306632,1095.02942816)
-\lineto(-437.7779421,1095.29033027)
-\lineto(-437.64306632,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.41564398,1095.29033027)
-\lineto(-429.31448715,1094.93158987)
-\lineto(-429.41564398,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.41564398,1095.29033027)
-\lineto(-429.31448715,1094.93158987)
-\lineto(-429.41564398,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.75992984,1095.29033027)
-\lineto(-348.99596245,1095.19249198)
-\lineto(-348.75992984,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.75992984,1095.29033027)
-\lineto(-348.99596245,1095.19249198)
-\lineto(-348.75992984,1095.29033027)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-349.97381183,1094.8989771)
-\lineto(-349.94009288,1094.9968154)
-\lineto(-349.33315189,1095.12726645)
-\lineto(-349.97381183,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-349.97381183,1094.8989771)
-\lineto(-349.94009288,1094.9968154)
-\lineto(-349.33315189,1095.12726645)
-\lineto(-349.97381183,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.07083029,1094.8989771)
-\lineto(-440.20570607,1095.02942816)
-\lineto(-440.07083029,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.07083029,1094.8989771)
-\lineto(-440.20570607,1095.02942816)
-\lineto(-440.07083029,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1095.02942816)
-\lineto(-423.51482877,1094.27933458)
-\lineto(-423.58226666,1094.27933458)
-\lineto(-423.44739088,1094.9968154)
-\lineto(-423.34623405,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-423.34623405,1095.02942816)
-\lineto(-423.51482877,1094.27933458)
-\lineto(-423.58226666,1094.27933458)
-\lineto(-423.44739088,1094.9968154)
-\lineto(-423.34623405,1095.02942816)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1094.76852605)
-\lineto(-440.07083029,1094.8989771)
-\lineto(-439.93595452,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1094.76852605)
-\lineto(-440.07083029,1094.8989771)
-\lineto(-439.93595452,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.32704149,1094.8989771)
-\lineto(-433.22588465,1094.67068775)
-\lineto(-433.32704149,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.32704149,1094.8989771)
-\lineto(-433.22588465,1094.67068775)
-\lineto(-433.32704149,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-349.97381183,1094.8989771)
-\lineto(-350.24356338,1094.76852605)
-\lineto(-349.97381183,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-349.97381183,1094.8989771)
-\lineto(-350.24356338,1094.76852605)
-\lineto(-349.97381183,1094.8989771)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.66620297,1094.50762393)
-\lineto(-439.93595452,1094.76852605)
-\lineto(-439.66620297,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.66620297,1094.50762393)
-\lineto(-439.93595452,1094.76852605)
-\lineto(-439.66620297,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.3174452,1094.76852605)
-\lineto(-438.0814126,1094.5402367)
-\lineto(-438.3174452,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.3174452,1094.76852605)
-\lineto(-438.0814126,1094.5402367)
-\lineto(-438.3174452,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1094.76852605)
-\lineto(-408.54361762,1094.67068775)
-\lineto(-408.77965023,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1094.76852605)
-\lineto(-408.54361762,1094.67068775)
-\lineto(-408.77965023,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-350.24356338,1094.76852605)
-\lineto(-350.51331493,1094.63807499)
-\lineto(-350.24356338,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-350.24356338,1094.76852605)
-\lineto(-350.51331493,1094.63807499)
-\lineto(-350.24356338,1094.76852605)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-350.51331493,1094.63807499)
-\lineto(-350.78306648,1094.50762393)
-\lineto(-350.51331493,1094.63807499)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-350.51331493,1094.63807499)
-\lineto(-350.78306648,1094.50762393)
-\lineto(-350.51331493,1094.63807499)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-347.54604786,1094.50762393)
-\lineto(-347.31001525,1094.60546223)
-\lineto(-347.54604786,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-347.54604786,1094.50762393)
-\lineto(-347.31001525,1094.60546223)
-\lineto(-347.54604786,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1094.50762393)
-\lineto(-332.74343142,1094.60546223)
-\lineto(-333.11433981,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1094.50762393)
-\lineto(-332.74343142,1094.60546223)
-\lineto(-333.11433981,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.53132719,1094.37717288)
-\lineto(-439.66620297,1094.50762393)
-\lineto(-439.53132719,1094.37717288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.53132719,1094.37717288)
-\lineto(-439.66620297,1094.50762393)
-\lineto(-439.53132719,1094.37717288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1094.50762393)
-\lineto(-431.06787224,1094.40978564)
-\lineto(-431.30390484,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1094.50762393)
-\lineto(-431.06787224,1094.40978564)
-\lineto(-431.30390484,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-350.78306648,1094.50762393)
-\lineto(-351.05281804,1094.37717288)
-\lineto(-350.78306648,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-350.78306648,1094.50762393)
-\lineto(-351.05281804,1094.37717288)
-\lineto(-350.78306648,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-347.54604786,1094.50762393)
-\lineto(-347.78208046,1094.40978564)
-\lineto(-347.54604786,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-347.54604786,1094.50762393)
-\lineto(-347.78208046,1094.40978564)
-\lineto(-347.54604786,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1094.50762393)
-\lineto(-333.14805875,1094.40978564)
-\lineto(-334.32822179,1093.85536865)
-\lineto(-334.42937863,1093.88798141)
-\curveto(-334.15045552,1094.25794061)(-333.60906416,1094.49340477)(-333.11433981,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1094.50762393)
-\lineto(-333.14805875,1094.40978564)
-\lineto(-334.32822179,1093.85536865)
-\lineto(-334.42937863,1093.88798141)
-\curveto(-334.15045552,1094.25794061)(-333.60906416,1094.49340477)(-333.11433981,1094.50762393)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1094.24672182)
-\lineto(-439.53132719,1094.37717288)
-\lineto(-439.39645141,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1094.24672182)
-\lineto(-439.53132719,1094.37717288)
-\lineto(-439.39645141,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.64306632,1093.98581971)
-\lineto(-437.87909893,1094.34456011)
-\lineto(-437.64306632,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.64306632,1093.98581971)
-\lineto(-437.87909893,1094.34456011)
-\lineto(-437.64306632,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1093.98581971)
-\lineto(-408.6784934,1094.34456011)
-\lineto(-408.77965023,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1093.98581971)
-\lineto(-408.6784934,1094.34456011)
-\lineto(-408.77965023,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-351.05281804,1094.37717288)
-\lineto(-351.32256959,1094.24672182)
-\lineto(-351.05281804,1094.37717288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-351.05281804,1094.37717288)
-\lineto(-351.32256959,1094.24672182)
-\lineto(-351.05281804,1094.37717288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.08555096,1094.37717288)
-\curveto(-347.83131012,1094.39540993)(-348.10439311,1094.13127263)(-348.08555096,1094.37717288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.08555096,1094.37717288)
-\curveto(-347.83131012,1094.39540993)(-348.10439311,1094.13127263)(-348.08555096,1094.37717288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.38685513,1094.11627076)
-\lineto(-444.62288774,1094.21410906)
-\lineto(-444.38685513,1094.11627076)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.38685513,1094.11627076)
-\lineto(-444.62288774,1094.21410906)
-\lineto(-444.38685513,1094.11627076)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.99182408,1093.72491759)
-\lineto(-439.39645141,1094.24672182)
-\lineto(-438.99182408,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.99182408,1093.72491759)
-\lineto(-439.39645141,1094.24672182)
-\lineto(-438.99182408,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-432.78753838,1093.20311337)
-\curveto(-432.84352532,1093.63047103)(-432.82005693,1094.16649442)(-432.28175422,1094.21410906)
-\curveto(-432.18475156,1093.91968102)(-432.20951476,1093.46336322)(-432.61894366,1093.43140272)
-\lineto(-432.78753838,1093.20311337)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-432.78753838,1093.20311337)
-\curveto(-432.84352532,1093.63047103)(-432.82005693,1094.16649442)(-432.28175422,1094.21410906)
-\curveto(-432.18475156,1093.91968102)(-432.20951476,1093.46336322)(-432.61894366,1093.43140272)
-\lineto(-432.78753838,1093.20311337)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1094.24672182)
-\curveto(-430.98532826,1094.11209633)(-431.25391988,1093.71226384)(-431.33762379,1093.49662824)
-\lineto(-431.40506168,1093.49662824)
-\lineto(-431.30390484,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-431.30390484,1094.24672182)
-\curveto(-430.98532826,1094.11209633)(-431.25391988,1093.71226384)(-431.33762379,1093.49662824)
-\lineto(-431.40506168,1093.49662824)
-\lineto(-431.30390484,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-351.32256959,1094.24672182)
-\curveto(-351.30371395,1094.00082158)(-351.57681043,1094.26495888)(-351.32256959,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-351.32256959,1094.24672182)
-\curveto(-351.30371395,1094.00082158)(-351.57681043,1094.26495888)(-351.32256959,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.35530251,1094.24672182)
-\curveto(-348.10106167,1094.26495888)(-348.37414466,1094.00082158)(-348.35530251,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.35530251,1094.24672182)
-\curveto(-348.10106167,1094.26495888)(-348.37414466,1094.00082158)(-348.35530251,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-332.30508515,1094.24672182)
-\curveto(-331.64230559,1094.26237595)(-332.70593596,1093.71878639)(-332.30508515,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-332.30508515,1094.24672182)
-\curveto(-331.64230559,1094.26237595)(-332.70593596,1093.71878639)(-332.30508515,1094.24672182)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.84735203,1093.85536865)
-\lineto(-444.38685513,1094.11627076)
-\lineto(-443.84735203,1093.85536865)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.84735203,1093.85536865)
-\lineto(-444.38685513,1094.11627076)
-\lineto(-443.84735203,1093.85536865)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.89480562,1093.98581971)
-\lineto(-348.65877301,1094.083658)
-\lineto(-348.89480562,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.89480562,1093.98581971)
-\lineto(-348.65877301,1094.083658)
-\lineto(-348.89480562,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1093.98581971)
-\curveto(-408.76080808,1093.73991946)(-409.03389107,1094.00405676)(-408.77965023,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1093.98581971)
-\curveto(-408.76080808,1093.73991946)(-409.03389107,1094.00405676)(-408.77965023,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-351.99694847,1093.98581971)
-\curveto(-351.74270763,1094.00405676)(-352.01579061,1093.73991946)(-351.99694847,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-351.99694847,1093.98581971)
-\curveto(-351.74270763,1094.00405676)(-352.01579061,1093.73991946)(-351.99694847,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-348.89480562,1093.98581971)
-\lineto(-349.265714,1093.88798141)
-\lineto(-348.89480562,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-348.89480562,1093.98581971)
-\lineto(-349.265714,1093.88798141)
-\lineto(-348.89480562,1093.98581971)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.57760047,1093.72491759)
-\lineto(-443.84735203,1093.85536865)
-\lineto(-443.57760047,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.57760047,1093.72491759)
-\lineto(-443.84735203,1093.85536865)
-\lineto(-443.57760047,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.30784892,1093.59446654)
-\lineto(-443.57760047,1093.72491759)
-\lineto(-443.30784892,1093.59446654)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.30784892,1093.59446654)
-\lineto(-443.57760047,1093.72491759)
-\lineto(-443.30784892,1093.59446654)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-349.83893605,1093.72491759)
-\lineto(-349.60290344,1093.6270793)
-\lineto(-349.83893605,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-349.83893605,1093.72491759)
-\lineto(-349.60290344,1093.6270793)
-\lineto(-349.83893605,1093.72491759)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1093.46401548)
-\lineto(-443.30784892,1093.59446654)
-\lineto(-443.17297314,1093.46401548)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1093.46401548)
-\lineto(-443.30784892,1093.59446654)
-\lineto(-443.17297314,1093.46401548)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1093.20311337)
-\lineto(-443.17297314,1093.46401548)
-\lineto(-442.90322159,1093.20311337)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1093.20311337)
-\lineto(-443.17297314,1093.46401548)
-\lineto(-442.90322159,1093.20311337)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.63347004,1092.94221125)
-\lineto(-442.90322159,1093.20311337)
-\lineto(-442.63347004,1092.94221125)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.63347004,1092.94221125)
-\lineto(-442.90322159,1093.20311337)
-\lineto(-442.63347004,1092.94221125)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-432.78753838,1093.20311337)
-\curveto(-432.76869624,1092.95721312)(-433.04177922,1093.22135042)(-432.78753838,1093.20311337)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-432.78753838,1093.20311337)
-\curveto(-432.76869624,1092.95721312)(-433.04177922,1093.22135042)(-432.78753838,1093.20311337)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1092.8117602)
-\lineto(-442.63347004,1092.94221125)
-\lineto(-442.49859426,1092.8117602)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1092.8117602)
-\lineto(-442.63347004,1092.94221125)
-\lineto(-442.49859426,1092.8117602)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.36371849,1092.68130914)
-\lineto(-442.49859426,1092.8117602)
-\lineto(-442.36371849,1092.68130914)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.36371849,1092.68130914)
-\lineto(-442.49859426,1092.8117602)
-\lineto(-442.36371849,1092.68130914)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.22884271,1092.55085808)
-\lineto(-442.36371849,1092.68130914)
-\lineto(-442.22884271,1092.55085808)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.22884271,1092.55085808)
-\lineto(-442.36371849,1092.68130914)
-\lineto(-442.22884271,1092.55085808)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1092.42040703)
-\lineto(-442.22884271,1092.55085808)
-\lineto(-442.09396694,1092.42040703)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1092.42040703)
-\lineto(-442.22884271,1092.55085808)
-\lineto(-442.09396694,1092.42040703)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.95909116,1092.28995597)
-\lineto(-442.09396694,1092.42040703)
-\lineto(-441.95909116,1092.28995597)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.95909116,1092.28995597)
-\lineto(-442.09396694,1092.42040703)
-\lineto(-441.95909116,1092.28995597)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.82421538,1092.15950491)
-\lineto(-441.95909116,1092.28995597)
-\lineto(-441.82421538,1092.15950491)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.82421538,1092.15950491)
-\lineto(-441.95909116,1092.28995597)
-\lineto(-441.82421538,1092.15950491)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1092.02905386)
-\lineto(-441.82421538,1092.15950491)
-\lineto(-441.68933961,1092.02905386)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1092.02905386)
-\lineto(-441.82421538,1092.15950491)
-\lineto(-441.68933961,1092.02905386)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.75598576,1092.15950491)
-\lineto(-336.2502016,1092.12689215)
-\lineto(-337.05945626,1091.40941134)
-\lineto(-337.26176992,1091.40941134)
-\lineto(-336.99201837,1091.73553898)
-\lineto(-336.75598576,1092.15950491)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.75598576,1092.15950491)
-\lineto(-336.2502016,1092.12689215)
-\lineto(-337.05945626,1091.40941134)
-\lineto(-337.26176992,1091.40941134)
-\lineto(-336.99201837,1091.73553898)
-\lineto(-336.75598576,1092.15950491)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.94949488,1092.02905386)
-\curveto(-446.69525404,1092.04729091)(-446.96835051,1091.78315361)(-446.94949488,1092.02905386)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.94949488,1092.02905386)
-\curveto(-446.69525404,1092.04729091)(-446.96835051,1091.78315361)(-446.94949488,1092.02905386)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1092.02905386)
-\curveto(-441.43509877,1092.04729091)(-441.70819524,1091.78315361)(-441.68933961,1092.02905386)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1092.02905386)
-\curveto(-441.43509877,1092.04729091)(-441.70819524,1091.78315361)(-441.68933961,1092.02905386)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.275116,1091.63770069)
-\lineto(-446.64602438,1091.86599003)
-\lineto(-446.275116,1091.63770069)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.275116,1091.63770069)
-\lineto(-446.64602438,1091.86599003)
-\lineto(-446.275116,1091.63770069)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1091.37679857)
-\lineto(-446.275116,1091.63770069)
-\lineto(-445.87048867,1091.37679857)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1091.37679857)
-\lineto(-446.275116,1091.63770069)
-\lineto(-445.87048867,1091.37679857)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1091.37679857)
-\curveto(-445.67505367,1091.4312358)(-445.38331736,1091.21856144)(-445.49958028,1091.01805817)
-\lineto(-445.87048867,1091.37679857)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1091.37679857)
-\curveto(-445.67505367,1091.4312358)(-445.38331736,1091.21856144)(-445.49958028,1091.01805817)
-\lineto(-445.87048867,1091.37679857)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1090.85499434)
-\curveto(-445.45035063,1090.83675729)(-445.17725415,1091.10089459)(-445.19610979,1090.85499434)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1090.85499434)
-\curveto(-445.45035063,1090.83675729)(-445.17725415,1091.10089459)(-445.19610979,1090.85499434)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.29430856,1090.9854454)
-\curveto(-436.04006772,1091.00368246)(-436.31315071,1090.73954516)(-436.29430856,1090.9854454)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.29430856,1090.9854454)
-\curveto(-436.04006772,1091.00368246)(-436.31315071,1090.73954516)(-436.29430856,1090.9854454)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-334.05847024,1090.9854454)
-\lineto(-333.62012397,1090.49625394)
-\lineto(-332.60855565,1090.82238158)
-\lineto(-335.57582272,1088.53948809)
-\curveto(-336.42162872,1088.11108682)(-337.07024632,1087.36099324)(-337.66639725,1086.64794777)
-\lineto(-337.66639725,1086.32182012)
-\lineto(-337.53152148,1086.19136907)
-\lineto(-336.72226682,1086.12614354)
-\lineto(-335.17119539,1087.36542858)
-\lineto(-332.60855565,1088.73516467)
-\lineto(-332.3388041,1088.53948809)
-\lineto(-332.8783072,1087.75678175)
-\curveto(-334.38891589,1087.03838778)(-335.39508918,1085.59259872)(-336.31763949,1084.29982874)
-\lineto(-336.45251527,1083.71279899)
-\lineto(-336.11532583,1083.45189688)
-\lineto(-336.21648266,1082.76702883)
-\lineto(-336.31763949,1082.79964159)
-\lineto(-337.19433204,1084.95208403)
-\lineto(-338.50937085,1087.0719137)
-\lineto(-337.59895937,1088.01768386)
-\lineto(-334.22706496,1090.75715605)
-\lineto(-334.05847024,1090.9854454)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.05847024,1090.9854454)
-\lineto(-333.62012397,1090.49625394)
-\lineto(-332.60855565,1090.82238158)
-\lineto(-335.57582272,1088.53948809)
-\curveto(-336.42162872,1088.11108682)(-337.07024632,1087.36099324)(-337.66639725,1086.64794777)
-\lineto(-337.66639725,1086.32182012)
-\lineto(-337.53152148,1086.19136907)
-\lineto(-336.72226682,1086.12614354)
-\lineto(-335.17119539,1087.36542858)
-\lineto(-332.60855565,1088.73516467)
-\lineto(-332.3388041,1088.53948809)
-\lineto(-332.8783072,1087.75678175)
-\curveto(-334.38891589,1087.03838778)(-335.39508918,1085.59259872)(-336.31763949,1084.29982874)
-\lineto(-336.45251527,1083.71279899)
-\lineto(-336.11532583,1083.45189688)
-\lineto(-336.21648266,1082.76702883)
-\lineto(-336.31763949,1082.79964159)
-\lineto(-337.19433204,1084.95208403)
-\lineto(-338.50937085,1087.0719137)
-\lineto(-337.59895937,1088.01768386)
-\lineto(-334.22706496,1090.75715605)
-\lineto(-334.05847024,1090.9854454)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.06123401,1090.72454329)
-\lineto(-445.19610979,1090.85499434)
-\lineto(-445.06123401,1090.72454329)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.06123401,1090.72454329)
-\lineto(-445.19610979,1090.85499434)
-\lineto(-445.06123401,1090.72454329)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.67974332,1090.59409223)
-\lineto(-447.18552749,1090.69193052)
-\lineto(-446.67974332,1090.59409223)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.67974332,1090.59409223)
-\lineto(-447.18552749,1090.69193052)
-\lineto(-446.67974332,1090.59409223)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1090.59409223)
-\lineto(-445.06123401,1090.72454329)
-\lineto(-444.92635823,1090.59409223)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1090.59409223)
-\lineto(-445.06123401,1090.72454329)
-\lineto(-444.92635823,1090.59409223)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.40999177,1090.46364117)
-\lineto(-446.67974332,1090.59409223)
-\lineto(-446.40999177,1090.46364117)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.40999177,1090.46364117)
-\lineto(-446.67974332,1090.59409223)
-\lineto(-446.40999177,1090.46364117)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1090.59409223)
-\lineto(-444.69032563,1090.36580288)
-\lineto(-444.92635823,1090.59409223)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1090.59409223)
-\lineto(-444.69032563,1090.36580288)
-\lineto(-444.92635823,1090.59409223)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1090.33319012)
-\lineto(-446.40999177,1090.46364117)
-\lineto(-446.14024022,1090.33319012)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1090.33319012)
-\lineto(-446.40999177,1090.46364117)
-\lineto(-446.14024022,1090.33319012)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1090.33319012)
-\lineto(-445.90420761,1090.23535183)
-\lineto(-446.14024022,1090.33319012)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1090.33319012)
-\lineto(-445.90420761,1090.23535183)
-\lineto(-446.14024022,1090.33319012)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-332.43996093,1090.33319012)
-\curveto(-332.03061295,1090.23128175)(-332.63971195,1089.87061067)(-332.67599354,1090.1701263)
-\lineto(-332.5748367,1090.20273906)
-\lineto(-332.43996093,1090.33319012)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-332.43996093,1090.33319012)
-\curveto(-332.03061295,1090.23128175)(-332.63971195,1089.87061067)(-332.67599354,1090.1701263)
-\lineto(-332.5748367,1090.20273906)
-\lineto(-332.43996093,1090.33319012)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.38685513,1090.072288)
-\curveto(-444.64109597,1090.05405095)(-444.3679995,1090.31818825)(-444.38685513,1090.072288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.38685513,1090.072288)
-\curveto(-444.64109597,1090.05405095)(-444.3679995,1090.31818825)(-444.38685513,1090.072288)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1089.81138589)
-\lineto(-445.56701817,1090.03967524)
-\lineto(-445.19610979,1089.81138589)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1089.81138589)
-\lineto(-445.56701817,1090.03967524)
-\lineto(-445.19610979,1089.81138589)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1089.94183695)
-\lineto(-444.38685513,1090.072288)
-\lineto(-444.25197935,1089.94183695)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1089.94183695)
-\lineto(-444.38685513,1090.072288)
-\lineto(-444.25197935,1089.94183695)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.9822278,1089.68093483)
-\lineto(-444.25197935,1089.94183695)
-\lineto(-443.9822278,1089.68093483)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.9822278,1089.68093483)
-\lineto(-444.25197935,1089.94183695)
-\lineto(-443.9822278,1089.68093483)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.35412221,1089.81138589)
-\curveto(-447.09988137,1089.82962295)(-447.37297784,1089.56548565)(-447.35412221,1089.81138589)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.35412221,1089.81138589)
-\curveto(-447.09988137,1089.82962295)(-447.37297784,1089.56548565)(-447.35412221,1089.81138589)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1089.81138589)
-\curveto(-444.94186895,1089.82962295)(-445.21496542,1089.56548565)(-445.19610979,1089.81138589)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1089.81138589)
-\curveto(-444.94186895,1089.82962295)(-445.21496542,1089.56548565)(-445.19610979,1089.81138589)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.67974332,1089.55048378)
-\lineto(-447.05065171,1089.64832207)
-\lineto(-446.67974332,1089.55048378)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.67974332,1089.55048378)
-\lineto(-447.05065171,1089.64832207)
-\lineto(-446.67974332,1089.55048378)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1089.68093483)
-\lineto(-444.69032563,1089.45264549)
-\lineto(-444.92635823,1089.68093483)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1089.68093483)
-\lineto(-444.69032563,1089.45264549)
-\lineto(-444.92635823,1089.68093483)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.84735203,1089.55048378)
-\lineto(-443.9822278,1089.68093483)
-\lineto(-443.84735203,1089.55048378)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.84735203,1089.55048378)
-\lineto(-443.9822278,1089.68093483)
-\lineto(-443.84735203,1089.55048378)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1089.28958166)
-\lineto(-446.67974332,1089.55048378)
-\lineto(-446.00536444,1089.28958166)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1089.28958166)
-\lineto(-446.67974332,1089.55048378)
-\lineto(-446.00536444,1089.28958166)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.03809737,1088.76777744)
-\curveto(-443.5089487,1088.66916948)(-443.81174482,1089.17856781)(-443.84735203,1089.55048378)
-\curveto(-443.4610678,1089.43159068)(-443.1609692,1089.14138926)(-443.03809737,1088.76777744)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.03809737,1088.76777744)
-\curveto(-443.5089487,1088.66916948)(-443.81174482,1089.17856781)(-443.84735203,1089.55048378)
-\curveto(-443.4610678,1089.43159068)(-443.1609692,1089.14138926)(-443.03809737,1088.76777744)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1089.02867955)
-\curveto(-444.31253858,1088.97424232)(-444.60427488,1089.18691668)(-444.48801196,1089.38741996)
-\lineto(-444.11710358,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1089.02867955)
-\curveto(-444.31253858,1088.97424232)(-444.60427488,1089.18691668)(-444.48801196,1089.38741996)
-\lineto(-444.11710358,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.73561289,1089.15913061)
-\lineto(-446.00536444,1089.28958166)
-\lineto(-445.73561289,1089.15913061)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.73561289,1089.15913061)
-\lineto(-446.00536444,1089.28958166)
-\lineto(-445.73561289,1089.15913061)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.46586134,1089.02867955)
-\lineto(-445.73561289,1089.15913061)
-\lineto(-445.46586134,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.46586134,1089.02867955)
-\lineto(-445.73561289,1089.15913061)
-\lineto(-445.46586134,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.35135844,1087.20236476)
-\lineto(-335.44094695,1088.01768386)
-\curveto(-334.92086595,1088.59232077)(-334.22558133,1088.92014427)(-333.51896714,1089.15913061)
-\lineto(-333.28293453,1089.12651784)
-\lineto(-333.28293453,1089.06129231)
-\lineto(-336.11532583,1087.23497752)
-\lineto(-336.35135844,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.35135844,1087.20236476)
-\lineto(-335.44094695,1088.01768386)
-\curveto(-334.92086595,1088.59232077)(-334.22558133,1088.92014427)(-333.51896714,1089.15913061)
-\lineto(-333.28293453,1089.12651784)
-\lineto(-333.28293453,1089.06129231)
-\lineto(-336.11532583,1087.23497752)
-\lineto(-336.35135844,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.83775574,1089.02867955)
-\lineto(-447.6575927,1088.40903703)
-\lineto(-447.75874953,1088.37642427)
-\lineto(-448.83775574,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.83775574,1089.02867955)
-\lineto(-447.6575927,1088.40903703)
-\lineto(-447.75874953,1088.37642427)
-\lineto(-448.83775574,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.46586134,1089.02867955)
-\curveto(-445.2116205,1089.04691661)(-445.48471697,1088.78277931)(-445.46586134,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.46586134,1089.02867955)
-\curveto(-445.2116205,1089.04691661)(-445.48471697,1088.78277931)(-445.46586134,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1089.02867955)
-\curveto(-443.86286274,1089.04691661)(-444.13595921,1088.78277931)(-444.11710358,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1089.02867955)
-\curveto(-443.86286274,1089.04691661)(-444.13595921,1088.78277931)(-444.11710358,1089.02867955)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1088.37642427)
-\lineto(-445.16239084,1088.73516467)
-\lineto(-444.65660668,1088.37642427)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1088.37642427)
-\lineto(-445.16239084,1088.73516467)
-\lineto(-444.65660668,1088.37642427)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1088.63732638)
-\lineto(-443.03809737,1088.76777744)
-\lineto(-442.90322159,1088.63732638)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1088.63732638)
-\lineto(-443.03809737,1088.76777744)
-\lineto(-442.90322159,1088.63732638)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1088.37642427)
-\lineto(-442.90322159,1088.63732638)
-\lineto(-442.49859426,1088.37642427)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1088.37642427)
-\lineto(-442.90322159,1088.63732638)
-\lineto(-442.49859426,1088.37642427)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.35412221,1088.24597321)
-\curveto(-447.60836304,1088.22773615)(-447.33526657,1088.49187345)(-447.35412221,1088.24597321)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.35412221,1088.24597321)
-\curveto(-447.60836304,1088.22773615)(-447.33526657,1088.49187345)(-447.35412221,1088.24597321)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1088.37642427)
-\lineto(-444.42057407,1088.14813492)
-\lineto(-444.65660668,1088.37642427)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1088.37642427)
-\lineto(-444.42057407,1088.14813492)
-\lineto(-444.65660668,1088.37642427)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.36371849,1088.24597321)
-\lineto(-442.49859426,1088.37642427)
-\lineto(-442.36371849,1088.24597321)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.36371849,1088.24597321)
-\lineto(-442.49859426,1088.37642427)
-\lineto(-442.36371849,1088.24597321)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.08437065,1088.11552215)
-\lineto(-447.35412221,1088.24597321)
-\lineto(-447.08437065,1088.11552215)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.08437065,1088.11552215)
-\lineto(-447.35412221,1088.24597321)
-\lineto(-447.08437065,1088.11552215)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1087.85462004)
-\lineto(-442.36371849,1088.24597321)
-\lineto(-442.09396694,1087.85462004)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1087.85462004)
-\lineto(-442.36371849,1088.24597321)
-\lineto(-442.09396694,1087.85462004)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.08437065,1088.11552215)
-\curveto(-446.927645,1088.13698135)(-446.56388503,1088.13902943)(-446.71346227,1087.8872328)
-\lineto(-447.08437065,1088.11552215)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.08437065,1088.11552215)
-\curveto(-446.927645,1088.13698135)(-446.56388503,1088.13902943)(-446.71346227,1087.8872328)
-\lineto(-447.08437065,1088.11552215)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1087.9850711)
-\curveto(-444.37134442,1087.96683404)(-444.09824794,1088.23097134)(-444.11710358,1087.9850711)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1087.9850711)
-\curveto(-444.37134442,1087.96683404)(-444.09824794,1088.23097134)(-444.11710358,1087.9850711)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1087.72416898)
-\lineto(-444.11710358,1087.9850711)
-\lineto(-443.71247625,1087.72416898)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1087.72416898)
-\lineto(-444.11710358,1087.9850711)
-\lineto(-443.71247625,1087.72416898)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1087.59371793)
-\lineto(-446.5111486,1087.82200728)
-\lineto(-446.14024022,1087.59371793)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1087.59371793)
-\lineto(-446.5111486,1087.82200728)
-\lineto(-446.14024022,1087.59371793)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.95909116,1087.72416898)
-\lineto(-442.09396694,1087.85462004)
-\lineto(-441.95909116,1087.72416898)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.95909116,1087.72416898)
-\lineto(-442.09396694,1087.85462004)
-\lineto(-441.95909116,1087.72416898)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1087.72416898)
-\lineto(-443.47644364,1087.49587963)
-\lineto(-443.71247625,1087.72416898)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1087.72416898)
-\lineto(-443.47644364,1087.49587963)
-\lineto(-443.71247625,1087.72416898)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.82421538,1087.59371793)
-\lineto(-441.95909116,1087.72416898)
-\lineto(-441.82421538,1087.59371793)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.82421538,1087.59371793)
-\lineto(-441.95909116,1087.72416898)
-\lineto(-441.82421538,1087.59371793)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.24238307,1087.46326687)
-\lineto(-449.47841568,1087.56110516)
-\lineto(-449.24238307,1087.46326687)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.24238307,1087.46326687)
-\lineto(-449.47841568,1087.56110516)
-\lineto(-449.24238307,1087.46326687)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1087.46326687)
-\lineto(-446.14024022,1087.59371793)
-\lineto(-445.87048867,1087.46326687)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1087.46326687)
-\lineto(-446.14024022,1087.59371793)
-\lineto(-445.87048867,1087.46326687)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.55446383,1087.33281581)
-\lineto(-441.82421538,1087.59371793)
-\lineto(-441.55446383,1087.33281581)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.55446383,1087.33281581)
-\lineto(-441.82421538,1087.59371793)
-\lineto(-441.55446383,1087.33281581)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1086.94146264)
-\lineto(-332.94574509,1087.16975199)
-\lineto(-331.66442521,1087.56110516)
-\lineto(-332.8783072,1086.97407541)
-\lineto(-333.11433981,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1086.94146264)
-\lineto(-332.94574509,1087.16975199)
-\lineto(-331.66442521,1087.56110516)
-\lineto(-332.8783072,1086.97407541)
-\lineto(-333.11433981,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-329.87732118,1087.59371793)
-\lineto(-329.5064128,1087.49587963)
-\curveto(-330.24593668,1087.176405)(-330.9145159,1086.74578606)(-331.46211155,1086.12614354)
-\lineto(-331.39467366,1085.93046695)
-\lineto(-331.66442521,1085.66956484)
-\lineto(-332.47367987,1085.27821167)
-\lineto(-334.49681651,1084.23460322)
-\lineto(-334.69913018,1084.23460322)
-\lineto(-331.19236,1087.03930094)
-\lineto(-329.87732118,1087.59371793)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.87732118,1087.59371793)
-\lineto(-329.5064128,1087.49587963)
-\curveto(-330.24593668,1087.176405)(-330.9145159,1086.74578606)(-331.46211155,1086.12614354)
-\lineto(-331.39467366,1085.93046695)
-\lineto(-331.66442521,1085.66956484)
-\lineto(-332.47367987,1085.27821167)
-\lineto(-334.49681651,1084.23460322)
-\lineto(-334.69913018,1084.23460322)
-\lineto(-331.19236,1087.03930094)
-\lineto(-329.87732118,1087.59371793)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.70287997,1087.20236476)
-\lineto(-449.24238307,1087.46326687)
-\lineto(-448.70287997,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.70287997,1087.20236476)
-\lineto(-449.24238307,1087.46326687)
-\lineto(-448.70287997,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.73561289,1087.33281581)
-\lineto(-445.87048867,1087.46326687)
-\lineto(-445.73561289,1087.33281581)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.73561289,1087.33281581)
-\lineto(-445.87048867,1087.46326687)
-\lineto(-445.73561289,1087.33281581)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1087.33281581)
-\curveto(-443.42721398,1087.31457876)(-443.15411751,1087.57871606)(-443.17297314,1087.33281581)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1087.33281581)
-\curveto(-443.42721398,1087.31457876)(-443.15411751,1087.57871606)(-443.17297314,1087.33281581)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1087.0719137)
-\lineto(-445.73561289,1087.33281581)
-\lineto(-445.33098556,1087.0719137)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1087.0719137)
-\lineto(-445.73561289,1087.33281581)
-\lineto(-445.33098556,1087.0719137)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.03809737,1087.20236476)
-\lineto(-443.17297314,1087.33281581)
-\lineto(-443.03809737,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.03809737,1087.20236476)
-\lineto(-443.17297314,1087.33281581)
-\lineto(-443.03809737,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.41958806,1087.20236476)
-\lineto(-441.55446383,1087.33281581)
-\lineto(-441.41958806,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.41958806,1087.20236476)
-\lineto(-441.55446383,1087.33281581)
-\lineto(-441.41958806,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.70287997,1087.20236476)
-\curveto(-448.44863913,1087.22060181)(-448.7217356,1086.95646451)(-448.70287997,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.70287997,1087.20236476)
-\curveto(-448.44863913,1087.22060181)(-448.7217356,1086.95646451)(-448.70287997,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1087.0719137)
-\lineto(-443.03809737,1087.20236476)
-\lineto(-442.90322159,1087.0719137)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1087.0719137)
-\lineto(-443.03809737,1087.20236476)
-\lineto(-442.90322159,1087.0719137)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.41958806,1087.20236476)
-\curveto(-441.16534722,1087.22060181)(-441.43844369,1086.95646451)(-441.41958806,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.41958806,1087.20236476)
-\curveto(-441.16534722,1087.22060181)(-441.43844369,1086.95646451)(-441.41958806,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.35135844,1087.20236476)
-\curveto(-336.3325028,1086.95646451)(-336.60559927,1087.22060181)(-336.35135844,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.35135844,1087.20236476)
-\curveto(-336.3325028,1086.95646451)(-336.60559927,1087.22060181)(-336.35135844,1087.20236476)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1086.94146264)
-\curveto(-448.55249348,1086.92322559)(-448.27939701,1087.18736289)(-448.29825264,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1086.94146264)
-\curveto(-448.55249348,1086.92322559)(-448.27939701,1087.18736289)(-448.29825264,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1087.0719137)
-\curveto(-445.07674473,1087.09015076)(-445.3498412,1086.82601346)(-445.33098556,1087.0719137)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1087.0719137)
-\curveto(-445.07674473,1087.09015076)(-445.3498412,1086.82601346)(-445.33098556,1087.0719137)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.76834582,1086.94146264)
-\lineto(-442.90322159,1087.0719137)
-\lineto(-442.76834582,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.76834582,1086.94146264)
-\lineto(-442.90322159,1087.0719137)
-\lineto(-442.76834582,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1086.94146264)
-\lineto(-448.06222003,1086.84362435)
-\lineto(-448.29825264,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1086.94146264)
-\lineto(-448.06222003,1086.84362435)
-\lineto(-448.29825264,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1086.68056053)
-\lineto(-442.76834582,1086.94146264)
-\lineto(-442.49859426,1086.68056053)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1086.68056053)
-\lineto(-442.76834582,1086.94146264)
-\lineto(-442.49859426,1086.68056053)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.75598576,1086.94146264)
-\curveto(-336.50174493,1086.9596997)(-336.77482791,1086.6955624)(-336.75598576,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.75598576,1086.94146264)
-\curveto(-336.50174493,1086.9596997)(-336.77482791,1086.6955624)(-336.75598576,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1086.94146264)
-\lineto(-333.51896714,1086.68056053)
-\lineto(-333.11433981,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.11433981,1086.94146264)
-\lineto(-333.51896714,1086.68056053)
-\lineto(-333.11433981,1086.94146264)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.62387376,1086.55010947)
-\lineto(-447.85990637,1086.77839882)
-\lineto(-447.62387376,1086.55010947)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.62387376,1086.55010947)
-\lineto(-447.85990637,1086.77839882)
-\lineto(-447.62387376,1086.55010947)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1086.41965842)
-\lineto(-445.02751507,1086.77839882)
-\lineto(-444.52173091,1086.41965842)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1086.41965842)
-\lineto(-445.02751507,1086.77839882)
-\lineto(-444.52173091,1086.41965842)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1086.68056053)
-\lineto(-442.26256166,1086.32182012)
-\lineto(-442.49859426,1086.68056053)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1086.68056053)
-\lineto(-442.26256166,1086.32182012)
-\lineto(-442.49859426,1086.68056053)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1086.68056053)
-\curveto(-333.5001115,1086.43466029)(-333.77320797,1086.69879759)(-333.51896714,1086.68056053)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1086.68056053)
-\curveto(-333.5001115,1086.43466029)(-333.77320797,1086.69879759)(-333.51896714,1086.68056053)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.35412221,1086.41965842)
-\lineto(-447.62387376,1086.55010947)
-\lineto(-447.35412221,1086.41965842)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.35412221,1086.41965842)
-\lineto(-447.62387376,1086.55010947)
-\lineto(-447.35412221,1086.41965842)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.53527127,1086.41965842)
-\lineto(-451.02948711,1086.2565946)
-\lineto(-451.02948711,1086.19136907)
-\curveto(-451.22667549,1086.08117706)(-451.49507828,1086.20928)(-451.53527127,1086.41965842)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.53527127,1086.41965842)
-\lineto(-451.02948711,1086.2565946)
-\lineto(-451.02948711,1086.19136907)
-\curveto(-451.22667549,1086.08117706)(-451.49507828,1086.20928)(-451.53527127,1086.41965842)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.21924643,1086.28920736)
-\lineto(-447.35412221,1086.41965842)
-\lineto(-447.21924643,1086.28920736)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.21924643,1086.28920736)
-\lineto(-447.35412221,1086.41965842)
-\lineto(-447.21924643,1086.28920736)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1086.1587563)
-\lineto(-444.52173091,1086.41965842)
-\lineto(-444.25197935,1086.1587563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1086.1587563)
-\lineto(-444.52173091,1086.41965842)
-\lineto(-444.25197935,1086.1587563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.8146191,1086.02830525)
-\lineto(-447.21924643,1086.28920736)
-\lineto(-446.8146191,1086.02830525)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.8146191,1086.02830525)
-\lineto(-447.21924643,1086.28920736)
-\lineto(-446.8146191,1086.02830525)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.72601661,1086.02830525)
-\curveto(-450.98025745,1086.01006819)(-450.70716098,1086.27420549)(-450.72601661,1086.02830525)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.72601661,1086.02830525)
-\curveto(-450.98025745,1086.01006819)(-450.70716098,1086.27420549)(-450.72601661,1086.02830525)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1086.02830525)
-\lineto(-444.25197935,1086.1587563)
-\lineto(-444.11710358,1086.02830525)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1086.02830525)
-\lineto(-444.25197935,1086.1587563)
-\lineto(-444.11710358,1086.02830525)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1086.1587563)
-\lineto(-441.9928101,1085.93046695)
-\lineto(-442.09396694,1086.1587563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1086.1587563)
-\lineto(-441.9928101,1085.93046695)
-\lineto(-442.09396694,1086.1587563)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.32138928,1085.89785419)
-\lineto(-450.72601661,1086.02830525)
-\lineto(-450.32138928,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.32138928,1085.89785419)
-\lineto(-450.72601661,1086.02830525)
-\lineto(-450.32138928,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.32138928,1085.89785419)
-\lineto(-449.78188618,1086.02830525)
-\lineto(-448.8040368,1085.53911378)
-\curveto(-447.86813379,1085.40383604)(-446.91712469,1085.06414149)(-446.24139705,1084.36505427)
-\lineto(-444.8252014,1083.5171224)
-\lineto(-444.15082252,1082.86486712)
-\lineto(-443.20669209,1081.82125867)
-\lineto(-443.34156787,1081.36467997)
-\lineto(-443.94850886,1081.8864842)
-\lineto(-444.55544985,1082.86486712)
-\lineto(-446.44371072,1084.29982874)
-\lineto(-450.01791878,1085.66956484)
-\lineto(-450.32138928,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.32138928,1085.89785419)
-\lineto(-449.78188618,1086.02830525)
-\lineto(-448.8040368,1085.53911378)
-\curveto(-447.86813379,1085.40383604)(-446.91712469,1085.06414149)(-446.24139705,1084.36505427)
-\lineto(-444.8252014,1083.5171224)
-\lineto(-444.15082252,1082.86486712)
-\lineto(-443.20669209,1081.82125867)
-\lineto(-443.34156787,1081.36467997)
-\lineto(-443.94850886,1081.8864842)
-\lineto(-444.55544985,1082.86486712)
-\lineto(-446.44371072,1084.29982874)
-\lineto(-450.01791878,1085.66956484)
-\lineto(-450.32138928,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1085.89785419)
-\lineto(-446.8146191,1086.02830525)
-\lineto(-446.54486755,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1085.89785419)
-\lineto(-446.8146191,1086.02830525)
-\lineto(-446.54486755,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.9822278,1085.89785419)
-\lineto(-444.11710358,1086.02830525)
-\lineto(-443.9822278,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.9822278,1085.89785419)
-\lineto(-444.11710358,1086.02830525)
-\lineto(-443.9822278,1085.89785419)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.275116,1085.76740313)
-\lineto(-446.54486755,1085.89785419)
-\lineto(-446.275116,1085.76740313)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.275116,1085.76740313)
-\lineto(-446.54486755,1085.89785419)
-\lineto(-446.275116,1085.76740313)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.84735203,1085.76740313)
-\lineto(-443.9822278,1085.89785419)
-\lineto(-443.84735203,1085.76740313)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.84735203,1085.76740313)
-\lineto(-443.9822278,1085.89785419)
-\lineto(-443.84735203,1085.76740313)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1085.50650102)
-\lineto(-446.275116,1085.76740313)
-\lineto(-445.87048867,1085.50650102)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1085.50650102)
-\lineto(-446.275116,1085.76740313)
-\lineto(-445.87048867,1085.50650102)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.03809737,1084.98469679)
-\lineto(-443.84735203,1085.76740313)
-\curveto(-443.48777321,1085.72738075)(-443.07950423,1085.33247931)(-443.03809737,1084.98469679)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.03809737,1084.98469679)
-\lineto(-443.84735203,1085.76740313)
-\curveto(-443.48777321,1085.72738075)(-443.07950423,1085.33247931)(-443.03809737,1084.98469679)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1085.37604996)
-\lineto(-445.87048867,1085.50650102)
-\lineto(-445.60073712,1085.37604996)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1085.37604996)
-\lineto(-445.87048867,1085.50650102)
-\lineto(-445.60073712,1085.37604996)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-409.31915333,1077.80988867)
-\lineto(-411.2074142,1079.50575241)
-\curveto(-411.76391165,1079.03143237)(-410.75342234,1078.22707115)(-410.53303532,1077.67943762)
-\lineto(-409.89237538,1075.88573559)
-\lineto(-410.43187849,1076.6032164)
-\lineto(-411.10625737,1077.77727591)
-\curveto(-411.33810882,1078.17971742)(-411.48013302,1078.81149189)(-411.98294991,1078.95133542)
-\lineto(-412.15154463,1078.59259501)
-\curveto(-411.42321544,1077.37692162)(-410.56810302,1076.13750613)(-410.56675426,1074.71167608)
-\lineto(-411.30857103,1076.01618664)
-\curveto(-411.86641724,1076.79289223)(-412.05955935,1078.27559895)(-413.1968319,1078.42953119)
-\lineto(-411.57832258,1075.10302925)
-\lineto(-411.37600892,1074.45077396)
-\lineto(-413.50030239,1077.94033973)
-\lineto(-413.736335,1077.77727591)
-\lineto(-413.50030239,1077.28808445)
-\curveto(-413.10187935,1076.76119263)(-412.61295466,1076.14872492)(-412.5898909,1075.49438242)
-\lineto(-412.72476668,1075.690059)
-\lineto(-413.39914556,1076.86411851)
-\curveto(-413.68710534,1077.08066727)(-413.78286714,1077.7016143)(-414.27583811,1077.51637379)
-\lineto(-414.41071388,1077.32069721)
-\curveto(-413.47926177,1075.99661898)(-412.32418562,1074.44033788)(-412.52245302,1072.88536128)
-\lineto(-412.82592351,1074.02680803)
-\lineto(-413.46658345,1075.36393136)
-\lineto(-414.47815177,1077.12502062)
-\curveto(-415.34742615,1077.27660475)(-414.59040888,1076.49324616)(-414.61302755,1076.1466377)
-\lineto(-414.95021699,1076.40753981)
-\lineto(-415.35484431,1076.86411851)
-\lineto(-415.52343903,1076.37492705)
-\curveto(-414.5782296,1074.94779249)(-413.79163407,1073.14887242)(-413.736335,1071.58085071)
-\curveto(-414.49636,1073.02103038)(-414.63150553,1075.05737138)(-416.16409897,1075.95096111)
-\lineto(-415.15253065,1073.40716551)
-\lineto(-415.82690953,1074.64645055)
-\curveto(-416.16477335,1074.99149359)(-416.78183003,1076.18055497)(-417.27682412,1075.46176965)
-\curveto(-416.02436767,1074.46734125)(-415.35754183,1072.81752673)(-415.15253065,1071.3199486)
-\lineto(-416.09666108,1072.82013575)
-\lineto(-417.64773251,1074.32032291)
-\curveto(-418.1589117,1074.70293585)(-418.16053021,1073.95584265)(-417.85004617,1073.73329315)
-\lineto(-416.33269369,1071.41778689)
-\curveto(-416.08195962,1070.9985172)(-416.45845187,1070.95481609)(-416.83847785,1071.05904649)
-\curveto(-417.27183372,1071.67020969)(-417.64786738,1073.27671445)(-418.45698717,1072.95058681)
-\lineto(-417.17566729,1070.4067912)
-\lineto(-418.86161449,1072.88536128)
-\curveto(-419.02400493,1073.00401956)(-419.22038406,1073.39633807)(-419.4011176,1073.08103787)
-\lineto(-417.54657568,1068.93921682)
-\lineto(-418.32211139,1070.27634015)
-\lineto(-419.13136605,1071.84175283)
-\curveto(-419.01117824,1072.33564053)(-419.85848136,1072.33564053)(-419.73830704,1071.84175283)
-\curveto(-419.97946493,1071.88302754)(-420.2791589,1072.24706426)(-420.48012381,1071.90697836)
-\lineto(-419.60343126,1070.01543803)
-\lineto(-419.97433965,1070.24372738)
-\lineto(-420.37896698,1070.11327633)
-\curveto(-419.96773073,1069.50393944)(-419.63283418,1068.80746125)(-419.60343126,1068.05867218)
-\curveto(-420.03570813,1069.05062202)(-420.68500011,1069.80410732)(-421.69400579,1070.08066356)
-\lineto(-421.35681635,1068.84137852)
-\lineto(-422.90788778,1069.55885933)
-\lineto(-422.16607101,1068.05867218)
-\lineto(-423.31251511,1068.64570194)
-\lineto(-422.16607101,1066.36280845)
-\lineto(-423.85201821,1068.12389771)
-\lineto(-423.64970455,1067.47164243)
-\lineto(-425.20077597,1067.60209348)
-\lineto(-424.4589592,1065.84100422)
-\lineto(-425.13333809,1066.42803397)
-\lineto(-425.77399802,1067.24335308)
-\lineto(-421.62656791,1071.84175283)
-\curveto(-417.4818353,1077.56724971)(-412.04229525,1083.17403612)(-404.99638471,1085.1216704)
-\curveto(-403.4223844,1085.33039209)(-401.86187167,1085.60616563)(-400.27573254,1085.25212146)
-\curveto(-396.00421671,1085.64738816)(-391.83655523,1083.69584035)(-388.71013474,1081.04507488)
-\lineto(-386.82187387,1079.4796622)
-\curveto(-386.32876803,1078.41178985)(-386.25755362,1076.98804702)(-386.48468443,1075.89225814)
-\curveto(-386.86328073,1076.8137644)(-386.66002294,1078.5169334)(-387.69856642,1078.82740691)
-\lineto(-387.83344219,1078.50127927)
-\curveto(-388.11762545,1079.1779289)(-388.44240632,1080.00668447)(-389.31707573,1079.74056431)
-\curveto(-389.16331734,1079.40400059)(-388.9864952,1078.10470806)(-389.48567045,1078.72956862)
-\lineto(-389.755422,1080.55588342)
-\lineto(-390.02517355,1078.46866651)
-\lineto(-390.19376827,1077.45767082)
-\lineto(-391.00302293,1082.21913439)
-\curveto(-391.19683942,1082.29157386)(-391.60699666,1082.30739757)(-391.50880709,1081.99084504)
-\lineto(-391.7448397,1080.19714301)
-\curveto(-391.601197,1079.72347522)(-391.17377566,1079.02621433)(-391.50880709,1078.59911757)
-\lineto(-392.21690492,1080.00146643)
-\lineto(-392.62153224,1082.08868333)
-\lineto(-394.03772789,1083.91499813)
-\lineto(-394.34119839,1080.81678553)
-\lineto(-394.07144684,1079.51227496)
-\lineto(-394.20632261,1079.12092179)
-\lineto(-395.85855087,1084.17590024)
-\lineto(-396.33061609,1084.04544918)
-\curveto(-396.11913087,1083.57321636)(-395.67822196,1083.12537788)(-395.85855087,1082.54526203)
-\curveto(-395.92509858,1082.76963785)(-396.24658848,1083.87586281)(-396.63408659,1083.16490455)
-\lineto(-396.2631782,1081.11030041)
-\lineto(-397.17358969,1082.64310032)
-\lineto(-397.44334124,1082.38219821)
-\curveto(-396.97518742,1081.07116509)(-395.90171112,1079.77317708)(-396.2631782,1078.37082822)
-\lineto(-397.98284435,1081.86039398)
-\lineto(-398.62350428,1083.19751732)
-\lineto(-399.06185056,1083.81715983)
-\curveto(-399.78937049,1083.50081602)(-398.14361627,1082.13695022)(-399.29788316,1082.21913439)
-\lineto(-399.43275894,1082.0234578)
-\curveto(-399.07587764,1081.40642431)(-398.4307668,1080.83074379)(-398.5560664,1080.06669195)
-\lineto(-399.19672633,1080.94723659)
-\lineto(-399.90482416,1082.21913439)
-\lineto(-400.51176515,1082.34958545)
-\lineto(-398.96069372,1078.76218139)
-\lineto(-401.79308502,1082.74093862)
-\lineto(-402.06283658,1082.54526203)
-\lineto(-401.35473875,1081.2081387)
-\lineto(-400.68035987,1079.77317708)
-\lineto(-400.71407881,1079.15353456)
-\lineto(-403.20928067,1082.87138967)
-\lineto(-403.24299962,1082.51264927)
-\curveto(-402.84309294,1082.1407333)(-402.84026055,1081.70241775)(-402.93952912,1081.24075146)
-\lineto(-402.56862074,1079.77317708)
-\lineto(-402.60233968,1079.0230835)
-\curveto(-403.66151915,1079.49570768)(-403.09976154,1081.62949561)(-404.42316266,1081.82778122)
-\lineto(-403.68134589,1079.15353456)
-\curveto(-405.61951079,1079.07555092)(-405.21623222,1082.41481097)(-406.71605085,1083.00184073)
-\lineto(-405.43473098,1079.67533878)
-\lineto(-407.18811607,1080.78417277)
-\lineto(-407.79505706,1081.37120252)
-\curveto(-407.95245709,1081.72472488)(-408.72381166,1081.683111)(-408.60431172,1081.24075146)
-\curveto(-407.89068399,1081.04285721)(-406.58791886,1079.6649027)(-407.25555396,1079.34921114)
-\curveto(-407.43925476,1079.07617708)(-407.55578743,1079.16162252)(-407.66018129,1079.41443667)
-\curveto(-407.84361234,1079.6779478)(-407.95434535,1080.48139586)(-408.40199805,1080.19714301)
-\curveto(-410.38197445,1081.89431126)(-407.77172355,1078.10601257)(-409.2786906,1078.17515163)
-\lineto(-409.31240954,1077.81641123)
-\lineto(-409.31915333,1077.80988867)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-409.31915333,1077.80988867)
-\lineto(-411.2074142,1079.50575241)
-\curveto(-411.76391165,1079.03143237)(-410.75342234,1078.22707115)(-410.53303532,1077.67943762)
-\lineto(-409.89237538,1075.88573559)
-\lineto(-410.43187849,1076.6032164)
-\lineto(-411.10625737,1077.77727591)
-\curveto(-411.33810882,1078.17971742)(-411.48013302,1078.81149189)(-411.98294991,1078.95133542)
-\lineto(-412.15154463,1078.59259501)
-\curveto(-411.42321544,1077.37692162)(-410.56810302,1076.13750613)(-410.56675426,1074.71167608)
-\lineto(-411.30857103,1076.01618664)
-\curveto(-411.86641724,1076.79289223)(-412.05955935,1078.27559895)(-413.1968319,1078.42953119)
-\lineto(-411.57832258,1075.10302925)
-\lineto(-411.37600892,1074.45077396)
-\lineto(-413.50030239,1077.94033973)
-\lineto(-413.736335,1077.77727591)
-\lineto(-413.50030239,1077.28808445)
-\curveto(-413.10187935,1076.76119263)(-412.61295466,1076.14872492)(-412.5898909,1075.49438242)
-\lineto(-412.72476668,1075.690059)
-\lineto(-413.39914556,1076.86411851)
-\curveto(-413.68710534,1077.08066727)(-413.78286714,1077.7016143)(-414.27583811,1077.51637379)
-\lineto(-414.41071388,1077.32069721)
-\curveto(-413.47926177,1075.99661898)(-412.32418562,1074.44033788)(-412.52245302,1072.88536128)
-\lineto(-412.82592351,1074.02680803)
-\lineto(-413.46658345,1075.36393136)
-\lineto(-414.47815177,1077.12502062)
-\curveto(-415.34742615,1077.27660475)(-414.59040888,1076.49324616)(-414.61302755,1076.1466377)
-\lineto(-414.95021699,1076.40753981)
-\lineto(-415.35484431,1076.86411851)
-\lineto(-415.52343903,1076.37492705)
-\curveto(-414.5782296,1074.94779249)(-413.79163407,1073.14887242)(-413.736335,1071.58085071)
-\curveto(-414.49636,1073.02103038)(-414.63150553,1075.05737138)(-416.16409897,1075.95096111)
-\lineto(-415.15253065,1073.40716551)
-\lineto(-415.82690953,1074.64645055)
-\curveto(-416.16477335,1074.99149359)(-416.78183003,1076.18055497)(-417.27682412,1075.46176965)
-\curveto(-416.02436767,1074.46734125)(-415.35754183,1072.81752673)(-415.15253065,1071.3199486)
-\lineto(-416.09666108,1072.82013575)
-\lineto(-417.64773251,1074.32032291)
-\curveto(-418.1589117,1074.70293585)(-418.16053021,1073.95584265)(-417.85004617,1073.73329315)
-\lineto(-416.33269369,1071.41778689)
-\curveto(-416.08195962,1070.9985172)(-416.45845187,1070.95481609)(-416.83847785,1071.05904649)
-\curveto(-417.27183372,1071.67020969)(-417.64786738,1073.27671445)(-418.45698717,1072.95058681)
-\lineto(-417.17566729,1070.4067912)
-\lineto(-418.86161449,1072.88536128)
-\curveto(-419.02400493,1073.00401956)(-419.22038406,1073.39633807)(-419.4011176,1073.08103787)
-\lineto(-417.54657568,1068.93921682)
-\lineto(-418.32211139,1070.27634015)
-\lineto(-419.13136605,1071.84175283)
-\curveto(-419.01117824,1072.33564053)(-419.85848136,1072.33564053)(-419.73830704,1071.84175283)
-\curveto(-419.97946493,1071.88302754)(-420.2791589,1072.24706426)(-420.48012381,1071.90697836)
-\lineto(-419.60343126,1070.01543803)
-\lineto(-419.97433965,1070.24372738)
-\lineto(-420.37896698,1070.11327633)
-\curveto(-419.96773073,1069.50393944)(-419.63283418,1068.80746125)(-419.60343126,1068.05867218)
-\curveto(-420.03570813,1069.05062202)(-420.68500011,1069.80410732)(-421.69400579,1070.08066356)
-\lineto(-421.35681635,1068.84137852)
-\lineto(-422.90788778,1069.55885933)
-\lineto(-422.16607101,1068.05867218)
-\lineto(-423.31251511,1068.64570194)
-\lineto(-422.16607101,1066.36280845)
-\lineto(-423.85201821,1068.12389771)
-\lineto(-423.64970455,1067.47164243)
-\lineto(-425.20077597,1067.60209348)
-\lineto(-424.4589592,1065.84100422)
-\lineto(-425.13333809,1066.42803397)
-\lineto(-425.77399802,1067.24335308)
-\lineto(-421.62656791,1071.84175283)
-\curveto(-417.4818353,1077.56724971)(-412.04229525,1083.17403612)(-404.99638471,1085.1216704)
-\curveto(-403.4223844,1085.33039209)(-401.86187167,1085.60616563)(-400.27573254,1085.25212146)
-\curveto(-396.00421671,1085.64738816)(-391.83655523,1083.69584035)(-388.71013474,1081.04507488)
-\lineto(-386.82187387,1079.4796622)
-\curveto(-386.32876803,1078.41178985)(-386.25755362,1076.98804702)(-386.48468443,1075.89225814)
-\curveto(-386.86328073,1076.8137644)(-386.66002294,1078.5169334)(-387.69856642,1078.82740691)
-\lineto(-387.83344219,1078.50127927)
-\curveto(-388.11762545,1079.1779289)(-388.44240632,1080.00668447)(-389.31707573,1079.74056431)
-\curveto(-389.16331734,1079.40400059)(-388.9864952,1078.10470806)(-389.48567045,1078.72956862)
-\lineto(-389.755422,1080.55588342)
-\lineto(-390.02517355,1078.46866651)
-\lineto(-390.19376827,1077.45767082)
-\lineto(-391.00302293,1082.21913439)
-\curveto(-391.19683942,1082.29157386)(-391.60699666,1082.30739757)(-391.50880709,1081.99084504)
-\lineto(-391.7448397,1080.19714301)
-\curveto(-391.601197,1079.72347522)(-391.17377566,1079.02621433)(-391.50880709,1078.59911757)
-\lineto(-392.21690492,1080.00146643)
-\lineto(-392.62153224,1082.08868333)
-\lineto(-394.03772789,1083.91499813)
-\lineto(-394.34119839,1080.81678553)
-\lineto(-394.07144684,1079.51227496)
-\lineto(-394.20632261,1079.12092179)
-\lineto(-395.85855087,1084.17590024)
-\lineto(-396.33061609,1084.04544918)
-\curveto(-396.11913087,1083.57321636)(-395.67822196,1083.12537788)(-395.85855087,1082.54526203)
-\curveto(-395.92509858,1082.76963785)(-396.24658848,1083.87586281)(-396.63408659,1083.16490455)
-\lineto(-396.2631782,1081.11030041)
-\lineto(-397.17358969,1082.64310032)
-\lineto(-397.44334124,1082.38219821)
-\curveto(-396.97518742,1081.07116509)(-395.90171112,1079.77317708)(-396.2631782,1078.37082822)
-\lineto(-397.98284435,1081.86039398)
-\lineto(-398.62350428,1083.19751732)
-\lineto(-399.06185056,1083.81715983)
-\curveto(-399.78937049,1083.50081602)(-398.14361627,1082.13695022)(-399.29788316,1082.21913439)
-\lineto(-399.43275894,1082.0234578)
-\curveto(-399.07587764,1081.40642431)(-398.4307668,1080.83074379)(-398.5560664,1080.06669195)
-\lineto(-399.19672633,1080.94723659)
-\lineto(-399.90482416,1082.21913439)
-\lineto(-400.51176515,1082.34958545)
-\lineto(-398.96069372,1078.76218139)
-\lineto(-401.79308502,1082.74093862)
-\lineto(-402.06283658,1082.54526203)
-\lineto(-401.35473875,1081.2081387)
-\lineto(-400.68035987,1079.77317708)
-\lineto(-400.71407881,1079.15353456)
-\lineto(-403.20928067,1082.87138967)
-\lineto(-403.24299962,1082.51264927)
-\curveto(-402.84309294,1082.1407333)(-402.84026055,1081.70241775)(-402.93952912,1081.24075146)
-\lineto(-402.56862074,1079.77317708)
-\lineto(-402.60233968,1079.0230835)
-\curveto(-403.66151915,1079.49570768)(-403.09976154,1081.62949561)(-404.42316266,1081.82778122)
-\lineto(-403.68134589,1079.15353456)
-\curveto(-405.61951079,1079.07555092)(-405.21623222,1082.41481097)(-406.71605085,1083.00184073)
-\lineto(-405.43473098,1079.67533878)
-\lineto(-407.18811607,1080.78417277)
-\lineto(-407.79505706,1081.37120252)
-\curveto(-407.95245709,1081.72472488)(-408.72381166,1081.683111)(-408.60431172,1081.24075146)
-\curveto(-407.89068399,1081.04285721)(-406.58791886,1079.6649027)(-407.25555396,1079.34921114)
-\curveto(-407.43925476,1079.07617708)(-407.55578743,1079.16162252)(-407.66018129,1079.41443667)
-\curveto(-407.84361234,1079.6779478)(-407.95434535,1080.48139586)(-408.40199805,1080.19714301)
-\curveto(-410.38197445,1081.89431126)(-407.77172355,1078.10601257)(-409.2786906,1078.17515163)
-\lineto(-409.31240954,1077.81641123)
-\lineto(-409.31915333,1077.80988867)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1085.11514785)
-\lineto(-445.60073712,1085.37604996)
-\lineto(-445.19610979,1085.11514785)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1085.11514785)
-\lineto(-445.60073712,1085.37604996)
-\lineto(-445.19610979,1085.11514785)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.82352942 0.82352942 0.82352942}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-331.49583049,1085.24559891)
-\lineto(-330.45054323,1085.21298614)
-\lineto(-331.22607894,1084.85424574)
-\lineto(-332.40624198,1084.4302798)
-\lineto(-332.74343142,1083.9737011)
-\curveto(-333.75931577,1083.53199382)(-334.76656807,1082.92487461)(-335.50838483,1082.14738631)
-\lineto(-335.23863328,1081.8864842)
-\lineto(-332.67599354,1083.5171224)
-\lineto(-330.82145161,1084.33244151)
-\lineto(-329.23666124,1084.69118191)
-\lineto(-330.51798112,1084.16937769)
-\lineto(-330.58541901,1083.58234793)
-\lineto(-335.37350906,1081.4299055)
-\lineto(-335.37350906,1081.10377785)
-\lineto(-333.35037242,1081.95170972)
-\lineto(-331.22607894,1082.76702883)
-\curveto(-330.78503515,1083.04306326)(-330.39443491,1082.98514299)(-329.91104012,1082.86486712)
-\curveto(-330.40347158,1082.67440858)(-331.15311115,1082.58191878)(-331.52954944,1082.01693525)
-\curveto(-332.45331363,1082.00289872)(-333.22224043,1081.48991298)(-333.88987552,1080.90810127)
-\lineto(-332.74343142,1080.90810127)
-\lineto(-335.37350906,1079.08178648)
-\lineto(-334.22706496,1079.21223753)
-\lineto(-334.22706496,1078.88610989)
-\lineto(-335.64326061,1078.10340355)
-\lineto(-335.91301216,1082.21261184)
-\curveto(-334.78005564,1083.60452461)(-333.09141093,1084.60117069)(-331.49583049,1085.24559891)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.82352942 0.82352942 0.82352942}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-331.49583049,1085.24559891)
-\lineto(-330.45054323,1085.21298614)
-\lineto(-331.22607894,1084.85424574)
-\lineto(-332.40624198,1084.4302798)
-\lineto(-332.74343142,1083.9737011)
-\curveto(-333.75931577,1083.53199382)(-334.76656807,1082.92487461)(-335.50838483,1082.14738631)
-\lineto(-335.23863328,1081.8864842)
-\lineto(-332.67599354,1083.5171224)
-\lineto(-330.82145161,1084.33244151)
-\lineto(-329.23666124,1084.69118191)
-\lineto(-330.51798112,1084.16937769)
-\lineto(-330.58541901,1083.58234793)
-\lineto(-335.37350906,1081.4299055)
-\lineto(-335.37350906,1081.10377785)
-\lineto(-333.35037242,1081.95170972)
-\lineto(-331.22607894,1082.76702883)
-\curveto(-330.78503515,1083.04306326)(-330.39443491,1082.98514299)(-329.91104012,1082.86486712)
-\curveto(-330.40347158,1082.67440858)(-331.15311115,1082.58191878)(-331.52954944,1082.01693525)
-\curveto(-332.45331363,1082.00289872)(-333.22224043,1081.48991298)(-333.88987552,1080.90810127)
-\lineto(-332.74343142,1080.90810127)
-\lineto(-335.37350906,1079.08178648)
-\lineto(-334.22706496,1079.21223753)
-\lineto(-334.22706496,1078.88610989)
-\lineto(-335.64326061,1078.10340355)
-\lineto(-335.91301216,1082.21261184)
-\curveto(-334.78005564,1083.60452461)(-333.09141093,1084.60117069)(-331.49583049,1085.24559891)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1084.85424574)
-\lineto(-445.19610979,1085.11514785)
-\lineto(-444.92635823,1084.85424574)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1084.85424574)
-\lineto(-445.19610979,1085.11514785)
-\lineto(-444.92635823,1084.85424574)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.63347004,1084.59334362)
-\curveto(-442.86154498,1084.5395717)(-443.09366619,1084.76410406)(-443.03809737,1084.98469679)
-\lineto(-442.63347004,1084.59334362)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.63347004,1084.59334362)
-\curveto(-442.86154498,1084.5395717)(-443.09366619,1084.76410406)(-443.03809737,1084.98469679)
-\lineto(-442.63347004,1084.59334362)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1084.72379468)
-\lineto(-444.92635823,1084.85424574)
-\lineto(-444.65660668,1084.72379468)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1084.72379468)
-\lineto(-444.92635823,1084.85424574)
-\lineto(-444.65660668,1084.72379468)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1084.59334362)
-\lineto(-444.65660668,1084.72379468)
-\lineto(-444.52173091,1084.59334362)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1084.59334362)
-\lineto(-444.65660668,1084.72379468)
-\lineto(-444.52173091,1084.59334362)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1084.59334362)
-\curveto(-444.26749007,1084.61156763)(-444.54058654,1084.34744338)(-444.52173091,1084.59334362)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1084.59334362)
-\curveto(-444.26749007,1084.61156763)(-444.54058654,1084.34744338)(-444.52173091,1084.59334362)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.22884271,1084.0715394)
-\lineto(-442.63347004,1084.59334362)
-\lineto(-442.22884271,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.22884271,1084.0715394)
-\lineto(-442.63347004,1084.59334362)
-\lineto(-442.22884271,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.9822278,1084.0715394)
-\lineto(-444.21826041,1084.4302798)
-\lineto(-443.9822278,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.9822278,1084.0715394)
-\lineto(-444.21826041,1084.4302798)
-\lineto(-443.9822278,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74901962 0.74901962 0.74901962}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-376.27458818,1084.46289257)
-\lineto(-375.90367979,1084.29982874)
-\lineto(-375.86996085,1083.81063728)
-\lineto(-375.73508507,1081.98432249)
-\lineto(-375.90367979,1081.10377785)
-\lineto(-376.10599346,1080.9733268)
-\lineto(-376.1397124,1084.0715394)
-\lineto(-376.27458818,1084.46289257)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74901962 0.74901962 0.74901962}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-376.27458818,1084.46289257)
-\lineto(-375.90367979,1084.29982874)
-\lineto(-375.86996085,1083.81063728)
-\lineto(-375.73508507,1081.98432249)
-\lineto(-375.90367979,1081.10377785)
-\lineto(-376.10599346,1080.9733268)
-\lineto(-376.1397124,1084.0715394)
-\lineto(-376.27458818,1084.46289257)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-375.33045774,1084.46289257)
-\lineto(-374.95954936,1084.4302798)
-\lineto(-374.65607886,1083.68018623)
-\lineto(-374.52120309,1082.89747988)
-\lineto(-374.65607886,1082.63657777)
-\curveto(-374.43933349,1082.14347278)(-374.43933349,1081.43381903)(-374.65607886,1080.94071403)
-\lineto(-374.68979781,1080.19062046)
-\lineto(-374.95954936,1079.66881623)
-\lineto(-375.02698725,1079.66881623)
-\lineto(-375.06070619,1082.2452246)
-\lineto(-375.19558197,1083.158382)
-\lineto(-375.33045774,1084.46289257)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-375.33045774,1084.46289257)
-\lineto(-374.95954936,1084.4302798)
-\lineto(-374.65607886,1083.68018623)
-\lineto(-374.52120309,1082.89747988)
-\lineto(-374.65607886,1082.63657777)
-\curveto(-374.43933349,1082.14347278)(-374.43933349,1081.43381903)(-374.65607886,1080.94071403)
-\lineto(-374.68979781,1080.19062046)
-\lineto(-374.95954936,1079.66881623)
-\lineto(-375.02698725,1079.66881623)
-\lineto(-375.06070619,1082.2452246)
-\lineto(-375.19558197,1083.158382)
-\lineto(-375.33045774,1084.46289257)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-374.38632731,1084.46289257)
-\curveto(-374.13491886,1084.50621536)(-373.62198629,1084.46295257)(-373.74566737,1084.10415216)
-\lineto(-373.81310526,1084.10415216)
-\lineto(-374.38632731,1084.46289257)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-374.38632731,1084.46289257)
-\curveto(-374.13491886,1084.50621536)(-373.62198629,1084.46295257)(-373.74566737,1084.10415216)
-\lineto(-373.81310526,1084.10415216)
-\lineto(-374.38632731,1084.46289257)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.13064394,1083.81063728)
-\lineto(-452.1759312,1084.10415216)
-\lineto(-452.1759312,1084.16937769)
-\lineto(-451.53527127,1084.0715394)
-\lineto(-451.13064394,1083.81063728)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.13064394,1083.81063728)
-\lineto(-452.1759312,1084.10415216)
-\lineto(-452.1759312,1084.16937769)
-\lineto(-451.53527127,1084.0715394)
-\lineto(-451.13064394,1083.81063728)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1083.81063728)
-\lineto(-443.9822278,1084.0715394)
-\lineto(-443.71247625,1083.81063728)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1083.81063728)
-\lineto(-443.9822278,1084.0715394)
-\lineto(-443.71247625,1083.81063728)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1083.94108834)
-\lineto(-442.22884271,1084.0715394)
-\lineto(-442.09396694,1083.94108834)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.09396694,1083.94108834)
-\lineto(-442.22884271,1084.0715394)
-\lineto(-442.09396694,1083.94108834)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-378.02797327,1084.0715394)
-\curveto(-377.59637078,1084.14315703)(-377.77494631,1083.55677953)(-377.79194066,1083.32144582)
-\curveto(-378.30365935,1083.09928767)(-378.22731966,1083.84481546)(-378.02797327,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-378.02797327,1084.0715394)
-\curveto(-377.59637078,1084.14315703)(-377.77494631,1083.55677953)(-377.79194066,1083.32144582)
-\curveto(-378.30365935,1083.09928767)(-378.22731966,1083.84481546)(-378.02797327,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-329.33781808,1084.0715394)
-\lineto(-328.96690969,1083.9737011)
-\lineto(-329.33781808,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.33781808,1084.0715394)
-\lineto(-328.96690969,1083.9737011)
-\lineto(-329.33781808,1084.0715394)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.95909116,1083.81063728)
-\lineto(-442.09396694,1083.94108834)
-\lineto(-441.95909116,1083.81063728)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.95909116,1083.81063728)
-\lineto(-442.09396694,1083.94108834)
-\lineto(-441.95909116,1083.81063728)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.72601661,1083.68018623)
-\lineto(-451.13064394,1083.81063728)
-\lineto(-450.72601661,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.72601661,1083.68018623)
-\lineto(-451.13064394,1083.81063728)
-\lineto(-450.72601661,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.57760047,1083.68018623)
-\lineto(-443.71247625,1083.81063728)
-\lineto(-443.57760047,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.57760047,1083.68018623)
-\lineto(-443.71247625,1083.81063728)
-\lineto(-443.57760047,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.82421538,1083.68018623)
-\lineto(-441.95909116,1083.81063728)
-\lineto(-441.82421538,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.82421538,1083.68018623)
-\lineto(-441.95909116,1083.81063728)
-\lineto(-441.82421538,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.59114083,1083.54973517)
-\lineto(-450.72601661,1083.68018623)
-\lineto(-450.59114083,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.59114083,1083.54973517)
-\lineto(-450.72601661,1083.68018623)
-\lineto(-450.59114083,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1083.54973517)
-\lineto(-448.8040368,1083.64757346)
-\lineto(-448.29825264,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1083.54973517)
-\lineto(-448.8040368,1083.64757346)
-\lineto(-448.29825264,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1083.158382)
-\lineto(-443.57760047,1083.68018623)
-\lineto(-443.17297314,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1083.158382)
-\lineto(-443.57760047,1083.68018623)
-\lineto(-443.17297314,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1083.54973517)
-\lineto(-441.82421538,1083.68018623)
-\lineto(-441.68933961,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1083.54973517)
-\lineto(-441.82421538,1083.68018623)
-\lineto(-441.68933961,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-372.90269377,1083.68018623)
-\lineto(-372.19459595,1083.32144582)
-\lineto(-371.11558974,1082.79964159)
-\lineto(-370.50864875,1082.86486712)
-\lineto(-370.07030247,1081.98432249)
-\lineto(-370.23889719,1080.71242468)
-\lineto(-370.4749298,1080.54936086)
-\lineto(-370.64352452,1081.03855233)
-\curveto(-370.95427831,1081.19091916)(-371.18397176,1081.51365508)(-371.04815185,1081.82125867)
-\lineto(-371.41906023,1082.37567566)
-\lineto(-371.68881179,1082.89747988)
-\curveto(-372.02357346,1082.83151079)(-372.00684887,1082.44285795)(-371.82368756,1082.2452246)
-\lineto(-371.95856334,1081.20161615)
-\lineto(-372.12715806,1082.34306289)
-\curveto(-372.53623629,1082.33308208)(-372.92791554,1082.38877294)(-372.767818,1082.89747988)
-\curveto(-372.95529532,1083.12890006)(-373.17554747,1083.40649991)(-372.90269377,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-372.90269377,1083.68018623)
-\lineto(-372.19459595,1083.32144582)
-\lineto(-371.11558974,1082.79964159)
-\lineto(-370.50864875,1082.86486712)
-\lineto(-370.07030247,1081.98432249)
-\lineto(-370.23889719,1080.71242468)
-\lineto(-370.4749298,1080.54936086)
-\lineto(-370.64352452,1081.03855233)
-\curveto(-370.95427831,1081.19091916)(-371.18397176,1081.51365508)(-371.04815185,1081.82125867)
-\lineto(-371.41906023,1082.37567566)
-\lineto(-371.68881179,1082.89747988)
-\curveto(-372.02357346,1082.83151079)(-372.00684887,1082.44285795)(-371.82368756,1082.2452246)
-\lineto(-371.95856334,1081.20161615)
-\lineto(-372.12715806,1082.34306289)
-\curveto(-372.53623629,1082.33308208)(-372.92791554,1082.38877294)(-372.767818,1082.89747988)
-\curveto(-372.95529532,1083.12890006)(-373.17554747,1083.40649991)(-372.90269377,1083.68018623)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.05163773,1083.28883305)
-\lineto(-450.59114083,1083.54973517)
-\lineto(-450.05163773,1083.28883305)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.05163773,1083.28883305)
-\lineto(-450.59114083,1083.54973517)
-\lineto(-450.05163773,1083.28883305)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.02850109,1083.41928411)
-\lineto(-448.29825264,1083.54973517)
-\lineto(-448.02850109,1083.41928411)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.02850109,1083.41928411)
-\lineto(-448.29825264,1083.54973517)
-\lineto(-448.02850109,1083.41928411)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1083.54973517)
-\curveto(-441.43509877,1083.56795918)(-441.70819524,1083.30383493)(-441.68933961,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-441.68933961,1083.54973517)
-\curveto(-441.43509877,1083.56795918)(-441.70819524,1083.30383493)(-441.68933961,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-371.01443291,1083.54973517)
-\lineto(-370.64352452,1083.32144582)
-\lineto(-371.01443291,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-371.01443291,1083.54973517)
-\lineto(-370.64352452,1083.32144582)
-\lineto(-371.01443291,1083.54973517)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.75874953,1083.28883305)
-\lineto(-448.02850109,1083.41928411)
-\lineto(-447.75874953,1083.28883305)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.75874953,1083.28883305)
-\lineto(-448.02850109,1083.41928411)
-\lineto(-447.75874953,1083.28883305)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.78188618,1083.158382)
-\lineto(-450.05163773,1083.28883305)
-\lineto(-449.78188618,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.78188618,1083.158382)
-\lineto(-450.05163773,1083.28883305)
-\lineto(-449.78188618,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.75874953,1083.28883305)
-\lineto(-447.52271693,1083.19099476)
-\lineto(-447.75874953,1083.28883305)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.75874953,1083.28883305)
-\lineto(-447.52271693,1083.19099476)
-\lineto(-447.75874953,1083.28883305)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.51213462,1083.02793094)
-\lineto(-449.78188618,1083.158382)
-\lineto(-449.51213462,1083.02793094)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.51213462,1083.02793094)
-\lineto(-449.78188618,1083.158382)
-\lineto(-449.51213462,1083.02793094)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1083.158382)
-\lineto(-442.80206476,1082.66919054)
-\lineto(-443.17297314,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.17297314,1083.158382)
-\lineto(-442.80206476,1082.66919054)
-\lineto(-443.17297314,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-380.18598568,1083.158382)
-\curveto(-379.47019994,1083.09468275)(-379.86498134,1082.09181416)(-379.8150773,1081.62558208)
-\lineto(-380.28714252,1081.62558208)
-\curveto(-380.60976537,1082.10994686)(-380.42377168,1082.69710706)(-380.18598568,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-380.18598568,1083.158382)
-\curveto(-379.47019994,1083.09468275)(-379.86498134,1082.09181416)(-379.8150773,1081.62558208)
-\lineto(-380.28714252,1081.62558208)
-\curveto(-380.60976537,1082.10994686)(-380.42377168,1082.69710706)(-380.18598568,1083.158382)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.37725885,1082.89747988)
-\lineto(-449.51213462,1083.02793094)
-\lineto(-449.37725885,1082.89747988)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.37725885,1082.89747988)
-\lineto(-449.51213462,1083.02793094)
-\lineto(-449.37725885,1082.89747988)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.94949488,1082.89747988)
-\lineto(-447.18552749,1082.99531818)
-\lineto(-446.94949488,1082.89747988)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.94949488,1082.89747988)
-\lineto(-447.18552749,1082.99531818)
-\lineto(-446.94949488,1082.89747988)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.83775574,1082.63657777)
-\lineto(-449.37725885,1082.89747988)
-\lineto(-448.83775574,1082.63657777)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.83775574,1082.63657777)
-\lineto(-449.37725885,1082.89747988)
-\lineto(-448.83775574,1082.63657777)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1082.63657777)
-\lineto(-446.94949488,1082.89747988)
-\lineto(-446.54486755,1082.63657777)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1082.63657777)
-\lineto(-446.94949488,1082.89747988)
-\lineto(-446.54486755,1082.63657777)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-378.70235215,1082.89747988)
-\lineto(-378.43260059,1082.76702883)
-\lineto(-377.38731333,1082.73441606)
-\lineto(-377.48847016,1081.85387143)
-\curveto(-377.47437564,1081.5850118)(-377.41578561,1080.9922422)(-377.85937855,1081.10377785)
-\lineto(-377.92681643,1081.69080761)
-\lineto(-378.26400587,1081.69080761)
-\lineto(-378.60119531,1080.58197363)
-\lineto(-378.6686332,1080.58197363)
-\lineto(-378.70235215,1081.59296932)
-\curveto(-378.91262348,1081.96566799)(-378.91262348,1082.52478122)(-378.70235215,1082.89747988)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-378.70235215,1082.89747988)
-\lineto(-378.43260059,1082.76702883)
-\lineto(-377.38731333,1082.73441606)
-\lineto(-377.48847016,1081.85387143)
-\curveto(-377.47437564,1081.5850118)(-377.41578561,1080.9922422)(-377.85937855,1081.10377785)
-\lineto(-377.92681643,1081.69080761)
-\lineto(-378.26400587,1081.69080761)
-\lineto(-378.60119531,1080.58197363)
-\lineto(-378.6686332,1080.58197363)
-\lineto(-378.70235215,1081.59296932)
-\curveto(-378.91262348,1081.96566799)(-378.91262348,1082.52478122)(-378.70235215,1082.89747988)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.43312841,1082.37567566)
-\lineto(-448.83775574,1082.63657777)
-\lineto(-448.43312841,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.43312841,1082.37567566)
-\lineto(-448.83775574,1082.63657777)
-\lineto(-448.43312841,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1082.37567566)
-\lineto(-446.54486755,1082.63657777)
-\lineto(-446.00536444,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1082.37567566)
-\lineto(-446.54486755,1082.63657777)
-\lineto(-446.00536444,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-381.53474345,1082.63657777)
-\lineto(-381.39986767,1082.37567566)
-\lineto(-382.07424655,1080.41890981)
-\lineto(-382.24284127,1079.147012)
-\lineto(-382.31027916,1079.147012)
-\lineto(-382.3439981,1079.89710558)
-\lineto(-382.20912233,1080.15800769)
-\lineto(-382.07424655,1081.3320672)
-\curveto(-382.13298495,1081.85139286)(-381.86168233,1082.26544451)(-381.53474345,1082.63657777)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.53474345,1082.63657777)
-\lineto(-381.39986767,1082.37567566)
-\lineto(-382.07424655,1080.41890981)
-\lineto(-382.24284127,1079.147012)
-\lineto(-382.31027916,1079.147012)
-\lineto(-382.3439981,1079.89710558)
-\lineto(-382.20912233,1080.15800769)
-\lineto(-382.07424655,1081.3320672)
-\curveto(-382.13298495,1081.85139286)(-381.86168233,1082.26544451)(-381.53474345,1082.63657777)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1082.37567566)
-\curveto(-442.7528351,1082.35745165)(-442.47973863,1082.6215759)(-442.49859426,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1082.37567566)
-\curveto(-442.7528351,1082.35745165)(-442.47973863,1082.6215759)(-442.49859426,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.68235296 0.68235296 0.68235296}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-368.85642049,1082.50612671)
-\curveto(-367.90446726,1082.33262681)(-368.46797825,1081.08290569)(-368.31691738,1080.41890981)
-\lineto(-368.41807421,1080.32107151)
-\lineto(-368.4855121,1081.56035655)
-\curveto(-368.99035213,1081.61403716)(-368.83983077,1082.16617126)(-368.85642049,1082.50612671)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.68235296 0.68235296 0.68235296}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-368.85642049,1082.50612671)
-\curveto(-367.90446726,1082.33262681)(-368.46797825,1081.08290569)(-368.31691738,1080.41890981)
-\lineto(-368.41807421,1080.32107151)
-\lineto(-368.4855121,1081.56035655)
-\curveto(-368.99035213,1081.61403716)(-368.83983077,1082.16617126)(-368.85642049,1082.50612671)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.16337686,1082.2452246)
-\lineto(-448.43312841,1082.37567566)
-\lineto(-448.16337686,1082.2452246)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.16337686,1082.2452246)
-\lineto(-448.43312841,1082.37567566)
-\lineto(-448.16337686,1082.2452246)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1082.11477354)
-\lineto(-446.00536444,1082.37567566)
-\lineto(-445.60073712,1082.11477354)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1082.11477354)
-\lineto(-446.00536444,1082.37567566)
-\lineto(-445.60073712,1082.11477354)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1082.37567566)
-\curveto(-442.24435343,1082.39389967)(-442.5174499,1082.12977542)(-442.49859426,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.49859426,1082.37567566)
-\curveto(-442.24435343,1082.39389967)(-442.5174499,1082.12977542)(-442.49859426,1082.37567566)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.89362531,1082.11477354)
-\lineto(-448.16337686,1082.2452246)
-\lineto(-447.89362531,1082.11477354)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.89362531,1082.11477354)
-\lineto(-448.16337686,1082.2452246)
-\lineto(-447.89362531,1082.11477354)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.75874953,1081.98432249)
-\lineto(-447.89362531,1082.11477354)
-\lineto(-447.75874953,1081.98432249)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.75874953,1081.98432249)
-\lineto(-447.89362531,1082.11477354)
-\lineto(-447.75874953,1081.98432249)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1081.85387143)
-\lineto(-445.60073712,1082.11477354)
-\lineto(-445.19610979,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1081.85387143)
-\lineto(-445.60073712,1082.11477354)
-\lineto(-445.19610979,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.48899798,1081.85387143)
-\lineto(-447.75874953,1081.98432249)
-\lineto(-447.48899798,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.48899798,1081.85387143)
-\lineto(-447.75874953,1081.98432249)
-\lineto(-447.48899798,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-372.767818,1081.98432249)
-\lineto(-372.66666116,1081.95170972)
-\lineto(-372.93641272,1079.79926729)
-\lineto(-373.13872638,1079.53836517)
-\lineto(-373.17244532,1079.76665452)
-\lineto(-372.90269377,1081.07116509)
-\lineto(-372.767818,1081.98432249)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-372.767818,1081.98432249)
-\lineto(-372.66666116,1081.95170972)
-\lineto(-372.93641272,1079.79926729)
-\lineto(-373.13872638,1079.53836517)
-\lineto(-373.17244532,1079.76665452)
-\lineto(-372.90269377,1081.07116509)
-\lineto(-372.767818,1081.98432249)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-329.60756963,1081.98432249)
-\lineto(-329.10178547,1081.8864842)
-\lineto(-330.95632739,1081.20161615)
-\lineto(-331.19236,1081.23422891)
-\lineto(-330.99004633,1081.36467997)
-\lineto(-330.38310534,1081.69080761)
-\lineto(-329.60756963,1081.98432249)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.60756963,1081.98432249)
-\lineto(-329.10178547,1081.8864842)
-\lineto(-330.95632739,1081.20161615)
-\lineto(-331.19236,1081.23422891)
-\lineto(-330.99004633,1081.36467997)
-\lineto(-330.38310534,1081.69080761)
-\lineto(-329.60756963,1081.98432249)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.21924643,1081.72342037)
-\lineto(-447.48899798,1081.85387143)
-\lineto(-447.21924643,1081.72342037)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.21924643,1081.72342037)
-\lineto(-447.48899798,1081.85387143)
-\lineto(-447.21924643,1081.72342037)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.06123401,1081.72342037)
-\lineto(-445.19610979,1081.85387143)
-\lineto(-445.06123401,1081.72342037)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.06123401,1081.72342037)
-\lineto(-445.19610979,1081.85387143)
-\lineto(-445.06123401,1081.72342037)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.75686276 0.75686276 0.75686276}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-382.74862543,1081.85387143)
-\lineto(-382.6474686,1081.23422891)
-\lineto(-382.74862543,1081.20161615)
-\curveto(-383.10065121,1081.55866069)(-383.47776388,1081.00215648)(-383.1869717,1080.71242468)
-\lineto(-383.32184748,1080.58197363)
-\lineto(-384.06366425,1081.03855233)
-\lineto(-382.78234437,1081.75603314)
-\lineto(-382.74862543,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.75686276 0.75686276 0.75686276}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-382.74862543,1081.85387143)
-\lineto(-382.6474686,1081.23422891)
-\lineto(-382.74862543,1081.20161615)
-\curveto(-383.10065121,1081.55866069)(-383.47776388,1081.00215648)(-383.1869717,1080.71242468)
-\lineto(-383.32184748,1080.58197363)
-\lineto(-384.06366425,1081.03855233)
-\lineto(-382.78234437,1081.75603314)
-\lineto(-382.74862543,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-367.77741428,1081.85387143)
-\lineto(-367.27163012,1081.82125867)
-\curveto(-367.28178087,1081.27532099)(-366.95709981,1080.30933092)(-367.74369533,1080.19062046)
-\lineto(-367.77741428,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-367.77741428,1081.85387143)
-\lineto(-367.27163012,1081.82125867)
-\curveto(-367.28178087,1081.27532099)(-366.95709981,1080.30933092)(-367.74369533,1080.19062046)
-\lineto(-367.77741428,1081.85387143)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.8146191,1081.46251826)
-\lineto(-447.21924643,1081.72342037)
-\lineto(-446.8146191,1081.46251826)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.8146191,1081.46251826)
-\lineto(-447.21924643,1081.72342037)
-\lineto(-446.8146191,1081.46251826)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1081.46251826)
-\lineto(-445.06123401,1081.72342037)
-\lineto(-444.65660668,1081.46251826)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1081.46251826)
-\lineto(-445.06123401,1081.72342037)
-\lineto(-444.65660668,1081.46251826)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1081.3320672)
-\lineto(-446.8146191,1081.46251826)
-\lineto(-446.54486755,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1081.3320672)
-\lineto(-446.8146191,1081.46251826)
-\lineto(-446.54486755,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1081.3320672)
-\lineto(-444.65660668,1081.46251826)
-\lineto(-444.52173091,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1081.3320672)
-\lineto(-444.65660668,1081.46251826)
-\lineto(-444.52173091,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1081.3320672)
-\curveto(-446.29062671,1081.35029122)(-446.56372318,1081.08616696)(-446.54486755,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1081.3320672)
-\curveto(-446.29062671,1081.35029122)(-446.56372318,1081.08616696)(-446.54486755,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1081.07116509)
-\lineto(-444.52173091,1081.3320672)
-\lineto(-444.11710358,1081.07116509)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1081.07116509)
-\lineto(-444.52173091,1081.3320672)
-\lineto(-444.11710358,1081.07116509)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-366.42865652,1081.3320672)
-\curveto(-366.16956015,1081.41208588)(-365.89117655,1081.24980477)(-366.05774813,1080.9733268)
-\curveto(-366.2650522,1080.8608519)(-366.48489972,1081.14304362)(-366.42865652,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-366.42865652,1081.3320672)
-\curveto(-366.16956015,1081.41208588)(-365.89117655,1081.24980477)(-366.05774813,1080.9733268)
-\curveto(-366.2650522,1080.8608519)(-366.48489972,1081.14304362)(-366.42865652,1081.3320672)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1081.07116509)
-\curveto(-446.39448106,1081.05294108)(-446.12138459,1081.31706533)(-446.14024022,1081.07116509)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.14024022,1081.07116509)
-\curveto(-446.39448106,1081.05294108)(-446.12138459,1081.31706533)(-446.14024022,1081.07116509)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.72549021 0.72549021 0.72549021}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-393.40381175,1081.20161615)
-\lineto(-393.30265491,1081.16900338)
-\lineto(-393.16777914,1079.40791412)
-\lineto(-393.3700928,1079.53836517)
-\lineto(-393.40381175,1081.20161615)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.72549021 0.72549021 0.72549021}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-393.40381175,1081.20161615)
-\lineto(-393.30265491,1081.16900338)
-\lineto(-393.16777914,1079.40791412)
-\lineto(-393.3700928,1079.53836517)
-\lineto(-393.40381175,1081.20161615)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1080.94071403)
-\lineto(-446.14024022,1081.07116509)
-\lineto(-446.00536444,1080.94071403)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1080.94071403)
-\lineto(-446.14024022,1081.07116509)
-\lineto(-446.00536444,1080.94071403)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1081.07116509)
-\lineto(-443.88107097,1080.9733268)
-\lineto(-444.11710358,1081.07116509)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.11710358,1081.07116509)
-\lineto(-443.88107097,1080.9733268)
-\lineto(-444.11710358,1081.07116509)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.73561289,1080.81026298)
-\lineto(-446.00536444,1080.94071403)
-\lineto(-445.73561289,1080.81026298)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.73561289,1080.81026298)
-\lineto(-446.00536444,1080.94071403)
-\lineto(-445.73561289,1080.81026298)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1080.54936086)
-\lineto(-445.73561289,1080.81026298)
-\lineto(-445.33098556,1080.54936086)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1080.54936086)
-\lineto(-445.73561289,1080.81026298)
-\lineto(-445.33098556,1080.54936086)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-365.48452608,1080.67981192)
-\lineto(-364.84386615,1080.5167481)
-\lineto(-363.62998416,1079.73404176)
-\lineto(-363.86601677,1078.98394818)
-\lineto(-363.76485994,1077.71205038)
-\lineto(-364.23692515,1077.58159932)
-\curveto(-364.18594211,1078.08474905)(-364.62226525,1078.74783177)(-365.18105559,1078.36430566)
-\lineto(-365.34965031,1079.63620347)
-\lineto(-365.38336925,1080.25584599)
-\lineto(-365.48452608,1080.67981192)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-365.48452608,1080.67981192)
-\lineto(-364.84386615,1080.5167481)
-\lineto(-363.62998416,1079.73404176)
-\lineto(-363.86601677,1078.98394818)
-\lineto(-363.76485994,1077.71205038)
-\lineto(-364.23692515,1077.58159932)
-\curveto(-364.18594211,1078.08474905)(-364.62226525,1078.74783177)(-365.18105559,1078.36430566)
-\lineto(-365.34965031,1079.63620347)
-\lineto(-365.38336925,1080.25584599)
-\lineto(-365.48452608,1080.67981192)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-332.17020938,1080.67981192)
-\lineto(-331.79930099,1080.45152257)
-\lineto(-333.51896714,1079.63620347)
-\lineto(-333.62012397,1079.66881623)
-\lineto(-333.48524819,1079.86449282)
-\lineto(-332.97946403,1080.15800769)
-\lineto(-332.20392832,1080.58197363)
-\lineto(-332.17020938,1080.67981192)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-332.17020938,1080.67981192)
-\lineto(-331.79930099,1080.45152257)
-\lineto(-333.51896714,1079.63620347)
-\lineto(-333.62012397,1079.66881623)
-\lineto(-333.48524819,1079.86449282)
-\lineto(-332.97946403,1080.15800769)
-\lineto(-332.20392832,1080.58197363)
-\lineto(-332.17020938,1080.67981192)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1080.41890981)
-\lineto(-445.33098556,1080.54936086)
-\lineto(-445.19610979,1080.41890981)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0 0 0}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1080.41890981)
-\lineto(-445.33098556,1080.54936086)
-\lineto(-445.19610979,1080.41890981)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.79148246,1080.15800769)
-\lineto(-445.19610979,1080.41890981)
-\lineto(-444.79148246,1080.15800769)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.79148246,1080.15800769)
-\lineto(-445.19610979,1080.41890981)
-\lineto(-444.79148246,1080.15800769)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-386.25539561,1080.41890981)
-\curveto(-386.06319763,1080.44657848)(-385.76026664,1080.433716)(-385.85076828,1080.15800769)
-\lineto(-385.74961145,1079.53836517)
-\lineto(-386.25539561,1080.41890981)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-386.25539561,1080.41890981)
-\curveto(-386.06319763,1080.44657848)(-385.76026664,1080.433716)(-385.85076828,1080.15800769)
-\lineto(-385.74961145,1079.53836517)
-\lineto(-386.25539561,1080.41890981)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.7764706 0.7764706 0.7764706}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-331.49583049,1078.72304607)
-\lineto(-331.52954944,1078.62520778)
-\lineto(-334.69913018,1077.64682485)
-\lineto(-335.37350906,1077.45114827)
-\lineto(-335.23863328,1077.77727591)
-\curveto(-333.47580689,1078.87906553)(-331.52280565,1079.56054185)(-329.60756963,1080.28845875)
-\lineto(-328.02277926,1080.38629704)
-\lineto(-328.02277926,1080.32107151)
-\lineto(-330.68657584,1079.50575241)
-\lineto(-331.09120317,1079.37530135)
-\curveto(-331.57176556,1079.54697494)(-332.30575953,1078.76479041)(-331.49583049,1078.72304607)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.7764706 0.7764706 0.7764706}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-331.49583049,1078.72304607)
-\lineto(-331.52954944,1078.62520778)
-\lineto(-334.69913018,1077.64682485)
-\lineto(-335.37350906,1077.45114827)
-\lineto(-335.23863328,1077.77727591)
-\curveto(-333.47580689,1078.87906553)(-331.52280565,1079.56054185)(-329.60756963,1080.28845875)
-\lineto(-328.02277926,1080.38629704)
-\lineto(-328.02277926,1080.32107151)
-\lineto(-330.68657584,1079.50575241)
-\lineto(-331.09120317,1079.37530135)
-\curveto(-331.57176556,1079.54697494)(-332.30575953,1078.76479041)(-331.49583049,1078.72304607)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.79148246,1080.15800769)
-\curveto(-444.53724162,1080.17623171)(-444.81033809,1079.91210745)(-444.79148246,1080.15800769)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.79148246,1080.15800769)
-\curveto(-444.53724162,1080.17623171)(-444.81033809,1079.91210745)(-444.79148246,1080.15800769)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-387.06465027,1080.15800769)
-\curveto(-386.81728809,1080.24479678)(-386.71950316,1079.97133223)(-386.82861766,1079.79926729)
-\lineto(-387.06465027,1080.15800769)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-387.06465027,1080.15800769)
-\curveto(-386.81728809,1080.24479678)(-386.71950316,1079.97133223)(-386.82861766,1079.79926729)
-\lineto(-387.06465027,1080.15800769)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-406.21701048,1079.63620347)
-\lineto(-405.98097787,1079.47313965)
-\lineto(-405.03684744,1077.84250144)
-\lineto(-405.17172322,1077.71205038)
-\lineto(-405.50891266,1077.97295249)
-\lineto(-406.21701048,1079.63620347)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-406.21701048,1079.63620347)
-\lineto(-405.98097787,1079.47313965)
-\lineto(-405.03684744,1077.84250144)
-\lineto(-405.17172322,1077.71205038)
-\lineto(-405.50891266,1077.97295249)
-\lineto(-406.21701048,1079.63620347)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-367.77741428,1079.63620347)
-\lineto(-367.67625745,1079.27746306)
-\lineto(-367.77741428,1079.63620347)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-367.77741428,1079.63620347)
-\lineto(-367.67625745,1079.27746306)
-\lineto(-367.77741428,1079.63620347)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.02850109,1079.50575241)
-\lineto(-447.75874953,1079.50575241)
-\lineto(-447.6575927,1079.47313965)
-\lineto(-446.44371072,1078.62520778)
-\lineto(-447.18552749,1078.62520778)
-\curveto(-447.14811295,1079.06965453)(-447.63156168,1079.22684805)(-447.99478214,1079.27746306)
-\lineto(-448.02850109,1079.50575241)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.02850109,1079.50575241)
-\lineto(-447.75874953,1079.50575241)
-\lineto(-447.6575927,1079.47313965)
-\lineto(-446.44371072,1078.62520778)
-\lineto(-447.18552749,1078.62520778)
-\curveto(-447.14811295,1079.06965453)(-447.63156168,1079.22684805)(-447.99478214,1079.27746306)
-\lineto(-448.02850109,1079.50575241)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-385.58101673,1079.2448503)
-\lineto(-385.4798599,1079.21223753)
-\curveto(-385.35441194,1078.88558809)(-384.88869937,1078.30260231)(-385.41242201,1078.10340355)
-\lineto(-385.58101673,1079.2448503)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-385.58101673,1079.2448503)
-\lineto(-385.4798599,1079.21223753)
-\curveto(-385.35441194,1078.88558809)(-384.88869937,1078.30260231)(-385.41242201,1078.10340355)
-\lineto(-385.58101673,1079.2448503)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-377.08384283,1079.2448503)
-\curveto(-376.92711718,1079.2663095)(-376.56335721,1079.26837062)(-376.71293445,1079.01656095)
-\curveto(-376.8908356,1078.91103909)(-377.17353522,1079.0056448)(-377.08384283,1079.2448503)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-377.08384283,1079.2448503)
-\curveto(-376.92711718,1079.2663095)(-376.56335721,1079.26837062)(-376.71293445,1079.01656095)
-\curveto(-376.8908356,1078.91103909)(-377.17353522,1079.0056448)(-377.08384283,1079.2448503)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-400.01272478,1079.11439924)
-\lineto(-399.91156795,1079.08178648)
-\lineto(-399.47322167,1077.80988867)
-\lineto(-399.37206484,1076.92934404)
-\lineto(-399.57437851,1077.0597951)
-\lineto(-399.877849,1078.46214396)
-\lineto(-400.01272478,1079.11439924)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-400.01272478,1079.11439924)
-\lineto(-399.91156795,1079.08178648)
-\lineto(-399.47322167,1077.80988867)
-\lineto(-399.37206484,1076.92934404)
-\lineto(-399.57437851,1077.0597951)
-\lineto(-399.877849,1078.46214396)
-\lineto(-400.01272478,1079.11439924)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.76078433 0.76078433 0.76078433}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-392.59455709,1079.11439924)
-\lineto(-392.35852448,1079.08178648)
-\curveto(-391.92759638,1078.32490944)(-392.0449383,1077.39635882)(-392.08877293,1076.53799087)
-\lineto(-392.15621082,1076.53799087)
-\lineto(-392.59455709,1077.80988867)
-\lineto(-392.59455709,1079.11439924)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.76078433 0.76078433 0.76078433}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-392.59455709,1079.11439924)
-\lineto(-392.35852448,1079.08178648)
-\curveto(-391.92759638,1078.32490944)(-392.0449383,1077.39635882)(-392.08877293,1076.53799087)
-\lineto(-392.15621082,1076.53799087)
-\lineto(-392.59455709,1077.80988867)
-\lineto(-392.59455709,1079.11439924)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-363.05676211,1078.85349713)
-\lineto(-362.14635062,1078.29908014)
-\lineto(-362.14635062,1078.23385461)
-\lineto(-362.41610218,1077.32069721)
-\lineto(-362.88816739,1077.58159932)
-\lineto(-363.05676211,1078.59259501)
-\lineto(-363.05676211,1078.85349713)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-363.05676211,1078.85349713)
-\lineto(-362.14635062,1078.29908014)
-\lineto(-362.14635062,1078.23385461)
-\lineto(-362.41610218,1077.32069721)
-\lineto(-362.88816739,1077.58159932)
-\lineto(-363.05676211,1078.59259501)
-\lineto(-363.05676211,1078.85349713)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-384.6368863,1078.72304607)
-\curveto(-384.45938978,1078.65106318)(-384.08551412,1078.38987407)(-384.40085369,1078.23385461)
-\lineto(-384.6368863,1078.72304607)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.6368863,1078.72304607)
-\curveto(-384.45938978,1078.65106318)(-384.08551412,1078.38987407)(-384.40085369,1078.23385461)
-\lineto(-384.6368863,1078.72304607)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1078.3316929)
-\lineto(-446.24139705,1078.55998225)
-\lineto(-445.87048867,1078.3316929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.87048867,1078.3316929)
-\lineto(-446.24139705,1078.55998225)
-\lineto(-445.87048867,1078.3316929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-393.6735633,1078.46214396)
-\lineto(-393.43753069,1078.42953119)
-\lineto(-393.43753069,1077.19024615)
-\lineto(-393.50496858,1077.19024615)
-\lineto(-393.6735633,1078.46214396)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-393.6735633,1078.46214396)
-\lineto(-393.43753069,1078.42953119)
-\lineto(-393.43753069,1077.19024615)
-\lineto(-393.50496858,1077.19024615)
-\lineto(-393.6735633,1078.46214396)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.46586134,1078.07079079)
-\lineto(-445.87048867,1078.3316929)
-\lineto(-445.46586134,1078.07079079)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.46586134,1078.07079079)
-\lineto(-445.87048867,1078.3316929)
-\lineto(-445.46586134,1078.07079079)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.22352941 0.22352941 0.22352941}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-328.52856342,1078.20124184)
-\lineto(-325.56129634,1078.20124184)
-\curveto(-324.50886066,1078.17620828)(-323.4073302,1078.31673016)(-322.45915349,1077.94033973)
-\lineto(-321.95336933,1077.90772697)
-\lineto(-321.95336933,1077.58159932)
-\lineto(-322.32427772,1077.54898656)
-\lineto(-322.59402927,1077.67943762)
-\lineto(-328.6634392,1077.67943762)
-\lineto(-328.93319075,1077.54898656)
-\lineto(-330.28194851,1077.54898656)
-\lineto(-331.22607894,1077.28808445)
-\lineto(-331.59698733,1077.32069721)
-\lineto(-331.59698733,1077.77727591)
-\lineto(-328.6634392,1078.07079079)
-\lineto(-328.52856342,1078.20124184)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.22352941 0.22352941 0.22352941}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-328.52856342,1078.20124184)
-\lineto(-325.56129634,1078.20124184)
-\curveto(-324.50886066,1078.17620828)(-323.4073302,1078.31673016)(-322.45915349,1077.94033973)
-\lineto(-321.95336933,1077.90772697)
-\lineto(-321.95336933,1077.58159932)
-\lineto(-322.32427772,1077.54898656)
-\lineto(-322.59402927,1077.67943762)
-\lineto(-328.6634392,1077.67943762)
-\lineto(-328.93319075,1077.54898656)
-\lineto(-330.28194851,1077.54898656)
-\lineto(-331.22607894,1077.28808445)
-\lineto(-331.59698733,1077.32069721)
-\lineto(-331.59698733,1077.77727591)
-\lineto(-328.6634392,1078.07079079)
-\lineto(-328.52856342,1078.20124184)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1077.94033973)
-\lineto(-445.46586134,1078.07079079)
-\lineto(-445.33098556,1077.94033973)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1077.94033973)
-\lineto(-445.46586134,1078.07079079)
-\lineto(-445.33098556,1077.94033973)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1077.80988867)
-\lineto(-445.33098556,1077.94033973)
-\lineto(-445.19610979,1077.80988867)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.19610979,1077.80988867)
-\lineto(-445.33098556,1077.94033973)
-\lineto(-445.19610979,1077.80988867)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-402.84511608,1077.94033973)
-\lineto(-402.44048875,1077.15763339)
-\curveto(-402.52779384,1076.80867681)(-402.34525296,1076.54412207)(-402.06958036,1076.34231428)
-\lineto(-402.20445614,1076.01618664)
-\lineto(-402.57536452,1076.76628022)
-\lineto(-402.84511608,1077.94033973)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-402.84511608,1077.94033973)
-\lineto(-402.44048875,1077.15763339)
-\curveto(-402.52779384,1076.80867681)(-402.34525296,1076.54412207)(-402.06958036,1076.34231428)
-\lineto(-402.20445614,1076.01618664)
-\lineto(-402.57536452,1076.76628022)
-\lineto(-402.84511608,1077.94033973)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-361.84288013,1077.94033973)
-\lineto(-361.7417233,1077.90772697)
-\lineto(-361.7417233,1076.92934404)
-\lineto(-361.80916118,1076.92934404)
-\lineto(-361.84288013,1077.94033973)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-361.84288013,1077.94033973)
-\lineto(-361.7417233,1077.90772697)
-\lineto(-361.7417233,1076.92934404)
-\lineto(-361.80916118,1076.92934404)
-\lineto(-361.84288013,1077.94033973)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1077.4185355)
-\lineto(-445.19610979,1077.80988867)
-\lineto(-444.65660668,1077.4185355)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.65660668,1077.4185355)
-\lineto(-445.19610979,1077.80988867)
-\lineto(-444.65660668,1077.4185355)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-409.31915333,1077.80988867)
-\lineto(-409.2179965,1077.77727591)
-\lineto(-408.914526,1076.63582916)
-\lineto(-408.6784934,1075.10302925)
-\lineto(-409.01568284,1075.36393136)
-\lineto(-409.18427756,1076.89673128)
-\lineto(-409.31915333,1077.80988867)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-409.31915333,1077.80988867)
-\lineto(-409.2179965,1077.77727591)
-\lineto(-408.914526,1076.63582916)
-\lineto(-408.6784934,1075.10302925)
-\lineto(-409.01568284,1075.36393136)
-\lineto(-409.18427756,1076.89673128)
-\lineto(-409.31915333,1077.80988867)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1077.54898656)
-\curveto(-447.89079292,1077.49978042)(-447.3318677,1077.41938343)(-447.1180896,1077.0597951)
-\lineto(-448.26453369,1077.45114827)
-\lineto(-448.29825264,1077.54898656)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.29825264,1077.54898656)
-\curveto(-447.89079292,1077.49978042)(-447.3318677,1077.41938343)(-447.1180896,1077.0597951)
-\lineto(-448.26453369,1077.45114827)
-\lineto(-448.29825264,1077.54898656)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-384.50201052,1077.54898656)
-\lineto(-384.26597791,1077.51637379)
-\lineto(-384.13110214,1076.27708876)
-\lineto(-384.19854002,1076.27708876)
-\lineto(-384.26597791,1077.12502062)
-\curveto(-384.50686605,1077.15160655)(-384.715384,1077.35487539)(-384.50201052,1077.54898656)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.50201052,1077.54898656)
-\lineto(-384.26597791,1077.51637379)
-\lineto(-384.13110214,1076.27708876)
-\lineto(-384.19854002,1076.27708876)
-\lineto(-384.26597791,1077.12502062)
-\curveto(-384.50686605,1077.15160655)(-384.715384,1077.35487539)(-384.50201052,1077.54898656)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1077.28808445)
-\lineto(-444.65660668,1077.4185355)
-\lineto(-444.52173091,1077.28808445)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.52173091,1077.28808445)
-\lineto(-444.65660668,1077.4185355)
-\lineto(-444.52173091,1077.28808445)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-380.59061301,1077.4185355)
-\lineto(-380.48945618,1077.38592274)
-\lineto(-380.21970463,1076.53799087)
-\lineto(-380.48945618,1076.86411851)
-\curveto(-380.72279127,1077.00278798)(-380.77269531,1077.22468523)(-380.59061301,1077.4185355)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-380.59061301,1077.4185355)
-\lineto(-380.48945618,1077.38592274)
-\lineto(-380.21970463,1076.53799087)
-\lineto(-380.48945618,1076.86411851)
-\curveto(-380.72279127,1077.00278798)(-380.77269531,1077.22468523)(-380.59061301,1077.4185355)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.38685513,1077.15763339)
-\lineto(-444.52173091,1077.28808445)
-\lineto(-444.38685513,1077.15763339)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.38685513,1077.15763339)
-\lineto(-444.52173091,1077.28808445)
-\lineto(-444.38685513,1077.15763339)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-361.4382528,1074.15725908)
-\lineto(-360.89874969,1076.11402494)
-\curveto(-361.37445656,1076.38679809)(-361.33588209,1076.90977638)(-361.03362547,1077.28808445)
-\lineto(-360.25808976,1076.86411851)
-\curveto(-358.00161802,1074.78342416)(-356.20507268,1072.42878258)(-354.55958822,1069.98282527)
-\lineto(-355.26768604,1068.3195743)
-\lineto(-355.4699997,1068.51525088)
-\curveto(-355.12377359,1069.054666)(-354.63444427,1069.9371674)(-355.4699997,1070.27634015)
-\lineto(-355.7734702,1070.76553161)
-\lineto(-356.0769407,1069.75453592)
-\curveto(-356.55736821,1069.96964971)(-356.84600237,1069.73141999)(-357.22338479,1069.49363381)
-\lineto(-357.49313635,1071.18949754)
-\lineto(-357.89776368,1072.16788047)
-\curveto(-357.94772166,1071.92706782)(-357.93996631,1071.36638918)(-358.302391,1071.45039966)
-\lineto(-358.10007734,1073.99419526)
-\lineto(-358.97676988,1073.14626339)
-\lineto(-359.01048883,1073.5050038)
-\lineto(-359.04420777,1074.12464632)
-\lineto(-359.92090032,1072.75491022)
-\lineto(-359.98833821,1074.51599949)
-\curveto(-360.16623935,1074.62152135)(-360.44893898,1074.52691563)(-360.35924659,1074.28771014)
-\lineto(-360.39296553,1074.05942079)
-\lineto(-360.62899814,1075.33131859)
-\lineto(-361.4382528,1074.15725908)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-361.4382528,1074.15725908)
-\lineto(-360.89874969,1076.11402494)
-\curveto(-361.37445656,1076.38679809)(-361.33588209,1076.90977638)(-361.03362547,1077.28808445)
-\lineto(-360.25808976,1076.86411851)
-\curveto(-358.00161802,1074.78342416)(-356.20507268,1072.42878258)(-354.55958822,1069.98282527)
-\lineto(-355.26768604,1068.3195743)
-\lineto(-355.4699997,1068.51525088)
-\curveto(-355.12377359,1069.054666)(-354.63444427,1069.9371674)(-355.4699997,1070.27634015)
-\lineto(-355.7734702,1070.76553161)
-\lineto(-356.0769407,1069.75453592)
-\curveto(-356.55736821,1069.96964971)(-356.84600237,1069.73141999)(-357.22338479,1069.49363381)
-\lineto(-357.49313635,1071.18949754)
-\lineto(-357.89776368,1072.16788047)
-\curveto(-357.94772166,1071.92706782)(-357.93996631,1071.36638918)(-358.302391,1071.45039966)
-\lineto(-358.10007734,1073.99419526)
-\lineto(-358.97676988,1073.14626339)
-\lineto(-359.01048883,1073.5050038)
-\lineto(-359.04420777,1074.12464632)
-\lineto(-359.92090032,1072.75491022)
-\lineto(-359.98833821,1074.51599949)
-\curveto(-360.16623935,1074.62152135)(-360.44893898,1074.52691563)(-360.35924659,1074.28771014)
-\lineto(-360.39296553,1074.05942079)
-\lineto(-360.62899814,1075.33131859)
-\lineto(-361.4382528,1074.15725908)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1077.02718233)
-\lineto(-444.38685513,1077.15763339)
-\lineto(-444.25197935,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1077.02718233)
-\lineto(-444.38685513,1077.15763339)
-\lineto(-444.25197935,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1077.02718233)
-\lineto(-444.01594675,1076.92934404)
-\lineto(-444.25197935,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.25197935,1077.02718233)
-\lineto(-444.01594675,1076.92934404)
-\lineto(-444.25197935,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87843138 0.87843138 0.87843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-383.55788009,1077.02718233)
-\lineto(-383.32184748,1076.99456957)
-\lineto(-382.31027916,1074.05942079)
-\lineto(-381.26499189,1072.20049323)
-\curveto(-381.39253043,1071.2026731)(-381.11474028,1070.08979514)(-380.21970463,1069.55885933)
-\curveto(-379.70501867,1068.46267911)(-378.36516271,1068.29439724)(-377.25243755,1068.45002535)
-\curveto(-377.00035473,1068.59104295)(-376.5394842,1068.79780787)(-376.71293445,1069.16750616)
-\lineto(-376.94896706,1069.20011893)
-\curveto(-377.75323131,1068.7457579)(-379.10023569,1068.77276127)(-379.64648258,1069.5914721)
-\lineto(-379.54532575,1069.75453592)
-\lineto(-379.8150773,1072.42878258)
-\curveto(-379.54370724,1071.57458906)(-379.51066267,1070.33373861)(-378.29772482,1070.24372738)
-\lineto(-375.22930091,1069.29795722)
-\curveto(-375.74735877,1067.95561585)(-377.41563724,1067.43511613)(-378.80350898,1067.47164243)
-\lineto(-379.00582264,1067.01506373)
-\lineto(-379.34301208,1067.01506373)
-\curveto(-381.02761053,1068.22930216)(-381.95420711,1070.23198679)(-382.07424655,1072.20049323)
-\lineto(-383.28812854,1075.07041648)
-\lineto(-383.28812854,1076.11402494)
-\lineto(-383.55788009,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87843138 0.87843138 0.87843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-383.55788009,1077.02718233)
-\lineto(-383.32184748,1076.99456957)
-\lineto(-382.31027916,1074.05942079)
-\lineto(-381.26499189,1072.20049323)
-\curveto(-381.39253043,1071.2026731)(-381.11474028,1070.08979514)(-380.21970463,1069.55885933)
-\curveto(-379.70501867,1068.46267911)(-378.36516271,1068.29439724)(-377.25243755,1068.45002535)
-\curveto(-377.00035473,1068.59104295)(-376.5394842,1068.79780787)(-376.71293445,1069.16750616)
-\lineto(-376.94896706,1069.20011893)
-\curveto(-377.75323131,1068.7457579)(-379.10023569,1068.77276127)(-379.64648258,1069.5914721)
-\lineto(-379.54532575,1069.75453592)
-\lineto(-379.8150773,1072.42878258)
-\curveto(-379.54370724,1071.57458906)(-379.51066267,1070.33373861)(-378.29772482,1070.24372738)
-\lineto(-375.22930091,1069.29795722)
-\curveto(-375.74735877,1067.95561585)(-377.41563724,1067.43511613)(-378.80350898,1067.47164243)
-\lineto(-379.00582264,1067.01506373)
-\lineto(-379.34301208,1067.01506373)
-\curveto(-381.02761053,1068.22930216)(-381.95420711,1070.23198679)(-382.07424655,1072.20049323)
-\lineto(-383.28812854,1075.07041648)
-\lineto(-383.28812854,1076.11402494)
-\lineto(-383.55788009,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-383.01837698,1077.02718233)
-\lineto(-382.10796549,1076.99456957)
-\lineto(-381.83821394,1076.73366745)
-\lineto(-380.69176984,1074.45077396)
-\lineto(-380.55689407,1074.32032291)
-\lineto(-380.21970463,1074.25509738)
-\lineto(-380.48945618,1072.88536128)
-\lineto(-380.9615214,1072.88536128)
-\lineto(-381.90565183,1074.45077396)
-\lineto(-383.01837698,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-383.01837698,1077.02718233)
-\lineto(-382.10796549,1076.99456957)
-\lineto(-381.83821394,1076.73366745)
-\lineto(-380.69176984,1074.45077396)
-\lineto(-380.55689407,1074.32032291)
-\lineto(-380.21970463,1074.25509738)
-\lineto(-380.48945618,1072.88536128)
-\lineto(-380.9615214,1072.88536128)
-\lineto(-381.90565183,1074.45077396)
-\lineto(-383.01837698,1077.02718233)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-407.43089247,1076.89673128)
-\lineto(-407.32973563,1076.86411851)
-\lineto(-406.79023253,1075.49438242)
-\lineto(-407.12742197,1075.49438242)
-\lineto(-407.29601669,1076.11402494)
-\lineto(-407.43089247,1076.89673128)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-407.43089247,1076.89673128)
-\lineto(-407.32973563,1076.86411851)
-\lineto(-406.79023253,1075.49438242)
-\lineto(-407.12742197,1075.49438242)
-\lineto(-407.29601669,1076.11402494)
-\lineto(-407.43089247,1076.89673128)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-453.42353213,1076.24447599)
-\lineto(-451.83874176,1076.21186323)
-\lineto(-451.83874176,1076.1466377)
-\lineto(-453.38981319,1076.1466377)
-\lineto(-453.42353213,1076.24447599)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-453.42353213,1076.24447599)
-\lineto(-451.83874176,1076.21186323)
-\lineto(-451.83874176,1076.1466377)
-\lineto(-453.38981319,1076.1466377)
-\lineto(-453.42353213,1076.24447599)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.53527127,1076.24447599)
-\lineto(-451.43411443,1076.01618664)
-\lineto(-451.53527127,1076.24447599)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.53527127,1076.24447599)
-\lineto(-451.43411443,1076.01618664)
-\lineto(-451.53527127,1076.24447599)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-379.5116068,1076.24447599)
-\lineto(-379.24185525,1075.85312282)
-\lineto(-379.24185525,1073.89635697)
-\lineto(-379.74763941,1073.01581234)
-\lineto(-379.5116068,1074.4181612)
-\lineto(-379.5116068,1076.24447599)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-379.5116068,1076.24447599)
-\lineto(-379.24185525,1075.85312282)
-\lineto(-379.24185525,1073.89635697)
-\lineto(-379.74763941,1073.01581234)
-\lineto(-379.5116068,1074.4181612)
-\lineto(-379.5116068,1076.24447599)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-454.36766257,1076.11402494)
-\lineto(-453.72700263,1076.01618664)
-\lineto(-454.36766257,1076.11402494)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-454.36766257,1076.11402494)
-\lineto(-453.72700263,1076.01618664)
-\lineto(-454.36766257,1076.11402494)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.26551971,1076.11402494)
-\lineto(-450.22023245,1076.08141217)
-\lineto(-450.22023245,1076.01618664)
-\lineto(-451.23180077,1076.01618664)
-\lineto(-451.26551971,1076.11402494)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.26551971,1076.11402494)
-\lineto(-450.22023245,1076.08141217)
-\lineto(-450.22023245,1076.01618664)
-\lineto(-451.23180077,1076.01618664)
-\lineto(-451.26551971,1076.11402494)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-378.70235215,1076.11402494)
-\lineto(-378.33144376,1076.08141217)
-\curveto(-378.37785452,1075.29322689)(-377.74689215,1074.1963944)(-378.56747637,1073.63545486)
-\lineto(-378.6686332,1073.66806762)
-\lineto(-378.80350898,1075.95096111)
-\lineto(-378.70235215,1076.11402494)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-378.70235215,1076.11402494)
-\lineto(-378.33144376,1076.08141217)
-\curveto(-378.37785452,1075.29322689)(-377.74689215,1074.1963944)(-378.56747637,1073.63545486)
-\lineto(-378.6686332,1073.66806762)
-\lineto(-378.80350898,1075.95096111)
-\lineto(-378.70235215,1076.11402494)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.91676195,1075.98357388)
-\curveto(-449.66252111,1076.00179789)(-449.93561759,1075.73767364)(-449.91676195,1075.98357388)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.91676195,1075.98357388)
-\curveto(-449.66252111,1076.00179789)(-449.93561759,1075.73767364)(-449.91676195,1075.98357388)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1075.20086754)
-\curveto(-445.62285674,1075.32216093)(-445.52722982,1074.92535491)(-445.36470451,1074.71167608)
-\lineto(-447.35412221,1074.80951437)
-\lineto(-447.62387376,1074.93996542)
-\curveto(-448.70719599,1074.9858842)(-449.76570108,1074.90743093)(-450.69229767,1074.45077396)
-\lineto(-450.72601661,1075.20086754)
-\lineto(-450.69229767,1075.29870583)
-\lineto(-449.1075073,1075.72267177)
-\lineto(-449.61329146,1075.95096111)
-\curveto(-448.71946969,1076.00779864)(-447.60499115,1076.10711103)(-446.98321382,1075.49438242)
-\lineto(-448.66916102,1075.42915689)
-\lineto(-448.56800419,1075.33131859)
-\lineto(-447.48899798,1075.20086754)
-\lineto(-446.275116,1074.93996542)
-\lineto(-445.90420761,1074.97257819)
-\lineto(-446.00536444,1075.20086754)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1075.20086754)
-\curveto(-445.62285674,1075.32216093)(-445.52722982,1074.92535491)(-445.36470451,1074.71167608)
-\lineto(-447.35412221,1074.80951437)
-\lineto(-447.62387376,1074.93996542)
-\curveto(-448.70719599,1074.9858842)(-449.76570108,1074.90743093)(-450.69229767,1074.45077396)
-\lineto(-450.72601661,1075.20086754)
-\lineto(-450.69229767,1075.29870583)
-\lineto(-449.1075073,1075.72267177)
-\lineto(-449.61329146,1075.95096111)
-\curveto(-448.71946969,1076.00779864)(-447.60499115,1076.10711103)(-446.98321382,1075.49438242)
-\lineto(-448.66916102,1075.42915689)
-\lineto(-448.56800419,1075.33131859)
-\lineto(-447.48899798,1075.20086754)
-\lineto(-446.275116,1074.93996542)
-\lineto(-445.90420761,1074.97257819)
-\lineto(-446.00536444,1075.20086754)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-414.44443283,1075.85312282)
-\lineto(-414.20840022,1075.690059)
-\lineto(-413.50030239,1074.15725908)
-\lineto(-413.66889711,1073.92896974)
-\lineto(-413.736335,1073.92896974)
-\lineto(-414.20840022,1075.16825477)
-\lineto(-414.44443283,1075.85312282)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-414.44443283,1075.85312282)
-\lineto(-414.20840022,1075.690059)
-\lineto(-413.50030239,1074.15725908)
-\lineto(-413.66889711,1073.92896974)
-\lineto(-413.736335,1073.92896974)
-\lineto(-414.20840022,1075.16825477)
-\lineto(-414.44443283,1075.85312282)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1075.20086754)
-\lineto(-446.64602438,1075.36393136)
-\lineto(-446.64602438,1075.42915689)
-\lineto(-446.00536444,1075.20086754)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1075.20086754)
-\lineto(-446.64602438,1075.36393136)
-\lineto(-446.64602438,1075.42915689)
-\lineto(-446.00536444,1075.20086754)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9254902 0.9254902 0.9254902}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-334.8677249,1075.46176965)
-\curveto(-334.40658462,1075.62248535)(-334.36032223,1075.23139309)(-334.05847024,1075.07041648)
-\curveto(-333.1294459,1075.11775717)(-332.00700969,1075.75254506)(-331.22607894,1075.07041648)
-\lineto(-330.45054323,1074.90735266)
-\lineto(-330.51798112,1074.58122502)
-\lineto(-330.11335379,1074.32032291)
-\curveto(-328.85334429,1073.98806406)(-327.4819274,1073.69076611)(-326.40426994,1073.01581234)
-\lineto(-330.01219696,1073.63545486)
-\lineto(-330.28194851,1073.76590591)
-\lineto(-330.78773267,1073.60284209)
-\lineto(-331.09120317,1073.24410169)
-\lineto(-332.40624198,1073.21148892)
-\lineto(-330.99004633,1072.42878258)
-\lineto(-331.09120317,1072.33094429)
-\lineto(-333.48524819,1072.55923364)
-\lineto(-333.55268608,1072.233106)
-\curveto(-334.51367599,1071.72369462)(-333.21509201,1071.56415298)(-332.8783072,1071.3199486)
-\lineto(-334.49681651,1070.79814437)
-\curveto(-334.78801331,1070.77538066)(-334.8938908,1070.51806595)(-334.90144384,1070.27634015)
-\lineto(-335.94673111,1069.98282527)
-\lineto(-335.57582272,1069.68931039)
-\curveto(-335.69008948,1068.64544104)(-334.02879757,1069.92934034)(-334.36194074,1068.84137852)
-\lineto(-335.54210378,1068.54786365)
-\lineto(-334.19334602,1068.41741259)
-\lineto(-334.09218919,1068.3195743)
-\curveto(-334.75159685,1068.44938614)(-334.65192366,1067.8014227)(-334.22706496,1067.66731901)
-\curveto(-334.73150036,1067.67524913)(-335.39009878,1067.9746617)(-335.81185533,1067.50425519)
-\curveto(-336.13825471,1067.50759474)(-336.57471272,1067.99214214)(-336.65482893,1067.4064169)
-\curveto(-337.22751148,1067.49487576)(-337.16951489,1067.1044227)(-337.05945626,1066.75416162)
-\curveto(-337.65790008,1066.75542308)(-337.76350781,1066.2648397)(-337.32920781,1065.97145528)
-\curveto(-338.12389589,1065.99175346)(-337.5096716,1065.44221534)(-337.59895937,1065.05829788)
-\lineto(-337.86871092,1065.25397446)
-\curveto(-338.32216328,1066.17626343)(-339.52228793,1064.75134654)(-338.40821402,1064.73217024)
-\lineto(-338.2396193,1064.37342983)
-\lineto(-338.37449508,1064.24297877)
-\curveto(-338.68403498,1064.22637235)(-339.02958672,1064.49044443)(-339.0825929,1064.01468942)
-\lineto(-339.58837706,1063.32982138)
-\lineto(-340.90341588,1064.40604259)
-\lineto(-340.90341588,1064.73217024)
-\lineto(-339.28490657,1066.29758292)
-\curveto(-336.82072614,1068.5178599)(-336.02765657,1071.69695215)(-335.77813639,1074.7769016)
-\lineto(-334.8677249,1075.46176965)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9254902 0.9254902 0.9254902}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.8677249,1075.46176965)
-\curveto(-334.40658462,1075.62248535)(-334.36032223,1075.23139309)(-334.05847024,1075.07041648)
-\curveto(-333.1294459,1075.11775717)(-332.00700969,1075.75254506)(-331.22607894,1075.07041648)
-\lineto(-330.45054323,1074.90735266)
-\lineto(-330.51798112,1074.58122502)
-\lineto(-330.11335379,1074.32032291)
-\curveto(-328.85334429,1073.98806406)(-327.4819274,1073.69076611)(-326.40426994,1073.01581234)
-\lineto(-330.01219696,1073.63545486)
-\lineto(-330.28194851,1073.76590591)
-\lineto(-330.78773267,1073.60284209)
-\lineto(-331.09120317,1073.24410169)
-\lineto(-332.40624198,1073.21148892)
-\lineto(-330.99004633,1072.42878258)
-\lineto(-331.09120317,1072.33094429)
-\lineto(-333.48524819,1072.55923364)
-\lineto(-333.55268608,1072.233106)
-\curveto(-334.51367599,1071.72369462)(-333.21509201,1071.56415298)(-332.8783072,1071.3199486)
-\lineto(-334.49681651,1070.79814437)
-\curveto(-334.78801331,1070.77538066)(-334.8938908,1070.51806595)(-334.90144384,1070.27634015)
-\lineto(-335.94673111,1069.98282527)
-\lineto(-335.57582272,1069.68931039)
-\curveto(-335.69008948,1068.64544104)(-334.02879757,1069.92934034)(-334.36194074,1068.84137852)
-\lineto(-335.54210378,1068.54786365)
-\lineto(-334.19334602,1068.41741259)
-\lineto(-334.09218919,1068.3195743)
-\curveto(-334.75159685,1068.44938614)(-334.65192366,1067.8014227)(-334.22706496,1067.66731901)
-\curveto(-334.73150036,1067.67524913)(-335.39009878,1067.9746617)(-335.81185533,1067.50425519)
-\curveto(-336.13825471,1067.50759474)(-336.57471272,1067.99214214)(-336.65482893,1067.4064169)
-\curveto(-337.22751148,1067.49487576)(-337.16951489,1067.1044227)(-337.05945626,1066.75416162)
-\curveto(-337.65790008,1066.75542308)(-337.76350781,1066.2648397)(-337.32920781,1065.97145528)
-\curveto(-338.12389589,1065.99175346)(-337.5096716,1065.44221534)(-337.59895937,1065.05829788)
-\lineto(-337.86871092,1065.25397446)
-\curveto(-338.32216328,1066.17626343)(-339.52228793,1064.75134654)(-338.40821402,1064.73217024)
-\lineto(-338.2396193,1064.37342983)
-\lineto(-338.37449508,1064.24297877)
-\curveto(-338.68403498,1064.22637235)(-339.02958672,1064.49044443)(-339.0825929,1064.01468942)
-\lineto(-339.58837706,1063.32982138)
-\lineto(-340.90341588,1064.40604259)
-\lineto(-340.90341588,1064.73217024)
-\lineto(-339.28490657,1066.29758292)
-\curveto(-336.82072614,1068.5178599)(-336.02765657,1071.69695215)(-335.77813639,1074.7769016)
-\lineto(-334.8677249,1075.46176965)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.67014704,1075.33131859)
-\curveto(-451.26079906,1075.22941023)(-451.86989807,1074.86873915)(-451.90617965,1075.16825477)
-\lineto(-451.80502282,1075.20086754)
-\lineto(-451.67014704,1075.33131859)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.67014704,1075.33131859)
-\curveto(-451.26079906,1075.22941023)(-451.86989807,1074.86873915)(-451.90617965,1075.16825477)
-\lineto(-451.80502282,1075.20086754)
-\lineto(-451.67014704,1075.33131859)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.13064394,1075.33131859)
-\lineto(-450.89461133,1075.10302925)
-\lineto(-451.13064394,1075.33131859)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.13064394,1075.33131859)
-\lineto(-450.89461133,1075.10302925)
-\lineto(-451.13064394,1075.33131859)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90196079 0.90196079 0.90196079}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-377.62334594,1075.33131859)
-\lineto(-376.57805867,1075.03780372)
-\lineto(-376.37574501,1074.58122502)
-\lineto(-376.03855557,1074.51599949)
-\lineto(-375.49905246,1073.79851868)
-\lineto(-375.8362419,1073.86374421)
-\curveto(-376.35902041,1073.19205172)(-377.10960411,1072.76560721)(-377.99425432,1073.01581234)
-\lineto(-378.02797327,1073.37455274)
-\lineto(-377.75822171,1074.02680803)
-\lineto(-377.62334594,1075.33131859)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90196079 0.90196079 0.90196079}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-377.62334594,1075.33131859)
-\lineto(-376.57805867,1075.03780372)
-\lineto(-376.37574501,1074.58122502)
-\lineto(-376.03855557,1074.51599949)
-\lineto(-375.49905246,1073.79851868)
-\lineto(-375.8362419,1073.86374421)
-\curveto(-376.35902041,1073.19205172)(-377.10960411,1072.76560721)(-377.99425432,1073.01581234)
-\lineto(-378.02797327,1073.37455274)
-\lineto(-377.75822171,1074.02680803)
-\lineto(-377.62334594,1075.33131859)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-371.14930868,1074.93996542)
-\curveto(-370.95387368,1074.99440265)(-370.66213738,1074.78172829)(-370.7784003,1074.58122502)
-\lineto(-371.14930868,1074.93996542)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-371.14930868,1074.93996542)
-\curveto(-370.95387368,1074.99440265)(-370.66213738,1074.78172829)(-370.7784003,1074.58122502)
-\lineto(-371.14930868,1074.93996542)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-448.83775574,1074.54861225)
-\lineto(-447.08437065,1074.54861225)
-\lineto(-445.76933184,1074.38554843)
-\lineto(-445.90420761,1073.92896974)
-\lineto(-446.44371072,1073.99419526)
-\lineto(-448.33197158,1073.79851868)
-\lineto(-449.24238307,1073.89635697)
-\lineto(-452.07477437,1073.76590591)
-\lineto(-452.31080698,1073.66806762)
-\lineto(-452.34452592,1073.76590591)
-\lineto(-452.31080698,1073.86374421)
-\lineto(-450.72601661,1073.89635697)
-\lineto(-449.37725885,1074.02680803)
-\lineto(-448.19709581,1074.18987185)
-\lineto(-448.83775574,1074.54861225)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-448.83775574,1074.54861225)
-\lineto(-447.08437065,1074.54861225)
-\lineto(-445.76933184,1074.38554843)
-\lineto(-445.90420761,1073.92896974)
-\lineto(-446.44371072,1073.99419526)
-\lineto(-448.33197158,1073.79851868)
-\lineto(-449.24238307,1073.89635697)
-\lineto(-452.07477437,1073.76590591)
-\lineto(-452.31080698,1073.66806762)
-\lineto(-452.34452592,1073.76590591)
-\lineto(-452.31080698,1073.86374421)
-\lineto(-450.72601661,1073.89635697)
-\lineto(-449.37725885,1074.02680803)
-\lineto(-448.19709581,1074.18987185)
-\lineto(-448.83775574,1074.54861225)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.24238307,1074.4181612)
-\curveto(-448.98814223,1074.43638521)(-449.26123871,1074.17226096)(-449.24238307,1074.4181612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.24238307,1074.4181612)
-\curveto(-448.98814223,1074.43638521)(-449.26123871,1074.17226096)(-449.24238307,1074.4181612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-374.52120309,1074.4181612)
-\lineto(-374.35260837,1074.18987185)
-\curveto(-373.7505229,1074.11662358)(-374.14665306,1073.5980154)(-374.08285681,1073.27671445)
-\curveto(-373.89983038,1072.94719508)(-373.66555116,1073.25967754)(-373.47591582,1073.34193998)
-\lineto(-373.40847793,1072.49400811)
-\lineto(-372.80153694,1072.29833153)
-\lineto(-372.90269377,1071.67868901)
-\curveto(-372.81270465,1071.0550025)(-373.58867197,1070.85332517)(-374.08285681,1070.8633699)
-\curveto(-374.77598343,1070.47684342)(-375.80926675,1070.07035793)(-376.51062078,1070.66769332)
-\lineto(-376.51062078,1070.73291885)
-\curveto(-375.50768451,1070.97294879)(-375.02428973,1071.88884566)(-374.65607886,1072.72229746)
-\lineto(-374.65607886,1073.37455274)
-\lineto(-374.52120309,1074.4181612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-374.52120309,1074.4181612)
-\lineto(-374.35260837,1074.18987185)
-\curveto(-373.7505229,1074.11662358)(-374.14665306,1073.5980154)(-374.08285681,1073.27671445)
-\curveto(-373.89983038,1072.94719508)(-373.66555116,1073.25967754)(-373.47591582,1073.34193998)
-\lineto(-373.40847793,1072.49400811)
-\lineto(-372.80153694,1072.29833153)
-\lineto(-372.90269377,1071.67868901)
-\curveto(-372.81270465,1071.0550025)(-373.58867197,1070.85332517)(-374.08285681,1070.8633699)
-\curveto(-374.77598343,1070.47684342)(-375.80926675,1070.07035793)(-376.51062078,1070.66769332)
-\lineto(-376.51062078,1070.73291885)
-\curveto(-375.50768451,1070.97294879)(-375.02428973,1071.88884566)(-374.65607886,1072.72229746)
-\lineto(-374.65607886,1073.37455274)
-\lineto(-374.52120309,1074.4181612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-361.4382528,1074.15725908)
-\lineto(-361.87659907,1072.49400811)
-\lineto(-361.94403696,1072.49400811)
-\lineto(-361.53940963,1074.12464632)
-\lineto(-361.4382528,1074.15725908)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-361.4382528,1074.15725908)
-\lineto(-361.87659907,1072.49400811)
-\lineto(-361.94403696,1072.49400811)
-\lineto(-361.53940963,1074.12464632)
-\lineto(-361.4382528,1074.15725908)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-453.0189048,1073.76590591)
-\lineto(-452.51312064,1073.66806762)
-\lineto(-453.0189048,1073.76590591)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-453.0189048,1073.76590591)
-\lineto(-452.51312064,1073.66806762)
-\lineto(-453.0189048,1073.76590591)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.21924643,1073.37455274)
-\lineto(-446.44371072,1073.34193998)
-\lineto(-446.44371072,1073.27671445)
-\lineto(-446.8146191,1073.24410169)
-\lineto(-448.8040368,1073.08103787)
-\lineto(-448.93891258,1072.88536128)
-\lineto(-448.56800419,1072.85274852)
-\lineto(-447.08437065,1072.98319957)
-\lineto(-446.94949488,1072.85274852)
-\lineto(-447.08437065,1072.72229746)
-\lineto(-451.23180077,1072.75491022)
-\lineto(-451.23180077,1072.82013575)
-\lineto(-449.51213462,1072.85274852)
-\lineto(-449.41097779,1072.88536128)
-\lineto(-449.47841568,1073.08103787)
-\lineto(-449.3435399,1073.21148892)
-\lineto(-449.14122624,1073.14626339)
-\lineto(-447.25296537,1073.27671445)
-\lineto(-447.21924643,1073.37455274)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.21924643,1073.37455274)
-\lineto(-446.44371072,1073.34193998)
-\lineto(-446.44371072,1073.27671445)
-\lineto(-446.8146191,1073.24410169)
-\lineto(-448.8040368,1073.08103787)
-\lineto(-448.93891258,1072.88536128)
-\lineto(-448.56800419,1072.85274852)
-\lineto(-447.08437065,1072.98319957)
-\lineto(-446.94949488,1072.85274852)
-\lineto(-447.08437065,1072.72229746)
-\lineto(-451.23180077,1072.75491022)
-\lineto(-451.23180077,1072.82013575)
-\lineto(-449.51213462,1072.85274852)
-\lineto(-449.41097779,1072.88536128)
-\lineto(-449.47841568,1073.08103787)
-\lineto(-449.3435399,1073.21148892)
-\lineto(-449.14122624,1073.14626339)
-\lineto(-447.25296537,1073.27671445)
-\lineto(-447.21924643,1073.37455274)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-365.88915341,1073.11365063)
-\lineto(-365.78799658,1072.88536128)
-\curveto(-366.04129329,1072.76893371)(-365.99772841,1072.99089619)(-365.88915341,1073.11365063)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-365.88915341,1073.11365063)
-\lineto(-365.78799658,1072.88536128)
-\curveto(-366.04129329,1072.76893371)(-365.99772841,1072.99089619)(-365.88915341,1073.11365063)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.67974332,1072.98319957)
-\lineto(-446.03908339,1072.88536128)
-\lineto(-446.67974332,1072.98319957)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.67974332,1072.98319957)
-\lineto(-446.03908339,1072.88536128)
-\lineto(-446.67974332,1072.98319957)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.93989859,1072.85274852)
-\lineto(-451.83874176,1072.62445917)
-\lineto(-454.90716567,1072.5918464)
-\lineto(-455.0083225,1072.6896847)
-\lineto(-452.07477437,1072.72229746)
-\lineto(-451.93989859,1072.85274852)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.93989859,1072.85274852)
-\lineto(-451.83874176,1072.62445917)
-\lineto(-454.90716567,1072.5918464)
-\lineto(-455.0083225,1072.6896847)
-\lineto(-452.07477437,1072.72229746)
-\lineto(-451.93989859,1072.85274852)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.67014704,1072.85274852)
-\lineto(-451.56899021,1072.62445917)
-\lineto(-451.67014704,1072.85274852)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.67014704,1072.85274852)
-\lineto(-451.56899021,1072.62445917)
-\lineto(-451.67014704,1072.85274852)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-383.96250742,1072.85274852)
-\lineto(-383.82763164,1072.72229746)
-\lineto(-383.69275586,1072.07004218)
-\lineto(-383.11953382,1068.97182958)
-\lineto(-382.91722015,1068.77615299)
-\curveto(-382.78987044,1067.92704707)(-382.2309722,1067.20291325)(-381.77077605,1066.4932595)
-\lineto(-380.89408351,1065.84100422)
-\lineto(-382.31027916,1066.10190633)
-\lineto(-382.6474686,1066.55848503)
-\lineto(-383.11953382,1067.01506373)
-\lineto(-383.32184748,1067.60209348)
-\lineto(-384.36713474,1070.76553161)
-\lineto(-384.36713474,1072.20049323)
-\lineto(-383.96250742,1072.85274852)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-383.96250742,1072.85274852)
-\lineto(-383.82763164,1072.72229746)
-\lineto(-383.69275586,1072.07004218)
-\lineto(-383.11953382,1068.97182958)
-\lineto(-382.91722015,1068.77615299)
-\curveto(-382.78987044,1067.92704707)(-382.2309722,1067.20291325)(-381.77077605,1066.4932595)
-\lineto(-380.89408351,1065.84100422)
-\lineto(-382.31027916,1066.10190633)
-\lineto(-382.6474686,1066.55848503)
-\lineto(-383.11953382,1067.01506373)
-\lineto(-383.32184748,1067.60209348)
-\lineto(-384.36713474,1070.76553161)
-\lineto(-384.36713474,1072.20049323)
-\lineto(-383.96250742,1072.85274852)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-455.8512961,1072.72229746)
-\lineto(-455.61526349,1072.49400811)
-\lineto(-455.8512961,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-455.8512961,1072.72229746)
-\lineto(-455.61526349,1072.49400811)
-\lineto(-455.8512961,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-455.44666877,1072.72229746)
-\lineto(-455.34551194,1072.49400811)
-\lineto(-455.44666877,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-455.44666877,1072.72229746)
-\lineto(-455.34551194,1072.49400811)
-\lineto(-455.44666877,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78039217 0.78039217 0.78039217}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-390.03191734,1072.72229746)
-\lineto(-389.25638163,1072.16788047)
-\lineto(-389.52613318,1071.71130177)
-\curveto(-389.77376511,1071.8160931)(-390.12673501,1071.78328466)(-390.06563629,1072.16788047)
-\lineto(-390.5377015,1072.29833153)
-\lineto(-390.03191734,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78039217 0.78039217 0.78039217}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-390.03191734,1072.72229746)
-\lineto(-389.25638163,1072.16788047)
-\lineto(-389.52613318,1071.71130177)
-\curveto(-389.77376511,1071.8160931)(-390.12673501,1071.78328466)(-390.06563629,1072.16788047)
-\lineto(-390.5377015,1072.29833153)
-\lineto(-390.03191734,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-385.31126518,1072.72229746)
-\lineto(-385.04151363,1072.5918464)
-\lineto(-385.1763894,1071.41778689)
-\lineto(-383.86135058,1067.47164243)
-\lineto(-383.86135058,1067.27596584)
-\curveto(-384.90555884,1068.18951459)(-385.49739375,1069.57190444)(-385.71589251,1070.89598267)
-\lineto(-385.85076828,1071.15688478)
-\lineto(-385.85076828,1072.07004218)
-\lineto(-385.81704934,1072.16788047)
-\curveto(-385.47837626,1072.13157594)(-385.32219012,1072.43791416)(-385.31126518,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-385.31126518,1072.72229746)
-\lineto(-385.04151363,1072.5918464)
-\lineto(-385.1763894,1071.41778689)
-\lineto(-383.86135058,1067.47164243)
-\lineto(-383.86135058,1067.27596584)
-\curveto(-384.90555884,1068.18951459)(-385.49739375,1069.57190444)(-385.71589251,1070.89598267)
-\lineto(-385.85076828,1071.15688478)
-\lineto(-385.85076828,1072.07004218)
-\lineto(-385.81704934,1072.16788047)
-\curveto(-385.47837626,1072.13157594)(-385.32219012,1072.43791416)(-385.31126518,1072.72229746)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-456.66055076,1072.5918464)
-\lineto(-456.01989082,1072.49400811)
-\lineto(-456.66055076,1072.5918464)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-456.66055076,1072.5918464)
-\lineto(-456.01989082,1072.49400811)
-\lineto(-456.66055076,1072.5918464)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.8392157 0.8392157 0.8392157}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-378.56747637,1072.5918464)
-\lineto(-377.79194066,1072.29833153)
-\curveto(-377.60486796,1071.66681796)(-376.5779238,1071.89210694)(-376.24086923,1072.29833153)
-\lineto(-375.86996085,1072.46139535)
-\lineto(-375.63392824,1072.42878258)
-\lineto(-376.03855557,1071.71130177)
-\curveto(-376.15770483,1071.46566243)(-376.32813386,1071.18245319)(-376.6792155,1071.28733584)
-\curveto(-377.29182128,1070.93707475)(-378.37730153,1071.31615247)(-378.46631954,1072.03742941)
-\lineto(-378.56747637,1072.5918464)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.8392157 0.8392157 0.8392157}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-378.56747637,1072.5918464)
-\lineto(-377.79194066,1072.29833153)
-\curveto(-377.60486796,1071.66681796)(-376.5779238,1071.89210694)(-376.24086923,1072.29833153)
-\lineto(-375.86996085,1072.46139535)
-\lineto(-375.63392824,1072.42878258)
-\lineto(-376.03855557,1071.71130177)
-\curveto(-376.15770483,1071.46566243)(-376.32813386,1071.18245319)(-376.6792155,1071.28733584)
-\curveto(-377.29182128,1070.93707475)(-378.37730153,1071.31615247)(-378.46631954,1072.03742941)
-\lineto(-378.56747637,1072.5918464)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.48899798,1072.20049323)
-\lineto(-446.94949488,1072.20049323)
-\lineto(-446.71346227,1072.10265494)
-\lineto(-447.48899798,1071.93959112)
-\lineto(-448.12965792,1071.84175283)
-\lineto(-447.48899798,1072.20049323)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.48899798,1072.20049323)
-\lineto(-446.94949488,1072.20049323)
-\lineto(-446.71346227,1072.10265494)
-\lineto(-447.48899798,1071.93959112)
-\lineto(-448.12965792,1071.84175283)
-\lineto(-447.48899798,1072.20049323)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-414.71418438,1072.20049323)
-\lineto(-414.34327599,1071.45039966)
-\lineto(-414.5793086,1071.67868901)
-\lineto(-414.71418438,1072.20049323)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-414.71418438,1072.20049323)
-\lineto(-414.34327599,1071.45039966)
-\lineto(-414.5793086,1071.67868901)
-\lineto(-414.71418438,1072.20049323)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.65882355 0.65882355 0.65882355}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-371.14930868,1072.07004218)
-\lineto(-370.74468135,1071.93959112)
-\lineto(-370.91327607,1071.58085071)
-\curveto(-371.24318222,1071.43578914)(-371.1352816,1071.9004558)(-371.14930868,1072.07004218)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.65882355 0.65882355 0.65882355}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-371.14930868,1072.07004218)
-\lineto(-370.74468135,1071.93959112)
-\lineto(-370.91327607,1071.58085071)
-\curveto(-371.24318222,1071.43578914)(-371.1352816,1071.9004558)(-371.14930868,1072.07004218)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.37725885,1071.93959112)
-\lineto(-448.33197158,1071.90697836)
-\lineto(-448.33197158,1071.84175283)
-\lineto(-449.3435399,1071.84175283)
-\lineto(-449.37725885,1071.93959112)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.37725885,1071.93959112)
-\lineto(-448.33197158,1071.90697836)
-\lineto(-448.33197158,1071.84175283)
-\lineto(-449.3435399,1071.84175283)
-\lineto(-449.37725885,1071.93959112)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-332.5748367,1071.93959112)
-\lineto(-331.90045782,1071.80914006)
-\lineto(-330.85517056,1071.51562519)
-\lineto(-330.85517056,1071.45039966)
-\curveto(-331.0626095,1071.12988141)(-331.43999192,1071.36559343)(-331.66442521,1071.51562519)
-\lineto(-332.54111776,1071.84175283)
-\lineto(-332.5748367,1071.93959112)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-332.5748367,1071.93959112)
-\lineto(-331.90045782,1071.80914006)
-\lineto(-330.85517056,1071.51562519)
-\lineto(-330.85517056,1071.45039966)
-\curveto(-331.0626095,1071.12988141)(-331.43999192,1071.36559343)(-331.66442521,1071.51562519)
-\lineto(-332.54111776,1071.84175283)
-\lineto(-332.5748367,1071.93959112)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.80502282,1071.54823795)
-\lineto(-451.67014704,1071.67868901)
-\lineto(-450.59114083,1071.80914006)
-\lineto(-449.54585357,1071.7765273)
-\lineto(-449.6470104,1071.67868901)
-\lineto(-450.72601661,1071.54823795)
-\lineto(-451.80502282,1071.54823795)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.80502282,1071.54823795)
-\lineto(-451.67014704,1071.67868901)
-\lineto(-450.59114083,1071.80914006)
-\lineto(-449.54585357,1071.7765273)
-\lineto(-449.6470104,1071.67868901)
-\lineto(-450.72601661,1071.54823795)
-\lineto(-451.80502282,1071.54823795)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1071.80914006)
-\lineto(-445.49958028,1071.71130177)
-\lineto(-446.00536444,1071.80914006)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1071.80914006)
-\lineto(-445.49958028,1071.71130177)
-\lineto(-446.00536444,1071.80914006)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-447.48899798,1071.67868901)
-\lineto(-447.38784115,1071.45039966)
-\lineto(-448.43312841,1071.41778689)
-\lineto(-449.07378835,1071.3199486)
-\lineto(-449.07378835,1071.38517413)
-\lineto(-448.83775574,1071.41778689)
-\lineto(-447.52271693,1071.58085071)
-\lineto(-447.48899798,1071.67868901)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-447.48899798,1071.67868901)
-\lineto(-447.38784115,1071.45039966)
-\lineto(-448.43312841,1071.41778689)
-\lineto(-449.07378835,1071.3199486)
-\lineto(-449.07378835,1071.38517413)
-\lineto(-448.83775574,1071.41778689)
-\lineto(-447.52271693,1071.58085071)
-\lineto(-447.48899798,1071.67868901)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.8146191,1071.67868901)
-\lineto(-446.30883494,1071.58085071)
-\lineto(-446.8146191,1071.67868901)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.8146191,1071.67868901)
-\lineto(-446.30883494,1071.58085071)
-\lineto(-446.8146191,1071.67868901)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-418.89533344,1070.11327633)
-\lineto(-418.99649027,1070.14588909)
-\lineto(-419.46855549,1070.99382096)
-\lineto(-419.67086915,1071.64607624)
-\lineto(-419.60343126,1071.64607624)
-\lineto(-418.89533344,1070.11327633)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-418.89533344,1070.11327633)
-\lineto(-418.99649027,1070.14588909)
-\lineto(-419.46855549,1070.99382096)
-\lineto(-419.67086915,1071.64607624)
-\lineto(-419.60343126,1071.64607624)
-\lineto(-418.89533344,1070.11327633)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-398.52909124,1071.67868901)
-\curveto(-398.2748504,1071.69691302)(-398.54793339,1071.43278876)(-398.52909124,1071.67868901)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-398.52909124,1071.67868901)
-\curveto(-398.2748504,1071.69691302)(-398.54793339,1071.43278876)(-398.52909124,1071.67868901)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.80502282,1071.54823795)
-\lineto(-452.04105543,1071.45039966)
-\lineto(-451.80502282,1071.54823795)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.80502282,1071.54823795)
-\lineto(-452.04105543,1071.45039966)
-\lineto(-451.80502282,1071.54823795)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-449.37725885,1071.41778689)
-\lineto(-449.27610202,1071.38517413)
-\lineto(-450.22023245,1071.05904649)
-\lineto(-450.28767034,1071.05904649)
-\curveto(-450.43724757,1071.31081703)(-450.0734876,1071.30872981)(-449.91676195,1071.28733584)
-\lineto(-449.37725885,1071.41778689)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-449.37725885,1071.41778689)
-\lineto(-449.27610202,1071.38517413)
-\lineto(-450.22023245,1071.05904649)
-\lineto(-450.28767034,1071.05904649)
-\curveto(-450.43724757,1071.31081703)(-450.0734876,1071.30872981)(-449.91676195,1071.28733584)
-\lineto(-449.37725885,1071.41778689)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-455.98617188,1071.15688478)
-\lineto(-453.45725108,1071.12427202)
-\lineto(-453.55840791,1071.02643372)
-\lineto(-455.8512961,1071.02643372)
-\lineto(-455.98617188,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-455.98617188,1071.15688478)
-\lineto(-453.45725108,1071.12427202)
-\lineto(-453.55840791,1071.02643372)
-\lineto(-455.8512961,1071.02643372)
-\lineto(-455.98617188,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-452.88402903,1071.15688478)
-\lineto(-452.7828722,1070.92859543)
-\lineto(-452.88402903,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-452.88402903,1071.15688478)
-\lineto(-452.7828722,1070.92859543)
-\lineto(-452.88402903,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-452.61427748,1071.15688478)
-\lineto(-452.51312064,1070.92859543)
-\lineto(-452.61427748,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-452.61427748,1071.15688478)
-\lineto(-452.51312064,1070.92859543)
-\lineto(-452.61427748,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-452.20965015,1071.15688478)
-\curveto(-451.95540931,1071.17510879)(-452.22850578,1070.91098454)(-452.20965015,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-452.20965015,1071.15688478)
-\curveto(-451.95540931,1071.17510879)(-452.22850578,1070.91098454)(-452.20965015,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-451.93989859,1071.15688478)
-\lineto(-450.75973555,1071.12427202)
-\lineto(-450.75973555,1071.05904649)
-\lineto(-451.90617965,1070.92859543)
-\lineto(-451.93989859,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-451.93989859,1071.15688478)
-\lineto(-450.75973555,1071.12427202)
-\lineto(-450.75973555,1071.05904649)
-\lineto(-451.90617965,1070.92859543)
-\lineto(-451.93989859,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-366.69840807,1071.15688478)
-\lineto(-366.32749968,1071.12427202)
-\lineto(-366.29378074,1071.02643372)
-\curveto(-366.60817617,1070.26068602)(-367.29793089,1069.73783818)(-367.946009,1069.23273169)
-\lineto(-368.28319844,1069.16750616)
-\lineto(-368.55294999,1068.97182958)
-\lineto(-368.68782577,1069.42840828)
-\curveto(-367.91215518,1069.68187468)(-367.4426526,1070.42870698)(-366.93444068,1070.99382096)
-\lineto(-366.73212701,1071.05904649)
-\lineto(-366.69840807,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-366.69840807,1071.15688478)
-\lineto(-366.32749968,1071.12427202)
-\lineto(-366.29378074,1071.02643372)
-\curveto(-366.60817617,1070.26068602)(-367.29793089,1069.73783818)(-367.946009,1069.23273169)
-\lineto(-368.28319844,1069.16750616)
-\lineto(-368.55294999,1068.97182958)
-\lineto(-368.68782577,1069.42840828)
-\curveto(-367.91215518,1069.68187468)(-367.4426526,1070.42870698)(-366.93444068,1070.99382096)
-\lineto(-366.73212701,1071.05904649)
-\lineto(-366.69840807,1071.15688478)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-370.34005403,1070.63508055)
-\lineto(-370.23889719,1070.27634015)
-\curveto(-370.46589312,1070.28448551)(-370.46980452,1070.50710807)(-370.34005403,1070.63508055)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-370.34005403,1070.63508055)
-\lineto(-370.23889719,1070.27634015)
-\curveto(-370.46589312,1070.28448551)(-370.46980452,1070.50710807)(-370.34005403,1070.63508055)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-406.89138936,1070.37417844)
-\lineto(-406.79023253,1070.01543803)
-\lineto(-406.89138936,1070.37417844)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-406.89138936,1070.37417844)
-\lineto(-406.79023253,1070.01543803)
-\lineto(-406.89138936,1070.37417844)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-372.90269377,1070.37417844)
-\lineto(-372.53178539,1070.34156568)
-\lineto(-372.93641272,1069.23273169)
-\lineto(-373.40847793,1068.97182958)
-\lineto(-373.57707265,1069.20011893)
-\lineto(-374.08285681,1069.23273169)
-\curveto(-374.17330451,1069.48228456)(-373.82942523,1069.69831151)(-373.6107916,1069.75453592)
-\lineto(-372.90269377,1070.37417844)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-372.90269377,1070.37417844)
-\lineto(-372.53178539,1070.34156568)
-\lineto(-372.93641272,1069.23273169)
-\lineto(-373.40847793,1068.97182958)
-\lineto(-373.57707265,1069.20011893)
-\lineto(-374.08285681,1069.23273169)
-\curveto(-374.17330451,1069.48228456)(-373.82942523,1069.69831151)(-373.6107916,1069.75453592)
-\lineto(-372.90269377,1070.37417844)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-357.79660684,1070.37417844)
-\lineto(-357.69545001,1070.14588909)
-\lineto(-357.79660684,1070.37417844)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-357.79660684,1070.37417844)
-\lineto(-357.69545001,1070.14588909)
-\lineto(-357.79660684,1070.37417844)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.914526,1070.24372738)
-\curveto(-408.56843476,1070.16878325)(-408.6138879,1069.7463175)(-408.6784934,1069.49363381)
-\lineto(-408.74593128,1069.49363381)
-\lineto(-408.914526,1070.24372738)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.914526,1070.24372738)
-\curveto(-408.56843476,1070.16878325)(-408.6138879,1069.7463175)(-408.6784934,1069.49363381)
-\lineto(-408.74593128,1069.49363381)
-\lineto(-408.914526,1070.24372738)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-418.76045766,1069.85237421)
-\lineto(-418.89533344,1070.11327633)
-\lineto(-418.76045766,1069.85237421)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-418.76045766,1069.85237421)
-\lineto(-418.89533344,1070.11327633)
-\lineto(-418.76045766,1069.85237421)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-413.77005394,1070.11327633)
-\lineto(-413.66889711,1070.08066356)
-\lineto(-413.39914556,1069.23273169)
-\lineto(-413.63517817,1069.5914721)
-\lineto(-413.77005394,1070.11327633)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-413.77005394,1070.11327633)
-\lineto(-413.66889711,1070.08066356)
-\lineto(-413.39914556,1069.23273169)
-\lineto(-413.63517817,1069.5914721)
-\lineto(-413.77005394,1070.11327633)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-412.55617196,1070.11327633)
-\curveto(-412.17096674,1070.17277505)(-411.65709004,1070.11637715)(-411.71319836,1069.62408486)
-\lineto(-411.10625737,1068.45002535)
-\curveto(-411.28415851,1068.34450349)(-411.56685814,1068.43910921)(-411.47716575,1068.6783147)
-\lineto(-411.64576047,1069.29795722)
-\lineto(-412.38757724,1069.36318275)
-\lineto(-412.55617196,1070.11327633)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-412.55617196,1070.11327633)
-\curveto(-412.17096674,1070.17277505)(-411.65709004,1070.11637715)(-411.71319836,1069.62408486)
-\lineto(-411.10625737,1068.45002535)
-\curveto(-411.28415851,1068.34450349)(-411.56685814,1068.43910921)(-411.47716575,1068.6783147)
-\lineto(-411.64576047,1069.29795722)
-\lineto(-412.38757724,1069.36318275)
-\lineto(-412.55617196,1070.11327633)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-418.76045766,1069.85237421)
-\lineto(-418.65930083,1069.62408486)
-\lineto(-418.76045766,1069.85237421)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-418.76045766,1069.85237421)
-\lineto(-418.65930083,1069.62408486)
-\lineto(-418.76045766,1069.85237421)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-354.42471244,1069.72192316)
-\lineto(-353.91892828,1069.29795722)
-\curveto(-352.98113701,1067.68819118)(-351.31852331,1066.51021814)(-350.00753077,1065.12352341)
-\curveto(-350.19905437,1063.55028366)(-350.43238947,1061.8518109)(-351.62604008,1060.62296195)
-\lineto(-351.82835375,1060.62296195)
-\lineto(-351.99694847,1060.8512513)
-\lineto(-351.76091586,1061.14476618)
-\lineto(-351.69347797,1061.60134487)
-\curveto(-350.93250884,1062.50837107)(-350.28267735,1063.58028741)(-350.24356338,1064.764783)
-\lineto(-350.37843916,1064.89523406)
-\lineto(-351.05281804,1064.37342983)
-\curveto(-350.9076917,1064.7703924)(-350.69849937,1065.61532389)(-351.42372642,1065.5801021)
-\lineto(-351.62604008,1066.16713186)
-\lineto(-352.67132735,1066.85199991)
-\lineto(-355.06537238,1064.66694471)
-\lineto(-352.97479785,1067.01506373)
-\lineto(-353.04223573,1067.14551479)
-\lineto(-353.98636617,1066.62371056)
-\lineto(-353.98636617,1066.9498382)
-\curveto(-353.54316437,1067.15803809)(-353.48422365,1068.13876913)(-354.12124194,1067.79777007)
-\curveto(-354.09890651,1068.07393496)(-353.80549775,1068.64335382)(-354.3909935,1068.58047641)
-\lineto(-354.42471244,1069.72192316)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-354.42471244,1069.72192316)
-\lineto(-353.91892828,1069.29795722)
-\curveto(-352.98113701,1067.68819118)(-351.31852331,1066.51021814)(-350.00753077,1065.12352341)
-\curveto(-350.19905437,1063.55028366)(-350.43238947,1061.8518109)(-351.62604008,1060.62296195)
-\lineto(-351.82835375,1060.62296195)
-\lineto(-351.99694847,1060.8512513)
-\lineto(-351.76091586,1061.14476618)
-\lineto(-351.69347797,1061.60134487)
-\curveto(-350.93250884,1062.50837107)(-350.28267735,1063.58028741)(-350.24356338,1064.764783)
-\lineto(-350.37843916,1064.89523406)
-\lineto(-351.05281804,1064.37342983)
-\curveto(-350.9076917,1064.7703924)(-350.69849937,1065.61532389)(-351.42372642,1065.5801021)
-\lineto(-351.62604008,1066.16713186)
-\lineto(-352.67132735,1066.85199991)
-\lineto(-355.06537238,1064.66694471)
-\lineto(-352.97479785,1067.01506373)
-\lineto(-353.04223573,1067.14551479)
-\lineto(-353.98636617,1066.62371056)
-\lineto(-353.98636617,1066.9498382)
-\curveto(-353.54316437,1067.15803809)(-353.48422365,1068.13876913)(-354.12124194,1067.79777007)
-\curveto(-354.09890651,1068.07393496)(-353.80549775,1068.64335382)(-354.3909935,1068.58047641)
-\lineto(-354.42471244,1069.72192316)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-374.79095464,1069.5914721)
-\curveto(-374.48033573,1069.51524955)(-374.19601759,1069.03809872)(-374.65607886,1068.93921682)
-\lineto(-374.79095464,1069.5914721)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-374.79095464,1069.5914721)
-\curveto(-374.48033573,1069.51524955)(-374.19601759,1069.03809872)(-374.65607886,1068.93921682)
-\lineto(-374.79095464,1069.5914721)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.86089239,1067.7651573)
-\curveto(-450.66464813,1068.07184774)(-450.18570425,1068.30548558)(-449.81560512,1068.25434877)
-\lineto(-450.86089239,1067.7651573)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.86089239,1067.7651573)
-\curveto(-450.66464813,1068.07184774)(-450.18570425,1068.30548558)(-449.81560512,1068.25434877)
-\lineto(-450.86089239,1067.7651573)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-409.18427756,1068.15651048)
-\curveto(-408.72327215,1068.2209533)(-409.00556715,1067.78185504)(-409.2179965,1067.66731901)
-\lineto(-409.18427756,1068.15651048)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-409.18427756,1068.15651048)
-\curveto(-408.72327215,1068.2209533)(-409.00556715,1067.78185504)(-409.2179965,1067.66731901)
-\lineto(-409.18427756,1068.15651048)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-450.86089239,1067.7651573)
-\lineto(-450.89461133,1067.66731901)
-\lineto(-452.1759312,1067.27596584)
-\lineto(-452.1759312,1067.34119137)
-\lineto(-450.86089239,1067.7651573)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-450.86089239,1067.7651573)
-\lineto(-450.89461133,1067.66731901)
-\lineto(-452.1759312,1067.27596584)
-\lineto(-452.1759312,1067.34119137)
-\lineto(-450.86089239,1067.7651573)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-421.72772474,1067.37380413)
-\lineto(-421.0870648,1066.55848503)
-\lineto(-421.0870648,1066.36280845)
-\curveto(-421.3782616,1066.24121502)(-421.48413909,1066.61770981)(-421.49169213,1066.81938714)
-\lineto(-421.72772474,1067.37380413)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-421.72772474,1067.37380413)
-\lineto(-421.0870648,1066.55848503)
-\lineto(-421.0870648,1066.36280845)
-\curveto(-421.3782616,1066.24121502)(-421.48413909,1066.61770981)(-421.49169213,1066.81938714)
-\lineto(-421.72772474,1067.37380413)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-411.47716575,1067.37380413)
-\curveto(-411.26797342,1067.42916756)(-410.92754696,1067.32945078)(-411.24113314,1067.14551479)
-\curveto(-411.34504144,1067.05580359)(-411.74125252,1067.11823747)(-411.51088469,1067.27596584)
-\lineto(-411.47716575,1067.37380413)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-411.47716575,1067.37380413)
-\curveto(-411.26797342,1067.42916756)(-410.92754696,1067.32945078)(-411.24113314,1067.14551479)
-\curveto(-411.34504144,1067.05580359)(-411.74125252,1067.11823747)(-411.51088469,1067.27596584)
-\lineto(-411.47716575,1067.37380413)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.72156864 0.72156864 0.72156864}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-374.92583041,1067.37380413)
-\lineto(-374.68979781,1067.34119137)
-\lineto(-375.8362419,1066.29758292)
-\curveto(-376.07200476,1066.05324809)(-376.42686293,1065.84935309)(-376.78037234,1065.97145528)
-\lineto(-376.78037234,1066.16713186)
-\lineto(-375.09442513,1067.14551479)
-\lineto(-374.92583041,1067.37380413)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.72156864 0.72156864 0.72156864}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-374.92583041,1067.37380413)
-\lineto(-374.68979781,1067.34119137)
-\lineto(-375.8362419,1066.29758292)
-\curveto(-376.07200476,1066.05324809)(-376.42686293,1065.84935309)(-376.78037234,1065.97145528)
-\lineto(-376.78037234,1066.16713186)
-\lineto(-375.09442513,1067.14551479)
-\lineto(-374.92583041,1067.37380413)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-412.42129618,1067.24335308)
-\lineto(-412.0503878,1067.01506373)
-\lineto(-412.52245302,1066.88461267)
-\lineto(-412.42129618,1067.24335308)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-412.42129618,1067.24335308)
-\lineto(-412.0503878,1067.01506373)
-\lineto(-412.52245302,1066.88461267)
-\lineto(-412.42129618,1067.24335308)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-424.42524026,1067.11290202)
-\lineto(-424.18920765,1066.75416162)
-\lineto(-424.42524026,1067.11290202)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-424.42524026,1067.11290202)
-\lineto(-424.18920765,1066.75416162)
-\lineto(-424.42524026,1067.11290202)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-377.62334594,1067.11290202)
-\lineto(-377.25243755,1067.08028926)
-\lineto(-377.75822171,1066.72154885)
-\lineto(-378.39888165,1066.62371056)
-\lineto(-377.99425432,1066.9498382)
-\lineto(-377.62334594,1067.11290202)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-377.62334594,1067.11290202)
-\lineto(-377.25243755,1067.08028926)
-\lineto(-377.75822171,1066.72154885)
-\lineto(-378.39888165,1066.62371056)
-\lineto(-377.99425432,1066.9498382)
-\lineto(-377.62334594,1067.11290202)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.72941178 0.72941178 0.72941178}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-426.04374957,1066.98245096)
-\lineto(-425.94259274,1066.9498382)
-\lineto(-425.26821386,1065.31919999)
-\lineto(-425.94259274,1066.29758292)
-\lineto(-426.27978218,1066.29758292)
-\curveto(-426.31996168,1066.12551797)(-426.29579194,1065.85209256)(-426.58325268,1065.93884251)
-\curveto(-426.77639479,1065.72346782)(-427.04857411,1065.95099664)(-426.98788001,1066.19974462)
-\lineto(-426.04374957,1066.98245096)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.72941178 0.72941178 0.72941178}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-426.04374957,1066.98245096)
-\lineto(-425.94259274,1066.9498382)
-\lineto(-425.26821386,1065.31919999)
-\lineto(-425.94259274,1066.29758292)
-\lineto(-426.27978218,1066.29758292)
-\curveto(-426.31996168,1066.12551797)(-426.29579194,1065.85209256)(-426.58325268,1065.93884251)
-\curveto(-426.77639479,1065.72346782)(-427.04857411,1065.95099664)(-426.98788001,1066.19974462)
-\lineto(-426.04374957,1066.98245096)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-416.60244524,1066.98245096)
-\curveto(-416.33134493,1066.87343302)(-416.14373273,1066.50473919)(-416.23153686,1066.23235739)
-\curveto(-416.76335204,1066.01554773)(-416.57344695,1066.70054623)(-416.60244524,1066.98245096)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-416.60244524,1066.98245096)
-\curveto(-416.33134493,1066.87343302)(-416.14373273,1066.50473919)(-416.23153686,1066.23235739)
-\curveto(-416.76335204,1066.01554773)(-416.57344695,1066.70054623)(-416.60244524,1066.98245096)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-414.17468127,1066.98245096)
-\lineto(-413.80377289,1066.75416162)
-\curveto(-413.9180936,1066.69114071)(-414.44928835,1066.67276016)(-414.20840022,1066.88461267)
-\lineto(-414.17468127,1066.98245096)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-414.17468127,1066.98245096)
-\lineto(-413.80377289,1066.75416162)
-\curveto(-413.9180936,1066.69114071)(-414.44928835,1066.67276016)(-414.20840022,1066.88461267)
-\lineto(-414.17468127,1066.98245096)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-419.7045881,1066.33019568)
-\curveto(-419.43524117,1066.16987133)(-419.37279369,1065.75047118)(-419.46855549,1065.44965105)
-\lineto(-419.53599338,1065.44965105)
-\lineto(-419.7045881,1066.33019568)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-419.7045881,1066.33019568)
-\curveto(-419.43524117,1066.16987133)(-419.37279369,1065.75047118)(-419.46855549,1065.44965105)
-\lineto(-419.53599338,1065.44965105)
-\lineto(-419.7045881,1066.33019568)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.22745098 0.22745098 0.22745098}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-379.64648258,1066.19974462)
-\lineto(-379.14069842,1066.16713186)
-\curveto(-378.27614469,1065.46126119)(-377.73799035,1064.46083204)(-377.92681643,1063.36243414)
-\lineto(-378.16284904,1063.19937032)
-\lineto(-378.39888165,1063.36243414)
-\lineto(-378.73607109,1064.99307235)
-\lineto(-379.74763941,1065.84100422)
-\lineto(-379.64648258,1066.19974462)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.22745098 0.22745098 0.22745098}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-379.64648258,1066.19974462)
-\lineto(-379.14069842,1066.16713186)
-\curveto(-378.27614469,1065.46126119)(-377.73799035,1064.46083204)(-377.92681643,1063.36243414)
-\lineto(-378.16284904,1063.19937032)
-\lineto(-378.39888165,1063.36243414)
-\lineto(-378.73607109,1064.99307235)
-\lineto(-379.74763941,1065.84100422)
-\lineto(-379.64648258,1066.19974462)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1065.93884251)
-\curveto(-445.75112361,1065.95706652)(-446.02422008,1065.69294227)(-446.00536444,1065.93884251)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1065.93884251)
-\curveto(-445.75112361,1065.95706652)(-446.02422008,1065.69294227)(-446.00536444,1065.93884251)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-377.48847016,1065.93884251)
-\lineto(-377.18499966,1065.31919999)
-\curveto(-375.69327358,1065.17426887)(-375.28459998,1063.41331005)(-375.49905246,1062.18837463)
-\lineto(-375.97111768,1061.60134487)
-\lineto(-376.37574501,1061.14476618)
-\lineto(-376.37574501,1061.34044276)
-\lineto(-375.86996085,1062.80801715)
-\lineto(-376.03855557,1063.81901284)
-\lineto(-376.30830712,1064.60171918)
-\lineto(-376.64549656,1064.47126812)
-\lineto(-376.6792155,1064.24297877)
-\lineto(-376.54433973,1063.46027243)
-\curveto(-376.33784491,1063.12592637)(-376.33784491,1062.62055898)(-376.54433973,1062.28621292)
-\curveto(-376.5540292,1061.90464358)(-376.74233737,1061.44271639)(-377.08384283,1061.24260447)
-\lineto(-377.21871861,1061.50350658)
-\lineto(-377.08384283,1062.54711504)
-\lineto(-377.18499966,1063.75378731)
-\lineto(-377.62334594,1065.6779404)
-\lineto(-377.48847016,1065.93884251)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-377.48847016,1065.93884251)
-\lineto(-377.18499966,1065.31919999)
-\curveto(-375.69327358,1065.17426887)(-375.28459998,1063.41331005)(-375.49905246,1062.18837463)
-\lineto(-375.97111768,1061.60134487)
-\lineto(-376.37574501,1061.14476618)
-\lineto(-376.37574501,1061.34044276)
-\lineto(-375.86996085,1062.80801715)
-\lineto(-376.03855557,1063.81901284)
-\lineto(-376.30830712,1064.60171918)
-\lineto(-376.64549656,1064.47126812)
-\lineto(-376.6792155,1064.24297877)
-\lineto(-376.54433973,1063.46027243)
-\curveto(-376.33784491,1063.12592637)(-376.33784491,1062.62055898)(-376.54433973,1062.28621292)
-\curveto(-376.5540292,1061.90464358)(-376.74233737,1061.44271639)(-377.08384283,1061.24260447)
-\lineto(-377.21871861,1061.50350658)
-\lineto(-377.08384283,1062.54711504)
-\lineto(-377.18499966,1063.75378731)
-\lineto(-377.62334594,1065.6779404)
-\lineto(-377.48847016,1065.93884251)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-355.90834598,1065.93884251)
-\curveto(-355.56427787,1065.83766467)(-356.06264387,1065.32859247)(-356.27925436,1065.44965105)
-\lineto(-355.90834598,1065.93884251)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-355.90834598,1065.93884251)
-\curveto(-355.56427787,1065.83766467)(-356.06264387,1065.32859247)(-356.27925436,1065.44965105)
-\lineto(-355.90834598,1065.93884251)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-328.79831497,1065.54748934)
-\lineto(-329.43897491,1065.90622975)
-\curveto(-329.16032155,1066.04959546)(-328.89690916,1065.76677757)(-328.79831497,1065.54748934)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-328.79831497,1065.54748934)
-\lineto(-329.43897491,1065.90622975)
-\curveto(-329.16032155,1066.04959546)(-328.89690916,1065.76677757)(-328.79831497,1065.54748934)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-427.52738311,1065.80839145)
-\curveto(-427.2562828,1065.69937351)(-427.0686706,1065.33067968)(-427.15647473,1065.05829788)
-\lineto(-427.52738311,1065.80839145)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-427.52738311,1065.80839145)
-\curveto(-427.2562828,1065.69937351)(-427.0686706,1065.33067968)(-427.15647473,1065.05829788)
-\lineto(-427.52738311,1065.80839145)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-420.51384275,1065.80839145)
-\lineto(-420.10921542,1064.63433194)
-\lineto(-420.14293437,1064.53649365)
-\lineto(-420.48012381,1064.40604259)
-\lineto(-420.61499958,1064.53649365)
-\lineto(-420.64871853,1065.54748934)
-\lineto(-420.51384275,1065.80839145)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-420.51384275,1065.80839145)
-\lineto(-420.10921542,1064.63433194)
-\lineto(-420.14293437,1064.53649365)
-\lineto(-420.48012381,1064.40604259)
-\lineto(-420.61499958,1064.53649365)
-\lineto(-420.64871853,1065.54748934)
-\lineto(-420.51384275,1065.80839145)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-421.72772474,1065.54748934)
-\lineto(-421.32309741,1064.764783)
-\curveto(-421.44244898,1064.43330687)(-421.73959381,1064.05265068)(-421.45797319,1063.72117455)
-\lineto(-421.49169213,1063.62333625)
-\lineto(-421.82888157,1063.4928852)
-\lineto(-421.72772474,1065.54748934)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-421.72772474,1065.54748934)
-\lineto(-421.32309741,1064.764783)
-\curveto(-421.44244898,1064.43330687)(-421.73959381,1064.05265068)(-421.45797319,1063.72117455)
-\lineto(-421.49169213,1063.62333625)
-\lineto(-421.82888157,1063.4928852)
-\lineto(-421.72772474,1065.54748934)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-328.79831497,1065.54748934)
-\curveto(-327.64634097,1065.30263271)(-326.82103609,1064.33546857)(-325.86476684,1063.68856178)
-\lineto(-324.85319852,1062.31882569)
-\lineto(-324.24625753,1062.25360016)
-\lineto(-324.07766281,1061.89485975)
-\lineto(-325.02179324,1060.19899602)
-\lineto(-325.25782585,1060.36205984)
-\lineto(-327.85418454,1063.59072349)
-\lineto(-327.68558982,1063.81901284)
-\lineto(-327.48327615,1063.81901284)
-\lineto(-325.5275774,1061.40566829)
-\lineto(-325.05551218,1061.53611935)
-\lineto(-325.19038796,1061.86224699)
-\lineto(-325.72989106,1062.64495333)
-\lineto(-327.2135246,1064.34081707)
-\lineto(-327.41583827,1064.40604259)
-\curveto(-327.60412485,1064.90136526)(-328.18247218,1065.09860725)(-328.62972025,1065.31919999)
-\lineto(-328.79831497,1065.54748934)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-328.79831497,1065.54748934)
-\curveto(-327.64634097,1065.30263271)(-326.82103609,1064.33546857)(-325.86476684,1063.68856178)
-\lineto(-324.85319852,1062.31882569)
-\lineto(-324.24625753,1062.25360016)
-\lineto(-324.07766281,1061.89485975)
-\lineto(-325.02179324,1060.19899602)
-\lineto(-325.25782585,1060.36205984)
-\lineto(-327.85418454,1063.59072349)
-\lineto(-327.68558982,1063.81901284)
-\lineto(-327.48327615,1063.81901284)
-\lineto(-325.5275774,1061.40566829)
-\lineto(-325.05551218,1061.53611935)
-\lineto(-325.19038796,1061.86224699)
-\lineto(-325.72989106,1062.64495333)
-\lineto(-327.2135246,1064.34081707)
-\lineto(-327.41583827,1064.40604259)
-\curveto(-327.60412485,1064.90136526)(-328.18247218,1065.09860725)(-328.62972025,1065.31919999)
-\lineto(-328.79831497,1065.54748934)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-428.20176199,1065.41703828)
-\lineto(-427.22391262,1064.01468942)
-\lineto(-426.58325268,1062.93846821)
-\lineto(-426.61697162,1062.71017886)
-\lineto(-426.81928529,1062.84062991)
-\lineto(-428.30291882,1065.18874893)
-\lineto(-428.20176199,1065.41703828)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-428.20176199,1065.41703828)
-\lineto(-427.22391262,1064.01468942)
-\lineto(-426.58325268,1062.93846821)
-\lineto(-426.61697162,1062.71017886)
-\lineto(-426.81928529,1062.84062991)
-\lineto(-428.30291882,1065.18874893)
-\lineto(-428.20176199,1065.41703828)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-337.29548887,1064.89523406)
-\lineto(-337.05945626,1064.66694471)
-\lineto(-337.29548887,1064.89523406)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-337.29548887,1064.89523406)
-\lineto(-337.05945626,1064.66694471)
-\lineto(-337.29548887,1064.89523406)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1064.63433194)
-\curveto(-445.88208798,1064.64998607)(-446.94571836,1064.10639652)(-446.54486755,1064.63433194)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.54486755,1064.63433194)
-\curveto(-445.88208798,1064.64998607)(-446.94571836,1064.10639652)(-446.54486755,1064.63433194)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.80673095,1064.63433194)
-\curveto(-422.58917632,1064.59552275)(-422.45672831,1064.33585993)(-422.57069834,1064.14514048)
-\curveto(-422.77139349,1064.2023824)(-423.03183862,1064.4438734)(-422.80673095,1064.63433194)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.80673095,1064.63433194)
-\curveto(-422.58917632,1064.59552275)(-422.45672831,1064.33585993)(-422.57069834,1064.14514048)
-\curveto(-422.77139349,1064.2023824)(-423.03183862,1064.4438734)(-422.80673095,1064.63433194)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-328.52856342,1064.63433194)
-\lineto(-328.02277926,1064.27559154)
-\lineto(-328.52856342,1064.63433194)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-328.52856342,1064.63433194)
-\lineto(-328.02277926,1064.27559154)
-\lineto(-328.52856342,1064.63433194)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-349.29943295,1064.50388089)
-\lineto(-346.06241432,1063.8516256)
-\lineto(-345.28687861,1063.68856178)
-\lineto(-345.25315966,1063.19937032)
-\lineto(-344.57878078,1058.24223016)
-\lineto(-344.61249972,1057.7530387)
-\lineto(-344.98340811,1058.37268122)
-\lineto(-345.25315966,1058.11177911)
-\curveto(-345.13843433,1057.25393296)(-345.3221756,1056.29459589)(-345.79266277,1055.50275797)
-\lineto(-345.65778699,1054.98095375)
-\lineto(-346.97282581,1052.66544749)
-\lineto(-347.64720469,1053.90473253)
-\lineto(-346.90538792,1054.88311545)
-\curveto(-346.71858497,1055.52193428)(-346.39717599,1056.21371623)(-345.82638171,1056.57897919)
-\curveto(-345.39154221,1058.33485041)(-345.51562792,1060.26683056)(-345.55663016,1062.1231491)
-\lineto(-345.69150593,1062.25360016)
-\lineto(-346.50076059,1063.29720861)
-\lineto(-346.7367932,1063.32982138)
-\lineto(-348.05183202,1063.36243414)
-\lineto(-348.45645935,1063.9494639)
-\lineto(-348.62505407,1063.72117455)
-\curveto(-348.78204947,1061.91964545)(-349.29039627,1060.06202241)(-350.47959599,1058.6661961)
-\lineto(-350.91794226,1059.15538756)
-\lineto(-350.74934754,1059.77503008)
-\curveto(-349.71795248,1060.84172837)(-349.09846804,1062.18185208)(-348.89480562,1063.59072349)
-\lineto(-349.265714,1064.01468942)
-\lineto(-349.29943295,1064.50388089)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-349.29943295,1064.50388089)
-\lineto(-346.06241432,1063.8516256)
-\lineto(-345.28687861,1063.68856178)
-\lineto(-345.25315966,1063.19937032)
-\lineto(-344.57878078,1058.24223016)
-\lineto(-344.61249972,1057.7530387)
-\lineto(-344.98340811,1058.37268122)
-\lineto(-345.25315966,1058.11177911)
-\curveto(-345.13843433,1057.25393296)(-345.3221756,1056.29459589)(-345.79266277,1055.50275797)
-\lineto(-345.65778699,1054.98095375)
-\lineto(-346.97282581,1052.66544749)
-\lineto(-347.64720469,1053.90473253)
-\lineto(-346.90538792,1054.88311545)
-\curveto(-346.71858497,1055.52193428)(-346.39717599,1056.21371623)(-345.82638171,1056.57897919)
-\curveto(-345.39154221,1058.33485041)(-345.51562792,1060.26683056)(-345.55663016,1062.1231491)
-\lineto(-345.69150593,1062.25360016)
-\lineto(-346.50076059,1063.29720861)
-\lineto(-346.7367932,1063.32982138)
-\lineto(-348.05183202,1063.36243414)
-\lineto(-348.45645935,1063.9494639)
-\lineto(-348.62505407,1063.72117455)
-\curveto(-348.78204947,1061.91964545)(-349.29039627,1060.06202241)(-350.47959599,1058.6661961)
-\lineto(-350.91794226,1059.15538756)
-\lineto(-350.74934754,1059.77503008)
-\curveto(-349.71795248,1060.84172837)(-349.09846804,1062.18185208)(-348.89480562,1063.59072349)
-\lineto(-349.265714,1064.01468942)
-\lineto(-349.29943295,1064.50388089)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-429.82027131,1064.24297877)
-\curveto(-429.56886286,1064.28630157)(-429.05593028,1064.24303878)(-429.17961137,1063.88423837)
-\lineto(-429.65167659,1063.55811073)
-\curveto(-429.42063438,1062.94773023)(-428.88531243,1062.36865799)(-429.04473559,1061.6665704)
-\lineto(-429.68539553,1062.67756609)
-\lineto(-429.95514708,1062.15576187)
-\lineto(-429.5842387,1060.49251089)
-\curveto(-429.81541578,1060.85255581)(-430.35694202,1062.68930669)(-430.52836913,1061.40566829)
-\lineto(-430.79812068,1061.47089382)
-\curveto(-431.13719838,1061.44066831)(-431.20301776,1061.18103157)(-431.20274801,1060.88386406)
-\lineto(-431.53993745,1061.07954065)
-\lineto(-431.20274801,1057.88348976)
-\lineto(-431.70853217,1059.80764284)
-\curveto(-431.94038363,1060.17199265)(-431.76058073,1061.11737145)(-432.48406789,1060.94908959)
-\curveto(-432.19894049,1059.66218992)(-432.00148236,1058.24744821)(-432.14687844,1056.8398813)
-\lineto(-432.38291105,1057.19862171)
-\curveto(-432.57214177,1058.4004673)(-432.54813388,1059.81286089)(-433.46191726,1060.72080024)
-\lineto(-433.83282565,1060.55773642)
-\lineto(-433.19216571,1059.0249365)
-\lineto(-432.65266261,1055.1114048)
-\lineto(-432.61894366,1054.36131123)
-\curveto(-432.51593903,1054.18559365)(-432.41878801,1053.94595506)(-432.14687844,1054.10040911)
-\lineto(-432.21431633,1055.99194944)
-\curveto(-431.54627661,1056.26863613)(-431.71635497,1055.49427865)(-431.70853217,1055.1114048)
-\curveto(-431.68781525,1054.71457269)(-431.81819967,1054.17006998)(-431.43878062,1053.93734529)
-\lineto(-431.00043435,1056.51375366)
-\lineto(-430.39349335,1053.57860489)
-\curveto(-430.9360986,1052.56095619)(-430.87553938,1051.11307991)(-432.07944056,1050.51300505)
-\lineto(-433.49563621,1043.40342246)
-\curveto(-436.87966943,1043.55618065)(-440.21784489,1043.7719467)(-443.1392542,1045.36018831)
-\lineto(-440.17198713,1050.64345611)
-\curveto(-439.90048219,1050.99619577)(-439.70059629,1051.4012463)(-440.20570607,1051.58922627)
-\curveto(-440.31336391,1052.14703499)(-440.03832523,1052.71814972)(-439.56504613,1052.99157513)
-\lineto(-439.66620297,1051.98057944)
-\lineto(-438.48603992,1053.44815383)
-\lineto(-437.67678527,1054.68743887)
-\curveto(-438.086403,1051.41833539)(-439.64327408,1048.41274304)(-441.38586911,1045.5558649)
-\lineto(-441.38586911,1045.0992862)
-\lineto(-440.07083029,1046.89298823)
-\lineto(-438.72207253,1049.37155831)
-\lineto(-437.91281788,1051.32832416)
-\lineto(-437.4744716,1052.73067302)
-\curveto(-437.38108362,1050.48300131)(-438.50748517,1048.15444995)(-439.26157564,1045.97983083)
-\lineto(-439.09298092,1045.62109043)
-\lineto(-438.3174452,1046.50163506)
-\lineto(-438.35116415,1046.14289465)
-\lineto(-438.68835359,1044.44703092)
-\lineto(-438.21628837,1044.57748197)
-\lineto(-437.37331477,1048.58885197)
-\curveto(-437.24129836,1049.47239697)(-437.15292775,1050.40212166)(-436.66521695,1051.16526034)
-\lineto(-436.32802751,1051.10003481)
-\lineto(-436.05827595,1051.36093692)
-\lineto(-435.75480546,1053.80689424)
-\lineto(-435.38389707,1056.64420472)
-\lineto(-434.9455508,1051.1978731)
-\lineto(-434.43976664,1051.16526034)
-\lineto(-434.00142037,1049.50200936)
-\curveto(-434.0432993,1049.23314974)(-434.34225145,1048.73365264)(-433.90026353,1048.62146473)
-\lineto(-433.63051198,1048.88236684)
-\curveto(-432.78214335,1052.18799662)(-433.07563304,1055.77018264)(-433.46191726,1059.15538756)
-\lineto(-434.23745298,1060.75341301)
-\curveto(-435.23040844,1061.0985865)(-434.15408626,1059.26887998)(-435.04670763,1059.1227748)
-\lineto(-435.11414552,1058.79664716)
-\lineto(-435.58621074,1058.92709821)
-\curveto(-435.33345353,1060.00997243)(-437.16695483,1059.84390824)(-436.69893589,1058.76403439)
-\lineto(-436.73265483,1056.8398813)
-\lineto(-436.96868744,1059.80764284)
-\lineto(-437.4744716,1060.10115772)
-\curveto(-437.33946095,1060.82163891)(-438.06104635,1061.18768457)(-438.3174452,1061.63395764)
-\lineto(-438.82322936,1061.40566829)
-\lineto(-438.75579148,1061.79702146)
-\lineto(-438.82322936,1062.25360016)
-\curveto(-435.85461353,1060.5186011)(-432.30872938,1062.34006312)(-429.82027131,1064.24297877)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-429.82027131,1064.24297877)
-\curveto(-429.56886286,1064.28630157)(-429.05593028,1064.24303878)(-429.17961137,1063.88423837)
-\lineto(-429.65167659,1063.55811073)
-\curveto(-429.42063438,1062.94773023)(-428.88531243,1062.36865799)(-429.04473559,1061.6665704)
-\lineto(-429.68539553,1062.67756609)
-\lineto(-429.95514708,1062.15576187)
-\lineto(-429.5842387,1060.49251089)
-\curveto(-429.81541578,1060.85255581)(-430.35694202,1062.68930669)(-430.52836913,1061.40566829)
-\lineto(-430.79812068,1061.47089382)
-\curveto(-431.13719838,1061.44066831)(-431.20301776,1061.18103157)(-431.20274801,1060.88386406)
-\lineto(-431.53993745,1061.07954065)
-\lineto(-431.20274801,1057.88348976)
-\lineto(-431.70853217,1059.80764284)
-\curveto(-431.94038363,1060.17199265)(-431.76058073,1061.11737145)(-432.48406789,1060.94908959)
-\curveto(-432.19894049,1059.66218992)(-432.00148236,1058.24744821)(-432.14687844,1056.8398813)
-\lineto(-432.38291105,1057.19862171)
-\curveto(-432.57214177,1058.4004673)(-432.54813388,1059.81286089)(-433.46191726,1060.72080024)
-\lineto(-433.83282565,1060.55773642)
-\lineto(-433.19216571,1059.0249365)
-\lineto(-432.65266261,1055.1114048)
-\lineto(-432.61894366,1054.36131123)
-\curveto(-432.51593903,1054.18559365)(-432.41878801,1053.94595506)(-432.14687844,1054.10040911)
-\lineto(-432.21431633,1055.99194944)
-\curveto(-431.54627661,1056.26863613)(-431.71635497,1055.49427865)(-431.70853217,1055.1114048)
-\curveto(-431.68781525,1054.71457269)(-431.81819967,1054.17006998)(-431.43878062,1053.93734529)
-\lineto(-431.00043435,1056.51375366)
-\lineto(-430.39349335,1053.57860489)
-\curveto(-430.9360986,1052.56095619)(-430.87553938,1051.11307991)(-432.07944056,1050.51300505)
-\lineto(-433.49563621,1043.40342246)
-\curveto(-436.87966943,1043.55618065)(-440.21784489,1043.7719467)(-443.1392542,1045.36018831)
-\lineto(-440.17198713,1050.64345611)
-\curveto(-439.90048219,1050.99619577)(-439.70059629,1051.4012463)(-440.20570607,1051.58922627)
-\curveto(-440.31336391,1052.14703499)(-440.03832523,1052.71814972)(-439.56504613,1052.99157513)
-\lineto(-439.66620297,1051.98057944)
-\lineto(-438.48603992,1053.44815383)
-\lineto(-437.67678527,1054.68743887)
-\curveto(-438.086403,1051.41833539)(-439.64327408,1048.41274304)(-441.38586911,1045.5558649)
-\lineto(-441.38586911,1045.0992862)
-\lineto(-440.07083029,1046.89298823)
-\lineto(-438.72207253,1049.37155831)
-\lineto(-437.91281788,1051.32832416)
-\lineto(-437.4744716,1052.73067302)
-\curveto(-437.38108362,1050.48300131)(-438.50748517,1048.15444995)(-439.26157564,1045.97983083)
-\lineto(-439.09298092,1045.62109043)
-\lineto(-438.3174452,1046.50163506)
-\lineto(-438.35116415,1046.14289465)
-\lineto(-438.68835359,1044.44703092)
-\lineto(-438.21628837,1044.57748197)
-\lineto(-437.37331477,1048.58885197)
-\curveto(-437.24129836,1049.47239697)(-437.15292775,1050.40212166)(-436.66521695,1051.16526034)
-\lineto(-436.32802751,1051.10003481)
-\lineto(-436.05827595,1051.36093692)
-\lineto(-435.75480546,1053.80689424)
-\lineto(-435.38389707,1056.64420472)
-\lineto(-434.9455508,1051.1978731)
-\lineto(-434.43976664,1051.16526034)
-\lineto(-434.00142037,1049.50200936)
-\curveto(-434.0432993,1049.23314974)(-434.34225145,1048.73365264)(-433.90026353,1048.62146473)
-\lineto(-433.63051198,1048.88236684)
-\curveto(-432.78214335,1052.18799662)(-433.07563304,1055.77018264)(-433.46191726,1059.15538756)
-\lineto(-434.23745298,1060.75341301)
-\curveto(-435.23040844,1061.0985865)(-434.15408626,1059.26887998)(-435.04670763,1059.1227748)
-\lineto(-435.11414552,1058.79664716)
-\lineto(-435.58621074,1058.92709821)
-\curveto(-435.33345353,1060.00997243)(-437.16695483,1059.84390824)(-436.69893589,1058.76403439)
-\lineto(-436.73265483,1056.8398813)
-\lineto(-436.96868744,1059.80764284)
-\lineto(-437.4744716,1060.10115772)
-\curveto(-437.33946095,1060.82163891)(-438.06104635,1061.18768457)(-438.3174452,1061.63395764)
-\lineto(-438.82322936,1061.40566829)
-\lineto(-438.75579148,1061.79702146)
-\lineto(-438.82322936,1062.25360016)
-\curveto(-435.85461353,1060.5186011)(-432.30872938,1062.34006312)(-429.82027131,1064.24297877)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.86274511 0.86274511 0.86274511}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1061.37305553)
-\lineto(-330.72029478,1057.81826423)
-\lineto(-329.97847801,1054.88311545)
-\lineto(-329.7424454,1055.1114048)
-\lineto(-330.41682429,1057.98132805)
-\lineto(-330.45054323,1058.60097057)
-\lineto(-329.97847801,1057.49213659)
-\lineto(-329.70872646,1056.57897919)
-\lineto(-329.37153702,1056.44852813)
-\lineto(-330.24822957,1059.25322585)
-\curveto(-329.93545264,1059.33482299)(-329.70508481,1058.92853317)(-329.70872646,1058.6661961)
-\lineto(-329.23666124,1057.94871529)
-\lineto(-328.62972025,1056.70943025)
-\curveto(-328.13310764,1056.50775291)(-328.28174075,1057.0366015)(-328.49484448,1057.23123447)
-\lineto(-330.24822957,1060.55773642)
-\curveto(-329.1417087,1059.7336771)(-328.28848454,1058.59966606)(-327.82046559,1057.36168553)
-\lineto(-327.48327615,1057.23123447)
-\lineto(-327.34840038,1057.42691106)
-\curveto(-327.75788323,1058.97406059)(-328.93049323,1060.17551482)(-330.11335379,1061.14476618)
-\lineto(-332.54111776,1064.21036601)
-\lineto(-330.58541901,1063.16675756)
-\lineto(-330.68657584,1062.80801715)
-\lineto(-328.3599687,1060.49251089)
-\lineto(-326.80889727,1057.49213659)
-\lineto(-328.49484448,1055.86149838)
-\lineto(-331.66442521,1053.05680066)
-\lineto(-332.00161465,1053.05680066)
-\lineto(-331.90045782,1055.24185586)
-\lineto(-332.13649043,1055.66582179)
-\lineto(-332.97946403,1057.45952382)
-\lineto(-333.35037242,1058.34006846)
-\lineto(-330.92260845,1054.49176228)
-\lineto(-330.58541901,1054.49176228)
-\curveto(-330.80850354,1055.82366757)(-331.88993751,1056.94293764)(-332.54111776,1058.14439187)
-\lineto(-332.54111776,1058.34006846)
-\lineto(-332.3388041,1058.40529399)
-\lineto(-333.62012397,1060.62296195)
-\curveto(-333.2741676,1060.75308688)(-333.44127869,1061.08162786)(-333.51896714,1061.37305553)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.86274511 0.86274511 0.86274511}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1061.37305553)
-\lineto(-330.72029478,1057.81826423)
-\lineto(-329.97847801,1054.88311545)
-\lineto(-329.7424454,1055.1114048)
-\lineto(-330.41682429,1057.98132805)
-\lineto(-330.45054323,1058.60097057)
-\lineto(-329.97847801,1057.49213659)
-\lineto(-329.70872646,1056.57897919)
-\lineto(-329.37153702,1056.44852813)
-\lineto(-330.24822957,1059.25322585)
-\curveto(-329.93545264,1059.33482299)(-329.70508481,1058.92853317)(-329.70872646,1058.6661961)
-\lineto(-329.23666124,1057.94871529)
-\lineto(-328.62972025,1056.70943025)
-\curveto(-328.13310764,1056.50775291)(-328.28174075,1057.0366015)(-328.49484448,1057.23123447)
-\lineto(-330.24822957,1060.55773642)
-\curveto(-329.1417087,1059.7336771)(-328.28848454,1058.59966606)(-327.82046559,1057.36168553)
-\lineto(-327.48327615,1057.23123447)
-\lineto(-327.34840038,1057.42691106)
-\curveto(-327.75788323,1058.97406059)(-328.93049323,1060.17551482)(-330.11335379,1061.14476618)
-\lineto(-332.54111776,1064.21036601)
-\lineto(-330.58541901,1063.16675756)
-\lineto(-330.68657584,1062.80801715)
-\lineto(-328.3599687,1060.49251089)
-\lineto(-326.80889727,1057.49213659)
-\lineto(-328.49484448,1055.86149838)
-\lineto(-331.66442521,1053.05680066)
-\lineto(-332.00161465,1053.05680066)
-\lineto(-331.90045782,1055.24185586)
-\lineto(-332.13649043,1055.66582179)
-\lineto(-332.97946403,1057.45952382)
-\lineto(-333.35037242,1058.34006846)
-\lineto(-330.92260845,1054.49176228)
-\lineto(-330.58541901,1054.49176228)
-\curveto(-330.80850354,1055.82366757)(-331.88993751,1056.94293764)(-332.54111776,1058.14439187)
-\lineto(-332.54111776,1058.34006846)
-\lineto(-332.3388041,1058.40529399)
-\lineto(-333.62012397,1060.62296195)
-\curveto(-333.2741676,1060.75308688)(-333.44127869,1061.08162786)(-333.51896714,1061.37305553)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1064.11252772)
-\lineto(-446.03908339,1063.62333625)
-\curveto(-446.2244027,1063.5209974)(-446.73976305,1063.59579804)(-446.37627283,1063.81901284)
-\lineto(-446.00536444,1064.11252772)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-446.00536444,1064.11252772)
-\lineto(-446.03908339,1063.62333625)
-\curveto(-446.2244027,1063.5209974)(-446.73976305,1063.59579804)(-446.37627283,1063.81901284)
-\lineto(-446.00536444,1064.11252772)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-341.61151371,1064.11252772)
-\curveto(-341.35727287,1064.13075173)(-341.63035585,1063.86662747)(-341.61151371,1064.11252772)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-341.61151371,1064.11252772)
-\curveto(-341.35727287,1064.13075173)(-341.63035585,1063.86662747)(-341.61151371,1064.11252772)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-342.15101681,1063.98207666)
-\lineto(-341.9149842,1063.62333625)
-\lineto(-342.15101681,1063.98207666)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-342.15101681,1063.98207666)
-\lineto(-341.9149842,1063.62333625)
-\lineto(-342.15101681,1063.98207666)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-330.82145161,1063.98207666)
-\curveto(-330.56721078,1064.00030067)(-330.84030725,1063.73617642)(-330.82145161,1063.98207666)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-330.82145161,1063.98207666)
-\curveto(-330.56721078,1064.00030067)(-330.84030725,1063.73617642)(-330.82145161,1063.98207666)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-330.55170006,1063.8516256)
-\curveto(-330.29745922,1063.86984962)(-330.57055569,1063.60572536)(-330.55170006,1063.8516256)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-330.55170006,1063.8516256)
-\curveto(-330.29745922,1063.86984962)(-330.57055569,1063.60572536)(-330.55170006,1063.8516256)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-388.0087807,1063.72117455)
-\lineto(-387.4692776,1063.46027243)
-\lineto(-387.63787232,1063.23198308)
-\lineto(-389.45869529,1062.97108097)
-\lineto(-389.32381952,1063.29720861)
-\lineto(-388.68315958,1063.46027243)
-\lineto(-388.0087807,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-388.0087807,1063.72117455)
-\lineto(-387.4692776,1063.46027243)
-\lineto(-387.63787232,1063.23198308)
-\lineto(-389.45869529,1062.97108097)
-\lineto(-389.32381952,1063.29720861)
-\lineto(-388.68315958,1063.46027243)
-\lineto(-388.0087807,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-385.71589251,1063.72117455)
-\lineto(-385.34498412,1063.68856178)
-\lineto(-385.34498412,1063.36243414)
-\lineto(-387.60415337,1062.41666398)
-\lineto(-387.97506176,1062.44927674)
-\curveto(-388.0715384,1062.85680584)(-387.46118505,1062.84402164)(-387.19952604,1062.93846821)
-\lineto(-385.71589251,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-385.71589251,1063.72117455)
-\lineto(-385.34498412,1063.68856178)
-\lineto(-385.34498412,1063.36243414)
-\lineto(-387.60415337,1062.41666398)
-\lineto(-387.97506176,1062.44927674)
-\curveto(-388.0715384,1062.85680584)(-387.46118505,1062.84402164)(-387.19952604,1062.93846821)
-\lineto(-385.71589251,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-344.84853233,1063.72117455)
-\lineto(-344.61249972,1062.97108097)
-\lineto(-344.84853233,1063.32982138)
-\lineto(-344.84853233,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-344.84853233,1063.72117455)
-\lineto(-344.61249972,1062.97108097)
-\lineto(-344.84853233,1063.32982138)
-\lineto(-344.84853233,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-343.63465035,1063.72117455)
-\lineto(-342.45448731,1063.68856178)
-\lineto(-342.31961153,1063.36243414)
-\lineto(-342.52192519,1063.29720861)
-\lineto(-342.92655252,1062.97108097)
-\lineto(-343.39861774,1062.84062991)
-\lineto(-343.6009314,1062.84062991)
-\lineto(-343.63465035,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-343.63465035,1063.72117455)
-\lineto(-342.45448731,1063.68856178)
-\lineto(-342.31961153,1063.36243414)
-\lineto(-342.52192519,1063.29720861)
-\lineto(-342.92655252,1062.97108097)
-\lineto(-343.39861774,1062.84062991)
-\lineto(-343.6009314,1062.84062991)
-\lineto(-343.63465035,1063.72117455)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-422.53697939,1063.32982138)
-\lineto(-422.30094679,1063.10153203)
-\lineto(-422.53697939,1063.32982138)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-422.53697939,1063.32982138)
-\lineto(-422.30094679,1063.10153203)
-\lineto(-422.53697939,1063.32982138)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.80107874,1063.19937032)
-\curveto(-439.50111502,1063.27543633)(-439.23109371,1063.05926588)(-439.12669986,1062.80801715)
-\lineto(-439.56504613,1062.18837463)
-\lineto(-440.64405234,1061.01431512)
-\lineto(-442.5997511,1058.92709821)
-\lineto(-442.5997511,1059.64457902)
-\lineto(-442.46487532,1059.90548114)
-\curveto(-441.59290343,1060.68388259)(-440.8531098,1061.54133739)(-440.3068629,1062.51450227)
-\lineto(-439.83479769,1062.97108097)
-\lineto(-439.80107874,1063.19937032)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.80107874,1063.19937032)
-\curveto(-439.50111502,1063.27543633)(-439.23109371,1063.05926588)(-439.12669986,1062.80801715)
-\lineto(-439.56504613,1062.18837463)
-\lineto(-440.64405234,1061.01431512)
-\lineto(-442.5997511,1058.92709821)
-\lineto(-442.5997511,1059.64457902)
-\lineto(-442.46487532,1059.90548114)
-\curveto(-441.59290343,1060.68388259)(-440.8531098,1061.54133739)(-440.3068629,1062.51450227)
-\lineto(-439.83479769,1062.97108097)
-\lineto(-439.80107874,1063.19937032)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-329.47269385,1063.19937032)
-\lineto(-328.12393609,1062.41666398)
-\lineto(-327.85418454,1062.54711504)
-\lineto(-327.61815193,1062.51450227)
-\lineto(-325.5275774,1059.84025561)
-\lineto(-325.32526374,1059.64457902)
-\lineto(-325.46013951,1059.44890244)
-\curveto(-326.59107289,1060.58774016)(-327.64917336,1062.09444987)(-329.16922336,1062.84062991)
-\lineto(-329.47269385,1063.19937032)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.47269385,1063.19937032)
-\lineto(-328.12393609,1062.41666398)
-\lineto(-327.85418454,1062.54711504)
-\lineto(-327.61815193,1062.51450227)
-\lineto(-325.5275774,1059.84025561)
-\lineto(-325.32526374,1059.64457902)
-\lineto(-325.46013951,1059.44890244)
-\curveto(-326.59107289,1060.58774016)(-327.64917336,1062.09444987)(-329.16922336,1062.84062991)
-\lineto(-329.47269385,1063.19937032)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1063.06891926)
-\curveto(-444.90342935,1062.98117788)(-445.07000094,1062.41653353)(-445.33098556,1062.28621292)
-\lineto(-445.33098556,1063.06891926)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.33098556,1063.06891926)
-\curveto(-444.90342935,1062.98117788)(-445.07000094,1062.41653353)(-445.33098556,1062.28621292)
-\lineto(-445.33098556,1063.06891926)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.73725492 0.73725492 0.73725492}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-346.87166898,1062.67756609)
-\lineto(-346.77051214,1062.64495333)
-\curveto(-346.23006491,1061.62691328)(-346.32596159,1060.44946204)(-346.33216587,1059.28583862)
-\lineto(-346.7367932,1057.98132805)
-\lineto(-346.60191742,1057.45952382)
-\lineto(-347.84951835,1054.88311545)
-\lineto(-348.05183202,1054.7526644)
-\lineto(-348.18670779,1055.2092431)
-\lineto(-347.84951835,1055.53537074)
-\curveto(-346.93775811,1057.26384724)(-346.62525093,1059.14234246)(-346.60191742,1061.11215341)
-\lineto(-346.87166898,1061.63395764)
-\lineto(-346.87166898,1062.67756609)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.73725492 0.73725492 0.73725492}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-346.87166898,1062.67756609)
-\lineto(-346.77051214,1062.64495333)
-\curveto(-346.23006491,1061.62691328)(-346.32596159,1060.44946204)(-346.33216587,1059.28583862)
-\lineto(-346.7367932,1057.98132805)
-\lineto(-346.60191742,1057.45952382)
-\lineto(-347.84951835,1054.88311545)
-\lineto(-348.05183202,1054.7526644)
-\lineto(-348.18670779,1055.2092431)
-\lineto(-347.84951835,1055.53537074)
-\curveto(-346.93775811,1057.26384724)(-346.62525093,1059.14234246)(-346.60191742,1061.11215341)
-\lineto(-346.87166898,1061.63395764)
-\lineto(-346.87166898,1062.67756609)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-334.46309757,1062.54711504)
-\curveto(-334.71733841,1062.52889102)(-334.44424194,1062.79301528)(-334.46309757,1062.54711504)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.46309757,1062.54711504)
-\curveto(-334.71733841,1062.52889102)(-334.44424194,1062.79301528)(-334.46309757,1062.54711504)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-329.87732118,1062.67756609)
-\curveto(-328.25746311,1061.96425971)(-327.16631808,1060.52903719)(-325.99964262,1059.25322585)
-\lineto(-325.8310479,1058.76403439)
-\lineto(-326.74145939,1057.7530387)
-\curveto(-326.8593543,1058.82586819)(-327.50175414,1059.75415791)(-328.02277926,1060.68818748)
-\lineto(-329.84360224,1062.44927674)
-\lineto(-329.87732118,1062.67756609)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-329.87732118,1062.67756609)
-\curveto(-328.25746311,1061.96425971)(-327.16631808,1060.52903719)(-325.99964262,1059.25322585)
-\lineto(-325.8310479,1058.76403439)
-\lineto(-326.74145939,1057.7530387)
-\curveto(-326.8593543,1058.82586819)(-327.50175414,1059.75415791)(-328.02277926,1060.68818748)
-\lineto(-329.84360224,1062.44927674)
-\lineto(-329.87732118,1062.67756609)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-334.46309757,1062.54711504)
-\lineto(-334.09218919,1062.05792357)
-\lineto(-334.46309757,1062.54711504)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.46309757,1062.54711504)
-\lineto(-334.09218919,1062.05792357)
-\lineto(-334.46309757,1062.54711504)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-386.12051983,1062.41666398)
-\curveto(-385.86911139,1062.45998678)(-385.35617881,1062.41672399)(-385.4798599,1062.05792357)
-\lineto(-386.08680089,1061.79702146)
-\lineto(-385.34498412,1061.60134487)
-\lineto(-386.12051983,1061.37305553)
-\curveto(-386.28452878,1061.16668195)(-386.6095794,1061.36834233)(-386.49142822,1061.60134487)
-\lineto(-386.28911455,1061.6665704)
-\lineto(-386.39027139,1061.7644087)
-\lineto(-387.30068288,1061.6665704)
-\lineto(-387.03093132,1062.25360016)
-\lineto(-386.25539561,1062.28621292)
-\lineto(-386.12051983,1062.41666398)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-386.12051983,1062.41666398)
-\curveto(-385.86911139,1062.45998678)(-385.35617881,1062.41672399)(-385.4798599,1062.05792357)
-\lineto(-386.08680089,1061.79702146)
-\lineto(-385.34498412,1061.60134487)
-\lineto(-386.12051983,1061.37305553)
-\curveto(-386.28452878,1061.16668195)(-386.6095794,1061.36834233)(-386.49142822,1061.60134487)
-\lineto(-386.28911455,1061.6665704)
-\lineto(-386.39027139,1061.7644087)
-\lineto(-387.30068288,1061.6665704)
-\lineto(-387.03093132,1062.25360016)
-\lineto(-386.25539561,1062.28621292)
-\lineto(-386.12051983,1062.41666398)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-350.1086876,1062.15576187)
-\lineto(-349.83893605,1062.02531081)
-\lineto(-351.22141276,1059.97070667)
-\lineto(-351.42372642,1059.97070667)
-\lineto(-351.42372642,1060.16638325)
-\curveto(-350.90067816,1060.77324157)(-350.31005714,1061.3877965)(-350.1086876,1062.15576187)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-350.1086876,1062.15576187)
-\lineto(-349.83893605,1062.02531081)
-\lineto(-351.22141276,1059.97070667)
-\lineto(-351.42372642,1059.97070667)
-\lineto(-351.42372642,1060.16638325)
-\curveto(-350.90067816,1060.77324157)(-350.31005714,1061.3877965)(-350.1086876,1062.15576187)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.89086154,1061.50350658)
-\curveto(-337.14510238,1061.48528257)(-336.87201939,1061.74940682)(-336.89086154,1061.50350658)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.89086154,1061.50350658)
-\curveto(-337.14510238,1061.48528257)(-336.87201939,1061.74940682)(-336.89086154,1061.50350658)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-425.36937069,1061.50350658)
-\lineto(-425.26821386,1061.47089382)
-\lineto(-424.99846231,1060.88386406)
-\curveto(-425.46580687,1060.67031568)(-425.37557498,1061.23751688)(-425.36937069,1061.50350658)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-425.36937069,1061.50350658)
-\lineto(-425.26821386,1061.47089382)
-\lineto(-424.99846231,1060.88386406)
-\curveto(-425.46580687,1060.67031568)(-425.37557498,1061.23751688)(-425.36937069,1061.50350658)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.62110999,1061.11215341)
-\lineto(-336.89086154,1061.50350658)
-\lineto(-336.62110999,1061.11215341)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.62110999,1061.11215341)
-\lineto(-336.89086154,1061.50350658)
-\lineto(-336.62110999,1061.11215341)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1061.37305553)
-\curveto(-333.77320797,1061.35483151)(-333.5001115,1061.61895577)(-333.51896714,1061.37305553)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.51896714,1061.37305553)
-\curveto(-333.77320797,1061.35483151)(-333.5001115,1061.61895577)(-333.51896714,1061.37305553)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.27058825 0.27058825 0.27058825}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-384.50201052,1061.11215341)
-\curveto(-384.30185487,1061.0860632)(-384.16387695,1060.85307761)(-384.40085369,1060.75341301)
-\curveto(-384.62784962,1060.76155837)(-384.63176102,1060.98418093)(-384.50201052,1061.11215341)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.27058825 0.27058825 0.27058825}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.50201052,1061.11215341)
-\curveto(-384.30185487,1061.0860632)(-384.16387695,1060.85307761)(-384.40085369,1060.75341301)
-\curveto(-384.62784962,1060.76155837)(-384.63176102,1060.98418093)(-384.50201052,1061.11215341)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.62110999,1061.11215341)
-\curveto(-336.36686915,1061.13037742)(-336.63995213,1060.86625317)(-336.62110999,1061.11215341)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.62110999,1061.11215341)
-\curveto(-336.36686915,1061.13037742)(-336.63995213,1060.86625317)(-336.62110999,1061.11215341)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.53132719,1060.98170236)
-\lineto(-439.29529458,1060.94908959)
-\curveto(-439.13506216,1060.51273081)(-439.32519654,1060.00371078)(-439.7673598,1059.84025561)
-\lineto(-439.53132719,1060.98170236)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.53132719,1060.98170236)
-\lineto(-439.29529458,1060.94908959)
-\curveto(-439.13506216,1060.51273081)(-439.32519654,1060.00371078)(-439.7673598,1059.84025561)
-\lineto(-439.53132719,1060.98170236)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-383.42300431,1060.19899602)
-\lineto(-383.01837698,1060.19899602)
-\lineto(-382.91722015,1059.97070667)
-\lineto(-383.92878847,1059.84025561)
-\lineto(-383.92878847,1060.03593219)
-\lineto(-383.69275586,1060.06854496)
-\lineto(-383.42300431,1060.19899602)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-383.42300431,1060.19899602)
-\lineto(-383.01837698,1060.19899602)
-\lineto(-382.91722015,1059.97070667)
-\lineto(-383.92878847,1059.84025561)
-\lineto(-383.92878847,1060.03593219)
-\lineto(-383.69275586,1060.06854496)
-\lineto(-383.42300431,1060.19899602)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-349.02968139,1060.06854496)
-\lineto(-348.52389723,1060.03593219)
-\lineto(-348.99596245,1058.01394082)
-\lineto(-348.79364879,1057.94871529)
-\lineto(-348.75992984,1057.72042594)
-\curveto(-348.96979655,1057.47517795)(-349.13866102,1057.1791845)(-348.99596245,1056.8398813)
-\lineto(-348.7262109,1056.44852813)
-\lineto(-347.71464258,1058.07916634)
-\lineto(-348.38902146,1055.79627285)
-\lineto(-348.52389723,1055.66582179)
-\lineto(-349.67034133,1057.10078342)
-\lineto(-350.1086876,1057.98132805)
-\lineto(-349.02968139,1060.06854496)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-349.02968139,1060.06854496)
-\lineto(-348.52389723,1060.03593219)
-\lineto(-348.99596245,1058.01394082)
-\lineto(-348.79364879,1057.94871529)
-\lineto(-348.75992984,1057.72042594)
-\curveto(-348.96979655,1057.47517795)(-349.13866102,1057.1791845)(-348.99596245,1056.8398813)
-\lineto(-348.7262109,1056.44852813)
-\lineto(-347.71464258,1058.07916634)
-\lineto(-348.38902146,1055.79627285)
-\lineto(-348.52389723,1055.66582179)
-\lineto(-349.67034133,1057.10078342)
-\lineto(-350.1086876,1057.98132805)
-\lineto(-349.02968139,1060.06854496)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-438.18256943,1059.9380939)
-\lineto(-438.0814126,1059.90548114)
-\lineto(-438.48603992,1058.92709821)
-\lineto(-438.55347781,1058.92709821)
-\lineto(-438.18256943,1059.9380939)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-438.18256943,1059.9380939)
-\lineto(-438.0814126,1059.90548114)
-\lineto(-438.48603992,1058.92709821)
-\lineto(-438.55347781,1058.92709821)
-\lineto(-438.18256943,1059.9380939)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-334.46309757,1059.9380939)
-\curveto(-334.20885673,1059.95631791)(-334.4819532,1059.69219366)(-334.46309757,1059.9380939)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-334.46309757,1059.9380939)
-\curveto(-334.20885673,1059.95631791)(-334.4819532,1059.69219366)(-334.46309757,1059.9380939)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1059.67719179)
-\curveto(-445.61959275,1059.92309203)(-445.34649628,1059.65896778)(-445.60073712,1059.67719179)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1059.67719179)
-\curveto(-445.61959275,1059.92309203)(-445.34649628,1059.65896778)(-445.60073712,1059.67719179)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-440.47545762,1059.80764284)
-\curveto(-440.16699672,1059.63740422)(-440.39103887,1059.17404206)(-440.50917657,1058.92709821)
-\lineto(-440.57661445,1058.92709821)
-\lineto(-440.47545762,1059.80764284)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-440.47545762,1059.80764284)
-\curveto(-440.16699672,1059.63740422)(-440.39103887,1059.17404206)(-440.50917657,1058.92709821)
-\lineto(-440.57661445,1058.92709821)
-\lineto(-440.47545762,1059.80764284)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1059.67719179)
-\lineto(-445.83676972,1059.44890244)
-\lineto(-445.60073712,1059.67719179)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-445.60073712,1059.67719179)
-\lineto(-445.83676972,1059.44890244)
-\lineto(-445.60073712,1059.67719179)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-407.97039557,1059.54674073)
-\curveto(-407.98923772,1059.79264097)(-407.71615473,1059.52851672)(-407.97039557,1059.54674073)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-407.97039557,1059.54674073)
-\curveto(-407.98923772,1059.79264097)(-407.71615473,1059.52851672)(-407.97039557,1059.54674073)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-407.97039557,1059.54674073)
-\lineto(-408.10527135,1059.41628967)
-\lineto(-407.97039557,1059.54674073)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-407.97039557,1059.54674073)
-\lineto(-408.10527135,1059.41628967)
-\lineto(-407.97039557,1059.54674073)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.10527135,1059.41628967)
-\lineto(-408.24014712,1059.28583862)
-\lineto(-408.10527135,1059.41628967)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.10527135,1059.41628967)
-\lineto(-408.24014712,1059.28583862)
-\lineto(-408.10527135,1059.41628967)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-342.01614103,1059.41628967)
-\curveto(-341.72831613,1059.36249166)(-341.68825802,1059.01789215)(-341.78010843,1058.79664716)
-\lineto(-341.84754631,1058.79664716)
-\lineto(-342.01614103,1059.41628967)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-342.01614103,1059.41628967)
-\curveto(-341.72831613,1059.36249166)(-341.68825802,1059.01789215)(-341.78010843,1058.79664716)
-\lineto(-341.84754631,1058.79664716)
-\lineto(-342.01614103,1059.41628967)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.78871869,1057.72042594)
-\lineto(-332.5748367,1055.50275797)
-\lineto(-332.70971248,1055.24185586)
-\lineto(-332.3388041,1052.66544749)
-\lineto(-332.81086931,1052.40454538)
-\lineto(-332.97946403,1053.15463895)
-\lineto(-333.11433981,1054.06779635)
-\curveto(-333.00162412,1054.94560151)(-333.53137571,1055.6540812)(-334.0247513,1056.31807708)
-\lineto(-335.64326061,1059.38367691)
-\curveto(-334.97589527,1059.64053504)(-334.91789869,1058.81634526)(-334.63169229,1058.47051951)
-\lineto(-333.88987552,1056.97033236)
-\lineto(-333.68756186,1056.97033236)
-\lineto(-333.78871869,1057.72042594)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.78871869,1057.72042594)
-\lineto(-332.5748367,1055.50275797)
-\lineto(-332.70971248,1055.24185586)
-\lineto(-332.3388041,1052.66544749)
-\lineto(-332.81086931,1052.40454538)
-\lineto(-332.97946403,1053.15463895)
-\lineto(-333.11433981,1054.06779635)
-\curveto(-333.00162412,1054.94560151)(-333.53137571,1055.6540812)(-334.0247513,1056.31807708)
-\lineto(-335.64326061,1059.38367691)
-\curveto(-334.97589527,1059.64053504)(-334.91789869,1058.81634526)(-334.63169229,1058.47051951)
-\lineto(-333.88987552,1056.97033236)
-\lineto(-333.68756186,1056.97033236)
-\lineto(-333.78871869,1057.72042594)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-343.23002302,1059.28583862)
-\lineto(-342.99399041,1059.25322585)
-\lineto(-342.82539569,1058.63358333)
-\lineto(-342.82539569,1058.37268122)
-\lineto(-342.96027147,1056.41591537)
-\lineto(-343.09514724,1056.28546431)
-\lineto(-343.19630408,1056.31807708)
-\lineto(-343.09514724,1057.32907277)
-\lineto(-343.23002302,1058.89448545)
-\lineto(-343.23002302,1059.28583862)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-343.23002302,1059.28583862)
-\lineto(-342.99399041,1059.25322585)
-\lineto(-342.82539569,1058.63358333)
-\lineto(-342.82539569,1058.37268122)
-\lineto(-342.96027147,1056.41591537)
-\lineto(-343.09514724,1056.28546431)
-\lineto(-343.19630408,1056.31807708)
-\lineto(-343.09514724,1057.32907277)
-\lineto(-343.23002302,1058.89448545)
-\lineto(-343.23002302,1059.28583862)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-344.03927768,1059.15538756)
-\lineto(-343.87068296,1058.53574504)
-\lineto(-343.53349352,1058.47051951)
-\lineto(-343.53349352,1056.97033236)
-\lineto(-343.6009314,1056.97033236)
-\lineto(-343.66836929,1058.07916634)
-\lineto(-343.80324507,1058.2096174)
-\curveto(-344.30053205,1057.98028444)(-344.25899032,1058.90818281)(-344.03927768,1059.15538756)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-344.03927768,1059.15538756)
-\lineto(-343.87068296,1058.53574504)
-\lineto(-343.53349352,1058.47051951)
-\lineto(-343.53349352,1056.97033236)
-\lineto(-343.6009314,1056.97033236)
-\lineto(-343.66836929,1058.07916634)
-\lineto(-343.80324507,1058.2096174)
-\curveto(-344.30053205,1057.98028444)(-344.25899032,1058.90818281)(-344.03927768,1059.15538756)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-336.35135844,1059.15538756)
-\lineto(-333.95731341,1054.94834098)
-\lineto(-333.01318298,1052.14364326)
-\lineto(-333.95731341,1051.49138798)
-\curveto(-336.21108763,1050.61853996)(-338.46216433,1049.67029123)(-340.90341588,1049.53462213)
-\curveto(-340.59266209,1050.76868912)(-340.1471674,1052.21800036)(-340.5325075,1053.54599212)
-\lineto(-340.39763172,1056.28546431)
-\lineto(-340.63366433,1057.81826423)
-\lineto(-340.39763172,1057.19862171)
-\lineto(-340.229037,1056.8398813)
-\lineto(-339.89184756,1057.68781317)
-\lineto(-339.0825929,1055.86149838)
-\lineto(-339.18374973,1054.45914952)
-\lineto(-339.31862551,1052.63283473)
-\lineto(-339.82440967,1051.10003481)
-\lineto(-339.62209601,1050.96958375)
-\curveto(-338.71694467,1052.16229776)(-338.73677141,1053.73775518)(-338.77912241,1055.24185586)
-\lineto(-338.50937085,1055.50275797)
-\lineto(-338.61052769,1056.77465578)
-\lineto(-337.73383514,1056.77465578)
-\lineto(-337.56524042,1056.0245622)
-\lineto(-337.32920781,1055.92672391)
-\lineto(-337.3966457,1057.81826423)
-\lineto(-337.19433204,1057.94871529)
-\lineto(-337.05945626,1057.29646)
-\lineto(-336.89086154,1056.54636643)
-\lineto(-336.62110999,1056.80726854)
-\curveto(-337.16587325,1057.23932244)(-336.24156955,1058.36615867)(-336.18276372,1057.36168553)
-\lineto(-335.13747645,1053.15463895)
-\lineto(-335.27235223,1052.1110305)
-\lineto(-335.00260067,1051.32832416)
-\lineto(-334.73284912,1051.85012838)
-\curveto(-334.73640984,1054.43436382)(-335.61965735,1056.77335127)(-336.35135844,1059.15538756)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-336.35135844,1059.15538756)
-\lineto(-333.95731341,1054.94834098)
-\lineto(-333.01318298,1052.14364326)
-\lineto(-333.95731341,1051.49138798)
-\curveto(-336.21108763,1050.61853996)(-338.46216433,1049.67029123)(-340.90341588,1049.53462213)
-\curveto(-340.59266209,1050.76868912)(-340.1471674,1052.21800036)(-340.5325075,1053.54599212)
-\lineto(-340.39763172,1056.28546431)
-\lineto(-340.63366433,1057.81826423)
-\lineto(-340.39763172,1057.19862171)
-\lineto(-340.229037,1056.8398813)
-\lineto(-339.89184756,1057.68781317)
-\lineto(-339.0825929,1055.86149838)
-\lineto(-339.18374973,1054.45914952)
-\lineto(-339.31862551,1052.63283473)
-\lineto(-339.82440967,1051.10003481)
-\lineto(-339.62209601,1050.96958375)
-\curveto(-338.71694467,1052.16229776)(-338.73677141,1053.73775518)(-338.77912241,1055.24185586)
-\lineto(-338.50937085,1055.50275797)
-\lineto(-338.61052769,1056.77465578)
-\lineto(-337.73383514,1056.77465578)
-\lineto(-337.56524042,1056.0245622)
-\lineto(-337.32920781,1055.92672391)
-\lineto(-337.3966457,1057.81826423)
-\lineto(-337.19433204,1057.94871529)
-\lineto(-337.05945626,1057.29646)
-\lineto(-336.89086154,1056.54636643)
-\lineto(-336.62110999,1056.80726854)
-\curveto(-337.16587325,1057.23932244)(-336.24156955,1058.36615867)(-336.18276372,1057.36168553)
-\lineto(-335.13747645,1053.15463895)
-\lineto(-335.27235223,1052.1110305)
-\lineto(-335.00260067,1051.32832416)
-\lineto(-334.73284912,1051.85012838)
-\curveto(-334.73640984,1054.43436382)(-335.61965735,1056.77335127)(-336.35135844,1059.15538756)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81960785 0.81960785 0.81960785}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1056.41591537)
-\lineto(-442.63347004,1057.45952382)
-\lineto(-442.66718898,1057.55736212)
-\curveto(-443.1782333,1057.83991911)(-442.31732122,1058.75372876)(-441.92537222,1058.40529399)
-\lineto(-441.72305855,1058.40529399)
-\lineto(-441.18355545,1058.73142163)
-\curveto(-441.2739357,1058.24236062)(-441.45613939,1057.74834246)(-441.92537222,1057.42691106)
-\lineto(-442.76834582,1056.54636643)
-\lineto(-443.17297314,1056.67681748)
-\lineto(-443.71247625,1056.41591537)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.81960785 0.81960785 0.81960785}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1056.41591537)
-\lineto(-442.63347004,1057.45952382)
-\lineto(-442.66718898,1057.55736212)
-\curveto(-443.1782333,1057.83991911)(-442.31732122,1058.75372876)(-441.92537222,1058.40529399)
-\lineto(-441.72305855,1058.40529399)
-\lineto(-441.18355545,1058.73142163)
-\curveto(-441.2739357,1058.24236062)(-441.45613939,1057.74834246)(-441.92537222,1057.42691106)
-\lineto(-442.76834582,1056.54636643)
-\lineto(-443.17297314,1056.67681748)
-\lineto(-443.71247625,1056.41591537)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-383.01837698,1058.76403439)
-\lineto(-382.37771705,1058.73142163)
-\lineto(-382.51259282,1058.53574504)
-\lineto(-384.06366425,1058.27484293)
-\lineto(-383.92878847,1058.47051951)
-\lineto(-383.55788009,1058.50313228)
-\lineto(-383.01837698,1058.76403439)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-383.01837698,1058.76403439)
-\lineto(-382.37771705,1058.73142163)
-\lineto(-382.51259282,1058.53574504)
-\lineto(-384.06366425,1058.27484293)
-\lineto(-383.92878847,1058.47051951)
-\lineto(-383.55788009,1058.50313228)
-\lineto(-383.01837698,1058.76403439)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1058.50313228)
-\lineto(-439.29529458,1058.47051951)
-\lineto(-439.26157564,1058.24223016)
-\curveto(-439.46807045,1057.94427995)(-439.56626001,1057.3148536)(-440.03711135,1057.36168553)
-\lineto(-439.96967346,1057.49213659)
-\lineto(-439.39645141,1058.50313228)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.39645141,1058.50313228)
-\lineto(-439.29529458,1058.47051951)
-\lineto(-439.26157564,1058.24223016)
-\curveto(-439.46807045,1057.94427995)(-439.56626001,1057.3148536)(-440.03711135,1057.36168553)
-\lineto(-439.96967346,1057.49213659)
-\lineto(-439.39645141,1058.50313228)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.14117648 0.14117648 0.14117648}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-390.30166889,1058.37268122)
-\curveto(-389.60719352,1058.41385157)(-389.40150796,1057.58501774)(-389.89704157,1057.19862171)
-\lineto(-388.95291113,1056.54636643)
-\lineto(-388.54828381,1056.0245622)
-\lineto(-388.41340803,1055.37230692)
-\curveto(-388.34347494,1055.02100222)(-389.05137045,1054.67008888)(-389.22266269,1054.98095375)
-\lineto(-389.12150585,1055.60059627)
-\lineto(-390.67257728,1056.31807708)
-\lineto(-390.94232883,1057.16600895)
-\lineto(-390.47026362,1057.68781317)
-\lineto(-390.70629622,1057.85087699)
-\curveto(-393.67086578,1057.77186279)(-396.59497261,1057.17827135)(-398.96743751,1055.40491968)
-\lineto(-399.16975118,1055.53537074)
-\lineto(-398.4953723,1056.12240049)
-\lineto(-395.42694839,1057.45952382)
-\lineto(-394.2130664,1057.72042594)
-\curveto(-393.07984013,1058.31528276)(-391.754281,1058.26740722)(-390.43654467,1058.24223016)
-\lineto(-390.30166889,1058.37268122)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.14117648 0.14117648 0.14117648}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-390.30166889,1058.37268122)
-\curveto(-389.60719352,1058.41385157)(-389.40150796,1057.58501774)(-389.89704157,1057.19862171)
-\lineto(-388.95291113,1056.54636643)
-\lineto(-388.54828381,1056.0245622)
-\lineto(-388.41340803,1055.37230692)
-\curveto(-388.34347494,1055.02100222)(-389.05137045,1054.67008888)(-389.22266269,1054.98095375)
-\lineto(-389.12150585,1055.60059627)
-\lineto(-390.67257728,1056.31807708)
-\lineto(-390.94232883,1057.16600895)
-\lineto(-390.47026362,1057.68781317)
-\lineto(-390.70629622,1057.85087699)
-\curveto(-393.67086578,1057.77186279)(-396.59497261,1057.17827135)(-398.96743751,1055.40491968)
-\lineto(-399.16975118,1055.53537074)
-\lineto(-398.4953723,1056.12240049)
-\lineto(-395.42694839,1057.45952382)
-\lineto(-394.2130664,1057.72042594)
-\curveto(-393.07984013,1058.31528276)(-391.754281,1058.26740722)(-390.43654467,1058.24223016)
-\lineto(-390.30166889,1058.37268122)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-333.78871869,1057.72042594)
-\lineto(-334.0247513,1058.2096174)
-\lineto(-333.78871869,1057.72042594)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-333.78871869,1057.72042594)
-\lineto(-334.0247513,1058.2096174)
-\lineto(-333.78871869,1057.72042594)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1058.11177911)
-\curveto(-444.35488957,1058.23412915)(-445.07971199,1057.48509223)(-445.16239084,1057.81826423)
-\lineto(-445.09495296,1057.88348976)
-\lineto(-444.92635823,1058.11177911)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-444.92635823,1058.11177911)
-\curveto(-444.35488957,1058.23412915)(-445.07971199,1057.48509223)(-445.16239084,1057.81826423)
-\lineto(-445.09495296,1057.88348976)
-\lineto(-444.92635823,1058.11177911)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1057.98132805)
-\curveto(-408.79849237,1058.22722829)(-408.52540939,1057.96310404)(-408.77965023,1057.98132805)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1057.98132805)
-\curveto(-408.79849237,1058.22722829)(-408.52540939,1057.96310404)(-408.77965023,1057.98132805)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1057.98132805)
-\lineto(-408.914526,1057.85087699)
-\lineto(-408.77965023,1057.98132805)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.77965023,1057.98132805)
-\lineto(-408.914526,1057.85087699)
-\lineto(-408.77965023,1057.98132805)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.24313726 0.24313726 0.24313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-382.20912233,1057.72042594)
-\curveto(-381.86478447,1057.59271435)(-382.37488465,1057.12869994)(-382.61374965,1057.19862171)
-\lineto(-382.98465804,1057.23123447)
-\lineto(-382.20912233,1057.72042594)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.24313726 0.24313726 0.24313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-382.20912233,1057.72042594)
-\curveto(-381.86478447,1057.59271435)(-382.37488465,1057.12869994)(-382.61374965,1057.19862171)
-\lineto(-382.98465804,1057.23123447)
-\lineto(-382.20912233,1057.72042594)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23529412 0.23529412 0.23529412}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-381.804495,1057.32907277)
-\lineto(-381.43358661,1057.29646)
-\lineto(-381.43358661,1057.10078342)
-\lineto(-381.56846239,1056.97033236)
-\lineto(-383.11953382,1056.44852813)
-\lineto(-382.88350121,1056.67681748)
-\lineto(-382.44515493,1056.90510683)
-\lineto(-381.804495,1057.32907277)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23529412 0.23529412 0.23529412}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.804495,1057.32907277)
-\lineto(-381.43358661,1057.29646)
-\lineto(-381.43358661,1057.10078342)
-\lineto(-381.56846239,1056.97033236)
-\lineto(-383.11953382,1056.44852813)
-\lineto(-382.88350121,1056.67681748)
-\lineto(-382.44515493,1056.90510683)
-\lineto(-381.804495,1057.32907277)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.86666667 0.86666667 0.86666667}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1056.41591537)
-\lineto(-447.21924643,1053.67644318)
-\lineto(-449.41097779,1052.40454538)
-\lineto(-450.59114083,1051.85012838)
-\curveto(-450.68648452,1051.50025865)(-450.26083006,1051.59770559)(-450.05163773,1051.58922627)
-\curveto(-447.66433649,1052.64770615)(-445.40786476,1054.11736775)(-443.54388153,1055.86149838)
-\lineto(-443.07181631,1055.99194944)
-\lineto(-444.42057407,1054.7526644)
-\lineto(-448.66916102,1051.42616245)
-\lineto(-448.66916102,1051.23048587)
-\curveto(-447.54780382,1051.31727495)(-446.66220947,1052.27579018)(-445.76933184,1052.9263496)
-\lineto(-445.09495296,1053.3829283)
-\lineto(-447.89362531,1050.54561782)
-\lineto(-447.72503059,1050.18687741)
-\lineto(-447.1180896,1050.57823058)
-\lineto(-446.30883494,1051.23048587)
-\lineto(-445.4321424,1052.07841773)
-\lineto(-443.07181631,1054.62221334)
-\curveto(-442.57776634,1055.0988815)(-441.87182653,1055.5743756)(-442.22884271,1056.28546431)
-\lineto(-441.9928101,1056.51375366)
-\curveto(-441.96491779,1056.01073439)(-441.40111007,1055.88054423)(-441.1498365,1056.28546431)
-\lineto(-440.64405234,1056.90510683)
-\lineto(-440.77892812,1056.31807708)
-\curveto(-442.50533805,1053.839507)(-444.70516196,1051.43920756)(-447.18552749,1049.59984766)
-\lineto(-447.18552749,1049.40417107)
-\lineto(-446.8146191,1049.24110725)
-\lineto(-444.55544985,1051.23048587)
-\lineto(-443.61131942,1052.14364326)
-\lineto(-443.07181631,1052.66544749)
-\lineto(-440.91380389,1054.81788993)
-\curveto(-441.01229019,1053.74219051)(-442.02018989,1052.96418041)(-442.5997511,1052.07841773)
-\lineto(-444.2856983,1050.18687741)
-\lineto(-445.9716455,1048.0996605)
-\lineto(-445.63445606,1048.0996605)
-\curveto(-443.87028091,1049.84379113)(-442.30302439,1051.57096312)(-440.84636601,1053.51337936)
-\lineto(-440.37430079,1053.12202619)
-\lineto(-441.85793433,1051.36093692)
-\lineto(-444.08338463,1048.68669026)
-\lineto(-444.89263929,1047.18650311)
-\curveto(-444.57810898,1047.03922386)(-444.28583317,1047.37852706)(-444.21826041,1047.64308181)
-\lineto(-441.25099333,1051.29571139)
-\lineto(-441.04867967,1051.29571139)
-\curveto(-441.69311613,1049.36503575)(-443.00437842,1047.5804653)(-444.42057407,1046.0124436)
-\curveto(-446.30209115,1047.17893695)(-448.14044798,1048.47666406)(-449.81560512,1049.99120083)
-\lineto(-451.40039549,1051.85012838)
-\curveto(-448.84584829,1053.29422158)(-446.07145357,1054.64830355)(-443.71247625,1056.41591537)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.86666667 0.86666667 0.86666667}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-443.71247625,1056.41591537)
-\lineto(-447.21924643,1053.67644318)
-\lineto(-449.41097779,1052.40454538)
-\lineto(-450.59114083,1051.85012838)
-\curveto(-450.68648452,1051.50025865)(-450.26083006,1051.59770559)(-450.05163773,1051.58922627)
-\curveto(-447.66433649,1052.64770615)(-445.40786476,1054.11736775)(-443.54388153,1055.86149838)
-\lineto(-443.07181631,1055.99194944)
-\lineto(-444.42057407,1054.7526644)
-\lineto(-448.66916102,1051.42616245)
-\lineto(-448.66916102,1051.23048587)
-\curveto(-447.54780382,1051.31727495)(-446.66220947,1052.27579018)(-445.76933184,1052.9263496)
-\lineto(-445.09495296,1053.3829283)
-\lineto(-447.89362531,1050.54561782)
-\lineto(-447.72503059,1050.18687741)
-\lineto(-447.1180896,1050.57823058)
-\lineto(-446.30883494,1051.23048587)
-\lineto(-445.4321424,1052.07841773)
-\lineto(-443.07181631,1054.62221334)
-\curveto(-442.57776634,1055.0988815)(-441.87182653,1055.5743756)(-442.22884271,1056.28546431)
-\lineto(-441.9928101,1056.51375366)
-\curveto(-441.96491779,1056.01073439)(-441.40111007,1055.88054423)(-441.1498365,1056.28546431)
-\lineto(-440.64405234,1056.90510683)
-\lineto(-440.77892812,1056.31807708)
-\curveto(-442.50533805,1053.839507)(-444.70516196,1051.43920756)(-447.18552749,1049.59984766)
-\lineto(-447.18552749,1049.40417107)
-\lineto(-446.8146191,1049.24110725)
-\lineto(-444.55544985,1051.23048587)
-\lineto(-443.61131942,1052.14364326)
-\lineto(-443.07181631,1052.66544749)
-\lineto(-440.91380389,1054.81788993)
-\curveto(-441.01229019,1053.74219051)(-442.02018989,1052.96418041)(-442.5997511,1052.07841773)
-\lineto(-444.2856983,1050.18687741)
-\lineto(-445.9716455,1048.0996605)
-\lineto(-445.63445606,1048.0996605)
-\curveto(-443.87028091,1049.84379113)(-442.30302439,1051.57096312)(-440.84636601,1053.51337936)
-\lineto(-440.37430079,1053.12202619)
-\lineto(-441.85793433,1051.36093692)
-\lineto(-444.08338463,1048.68669026)
-\lineto(-444.89263929,1047.18650311)
-\curveto(-444.57810898,1047.03922386)(-444.28583317,1047.37852706)(-444.21826041,1047.64308181)
-\lineto(-441.25099333,1051.29571139)
-\lineto(-441.04867967,1051.29571139)
-\curveto(-441.69311613,1049.36503575)(-443.00437842,1047.5804653)(-444.42057407,1046.0124436)
-\curveto(-446.30209115,1047.17893695)(-448.14044798,1048.47666406)(-449.81560512,1049.99120083)
-\lineto(-451.40039549,1051.85012838)
-\curveto(-448.84584829,1053.29422158)(-446.07145357,1054.64830355)(-443.71247625,1056.41591537)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-339.18374973,1056.67681748)
-\curveto(-338.96619511,1056.63800829)(-338.8337471,1056.37834547)(-338.94771713,1056.18762602)
-\lineto(-339.18374973,1056.67681748)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-339.18374973,1056.67681748)
-\curveto(-338.96619511,1056.63800829)(-338.8337471,1056.37834547)(-338.94771713,1056.18762602)
-\lineto(-339.18374973,1056.67681748)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-430.35977441,1056.28546431)
-\curveto(-430.04632311,1056.09474487)(-430.0452441,1055.61338047)(-430.1237418,1055.27446862)
-\curveto(-430.54347522,1055.39570984)(-430.29152727,1055.96703328)(-430.35977441,1056.28546431)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-430.35977441,1056.28546431)
-\curveto(-430.04632311,1056.09474487)(-430.0452441,1055.61338047)(-430.1237418,1055.27446862)
-\curveto(-430.54347522,1055.39570984)(-430.29152727,1055.96703328)(-430.35977441,1056.28546431)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-381.804495,1056.28546431)
-\curveto(-381.50223838,1056.37954562)(-381.34740099,1056.1626316)(-381.29871084,1055.92672391)
-\lineto(-382.71490649,1055.40491968)
-\lineto(-382.84978226,1055.60059627)
-\lineto(-382.6474686,1055.79627285)
-\lineto(-381.804495,1056.28546431)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.804495,1056.28546431)
-\curveto(-381.50223838,1056.37954562)(-381.34740099,1056.1626316)(-381.29871084,1055.92672391)
-\lineto(-382.71490649,1055.40491968)
-\lineto(-382.84978226,1055.60059627)
-\lineto(-382.6474686,1055.79627285)
-\lineto(-381.804495,1056.28546431)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.50819055,1056.0245622)
-\lineto(-437.40703371,1055.66582179)
-\lineto(-437.50819055,1056.0245622)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.50819055,1056.0245622)
-\lineto(-437.40703371,1055.66582179)
-\lineto(-437.50819055,1056.0245622)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.11372549 0.11372549 0.11372549}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-337.16061309,1055.76366009)
-\curveto(-336.59062806,1055.18732732)(-336.13919884,1054.3704428)(-336.08160688,1053.54599212)
-\lineto(-335.84557428,1051.75229009)
-\lineto(-335.94673111,1051.85012838)
-\lineto(-335.94673111,1052.37193261)
-\lineto(-336.8571426,1054.94834098)
-\lineto(-336.89086154,1053.28509001)
-\lineto(-337.19433204,1051.62183904)
-\lineto(-337.3966457,1051.49138798)
-\lineto(-337.29548887,1052.50238367)
-\lineto(-337.16061309,1052.76328578)
-\lineto(-337.16061309,1055.76366009)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.11372549 0.11372549 0.11372549}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-337.16061309,1055.76366009)
-\curveto(-336.59062806,1055.18732732)(-336.13919884,1054.3704428)(-336.08160688,1053.54599212)
-\lineto(-335.84557428,1051.75229009)
-\lineto(-335.94673111,1051.85012838)
-\lineto(-335.94673111,1052.37193261)
-\lineto(-336.8571426,1054.94834098)
-\lineto(-336.89086154,1053.28509001)
-\lineto(-337.19433204,1051.62183904)
-\lineto(-337.3966457,1051.49138798)
-\lineto(-337.29548887,1052.50238367)
-\lineto(-337.16061309,1052.76328578)
-\lineto(-337.16061309,1055.76366009)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-437.37331477,1055.50275797)
-\curveto(-437.10653049,1055.48718212)(-437.30077858,1055.11766645)(-437.4744716,1055.14401757)
-\lineto(-437.37331477,1055.50275797)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-437.37331477,1055.50275797)
-\curveto(-437.10653049,1055.48718212)(-437.30077858,1055.11766645)(-437.4744716,1055.14401757)
-\lineto(-437.37331477,1055.50275797)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-434.67579925,1055.50275797)
-\lineto(-434.43976664,1055.47014521)
-\lineto(-434.43976664,1054.10040911)
-\lineto(-434.50720453,1054.10040911)
-\lineto(-434.67579925,1055.50275797)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-434.67579925,1055.50275797)
-\lineto(-434.43976664,1055.47014521)
-\lineto(-434.43976664,1054.10040911)
-\lineto(-434.50720453,1054.10040911)
-\lineto(-434.67579925,1055.50275797)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-345.38803544,1051.98057944)
-\lineto(-345.75894382,1051.23048587)
-\lineto(-345.42175438,1051.23048587)
-\curveto(-344.40007038,1052.39906643)(-343.79515252,1053.78732658)(-343.33117985,1055.2092431)
-\lineto(-343.12886619,1054.94834098)
-\lineto(-342.82539569,1055.1114048)
-\lineto(-342.58936308,1055.47014521)
-\lineto(-343.9044019,1051.85012838)
-\lineto(-343.49977457,1051.58922627)
-\lineto(-343.73580718,1050.8391327)
-\lineto(-343.3648988,1051.06742204)
-\lineto(-341.98242209,1054.42653676)
-\lineto(-341.71267054,1054.10040911)
-\lineto(-341.24060532,1054.16563464)
-\lineto(-341.51035687,1052.14364326)
-\curveto(-341.98377085,1051.57852928)(-341.02385995,1051.42107486)(-341.20688638,1052.1110305)
-\lineto(-341.0720106,1052.37193261)
-\lineto(-340.83597799,1053.12202619)
-\curveto(-340.69489793,1051.82038554)(-340.92285148,1050.57170803)(-341.3754811,1049.40417107)
-\lineto(-345.21944072,1049.40417107)
-\lineto(-346.4333227,1051.23048587)
-\curveto(-346.55975526,1051.48721355)(-346.75729432,1051.86526071)(-346.4333227,1052.07841773)
-\lineto(-346.16357115,1052.33931985)
-\lineto(-345.82638171,1052.4697709)
-\lineto(-346.33216587,1051.85012838)
-\curveto(-346.39225303,1051.44090342)(-345.97528457,1051.43320681)(-345.82638171,1051.75229009)
-\lineto(-345.38803544,1051.98057944)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-345.38803544,1051.98057944)
-\lineto(-345.75894382,1051.23048587)
-\lineto(-345.42175438,1051.23048587)
-\curveto(-344.40007038,1052.39906643)(-343.79515252,1053.78732658)(-343.33117985,1055.2092431)
-\lineto(-343.12886619,1054.94834098)
-\lineto(-342.82539569,1055.1114048)
-\lineto(-342.58936308,1055.47014521)
-\lineto(-343.9044019,1051.85012838)
-\lineto(-343.49977457,1051.58922627)
-\lineto(-343.73580718,1050.8391327)
-\lineto(-343.3648988,1051.06742204)
-\lineto(-341.98242209,1054.42653676)
-\lineto(-341.71267054,1054.10040911)
-\lineto(-341.24060532,1054.16563464)
-\lineto(-341.51035687,1052.14364326)
-\curveto(-341.98377085,1051.57852928)(-341.02385995,1051.42107486)(-341.20688638,1052.1110305)
-\lineto(-341.0720106,1052.37193261)
-\lineto(-340.83597799,1053.12202619)
-\curveto(-340.69489793,1051.82038554)(-340.92285148,1050.57170803)(-341.3754811,1049.40417107)
-\lineto(-345.21944072,1049.40417107)
-\lineto(-346.4333227,1051.23048587)
-\curveto(-346.55975526,1051.48721355)(-346.75729432,1051.86526071)(-346.4333227,1052.07841773)
-\lineto(-346.16357115,1052.33931985)
-\lineto(-345.82638171,1052.4697709)
-\lineto(-346.33216587,1051.85012838)
-\curveto(-346.39225303,1051.44090342)(-345.97528457,1051.43320681)(-345.82638171,1051.75229009)
-\lineto(-345.38803544,1051.98057944)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-381.39986767,1055.1114048)
-\lineto(-381.02895928,1055.07879204)
-\lineto(-381.16383506,1054.7526644)
-\lineto(-382.31027916,1054.49176228)
-\lineto(-381.83821394,1054.88311545)
-\lineto(-381.39986767,1055.1114048)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.39986767,1055.1114048)
-\lineto(-381.02895928,1055.07879204)
-\lineto(-381.16383506,1054.7526644)
-\lineto(-382.31027916,1054.49176228)
-\lineto(-381.83821394,1054.88311545)
-\lineto(-381.39986767,1055.1114048)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.10196079 0.10196079 0.10196079}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-338.2396193,1055.1114048)
-\lineto(-338.10474353,1054.98095375)
-\lineto(-338.00358669,1054.16563464)
-\lineto(-338.10474353,1053.93734529)
-\lineto(-338.00358669,1053.51337936)
-\lineto(-338.10474353,1053.28509001)
-\lineto(-338.5430898,1050.70868164)
-\lineto(-338.61052769,1050.70868164)
-\lineto(-338.64424663,1051.1978731)
-\lineto(-338.37449508,1052.63283473)
-\lineto(-338.2396193,1052.89373684)
-\lineto(-338.2396193,1055.1114048)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.10196079 0.10196079 0.10196079}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-338.2396193,1055.1114048)
-\lineto(-338.10474353,1054.98095375)
-\lineto(-338.00358669,1054.16563464)
-\lineto(-338.10474353,1053.93734529)
-\lineto(-338.00358669,1053.51337936)
-\lineto(-338.10474353,1053.28509001)
-\lineto(-338.5430898,1050.70868164)
-\lineto(-338.61052769,1050.70868164)
-\lineto(-338.64424663,1051.1978731)
-\lineto(-338.37449508,1052.63283473)
-\lineto(-338.2396193,1052.89373684)
-\lineto(-338.2396193,1055.1114048)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1054.98095375)
-\curveto(-439.59296542,1054.86073005)(-439.94037575,1054.39640256)(-440.17198713,1054.36131123)
-\lineto(-439.93595452,1054.98095375)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-439.93595452,1054.98095375)
-\curveto(-439.59296542,1054.86073005)(-439.94037575,1054.39640256)(-440.17198713,1054.36131123)
-\lineto(-439.93595452,1054.98095375)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-433.86654459,1054.98095375)
-\lineto(-433.76538776,1054.94834098)
-\curveto(-433.41835239,1054.36065897)(-433.64695334,1053.6606586)(-433.76538776,1053.05680066)
-\lineto(-433.83282565,1053.05680066)
-\lineto(-434.00142037,1054.19824741)
-\lineto(-433.86654459,1054.98095375)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-433.86654459,1054.98095375)
-\lineto(-433.76538776,1054.94834098)
-\curveto(-433.41835239,1054.36065897)(-433.64695334,1053.6606586)(-433.76538776,1053.05680066)
-\lineto(-433.83282565,1053.05680066)
-\lineto(-434.00142037,1054.19824741)
-\lineto(-433.86654459,1054.98095375)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-344.98340811,1054.98095375)
-\lineto(-344.88225128,1054.7526644)
-\lineto(-344.98340811,1054.98095375)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-344.98340811,1054.98095375)
-\lineto(-344.88225128,1054.7526644)
-\lineto(-344.98340811,1054.98095375)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.25490198 0.25490198 0.25490198}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-380.86036456,1054.58960058)
-\curveto(-380.70363891,1054.61105977)(-380.33987894,1054.6131209)(-380.48945618,1054.36131123)
-\lineto(-381.63590028,1054.10040911)
-\lineto(-381.5010245,1054.2960857)
-\lineto(-380.86036456,1054.58960058)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.25490198 0.25490198 0.25490198}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-380.86036456,1054.58960058)
-\curveto(-380.70363891,1054.61105977)(-380.33987894,1054.6131209)(-380.48945618,1054.36131123)
-\lineto(-381.63590028,1054.10040911)
-\lineto(-381.5010245,1054.2960857)
-\lineto(-380.86036456,1054.58960058)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-398.79884279,1054.19824741)
-\lineto(-397.95586919,1052.79589855)
-\curveto(-397.64970118,1052.84399585)(-397.34353317,1052.98113905)(-397.18033348,1052.63283473)
-\lineto(-394.88744528,1053.28509001)
-\curveto(-393.88005811,1053.70683828)(-392.65929746,1053.96434866)(-391.65042666,1053.67644318)
-\lineto(-391.24579933,1053.80689424)
-\lineto(-390.97604778,1053.67644318)
-\lineto(-388.58200275,1054.03518358)
-\lineto(-387.06465027,1051.32832416)
-\lineto(-387.43555865,1051.23048587)
-\lineto(-387.7053102,1051.49138798)
-\curveto(-388.05463846,1052.39437019)(-389.34135337,1052.0675903)(-389.9981984,1052.20886879)
-\lineto(-390.13307417,1052.01319221)
-\curveto(-387.82400089,1050.10077971)(-390.82714492,1046.8890747)(-393.26893597,1047.41479246)
-\curveto(-394.09046432,1047.71130771)(-394.98050957,1048.1108793)(-395.29207261,1048.98020514)
-\curveto(-395.38671494,1049.93484597)(-394.92035497,1050.78303874)(-394.24678535,1051.42616245)
-\lineto(-394.88744528,1051.32832416)
-\curveto(-396.35759124,1050.99776118)(-397.54449807,1050.05342598)(-398.76512385,1049.20849449)
-\lineto(-398.66396702,1048.58885197)
-\curveto(-398.05109149,1047.7531825)(-397.24507385,1046.97256337)(-396.26992199,1046.59947335)
-\lineto(-396.00017044,1046.27334571)
-\lineto(-396.23620305,1046.11028189)
-\curveto(-397.67667633,1046.49954784)(-398.74219497,1047.61438257)(-399.50694062,1048.81714132)
-\lineto(-399.97900583,1048.88236684)
-\curveto(-400.02556495,1049.28154708)(-400.25374779,1049.59084653)(-399.877849,1049.89336253)
-\lineto(-398.93371857,1051.71967733)
-\lineto(-399.97900583,1051.62183904)
-\lineto(-398.79884279,1054.19824741)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-398.79884279,1054.19824741)
-\lineto(-397.95586919,1052.79589855)
-\curveto(-397.64970118,1052.84399585)(-397.34353317,1052.98113905)(-397.18033348,1052.63283473)
-\lineto(-394.88744528,1053.28509001)
-\curveto(-393.88005811,1053.70683828)(-392.65929746,1053.96434866)(-391.65042666,1053.67644318)
-\lineto(-391.24579933,1053.80689424)
-\lineto(-390.97604778,1053.67644318)
-\lineto(-388.58200275,1054.03518358)
-\lineto(-387.06465027,1051.32832416)
-\lineto(-387.43555865,1051.23048587)
-\lineto(-387.7053102,1051.49138798)
-\curveto(-388.05463846,1052.39437019)(-389.34135337,1052.0675903)(-389.9981984,1052.20886879)
-\lineto(-390.13307417,1052.01319221)
-\curveto(-387.82400089,1050.10077971)(-390.82714492,1046.8890747)(-393.26893597,1047.41479246)
-\curveto(-394.09046432,1047.71130771)(-394.98050957,1048.1108793)(-395.29207261,1048.98020514)
-\curveto(-395.38671494,1049.93484597)(-394.92035497,1050.78303874)(-394.24678535,1051.42616245)
-\lineto(-394.88744528,1051.32832416)
-\curveto(-396.35759124,1050.99776118)(-397.54449807,1050.05342598)(-398.76512385,1049.20849449)
-\lineto(-398.66396702,1048.58885197)
-\curveto(-398.05109149,1047.7531825)(-397.24507385,1046.97256337)(-396.26992199,1046.59947335)
-\lineto(-396.00017044,1046.27334571)
-\lineto(-396.23620305,1046.11028189)
-\curveto(-397.67667633,1046.49954784)(-398.74219497,1047.61438257)(-399.50694062,1048.81714132)
-\lineto(-399.97900583,1048.88236684)
-\curveto(-400.02556495,1049.28154708)(-400.25374779,1049.59084653)(-399.877849,1049.89336253)
-\lineto(-398.93371857,1051.71967733)
-\lineto(-399.97900583,1051.62183904)
-\lineto(-398.79884279,1054.19824741)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-342.69051991,1054.06779635)
-\lineto(-342.58936308,1053.839507)
-\lineto(-342.69051991,1054.06779635)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-342.69051991,1054.06779635)
-\lineto(-342.58936308,1053.839507)
-\lineto(-342.69051991,1054.06779635)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-380.32086146,1053.54599212)
-\curveto(-380.16413581,1053.56745132)(-379.80037584,1053.56951245)(-379.94995308,1053.31770277)
-\curveto(-380.18207429,1053.2098067)(-380.7571846,1053.08902207)(-380.45573724,1052.76328578)
-\lineto(-380.48945618,1052.66544749)
-\lineto(-380.62433196,1052.40454538)
-\curveto(-380.99105919,1052.52671279)(-381.19323798,1053.27321896)(-380.62433196,1053.31770277)
-\lineto(-380.3545804,1053.44815383)
-\lineto(-380.32086146,1053.54599212)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-380.32086146,1053.54599212)
-\curveto(-380.16413581,1053.56745132)(-379.80037584,1053.56951245)(-379.94995308,1053.31770277)
-\curveto(-380.18207429,1053.2098067)(-380.7571846,1053.08902207)(-380.45573724,1052.76328578)
-\lineto(-380.48945618,1052.66544749)
-\lineto(-380.62433196,1052.40454538)
-\curveto(-380.99105919,1052.52671279)(-381.19323798,1053.27321896)(-380.62433196,1053.31770277)
-\lineto(-380.3545804,1053.44815383)
-\lineto(-380.32086146,1053.54599212)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-342.96027147,1053.28509001)
-\lineto(-342.85911463,1053.05680066)
-\lineto(-342.96027147,1053.28509001)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-342.96027147,1053.28509001)
-\lineto(-342.85911463,1053.05680066)
-\lineto(-342.96027147,1053.28509001)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-369.9354267,1052.63283473)
-\lineto(-368.04716583,1052.37193261)
-\lineto(-368.08088477,1052.27409432)
-\curveto(-368.47121527,1052.14406071)(-368.89378108,1051.89904753)(-369.02501521,1051.49138798)
-\lineto(-369.69939409,1050.44777953)
-\curveto(-370.24011107,1050.82843571)(-370.78096294,1051.35937151)(-371.01443291,1051.98057944)
-\lineto(-369.96914564,1052.53499643)
-\lineto(-369.9354267,1052.63283473)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-369.9354267,1052.63283473)
-\lineto(-368.04716583,1052.37193261)
-\lineto(-368.08088477,1052.27409432)
-\curveto(-368.47121527,1052.14406071)(-368.89378108,1051.89904753)(-369.02501521,1051.49138798)
-\lineto(-369.69939409,1050.44777953)
-\curveto(-370.24011107,1050.82843571)(-370.78096294,1051.35937151)(-371.01443291,1051.98057944)
-\lineto(-369.96914564,1052.53499643)
-\lineto(-369.9354267,1052.63283473)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-343.23002302,1052.63283473)
-\lineto(-343.12886619,1052.40454538)
-\lineto(-343.23002302,1052.63283473)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-343.23002302,1052.63283473)
-\lineto(-343.12886619,1052.40454538)
-\lineto(-343.23002302,1052.63283473)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-345.38803544,1051.98057944)
-\curveto(-345.40689107,1052.22647968)(-345.1337946,1051.96235543)(-345.38803544,1051.98057944)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-345.38803544,1051.98057944)
-\curveto(-345.40689107,1052.22647968)(-345.1337946,1051.96235543)(-345.38803544,1051.98057944)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-380.32086146,1051.58922627)
-\curveto(-379.96856593,1051.64466797)(-379.62247469,1051.0742055)(-380.01739096,1050.90435822)
-\curveto(-380.02166383,1050.4819577)(-380.45937888,1050.16900562)(-380.82664562,1050.05642635)
-\lineto(-380.82664562,1050.382554)
-\lineto(-380.45573724,1050.80651993)
-\lineto(-380.32086146,1051.58922627)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-380.32086146,1051.58922627)
-\curveto(-379.96856593,1051.64466797)(-379.62247469,1051.0742055)(-380.01739096,1050.90435822)
-\curveto(-380.02166383,1050.4819577)(-380.45937888,1050.16900562)(-380.82664562,1050.05642635)
-\lineto(-380.82664562,1050.382554)
-\lineto(-380.45573724,1050.80651993)
-\lineto(-380.32086146,1051.58922627)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-366.96815962,1051.1978731)
-\lineto(-366.46237546,1051.16526034)
-\lineto(-366.46237546,1050.44777953)
-\lineto(-367.06931645,1050.44777953)
-\lineto(-366.96815962,1051.1978731)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-366.96815962,1051.1978731)
-\lineto(-366.46237546,1051.16526034)
-\lineto(-366.46237546,1050.44777953)
-\lineto(-367.06931645,1050.44777953)
-\lineto(-366.96815962,1051.1978731)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.98431373 0.98431373 0.98431373}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-392.32480554,1051.06742204)
-\lineto(-391.54926982,1051.03480928)
-\curveto(-391.44981243,1050.68350458)(-391.23446976,1050.29293412)(-391.6841456,1050.05642635)
-\lineto(-392.42596237,1050.18687741)
-\lineto(-392.32480554,1051.06742204)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.98431373 0.98431373 0.98431373}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-392.32480554,1051.06742204)
-\lineto(-391.54926982,1051.03480928)
-\curveto(-391.44981243,1050.68350458)(-391.23446976,1050.29293412)(-391.6841456,1050.05642635)
-\lineto(-392.42596237,1050.18687741)
-\lineto(-392.32480554,1051.06742204)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23921569 0.23921569 0.23921569}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-388.0087807,1049.76291148)
-\lineto(-387.63787232,1049.73029871)
-\lineto(-387.60415337,1048.98020514)
-\lineto(-387.4692776,1048.71930302)
-\curveto(-387.37062945,1047.70191523)(-387.60995303,1046.5185937)(-388.68315958,1046.11028189)
-\lineto(-388.78431641,1046.14289465)
-\lineto(-388.78431641,1046.4690223)
-\curveto(-388.38859089,1046.69678984)(-387.94080331,1047.03348402)(-388.0087807,1047.54524351)
-\curveto(-387.79203533,1048.03834851)(-387.79203533,1048.74800226)(-388.0087807,1049.24110725)
-\lineto(-388.0087807,1049.76291148)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23921569 0.23921569 0.23921569}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-388.0087807,1049.76291148)
-\lineto(-387.63787232,1049.73029871)
-\lineto(-387.60415337,1048.98020514)
-\lineto(-387.4692776,1048.71930302)
-\curveto(-387.37062945,1047.70191523)(-387.60995303,1046.5185937)(-388.68315958,1046.11028189)
-\lineto(-388.78431641,1046.14289465)
-\lineto(-388.78431641,1046.4690223)
-\curveto(-388.38859089,1046.69678984)(-387.94080331,1047.03348402)(-388.0087807,1047.54524351)
-\curveto(-387.79203533,1048.03834851)(-387.79203533,1048.74800226)(-388.0087807,1049.24110725)
-\lineto(-388.0087807,1049.76291148)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.14509805 0.14509805 0.14509805}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.29430856,1049.11065619)
-\lineto(-435.92340018,1048.94759237)
-\lineto(-435.88968123,1045.84937978)
-\lineto(-436.15943279,1045.45802661)
-\lineto(-436.42918434,1045.84937978)
-\lineto(-436.29430856,1046.11028189)
-\lineto(-436.29430856,1049.11065619)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.14509805 0.14509805 0.14509805}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.29430856,1049.11065619)
-\lineto(-435.92340018,1048.94759237)
-\lineto(-435.88968123,1045.84937978)
-\lineto(-436.15943279,1045.45802661)
-\lineto(-436.42918434,1045.84937978)
-\lineto(-436.29430856,1046.11028189)
-\lineto(-436.29430856,1049.11065619)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-397.31520925,1048.71930302)
-\lineto(-397.07917665,1048.5562392)
-\lineto(-397.01173876,1048.23011156)
-\curveto(-396.16363988,1047.21376738)(-394.94813938,1046.72601088)(-393.6735633,1046.63208612)
-\lineto(-393.40381175,1046.50163506)
-\lineto(-390.30166889,1046.371184)
-\lineto(-389.89704157,1046.50163506)
-\lineto(-389.66100896,1046.33857124)
-\lineto(-390.06563629,1045.88199254)
-\lineto(-390.841172,1045.84937978)
-\lineto(-395.12347789,1046.27334571)
-\lineto(-395.32579156,1046.59947335)
-\curveto(-396.15500783,1046.91946979)(-396.95374217,1047.46514656)(-397.41636609,1048.23011156)
-\lineto(-397.31520925,1048.71930302)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-397.31520925,1048.71930302)
-\lineto(-397.07917665,1048.5562392)
-\lineto(-397.01173876,1048.23011156)
-\curveto(-396.16363988,1047.21376738)(-394.94813938,1046.72601088)(-393.6735633,1046.63208612)
-\lineto(-393.40381175,1046.50163506)
-\lineto(-390.30166889,1046.371184)
-\lineto(-389.89704157,1046.50163506)
-\lineto(-389.66100896,1046.33857124)
-\lineto(-390.06563629,1045.88199254)
-\lineto(-390.841172,1045.84937978)
-\lineto(-395.12347789,1046.27334571)
-\lineto(-395.32579156,1046.59947335)
-\curveto(-396.15500783,1046.91946979)(-396.95374217,1047.46514656)(-397.41636609,1048.23011156)
-\lineto(-397.31520925,1048.71930302)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1047.02343929)
-\lineto(-442.76834582,1046.89298823)
-\lineto(-443.61131942,1045.62109043)
-\lineto(-443.67875731,1045.62109043)
-\lineto(-443.84735203,1045.84937978)
-\lineto(-442.90322159,1047.02343929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-442.90322159,1047.02343929)
-\lineto(-442.76834582,1046.89298823)
-\lineto(-443.61131942,1045.62109043)
-\lineto(-443.67875731,1045.62109043)
-\lineto(-443.84735203,1045.84937978)
-\lineto(-442.90322159,1047.02343929)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.24705882 0.24705882 0.24705882}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-385.71589251,1046.63208612)
-\lineto(-385.34498412,1046.59947335)
-\lineto(-385.34498412,1046.40379677)
-\curveto(-385.93479589,1045.5313401)(-386.41967431,1044.52921508)(-387.33440182,1043.89261392)
-\lineto(-387.57043443,1044.05567775)
-\lineto(-385.74961145,1046.40379677)
-\lineto(-385.71589251,1046.63208612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.24705882 0.24705882 0.24705882}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-385.71589251,1046.63208612)
-\lineto(-385.34498412,1046.59947335)
-\lineto(-385.34498412,1046.40379677)
-\curveto(-385.93479589,1045.5313401)(-386.41967431,1044.52921508)(-387.33440182,1043.89261392)
-\lineto(-387.57043443,1044.05567775)
-\lineto(-385.74961145,1046.40379677)
-\lineto(-385.71589251,1046.63208612)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-367.1030354,1046.371184)
-\lineto(-365.61940186,1045.58847766)
-\lineto(-363.49510839,1045.81676701)
-\lineto(-361.84288013,1039.84863117)
-\lineto(-361.4382528,1039.19637588)
-\lineto(-361.33709597,1035.31545695)
-\lineto(-361.53940963,1035.445908)
-\lineto(-362.61841584,1037.79402702)
-\lineto(-365.78799658,1044.25135433)
-\lineto(-366.52981335,1045.0992862)
-\lineto(-367.1030354,1046.371184)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-367.1030354,1046.371184)
-\lineto(-365.61940186,1045.58847766)
-\lineto(-363.49510839,1045.81676701)
-\lineto(-361.84288013,1039.84863117)
-\lineto(-361.4382528,1039.19637588)
-\lineto(-361.33709597,1035.31545695)
-\lineto(-361.53940963,1035.445908)
-\lineto(-362.61841584,1037.79402702)
-\lineto(-365.78799658,1044.25135433)
-\lineto(-366.52981335,1045.0992862)
-\lineto(-367.1030354,1046.371184)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.12941177 0.12941177 0.12941177}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-408.3750229,1044.02306498)
-\lineto(-408.10527135,1043.76216287)
-\lineto(-408.64477445,1042.58810336)
-\lineto(-408.10527135,1041.5444949)
-\curveto(-408.16855506,1041.04617187)(-408.7742552,1040.53336876)(-408.24014712,1040.10953328)
-\lineto(-408.24014712,1039.84863117)
-\lineto(-408.00411451,1036.88086963)
-\lineto(-408.10527135,1036.84825686)
-\lineto(-408.20642818,1036.88086963)
-\curveto(-408.30161001,1037.5752606)(-408.39201725,1038.284523)(-408.914526,1038.80502271)
-\lineto(-409.15055861,1039.62034182)
-\lineto(-409.45402911,1040.63133751)
-\lineto(-409.35287228,1040.85962686)
-\lineto(-409.85865644,1040.76178856)
-\lineto(-408.3750229,1044.02306498)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.12941177 0.12941177 0.12941177}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-408.3750229,1044.02306498)
-\lineto(-408.10527135,1043.76216287)
-\lineto(-408.64477445,1042.58810336)
-\lineto(-408.10527135,1041.5444949)
-\curveto(-408.16855506,1041.04617187)(-408.7742552,1040.53336876)(-408.24014712,1040.10953328)
-\lineto(-408.24014712,1039.84863117)
-\lineto(-408.00411451,1036.88086963)
-\lineto(-408.10527135,1036.84825686)
-\lineto(-408.20642818,1036.88086963)
-\curveto(-408.30161001,1037.5752606)(-408.39201725,1038.284523)(-408.914526,1038.80502271)
-\lineto(-409.15055861,1039.62034182)
-\lineto(-409.45402911,1040.63133751)
-\lineto(-409.35287228,1040.85962686)
-\lineto(-409.85865644,1040.76178856)
-\lineto(-408.3750229,1044.02306498)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.17647059 0.17647059 0.17647059}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-407.29601669,1037.50051215)
-\lineto(-407.19485986,1037.46789938)
-\lineto(-407.16114091,1037.10915898)
-\lineto(-407.16114091,1036.45690369)
-\curveto(-407.18892532,1036.05198361)(-407.57237715,1035.49704482)(-408.0715524,1035.70681012)
-\lineto(-407.29601669,1037.50051215)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.17647059 0.17647059 0.17647059}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-407.29601669,1037.50051215)
-\lineto(-407.19485986,1037.46789938)
-\lineto(-407.16114091,1037.10915898)
-\lineto(-407.16114091,1036.45690369)
-\curveto(-407.18892532,1036.05198361)(-407.57237715,1035.49704482)(-408.0715524,1035.70681012)
-\lineto(-407.29601669,1037.50051215)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.10588235 0.10588235 0.10588235}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-381.26499189,1036.84825686)
-\lineto(-379.24185525,1036.84825686)
-\lineto(-378.70235215,1036.58735475)
-\curveto(-376.41620774,1036.18256512)(-374.31214563,1034.92019024)(-372.4643475,1033.48914215)
-\curveto(-371.29578377,1032.86141167)(-369.92193912,1032.75744217)(-369.0924531,1031.5323763)
-\lineto(-368.62038788,1031.59760183)
-\lineto(-367.40650589,1030.81489549)
-\lineto(-365.45080714,1029.05380622)
-\curveto(-364.91508056,1028.93856576)(-364.31636699,1028.3470224)(-364.16948727,1027.87974671)
-\lineto(-365.72055869,1028.27109988)
-\lineto(-367.40650589,1029.90173809)
-\lineto(-368.21576055,1029.70606151)
-\lineto(-368.89013943,1030.1626402)
-\lineto(-369.12617204,1030.06480191)
-\lineto(-370.1714593,1030.88012102)
-\curveto(-370.3958926,1031.25803773)(-370.6319252,1031.14050133)(-370.98071396,1031.14102313)
-\curveto(-372.72465775,1033.35477756)(-375.23739346,1034.88888199)(-377.89309749,1035.80464841)
-\curveto(-379.7287568,1035.9645814)(-381.80314624,1036.16273656)(-383.52416114,1035.51113353)
-\curveto(-386.25000058,1034.14791999)(-388.23132573,1030.35831679)(-386.15423878,1027.81452118)
-\lineto(-385.68217356,1026.83613826)
-\curveto(-385.49874251,1026.73543004)(-385.28671779,1026.36351408)(-385.58101673,1026.28172127)
-\curveto(-386.25512586,1026.87162095)(-386.66568772,1027.77147234)(-386.96349344,1028.59722752)
-\lineto(-387.73902915,1030.06480191)
-\curveto(-387.85260804,1032.9516838)(-385.51627636,1035.71855071)(-382.6474686,1036.3590654)
-\lineto(-381.26499189,1036.84825686)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.10588235 0.10588235 0.10588235}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-381.26499189,1036.84825686)
-\lineto(-379.24185525,1036.84825686)
-\lineto(-378.70235215,1036.58735475)
-\curveto(-376.41620774,1036.18256512)(-374.31214563,1034.92019024)(-372.4643475,1033.48914215)
-\curveto(-371.29578377,1032.86141167)(-369.92193912,1032.75744217)(-369.0924531,1031.5323763)
-\lineto(-368.62038788,1031.59760183)
-\lineto(-367.40650589,1030.81489549)
-\lineto(-365.45080714,1029.05380622)
-\curveto(-364.91508056,1028.93856576)(-364.31636699,1028.3470224)(-364.16948727,1027.87974671)
-\lineto(-365.72055869,1028.27109988)
-\lineto(-367.40650589,1029.90173809)
-\lineto(-368.21576055,1029.70606151)
-\lineto(-368.89013943,1030.1626402)
-\lineto(-369.12617204,1030.06480191)
-\lineto(-370.1714593,1030.88012102)
-\curveto(-370.3958926,1031.25803773)(-370.6319252,1031.14050133)(-370.98071396,1031.14102313)
-\curveto(-372.72465775,1033.35477756)(-375.23739346,1034.88888199)(-377.89309749,1035.80464841)
-\curveto(-379.7287568,1035.9645814)(-381.80314624,1036.16273656)(-383.52416114,1035.51113353)
-\curveto(-386.25000058,1034.14791999)(-388.23132573,1030.35831679)(-386.15423878,1027.81452118)
-\lineto(-385.68217356,1026.83613826)
-\curveto(-385.49874251,1026.73543004)(-385.28671779,1026.36351408)(-385.58101673,1026.28172127)
-\curveto(-386.25512586,1026.87162095)(-386.66568772,1027.77147234)(-386.96349344,1028.59722752)
-\lineto(-387.73902915,1030.06480191)
-\curveto(-387.85260804,1032.9516838)(-385.51627636,1035.71855071)(-382.6474686,1036.3590654)
-\lineto(-381.26499189,1036.84825686)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-406.0821347,1035.93509946)
-\lineto(-405.8461021,1035.77203564)
-\lineto(-406.11585365,1035.05455483)
-\lineto(-406.79023253,1034.14139743)
-\lineto(-406.99254619,1034.14139743)
-\lineto(-407.02626514,1034.23923573)
-\lineto(-406.3856052,1035.18500589)
-\lineto(-406.0821347,1035.93509946)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-406.0821347,1035.93509946)
-\lineto(-405.8461021,1035.77203564)
-\lineto(-406.11585365,1035.05455483)
-\lineto(-406.79023253,1034.14139743)
-\lineto(-406.99254619,1034.14139743)
-\lineto(-407.02626514,1034.23923573)
-\lineto(-406.3856052,1035.18500589)
-\lineto(-406.0821347,1035.93509946)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-416.73732102,1034.36968678)
-\lineto(-416.63616419,1034.01094638)
-\lineto(-417.17566729,1033.61959321)
-\curveto(-417.42559211,1033.61222794)(-417.69156714,1033.50989691)(-417.7151704,1033.22824004)
-\lineto(-418.72673872,1032.51075923)
-\lineto(-418.89533344,1032.41292093)
-\lineto(-419.13136605,1032.57598475)
-\lineto(-417.78260829,1033.81526979)
-\curveto(-417.35518695,1033.50636169)(-416.95838242,1034.05947417)(-416.73732102,1034.36968678)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-416.73732102,1034.36968678)
-\lineto(-416.63616419,1034.01094638)
-\lineto(-417.17566729,1033.61959321)
-\curveto(-417.42559211,1033.61222794)(-417.69156714,1033.50989691)(-417.7151704,1033.22824004)
-\lineto(-418.72673872,1032.51075923)
-\lineto(-418.89533344,1032.41292093)
-\lineto(-419.13136605,1032.57598475)
-\lineto(-417.78260829,1033.81526979)
-\curveto(-417.35518695,1033.50636169)(-416.95838242,1034.05947417)(-416.73732102,1034.36968678)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-382.88350121,1033.06517622)
-\curveto(-381.78170099,1033.16418857)(-380.74572015,1032.81392748)(-379.94995308,1032.11940606)
-\lineto(-379.88251519,1031.79327841)
-\lineto(-379.64648258,1031.49976354)
-\lineto(-379.8150773,1031.27147419)
-\lineto(-380.28714252,1031.40192524)
-\curveto(-380.68071003,1032.51636862)(-382.20642481,1032.40809424)(-383.11953382,1031.988955)
-\lineto(-384.46829158,1029.24948281)
-\lineto(-384.77176207,1028.36893817)
-\lineto(-385.14267046,1028.40155094)
-\lineto(-385.58101673,1029.67344874)
-\lineto(-385.58101673,1030.58660614)
-\curveto(-385.4590081,1031.82732614)(-384.28904167,1032.83166883)(-383.01837698,1032.93472516)
-\lineto(-382.88350121,1033.06517622)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-382.88350121,1033.06517622)
-\curveto(-381.78170099,1033.16418857)(-380.74572015,1032.81392748)(-379.94995308,1032.11940606)
-\lineto(-379.88251519,1031.79327841)
-\lineto(-379.64648258,1031.49976354)
-\lineto(-379.8150773,1031.27147419)
-\lineto(-380.28714252,1031.40192524)
-\curveto(-380.68071003,1032.51636862)(-382.20642481,1032.40809424)(-383.11953382,1031.988955)
-\lineto(-384.46829158,1029.24948281)
-\lineto(-384.77176207,1028.36893817)
-\lineto(-385.14267046,1028.40155094)
-\lineto(-385.58101673,1029.67344874)
-\lineto(-385.58101673,1030.58660614)
-\curveto(-385.4590081,1031.82732614)(-384.28904167,1032.83166883)(-383.01837698,1032.93472516)
-\lineto(-382.88350121,1033.06517622)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-421.18822163,1032.41292093)
-\curveto(-421.01288312,1032.39938011)(-420.53245561,1032.50376705)(-420.68243747,1032.18463158)
-\lineto(-421.32309741,1031.76066565)
-\curveto(-421.68645275,1031.90364001)(-421.28020691,1032.23028945)(-421.18822163,1032.41292093)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-421.18822163,1032.41292093)
-\curveto(-421.01288312,1032.39938011)(-420.53245561,1032.50376705)(-420.68243747,1032.18463158)
-\lineto(-421.32309741,1031.76066565)
-\curveto(-421.68645275,1031.90364001)(-421.28020691,1032.23028945)(-421.18822163,1032.41292093)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-420.10921542,1031.76066565)
-\curveto(-420.12805757,1032.00656589)(-419.85497459,1031.74244164)(-420.10921542,1031.76066565)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-420.10921542,1031.76066565)
-\curveto(-420.12805757,1032.00656589)(-419.85497459,1031.74244164)(-420.10921542,1031.76066565)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-420.10921542,1031.76066565)
-\lineto(-420.2440912,1031.63021459)
-\lineto(-420.10921542,1031.76066565)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-420.10921542,1031.76066565)
-\lineto(-420.2440912,1031.63021459)
-\lineto(-420.10921542,1031.76066565)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.65098041 0.65098041 0.65098041}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-420.2440912,1031.63021459)
-\lineto(-420.37896698,1031.49976354)
-\lineto(-420.2440912,1031.63021459)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.65098041 0.65098041 0.65098041}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-420.2440912,1031.63021459)
-\lineto(-420.37896698,1031.49976354)
-\lineto(-420.2440912,1031.63021459)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-420.37896698,1031.49976354)
-\curveto(-420.36012483,1031.25386329)(-420.63320781,1031.51798755)(-420.37896698,1031.49976354)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-420.37896698,1031.49976354)
-\curveto(-420.36012483,1031.25386329)(-420.63320781,1031.51798755)(-420.37896698,1031.49976354)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-421.32309741,1030.7170572)
-\curveto(-421.34193955,1030.96295744)(-421.06885657,1030.69882014)(-421.32309741,1030.7170572)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-421.32309741,1030.7170572)
-\curveto(-421.34193955,1030.96295744)(-421.06885657,1030.69882014)(-421.32309741,1030.7170572)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-378.70235215,1029.8038998)
-\curveto(-376.48364563,1029.9704858)(-375.67843724,1027.61232205)(-375.06070619,1026.02081915)
-\lineto(-374.92583041,1023.80315119)
-\lineto(-375.56649035,1022.13990022)
-\lineto(-375.46533352,1022.88999379)
-\lineto(-375.19558197,1023.54224908)
-\lineto(-375.33045774,1025.36856387)
-\lineto(-376.78037234,1028.27109988)
-\lineto(-376.84781022,1028.59722752)
-\lineto(-377.5221891,1029.11903175)
-\lineto(-378.6686332,1029.11903175)
-\curveto(-378.72197657,1028.81090636)(-378.79413511,1028.39959417)(-378.46631954,1028.20587435)
-\lineto(-376.81409128,1026.80352549)
-\curveto(-376.98012336,1025.86493014)(-378.33144376,1026.11526572)(-379.00582264,1026.2491085)
-\curveto(-379.99810373,1026.46852718)(-381.23801674,1027.11034638)(-381.26499189,1028.23848712)
-\curveto(-381.00683966,1029.25587491)(-379.86767885,1029.78302763)(-378.83722792,1029.67344874)
-\lineto(-378.70235215,1029.8038998)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-378.70235215,1029.8038998)
-\curveto(-376.48364563,1029.9704858)(-375.67843724,1027.61232205)(-375.06070619,1026.02081915)
-\lineto(-374.92583041,1023.80315119)
-\lineto(-375.56649035,1022.13990022)
-\lineto(-375.46533352,1022.88999379)
-\lineto(-375.19558197,1023.54224908)
-\lineto(-375.33045774,1025.36856387)
-\lineto(-376.78037234,1028.27109988)
-\lineto(-376.84781022,1028.59722752)
-\lineto(-377.5221891,1029.11903175)
-\lineto(-378.6686332,1029.11903175)
-\curveto(-378.72197657,1028.81090636)(-378.79413511,1028.39959417)(-378.46631954,1028.20587435)
-\lineto(-376.81409128,1026.80352549)
-\curveto(-376.98012336,1025.86493014)(-378.33144376,1026.11526572)(-379.00582264,1026.2491085)
-\curveto(-379.99810373,1026.46852718)(-381.23801674,1027.11034638)(-381.26499189,1028.23848712)
-\curveto(-381.00683966,1029.25587491)(-379.86767885,1029.78302763)(-378.83722792,1029.67344874)
-\lineto(-378.70235215,1029.8038998)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-427.39250734,1029.41254663)
-\lineto(-426.7518474,1029.24948281)
-\lineto(-426.88672318,1029.05380622)
-\lineto(-427.8982915,1028.33632541)
-\lineto(-429.31448715,1026.7056872)
-\lineto(-429.82027131,1026.67307444)
-\lineto(-430.39349335,1027.1622659)
-\lineto(-430.7306828,1027.94497224)
-\lineto(-429.31448715,1028.79290411)
-\curveto(-428.80573572,1029.18164826)(-428.20432463,1029.36271433)(-427.52738311,1029.28209557)
-\lineto(-427.39250734,1029.41254663)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-427.39250734,1029.41254663)
-\lineto(-426.7518474,1029.24948281)
-\lineto(-426.88672318,1029.05380622)
-\lineto(-427.8982915,1028.33632541)
-\lineto(-429.31448715,1026.7056872)
-\lineto(-429.82027131,1026.67307444)
-\lineto(-430.39349335,1027.1622659)
-\lineto(-430.7306828,1027.94497224)
-\lineto(-429.31448715,1028.79290411)
-\curveto(-428.80573572,1029.18164826)(-428.20432463,1029.36271433)(-427.52738311,1029.28209557)
-\lineto(-427.39250734,1029.41254663)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-375.19558197,1028.23848712)
-\curveto(-374.42989219,1028.00667559)(-374.00786588,1027.14074148)(-373.81310526,1026.44478509)
-\lineto(-373.34104004,1026.51001062)
-\lineto(-373.17244532,1026.15127021)
-\lineto(-373.17244532,1025.75991704)
-\lineto(-371.82368756,1022.49864062)
-\lineto(-371.82368756,1022.10728745)
-\lineto(-371.55393601,1020.93322794)
-\lineto(-371.72253073,1020.70493859)
-\lineto(-371.92484439,1020.83538965)
-\lineto(-372.09343911,1021.45503217)
-\lineto(-372.93641272,1024.42279371)
-\lineto(-373.03756955,1024.45540647)
-\lineto(-373.67822948,1023.83576395)
-\lineto(-374.75723569,1027.22749143)
-\lineto(-375.16186302,1027.87974671)
-\lineto(-375.19558197,1028.23848712)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-375.19558197,1028.23848712)
-\curveto(-374.42989219,1028.00667559)(-374.00786588,1027.14074148)(-373.81310526,1026.44478509)
-\lineto(-373.34104004,1026.51001062)
-\lineto(-373.17244532,1026.15127021)
-\lineto(-373.17244532,1025.75991704)
-\lineto(-371.82368756,1022.49864062)
-\lineto(-371.82368756,1022.10728745)
-\lineto(-371.55393601,1020.93322794)
-\lineto(-371.72253073,1020.70493859)
-\lineto(-371.92484439,1020.83538965)
-\lineto(-372.09343911,1021.45503217)
-\lineto(-372.93641272,1024.42279371)
-\lineto(-373.03756955,1024.45540647)
-\lineto(-373.67822948,1023.83576395)
-\lineto(-374.75723569,1027.22749143)
-\lineto(-375.16186302,1027.87974671)
-\lineto(-375.19558197,1028.23848712)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-432.51778683,1027.45578078)
-\lineto(-432.14687844,1027.42316801)
-\curveto(-432.12095532,1026.69525112)(-433.07212627,1026.61189289)(-433.59679304,1026.41217232)
-\lineto(-433.83282565,1026.44478509)
-\lineto(-433.29332254,1027.03181484)
-\lineto(-432.55150577,1027.35794249)
-\lineto(-432.51778683,1027.45578078)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-432.51778683,1027.45578078)
-\lineto(-432.14687844,1027.42316801)
-\curveto(-432.12095532,1026.69525112)(-433.07212627,1026.61189289)(-433.59679304,1026.41217232)
-\lineto(-433.83282565,1026.44478509)
-\lineto(-433.29332254,1027.03181484)
-\lineto(-432.55150577,1027.35794249)
-\lineto(-432.51778683,1027.45578078)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-397.45008503,1026.93397655)
-\lineto(-396.00017044,1026.90136379)
-\lineto(-396.00017044,1026.7056872)
-\curveto(-397.17817547,1026.81461383)(-397.96261298,1025.88958539)(-398.79884279,1025.23811281)
-\lineto(-399.06859434,1025.75991704)
-\lineto(-398.69768596,1026.18388297)
-\lineto(-397.45008503,1026.93397655)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-397.45008503,1026.93397655)
-\lineto(-396.00017044,1026.90136379)
-\lineto(-396.00017044,1026.7056872)
-\curveto(-397.17817547,1026.81461383)(-397.96261298,1025.88958539)(-398.79884279,1025.23811281)
-\lineto(-399.06859434,1025.75991704)
-\lineto(-398.69768596,1026.18388297)
-\lineto(-397.45008503,1026.93397655)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-436.15943279,1025.75991704)
-\lineto(-434.67579925,1025.75991704)
-\lineto(-433.90026353,1025.59685322)
-\lineto(-435.61992968,1024.45540647)
-\lineto(-436.02455701,1024.45540647)
-\lineto(-436.19315173,1024.35756818)
-\lineto(-436.39546539,1024.42279371)
-\lineto(-436.56406011,1024.32495542)
-\lineto(-436.83381167,1024.45540647)
-\lineto(-437.33959583,1024.48801924)
-\lineto(-437.33959583,1024.68369582)
-\lineto(-436.19315173,1025.66207875)
-\lineto(-436.15943279,1025.75991704)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-436.15943279,1025.75991704)
-\lineto(-434.67579925,1025.75991704)
-\lineto(-433.90026353,1025.59685322)
-\lineto(-435.61992968,1024.45540647)
-\lineto(-436.02455701,1024.45540647)
-\lineto(-436.19315173,1024.35756818)
-\lineto(-436.39546539,1024.42279371)
-\lineto(-436.56406011,1024.32495542)
-\lineto(-436.83381167,1024.45540647)
-\lineto(-437.33959583,1024.48801924)
-\lineto(-437.33959583,1024.68369582)
-\lineto(-436.19315173,1025.66207875)
-\lineto(-436.15943279,1025.75991704)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-417.68145145,1024.19450436)
-\lineto(-417.58029462,1024.1618916)
-\lineto(-417.68145145,1023.15089591)
-\curveto(-417.60350674,1022.53908045)(-417.89455518,1021.79811845)(-417.4116999,1021.32458111)
-\lineto(-417.31054307,1020.83538965)
-\curveto(-417.87648183,1020.89208368)(-418.36230437,1021.359542)(-418.62558189,1021.84638534)
-\curveto(-418.71689279,1022.61422026)(-418.35421182,1023.28526049)(-417.85004617,1023.83576395)
-\lineto(-417.68145145,1024.19450436)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-417.68145145,1024.19450436)
-\lineto(-417.58029462,1024.1618916)
-\lineto(-417.68145145,1023.15089591)
-\curveto(-417.60350674,1022.53908045)(-417.89455518,1021.79811845)(-417.4116999,1021.32458111)
-\lineto(-417.31054307,1020.83538965)
-\curveto(-417.87648183,1020.89208368)(-418.36230437,1021.359542)(-418.62558189,1021.84638534)
-\curveto(-418.71689279,1022.61422026)(-418.35421182,1023.28526049)(-417.85004617,1023.83576395)
-\lineto(-417.68145145,1024.19450436)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-354.28983666,1022.36818957)
-\curveto(-354.3086923,1022.61408981)(-354.03559583,1022.34996555)(-354.28983666,1022.36818957)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-354.28983666,1022.36818957)
-\curveto(-354.3086923,1022.61408981)(-354.03559583,1022.34996555)(-354.28983666,1022.36818957)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-354.28983666,1022.36818957)
-\lineto(-354.55958822,1022.23773851)
-\lineto(-354.28983666,1022.36818957)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-354.28983666,1022.36818957)
-\lineto(-354.55958822,1022.23773851)
-\lineto(-354.28983666,1022.36818957)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-354.55958822,1022.23773851)
-\curveto(-354.54073258,1021.99183827)(-354.81382905,1022.25596252)(-354.55958822,1022.23773851)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-354.55958822,1022.23773851)
-\curveto(-354.54073258,1021.99183827)(-354.81382905,1022.25596252)(-354.55958822,1022.23773851)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-355.63859442,1021.58548323)
-\curveto(-355.38435359,1021.60372028)(-355.65743657,1021.33958298)(-355.63859442,1021.58548323)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-355.63859442,1021.58548323)
-\curveto(-355.38435359,1021.60372028)(-355.65743657,1021.33958298)(-355.63859442,1021.58548323)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-356.17809753,1021.19413006)
-\lineto(-356.0769407,1020.83538965)
-\lineto(-357.08850902,1020.44403648)
-\lineto(-356.17809753,1021.19413006)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-356.17809753,1021.19413006)
-\lineto(-356.0769407,1020.83538965)
-\lineto(-357.08850902,1020.44403648)
-\lineto(-356.17809753,1021.19413006)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.94509804 0.94509804 0.94509804}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-414.84906015,1018.45465786)
-\lineto(-414.5793086,1018.19375575)
-\lineto(-414.84906015,1017.1501473)
-\lineto(-414.20840022,1015.81302397)
-\curveto(-413.9412113,1015.30778702)(-413.55209469,1014.75910988)(-412.99451823,1014.5085134)
-\lineto(-412.99451823,1014.31283681)
-\lineto(-413.77005394,1014.28022405)
-\lineto(-414.0398055,1014.14977299)
-\lineto(-414.44443283,1014.28022405)
-\curveto(-415.32328338,1014.33410034)(-415.97257537,1015.23538669)(-416.19781792,1015.97608779)
-\lineto(-415.28740643,1017.70456429)
-\lineto(-415.01765487,1017.9654664)
-\lineto(-414.84906015,1018.45465786)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.94509804 0.94509804 0.94509804}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-414.84906015,1018.45465786)
-\lineto(-414.5793086,1018.19375575)
-\lineto(-414.84906015,1017.1501473)
-\lineto(-414.20840022,1015.81302397)
-\curveto(-413.9412113,1015.30778702)(-413.55209469,1014.75910988)(-412.99451823,1014.5085134)
-\lineto(-412.99451823,1014.31283681)
-\lineto(-413.77005394,1014.28022405)
-\lineto(-414.0398055,1014.14977299)
-\lineto(-414.44443283,1014.28022405)
-\curveto(-415.32328338,1014.33410034)(-415.97257537,1015.23538669)(-416.19781792,1015.97608779)
-\lineto(-415.28740643,1017.70456429)
-\lineto(-415.01765487,1017.9654664)
-\lineto(-414.84906015,1018.45465786)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-361.84288013,1018.32420681)
-\curveto(-361.86172227,1018.57010705)(-361.58863929,1018.30596975)(-361.84288013,1018.32420681)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-361.84288013,1018.32420681)
-\curveto(-361.86172227,1018.57010705)(-361.58863929,1018.30596975)(-361.84288013,1018.32420681)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-361.84288013,1018.32420681)
-\lineto(-361.9777559,1018.19375575)
-\lineto(-361.84288013,1018.32420681)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-361.84288013,1018.32420681)
-\lineto(-361.9777559,1018.19375575)
-\lineto(-361.84288013,1018.32420681)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.95686275 0.95686275 0.95686275}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-411.34228997,1013.2366156)
-\lineto(-410.56675426,1013.07355177)
-\lineto(-410.49931637,1012.87787519)
-\lineto(-409.42031016,1011.83426674)
-\lineto(-409.2179965,1011.76904121)
-\lineto(-408.61105551,1011.0515604)
-\lineto(-407.80180085,1010.66020722)
-\curveto(-407.32353135,1010.63805664)(-407.00927079,1010.16762403)(-406.79023253,1009.81227536)
-\curveto(-406.6066666,1008.7926699)(-407.75257119,1008.44906181)(-408.3750229,1007.88812227)
-\lineto(-408.47617973,1007.98596056)
-\curveto(-407.59962206,1009.40918159)(-409.43555113,1010.78804926)(-410.80278687,1010.75804552)
-\lineto(-411.7469173,1010.88849657)
-\lineto(-412.11782569,1011.0515604)
-\curveto(-412.83023954,1011.78039045)(-411.95030997,1012.77612336)(-411.34228997,1013.2366156)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.95686275 0.95686275 0.95686275}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-411.34228997,1013.2366156)
-\lineto(-410.56675426,1013.07355177)
-\lineto(-410.49931637,1012.87787519)
-\lineto(-409.42031016,1011.83426674)
-\lineto(-409.2179965,1011.76904121)
-\lineto(-408.61105551,1011.0515604)
-\lineto(-407.80180085,1010.66020722)
-\curveto(-407.32353135,1010.63805664)(-407.00927079,1010.16762403)(-406.79023253,1009.81227536)
-\curveto(-406.6066666,1008.7926699)(-407.75257119,1008.44906181)(-408.3750229,1007.88812227)
-\lineto(-408.47617973,1007.98596056)
-\curveto(-407.59962206,1009.40918159)(-409.43555113,1010.78804926)(-410.80278687,1010.75804552)
-\lineto(-411.7469173,1010.88849657)
-\lineto(-412.11782569,1011.0515604)
-\curveto(-412.83023954,1011.78039045)(-411.95030997,1012.77612336)(-411.34228997,1013.2366156)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.19215687 0.19215687 0.19215687}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-387.06465027,1002.53962894)
-\lineto(-387.23324499,1001.78953537)
-\lineto(-387.33440182,1001.7569226)
-\curveto(-387.7531911,1001.98208113)(-387.15434266,1002.29881629)(-387.06465027,1002.53962894)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.19215687 0.19215687 0.19215687}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-387.06465027,1002.53962894)
-\lineto(-387.23324499,1001.78953537)
-\lineto(-387.33440182,1001.7569226)
-\curveto(-387.7531911,1001.98208113)(-387.15434266,1002.29881629)(-387.06465027,1002.53962894)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-374.11657576,1002.27872683)
-\lineto(-373.6107916,1002.24611407)
-\lineto(-373.88054315,1001.91998642)
-\lineto(-374.21773259,1001.8547609)
-\lineto(-374.65607886,1001.62647155)
-\lineto(-377.48847016,1001.62647155)
-\lineto(-377.72450277,1001.8547609)
-\curveto(-377.57519528,1002.10327016)(-377.27280379,1002.02291231)(-377.08384283,1001.88737366)
-\lineto(-376.00483662,1001.88737366)
-\curveto(-375.35244249,1001.89132241)(-374.55357327,1001.77496398)(-374.11657576,1002.27872683)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-374.11657576,1002.27872683)
-\lineto(-373.6107916,1002.24611407)
-\lineto(-373.88054315,1001.91998642)
-\lineto(-374.21773259,1001.8547609)
-\lineto(-374.65607886,1001.62647155)
-\lineto(-377.48847016,1001.62647155)
-\lineto(-377.72450277,1001.8547609)
-\curveto(-377.57519528,1002.10327016)(-377.27280379,1002.02291231)(-377.08384283,1001.88737366)
-\lineto(-376.00483662,1001.88737366)
-\curveto(-375.35244249,1001.89132241)(-374.55357327,1001.77496398)(-374.11657576,1002.27872683)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1882353 0.1882353 0.1882353}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-384.6368863,1001.36556943)
-\lineto(-384.40085369,1001.33295667)
-\curveto(-383.98044589,1000.91590464)(-383.50892018,1000.52089884)(-382.91722015,1000.41979927)
-\lineto(-382.88350121,1000.32196098)
-\lineto(-383.15325276,1000.06105887)
-\lineto(-384.46829158,999.89799505)
-\lineto(-385.27754623,999.18051423)
-\lineto(-385.31126518,999.40880358)
-\curveto(-384.97340136,999.87347025)(-384.4937831,1000.37596772)(-383.86135058,1000.35457374)
-\lineto(-383.86135058,1000.55025033)
-\curveto(-384.19044748,1000.69009386)(-384.60478586,1001.00017602)(-384.6368863,1001.36556943)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.1882353 0.1882353 0.1882353}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-384.6368863,1001.36556943)
-\lineto(-384.40085369,1001.33295667)
-\curveto(-383.98044589,1000.91590464)(-383.50892018,1000.52089884)(-382.91722015,1000.41979927)
-\lineto(-382.88350121,1000.32196098)
-\lineto(-383.15325276,1000.06105887)
-\lineto(-384.46829158,999.89799505)
-\lineto(-385.27754623,999.18051423)
-\lineto(-385.31126518,999.40880358)
-\curveto(-384.97340136,999.87347025)(-384.4937831,1000.37596772)(-383.86135058,1000.35457374)
-\lineto(-383.86135058,1000.55025033)
-\curveto(-384.19044748,1000.69009386)(-384.60478586,1001.00017602)(-384.6368863,1001.36556943)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-374.25145153,998.7565483)
-\lineto(-374.01541893,998.52825895)
-\lineto(-374.42004625,998.52825895)
-\lineto(-374.25145153,998.7565483)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-374.25145153,998.7565483)
-\lineto(-374.01541893,998.52825895)
-\lineto(-374.42004625,998.52825895)
-\lineto(-374.25145153,998.7565483)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-369.39592359,997.8433909)
-\lineto(-369.26104782,997.71293985)
-\curveto(-369.65704309,997.08416575)(-369.82186129,996.40060221)(-369.83426986,995.6583357)
-\lineto(-370.03658353,995.78878676)
-\curveto(-370.32427356,996.33759435)(-370.63354371,996.89814254)(-370.44121086,997.54987602)
-\lineto(-369.96914564,997.22374838)
-\lineto(-369.39592359,997.8433909)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-369.39592359,997.8433909)
-\lineto(-369.26104782,997.71293985)
-\curveto(-369.65704309,997.08416575)(-369.82186129,996.40060221)(-369.83426986,995.6583357)
-\lineto(-370.03658353,995.78878676)
-\curveto(-370.32427356,996.33759435)(-370.63354371,996.89814254)(-370.44121086,997.54987602)
-\lineto(-369.96914564,997.22374838)
-\lineto(-369.39592359,997.8433909)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-393.80843907,997.58248879)
-\lineto(-393.57240647,997.35419944)
-\curveto(-395.43504094,995.43656891)(-395.91250118,992.15311581)(-393.97703379,990.17939132)
-\curveto(-393.74504746,991.7200183)(-393.95954041,993.65069394)(-392.45968131,994.71256554)
-\lineto(-392.35852448,994.48427619)
-\curveto(-393.6295938,993.32013096)(-393.52088392,991.57652214)(-393.6735633,990.0163275)
-\lineto(-389.12150585,983.78728954)
-\curveto(-389.07451513,984.94791259)(-389.65453492,986.04670184)(-390.33538784,986.98334043)
-\lineto(-391.07720461,988.15739994)
-\lineto(-390.87489094,988.15739994)
-\lineto(-389.39125741,986.07018303)
-\curveto(-388.97084961,985.02605277)(-388.54760943,983.84860154)(-388.78431641,982.74368109)
-\lineto(-388.44712697,982.61323003)
-\lineto(-390.26794995,980.98259182)
-\lineto(-391.07720461,980.26511101)
-\lineto(-390.40282573,981.24349393)
-\lineto(-389.25638163,982.35232792)
-\lineto(-389.39125741,983.59161296)
-\curveto(-391.34290989,986.36500242)(-393.6384956,989.0040273)(-396.06760833,991.35345083)
-\lineto(-396.47223565,992.13615717)
-\curveto(-396.94443575,993.60242705)(-396.4133354,995.11565931)(-396.06760833,996.50626757)
-\lineto(-395.86529466,996.63671863)
-\lineto(-395.83157572,996.01707611)
-\curveto(-396.33061609,994.97581577)(-396.04171218,993.67678415)(-396.06760833,992.52751034)
-\lineto(-395.59554311,991.744804)
-\curveto(-396.02957336,993.76549087)(-395.53345979,996.11360989)(-393.80843907,997.58248879)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-393.80843907,997.58248879)
-\lineto(-393.57240647,997.35419944)
-\curveto(-395.43504094,995.43656891)(-395.91250118,992.15311581)(-393.97703379,990.17939132)
-\curveto(-393.74504746,991.7200183)(-393.95954041,993.65069394)(-392.45968131,994.71256554)
-\lineto(-392.35852448,994.48427619)
-\curveto(-393.6295938,993.32013096)(-393.52088392,991.57652214)(-393.6735633,990.0163275)
-\lineto(-389.12150585,983.78728954)
-\curveto(-389.07451513,984.94791259)(-389.65453492,986.04670184)(-390.33538784,986.98334043)
-\lineto(-391.07720461,988.15739994)
-\lineto(-390.87489094,988.15739994)
-\lineto(-389.39125741,986.07018303)
-\curveto(-388.97084961,985.02605277)(-388.54760943,983.84860154)(-388.78431641,982.74368109)
-\lineto(-388.44712697,982.61323003)
-\lineto(-390.26794995,980.98259182)
-\lineto(-391.07720461,980.26511101)
-\lineto(-390.40282573,981.24349393)
-\lineto(-389.25638163,982.35232792)
-\lineto(-389.39125741,983.59161296)
-\curveto(-391.34290989,986.36500242)(-393.6384956,989.0040273)(-396.06760833,991.35345083)
-\lineto(-396.47223565,992.13615717)
-\curveto(-396.94443575,993.60242705)(-396.4133354,995.11565931)(-396.06760833,996.50626757)
-\lineto(-395.86529466,996.63671863)
-\lineto(-395.83157572,996.01707611)
-\curveto(-396.33061609,994.97581577)(-396.04171218,993.67678415)(-396.06760833,992.52751034)
-\lineto(-395.59554311,991.744804)
-\curveto(-396.02957336,993.76549087)(-395.53345979,996.11360989)(-393.80843907,997.58248879)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90588236 0.90588236 0.90588236}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-375.19558197,996.9302335)
-\curveto(-374.85839253,996.70390092)(-374.44890967,996.56431829)(-374.1502947,996.89762074)
-\lineto(-374.1502947,996.70194416)
-\lineto(-374.42004625,996.18013993)
-\curveto(-375.0879511,995.41817531)(-375.19679585,994.42035517)(-375.22930091,993.44066774)
-\curveto(-375.65173184,993.69256873)(-376.06944212,994.37861084)(-375.73508507,994.8430166)
-\lineto(-375.73508507,994.97346765)
-\curveto(-375.79931292,995.69407929)(-375.49743395,996.3118955)(-375.19558197,996.9302335)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.90588236 0.90588236 0.90588236}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-375.19558197,996.9302335)
-\curveto(-374.85839253,996.70390092)(-374.44890967,996.56431829)(-374.1502947,996.89762074)
-\lineto(-374.1502947,996.70194416)
-\lineto(-374.42004625,996.18013993)
-\curveto(-375.0879511,995.41817531)(-375.19679585,994.42035517)(-375.22930091,993.44066774)
-\curveto(-375.65173184,993.69256873)(-376.06944212,994.37861084)(-375.73508507,994.8430166)
-\lineto(-375.73508507,994.97346765)
-\curveto(-375.79931292,995.69407929)(-375.49743395,996.3118955)(-375.19558197,996.9302335)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-389.76216579,994.71256554)
-\curveto(-389.46557396,994.80745564)(-388.98528132,994.62765495)(-389.39125741,994.35382513)
-\curveto(-391.9012956,992.84450641)(-391.38607014,989.30276022)(-389.12150585,987.76604677)
-\curveto(-388.61005691,986.8128409)(-387.62033847,986.2136792)(-386.69374188,985.67882986)
-\lineto(-386.15423878,985.15702564)
-\lineto(-385.34498412,983.33071084)
-\lineto(-385.4798599,982.87413214)
-\curveto(-386.67013862,981.72329292)(-387.1563658,980.11900583)(-387.19952604,978.53663451)
-\curveto(-386.84426325,977.56516549)(-386.06090474,976.65683478)(-385.07523257,976.22112825)
-\curveto(-385.26459816,977.78523642)(-385.23924151,979.55806628)(-384.60316735,980.98259182)
-\lineto(-384.6368863,979.84114507)
-\lineto(-384.8729189,978.89537491)
-\curveto(-385.56024586,975.47886174)(-382.45999127,973.03942698)(-379.68020152,971.72056679)
-\lineto(-379.68020152,971.39443915)
-\curveto(-381.68580431,972.30655294)(-383.64150307,973.71255443)(-384.80548102,975.6340985)
-\curveto(-387.09971797,976.02740843)(-389.65291641,978.00308969)(-388.98663008,980.52601312)
-\lineto(-389.79588473,979.87375784)
-\curveto(-390.65302029,978.85310877)(-390.85317594,977.53868392)(-390.67257728,976.22112825)
-\curveto(-390.04513517,975.20347956)(-388.77487511,973.94997535)(-387.4692776,974.36220069)
-\lineto(-387.23324499,974.13391134)
-\curveto(-388.73441238,973.53253197)(-390.31245896,974.94675188)(-390.97604778,976.18851549)
-\curveto(-391.18497035,977.94960475)(-390.75336787,979.60372415)(-389.39125741,980.78691524)
-\lineto(-388.64944064,981.89574922)
-\curveto(-388.34974666,981.64789221)(-388.12261586,982.03233147)(-387.90762387,982.22187686)
-\curveto(-387.95990172,982.98292832)(-387.74536831,983.65162044)(-387.33440182,984.276481)
-\lineto(-387.77274809,985.54837881)
-\curveto(-389.42362759,987.01073515)(-391.08529715,988.6961628)(-391.78530243,990.79903384)
-\lineto(-391.65042666,991.32083807)
-\curveto(-391.77356824,992.7205779)(-390.59070768,993.70678789)(-389.76216579,994.71256554)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-389.76216579,994.71256554)
-\curveto(-389.46557396,994.80745564)(-388.98528132,994.62765495)(-389.39125741,994.35382513)
-\curveto(-391.9012956,992.84450641)(-391.38607014,989.30276022)(-389.12150585,987.76604677)
-\curveto(-388.61005691,986.8128409)(-387.62033847,986.2136792)(-386.69374188,985.67882986)
-\lineto(-386.15423878,985.15702564)
-\lineto(-385.34498412,983.33071084)
-\lineto(-385.4798599,982.87413214)
-\curveto(-386.67013862,981.72329292)(-387.1563658,980.11900583)(-387.19952604,978.53663451)
-\curveto(-386.84426325,977.56516549)(-386.06090474,976.65683478)(-385.07523257,976.22112825)
-\curveto(-385.26459816,977.78523642)(-385.23924151,979.55806628)(-384.60316735,980.98259182)
-\lineto(-384.6368863,979.84114507)
-\lineto(-384.8729189,978.89537491)
-\curveto(-385.56024586,975.47886174)(-382.45999127,973.03942698)(-379.68020152,971.72056679)
-\lineto(-379.68020152,971.39443915)
-\curveto(-381.68580431,972.30655294)(-383.64150307,973.71255443)(-384.80548102,975.6340985)
-\curveto(-387.09971797,976.02740843)(-389.65291641,978.00308969)(-388.98663008,980.52601312)
-\lineto(-389.79588473,979.87375784)
-\curveto(-390.65302029,978.85310877)(-390.85317594,977.53868392)(-390.67257728,976.22112825)
-\curveto(-390.04513517,975.20347956)(-388.77487511,973.94997535)(-387.4692776,974.36220069)
-\lineto(-387.23324499,974.13391134)
-\curveto(-388.73441238,973.53253197)(-390.31245896,974.94675188)(-390.97604778,976.18851549)
-\curveto(-391.18497035,977.94960475)(-390.75336787,979.60372415)(-389.39125741,980.78691524)
-\lineto(-388.64944064,981.89574922)
-\curveto(-388.34974666,981.64789221)(-388.12261586,982.03233147)(-387.90762387,982.22187686)
-\curveto(-387.95990172,982.98292832)(-387.74536831,983.65162044)(-387.33440182,984.276481)
-\lineto(-387.77274809,985.54837881)
-\curveto(-389.42362759,987.01073515)(-391.08529715,988.6961628)(-391.78530243,990.79903384)
-\lineto(-391.65042666,991.32083807)
-\curveto(-391.77356824,992.7205779)(-390.59070768,993.70678789)(-389.76216579,994.71256554)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-413.63517817,991.19038701)
-\lineto(-412.52245302,990.57074449)
-\curveto(-411.5593051,990.0968158)(-410.85808594,989.06273027)(-411.10625737,987.96172336)
-\lineto(-411.37600892,987.70082124)
-\lineto(-411.98294991,987.70082124)
-\lineto(-411.84807413,987.89649783)
-\lineto(-411.51088469,987.96172336)
-\curveto(-410.89922305,989.2449704)(-412.42021718,990.32680101)(-413.46658345,990.8316466)
-\lineto(-413.63517817,991.19038701)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-413.63517817,991.19038701)
-\lineto(-412.52245302,990.57074449)
-\curveto(-411.5593051,990.0968158)(-410.85808594,989.06273027)(-411.10625737,987.96172336)
-\lineto(-411.37600892,987.70082124)
-\lineto(-411.98294991,987.70082124)
-\lineto(-411.84807413,987.89649783)
-\lineto(-411.51088469,987.96172336)
-\curveto(-410.89922305,989.2449704)(-412.42021718,990.32680101)(-413.46658345,990.8316466)
-\lineto(-413.63517817,991.19038701)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-375.73508507,986.88550214)
-\lineto(-375.70136613,987.11379149)
-\lineto(-374.35260837,988.94010628)
-\lineto(-373.81310526,989.72281262)
-\lineto(-373.6107916,989.72281262)
-\curveto(-373.54187008,988.68533537)(-374.45012355,987.80518209)(-375.2967388,987.24424254)
-\lineto(-375.36417669,987.04856596)
-\lineto(-375.73508507,986.88550214)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-375.73508507,986.88550214)
-\lineto(-375.70136613,987.11379149)
-\lineto(-374.35260837,988.94010628)
-\lineto(-373.81310526,989.72281262)
-\lineto(-373.6107916,989.72281262)
-\curveto(-373.54187008,988.68533537)(-374.45012355,987.80518209)(-375.2967388,987.24424254)
-\lineto(-375.36417669,987.04856596)
-\lineto(-375.73508507,986.88550214)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-375.73508507,986.88550214)
-\lineto(-375.86996085,986.75505108)
-\lineto(-375.73508507,986.88550214)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-375.73508507,986.88550214)
-\lineto(-375.86996085,986.75505108)
-\lineto(-375.73508507,986.88550214)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-375.86996085,986.75505108)
-\curveto(-375.85110521,986.50915084)(-376.12420169,986.77327509)(-375.86996085,986.75505108)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-375.86996085,986.75505108)
-\curveto(-375.85110521,986.50915084)(-376.12420169,986.77327509)(-375.86996085,986.75505108)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-415.92806636,985.97234474)
-\lineto(-415.69203375,985.93973198)
-\curveto(-415.44642497,985.52881115)(-415.18624959,984.92847538)(-414.61302755,984.89612352)
-\lineto(-414.30955705,984.79828523)
-\lineto(-414.20840022,984.70044694)
-\lineto(-414.44443283,984.53738312)
-\curveto(-415.1433591,984.61385353)(-415.91592754,985.24442784)(-415.92806636,985.97234474)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-415.92806636,985.97234474)
-\lineto(-415.69203375,985.93973198)
-\curveto(-415.44642497,985.52881115)(-415.18624959,984.92847538)(-414.61302755,984.89612352)
-\lineto(-414.30955705,984.79828523)
-\lineto(-414.20840022,984.70044694)
-\lineto(-414.44443283,984.53738312)
-\curveto(-415.1433591,984.61385353)(-415.91592754,985.24442784)(-415.92806636,985.97234474)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84705883 0.84705883 0.84705883}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-387.33440182,985.58099157)
-\curveto(-387.58864266,985.56275451)(-387.31555967,985.82689181)(-387.33440182,985.58099157)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.84705883 0.84705883 0.84705883}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-387.33440182,985.58099157)
-\curveto(-387.58864266,985.56275451)(-387.31555967,985.82689181)(-387.33440182,985.58099157)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.95294118 0.95294118 0.95294118}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-387.33440182,985.58099157)
-\lineto(-386.55886611,985.15702564)
-\lineto(-386.25539561,984.53738312)
-\lineto(-386.39027139,984.01557889)
-\lineto(-386.62630399,983.4611619)
-\lineto(-387.43555865,982.74368109)
-\lineto(-387.4692776,983.23287255)
-\lineto(-387.06465027,984.40693206)
-\lineto(-386.96349344,984.63522141)
-\lineto(-387.30068288,985.35270222)
-\lineto(-387.33440182,985.58099157)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.95294118 0.95294118 0.95294118}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-387.33440182,985.58099157)
-\lineto(-386.55886611,985.15702564)
-\lineto(-386.25539561,984.53738312)
-\lineto(-386.39027139,984.01557889)
-\lineto(-386.62630399,983.4611619)
-\lineto(-387.43555865,982.74368109)
-\lineto(-387.4692776,983.23287255)
-\lineto(-387.06465027,984.40693206)
-\lineto(-386.96349344,984.63522141)
-\lineto(-387.30068288,985.35270222)
-\lineto(-387.33440182,985.58099157)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-378.29772482,985.32008946)
-\curveto(-377.78101572,985.35631572)(-378.337702,984.97778588)(-378.46631954,984.83089799)
-\lineto(-379.20813631,984.63522141)
-\curveto(-380.33906969,983.60309265)(-381.9353245,982.74237658)(-382.24284127,981.17826841)
-\lineto(-382.47887388,980.23249824)
-\curveto(-382.92490807,979.69060455)(-382.80648714,978.76753288)(-382.61374965,978.14528134)
-\lineto(-382.6474686,976.61248142)
-\lineto(-383.65903692,977.78654093)
-\curveto(-383.88306558,979.57763394)(-383.1257381,981.17044134)(-382.31027916,982.67845556)
-\curveto(-381.17772727,983.64835916)(-380.09427016,984.77610855)(-378.60119531,985.09180011)
-\lineto(-378.29772482,985.32008946)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-378.29772482,985.32008946)
-\curveto(-377.78101572,985.35631572)(-378.337702,984.97778588)(-378.46631954,984.83089799)
-\lineto(-379.20813631,984.63522141)
-\curveto(-380.33906969,983.60309265)(-381.9353245,982.74237658)(-382.24284127,981.17826841)
-\lineto(-382.47887388,980.23249824)
-\curveto(-382.92490807,979.69060455)(-382.80648714,978.76753288)(-382.61374965,978.14528134)
-\lineto(-382.6474686,976.61248142)
-\lineto(-383.65903692,977.78654093)
-\curveto(-383.88306558,979.57763394)(-383.1257381,981.17044134)(-382.31027916,982.67845556)
-\curveto(-381.17772727,983.64835916)(-380.09427016,984.77610855)(-378.60119531,985.09180011)
-\lineto(-378.29772482,985.32008946)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.65490198 0.65490198 0.65490198}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-379.10697947,984.14602995)
-\curveto(-379.12583511,984.39193019)(-378.85273864,984.12779289)(-379.10697947,984.14602995)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.65490198 0.65490198 0.65490198}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-379.10697947,984.14602995)
-\curveto(-379.12583511,984.39193019)(-378.85273864,984.12779289)(-379.10697947,984.14602995)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-379.10697947,984.14602995)
-\lineto(-379.24185525,984.01557889)
-\lineto(-379.10697947,984.14602995)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-379.10697947,984.14602995)
-\lineto(-379.24185525,984.01557889)
-\lineto(-379.10697947,984.14602995)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-379.24185525,984.01557889)
-\lineto(-379.68020152,983.26548531)
-\lineto(-380.82664562,981.50439605)
-\lineto(-380.86036456,981.01520458)
-\lineto(-381.13011612,980.49340036)
-\lineto(-381.39986767,978.01483028)
-\lineto(-380.75920773,975.37319638)
-\lineto(-380.75920773,975.1775198)
-\lineto(-381.5010245,975.69932402)
-\lineto(-382.31027916,976.74293248)
-\lineto(-382.44515493,979.5476302)
-\curveto(-382.11632779,981.04781735)(-381.43749801,982.65627888)(-379.94995308,983.52638743)
-\lineto(-379.47788786,983.98296613)
-\lineto(-379.24185525,984.01557889)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-379.24185525,984.01557889)
-\lineto(-379.68020152,983.26548531)
-\lineto(-380.82664562,981.50439605)
-\lineto(-380.86036456,981.01520458)
-\lineto(-381.13011612,980.49340036)
-\lineto(-381.39986767,978.01483028)
-\lineto(-380.75920773,975.37319638)
-\lineto(-380.75920773,975.1775198)
-\lineto(-381.5010245,975.69932402)
-\lineto(-382.31027916,976.74293248)
-\lineto(-382.44515493,979.5476302)
-\curveto(-382.11632779,981.04781735)(-381.43749801,982.65627888)(-379.94995308,983.52638743)
-\lineto(-379.47788786,983.98296613)
-\lineto(-379.24185525,984.01557889)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-386.12051983,983.49377466)
-\lineto(-385.98564406,983.23287255)
-\lineto(-386.15423878,982.74368109)
-\curveto(-386.80676778,981.93879807)(-387.07611471,980.94997906)(-387.36812076,980.0042089)
-\lineto(-387.43555865,980.0042089)
-\lineto(-387.43555865,982.15665133)
-\lineto(-386.55886611,982.74368109)
-\lineto(-386.12051983,983.49377466)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-386.12051983,983.49377466)
-\lineto(-385.98564406,983.23287255)
-\lineto(-386.15423878,982.74368109)
-\curveto(-386.80676778,981.93879807)(-387.07611471,980.94997906)(-387.36812076,980.0042089)
-\lineto(-387.43555865,980.0042089)
-\lineto(-387.43555865,982.15665133)
-\lineto(-386.55886611,982.74368109)
-\lineto(-386.12051983,983.49377466)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.97254902 0.97254902 0.97254902}
-\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
-{
-\newpath
-\moveto(-388.0087807,981.66745987)
-\lineto(-387.87390492,981.53700881)
-\lineto(-387.87390492,979.18888979)
-\lineto(-386.82861766,977.06906012)
-\lineto(-386.82861766,976.87338353)
-\curveto(-387.86500312,977.14341722)(-388.29336859,978.22616099)(-388.68315958,979.05843873)
-\lineto(-388.51456486,981.24349393)
-\lineto(-388.0087807,981.66745987)
-\closepath
-}
-}
-{
-\newrgbcolor{curcolor}{0.97254902 0.97254902 0.97254902}
-\pscustom[linewidth=0.13264497,linecolor=curcolor]
-{
-\newpath
-\moveto(-388.0087807,981.66745987)
-\lineto(-387.87390492,981.53700881)
-\lineto(-387.87390492,979.18888979)
-\lineto(-386.82861766,977.06906012)
-\lineto(-386.82861766,976.87338353)
-\curveto(-387.86500312,977.14341722)(-388.29336859,978.22616099)(-388.68315958,979.05843873)
-\lineto(-388.51456486,981.24349393)
-\lineto(-388.0087807,981.66745987)
-\closepath
-}
-}
-\end{pspicture}
-
-
-}
-
-
-\newcommand{\card}[1]{
- \begin{tikzpicture}[font=\tiny]
-% \draw[-,line width=1pt,MyBlack] (-5mm,0mm) to (-2mm,0mm);
-% \draw[-,line width=1pt,MyBlack] (0mm,5mm) to (0mm,2mm);
-
-% \draw[-,line width=1pt,MyBlack] [xshift=2mm](\width,0mm) to [xshift=3mm](\width,0mm);
-% \draw[-,line width=1pt,MyBlack] (\width,5mm) to (\width,2mm);
-
-% \draw[-,line width=1pt,MyBlack] (-5mm,-\height) to (-2mm,-\height);
-% \draw[-,line width=1pt,MyBlack] [yshift=-2mm](0mm,-\height) to [yshift=-3mm](0mm,-\height);
-
-% \draw[-,line width=1pt,MyBlack] [xshift=2mm](\width,-\height) to [xshift=3mm](\width,-\height);
-% \draw[-,line width=1pt,MyBlack] [yshift=-2mm](\width,-\height) to [yshift=-3mm](\width,-\height);
-
-
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-16mm) {\orga};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-18.5mm) {\ifthenelse{\equal{#1}{english}}{\departmenten}{\departmentde}};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-21.0mm) {\ifthenelse{\equal{#1}{english}}{\subdepartmenten}{\subdepartmentde}};
-
- \ifthenelse{\equal{\gpglineone}{}\or\equal{#1}{german}}{
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-33.0mm) {Tel};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-35.5mm) {Fax};
- \node[rectangle,draw=white,minimum height=7pt,text width=30mm,inner sep=0pt] at (65mm,-33.0mm) {\phone};
- \node[rectangle,draw=white,minimum height=7pt,text width=30mm,inner sep=0pt] at (65mm,-35.5mm) {\fax};
-
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-38.5mm) {\email};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-41.0mm) {\homepage};
-
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-44.0mm) {GPG Fingerprint:};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-46.5mm) {\gpglineone};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-49.0mm) {\gpglinetwo};
- }
- {
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-35.0mm) {\email};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-37.5mm) {\homepage};
-
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-44.0mm) {GPG Fingerprint:};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-46.5mm) {\gpglineone};
- \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-49.0mm) {\gpglinetwo};
- }
-
- \ifthenelse{\equal{\gns}{}\or\equal{#1}{english}}{
- \node[rectangle,draw=white,minimum height=7pt,text width=120mm,inner sep=0pt] at (62mm,-2mm) {\gns};
- \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-21.0mm) {\ifthenelse{\equal{\prefix}{}}{}{\tiny \prefix}};
- \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-24.0mm) {\fontsize{8pt}{8pt}\selectfont \textbf{\name}\ifthenelse{\equal{\suffix}{}}{}{, \tiny \suffix}};
- \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-29.0mm) {\ifthenelse{\equal{#1}{english}}{\textit{\jobtitleenglish}}{\textit{\jobtitlegerman}}};
- }
- {
- \node at (78mm,-7mm) {\logo}; %\includegraphics[height=7mm]{gnunet-logo.pdf}};
- \node[rectangle,draw=white,line width=1pt,inner sep=0pt] at (17mm,-17mm) {\begin{pspicture}(15mm,15mm) \psbarcode{gnunet://gns/\gns}{eclevel=Q}{qrcode}\end{pspicture}};
- \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-35.0mm) {\ifthenelse{\equal{\prefix}{}}{}{\tiny \prefix}};
- \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-41.5mm) {\fontsize{8pt}{8pt}\selectfont \textbf{\name}\ifthenelse{\equal{\suffix}{}}{}{, \tiny \suffix}};
- \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-47.0mm) {\ifthenelse{\equal{#1}{english}}{\textit{\jobtitleenglish}}{\textit{\jobtitlegerman}}};
- }
- \end{tikzpicture}
-}
-
-
-\begin{document}
-\addresslabel{\card{german}}
-%\addresslabel{\card{english}}
-\end{document}
-
-
-\begin{figure}
- \begin{center}
- \card{german}
- \end{center}
-\end{figure}
-%\clearpage
-%\begin{figure}
-% \begin{center}
-% \card{english}
-% \end{center}
-%\end{figure}
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet href="gns-form.xslt" type="text/xsl" ?>
-<form>
- <group title="Name">
- <field id="prefix">Academic Title (prefix)</field>
- <field id="name">Name</field>
- <field id="suffix">Academic Title (suffix)</field>
- </group>
- <group title="Legacy Contact">
- <field id="phone">Phone</field>
- <field id="fax">Fax</field>
- <field id="email">E-mail</field>
- <field id="homepage">Homepage</field>
- </group>
- <group title="Affiliation">
- <field id="orga">Organization</field>
- <field id="departmenti18n">Department</field>
- <field id="subdepartmenti18n">Division</field>
- </group>
- <group title="Jobtitle">
- <field id="jobtitlei18n">Jobtitle</field>
- </group>
- <group title="GNU ID">
- <field id="gpgfingerprint">GPG Fingerprint</field>
- <field id="gnskey">GNS Public Key</field>
- <field id="gnsnick">GNS Nickname</field>
- </group>
-</form>
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-
- <xsl:output method="html" indent="yes" />
-
- <xsl:template match="form">
- <html>
- <head>
- <title>Create your GNU Name System Business Card</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
- <link href="bootstrap.min.css" rel="stylesheet" />
- </head>
- <body>
- <!--<script src="js/jquery-2.0.3.min.js"></script>-->
- <!--<script src="js/bootstrap.min.js"></script>-->
- <div class="container">
- <h1>GNU Name System Business Card</h1>
- <p>
- Please fill in the information below to generate your business card.
- </p>
- <form class="form-horizontal" name="gnsinput" action="submit.pdf" method="get" accept-charset="utf-8">
- <xsl:apply-templates />
- <div class="form-group">
- <div class="col-sm-offset-2 col-sm-10">
- <input class="btn btn-submit" type="submit" />
- </div>
- </div>
- </form>
- </div>
- </body>
- </html>
- </xsl:template>
-
- <xsl:template match="group">
- <fieldset>
- <legend><!--<xsl:value-of select="@title" />--></legend>
- <xsl:apply-templates />
- </fieldset>
- </xsl:template>
-
- <xsl:template match="field">
- <div class="form-group">
- <label class="col-sm-2 control-label" for="{@id}"><xsl:value-of select="." />:</label>
- <div class="col-sm-10">
- <input class="col-sm-10 form-control" id="{@id}" name="{@id}" type="text" />
- </div>
- </div>
- </xsl:template>
-
-</xsl:transform>
--- /dev/null
+/*!
+ * Bootstrap v3.0.3 (http://getbootstrap.com)
+ * Copyright 2013 Twitter, Inc.
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0
+ */
+
+/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#8a6d3b}.text-warning:hover{color:#66512c}.text-danger{color:#a94442}.text-danger:hover{color:#843534}.text-success{color:#3c763d}.text-success:hover{color:#2b542c}.text-info{color:#31708f}.text-info:hover{color:#245269}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small,blockquote .small{display:block;line-height:1.428571429;color:#999}blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>.active,.table>tbody>tr>.active,.table>tfoot>tr>.active,.table>thead>.active>td,.table>tbody>.active>td,.table>tfoot>.active>td,.table>thead>.active>th,.table>tbody>.active>th,.table>tfoot>.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>.active:hover,.table-hover>tbody>.active:hover>td,.table-hover>tbody>.active:hover>th{background-color:#e8e8e8}.table>thead>tr>.success,.table>tbody>tr>.success,.table>tfoot>tr>.success,.table>thead>.success>td,.table>tbody>.success>td,.table>tfoot>.success>td,.table>thead>.success>th,.table>tbody>.success>th,.table>tfoot>.success>th{background-color:#dff0d8}.table-hover>tbody>tr>.success:hover,.table-hover>tbody>.success:hover>td,.table-hover>tbody>.success:hover>th{background-color:#d0e9c6}.table>thead>tr>.danger,.table>tbody>tr>.danger,.table>tfoot>tr>.danger,.table>thead>.danger>td,.table>tbody>.danger>td,.table>tfoot>.danger>td,.table>thead>.danger>th,.table>tbody>.danger>th,.table>tfoot>.danger>th{background-color:#f2dede}.table-hover>tbody>tr>.danger:hover,.table-hover>tbody>.danger:hover>td,.table-hover>tbody>.danger:hover>th{background-color:#ebcccc}.table>thead>tr>.warning,.table>tbody>tr>.warning,.table>tfoot>tr>.warning,.table>thead>.warning>td,.table>tbody>.warning>td,.table>tfoot>.warning>td,.table>thead>.warning>th,.table>tbody>.warning>th,.table>tfoot>.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>.warning:hover,.table-hover>tbody>.warning:hover>td,.table-hover>tbody>.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline select.form-control{width:auto}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#fff}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form select.form-control{width:auto}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child th,.panel>.table>tbody:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;outline:0;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
\ No newline at end of file
--- /dev/null
+\def\prefix{}
+\def\name{Sree Harsha Totakura}
+\def\suffix{M.Sc.}
+\def\phone{+49-89-289-18011}
+\def\fax{+49-89-289-18033}
+\def\email{sreeharsha@totakura.in}
+\def\homepage{http://sreeharsha.totakura.in/}
+\def\orga{Technische Universit\"at M\"unchen}
+\def\departmentde{Department of Computer Science}
+\def\departmenten{Department of Computer Science}
+\def\subdepartmentde{Network Architectures and Services}
+\def\subdepartmenten{Network Architectures and Services}
+\def\jobtitlegerman{Free Secure Network Systems Group}
+\def\jobtitleenglish{Free Secure Network Systems Group}
+\def\gpglineone{8E68 1D8A 25AB B102 AFB5}
+\def\gpglinetwo{4B40 3B6F 8AF1 43C2 1F3B}
+\def\gns{LOC36VTJD3IRULMM6C20TGE6D3SVEAJOHI9KRI5KAQVQ87UJGPJG/totakura}
+
--- /dev/null
+<!DOCTYPE html>
+<html>
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <title>Create your GNU Name System Business Card</title>
+ <meta name="viewport" content=
+ "width=device-width, initial-scale=1.0, maximum-scale=1.0">
+ <!-- link href="bootstrap.min.css" rel="stylesheet" type="text/css" -->
+ <style>
+/*!
+ * Bootstrap v3.0.3 (http://getbootstrap.com)
+ * Copyright 2013 Twitter, Inc.
+ * Licensed under http://www.apache.org/licenses/LICENSE-2.0
+ */
+
+/*! normalize.css v2.1.3 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{margin:.67em 0;font-size:2em}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{height:0;-moz-box-sizing:content-box;box-sizing:content-box}mark{color:#000;background:#ff0}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}button,input,select,textarea{margin:0;font-family:inherit;font-size:100%}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{padding:0;box-sizing:border-box}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}@media print{*{color:#000!important;text-shadow:none!important;background:transparent!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}@page{margin:2cm .5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff!important}.navbar{display:none}.table td,.table th{background-color:#fff!important}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.428571429;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}img{vertical-align:middle}.img-responsive{display:block;height:auto;max-width:100%}.img-rounded{border-radius:6px}.img-thumbnail{display:inline-block;height:auto;max-width:100%;padding:4px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#999}h1,h2,h3{margin-top:20px;margin-bottom:10px}h1 small,h2 small,h3 small,h1 .small,h2 .small,h3 .small{font-size:65%}h4,h5,h6{margin-top:10px;margin-bottom:10px}h4 small,h5 small,h6 small,h4 .small,h5 .small,h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}cite{font-style:normal}.text-muted{color:#999}.text-primary{color:#428bca}.text-primary:hover{color:#3071a9}.text-warning{color:#8a6d3b}.text-warning:hover{color:#66512c}.text-danger{color:#a94442}.text-danger:hover{color:#843534}.text-success{color:#3c763d}.text-success:hover{color:#2b542c}.text-info{color:#31708f}.text-info:hover{color:#245269}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}.list-inline>li:first-child{padding-left:0}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.428571429}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}.dl-horizontal dd:before,.dl-horizontal dd:after{display:table;content:" "}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;border-left:5px solid #eee}blockquote p{font-size:17.5px;font-weight:300;line-height:1.25}blockquote p:last-child{margin-bottom:0}blockquote small,blockquote .small{display:block;line-height:1.428571429;color:#999}blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}blockquote.pull-right{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0}blockquote.pull-right p,blockquote.pull-right small,blockquote.pull-right .small{text-align:right}blockquote.pull-right small:before,blockquote.pull-right .small:before{content:''}blockquote.pull-right small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.428571429}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;white-space:nowrap;background-color:#f9f2f4;border-radius:4px}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.428571429;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}.container:before,.container:after{display:table;content:" "}.container:after{clear:both}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.row{margin-right:-15px;margin-left:-15px}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.row:before,.row:after{display:table;content:" "}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666666666666%}.col-xs-10{width:83.33333333333334%}.col-xs-9{width:75%}.col-xs-8{width:66.66666666666666%}.col-xs-7{width:58.333333333333336%}.col-xs-6{width:50%}.col-xs-5{width:41.66666666666667%}.col-xs-4{width:33.33333333333333%}.col-xs-3{width:25%}.col-xs-2{width:16.666666666666664%}.col-xs-1{width:8.333333333333332%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666666666666%}.col-xs-pull-10{right:83.33333333333334%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666666666666%}.col-xs-pull-7{right:58.333333333333336%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666666666667%}.col-xs-pull-4{right:33.33333333333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.666666666666664%}.col-xs-pull-1{right:8.333333333333332%}.col-xs-pull-0{right:0}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666666666666%}.col-xs-push-10{left:83.33333333333334%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666666666666%}.col-xs-push-7{left:58.333333333333336%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666666666667%}.col-xs-push-4{left:33.33333333333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.666666666666664%}.col-xs-push-1{left:8.333333333333332%}.col-xs-push-0{left:0}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666666666666%}.col-xs-offset-10{margin-left:83.33333333333334%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666666666666%}.col-xs-offset-7{margin-left:58.333333333333336%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666666666667%}.col-xs-offset-4{margin-left:33.33333333333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.666666666666664%}.col-xs-offset-1{margin-left:8.333333333333332%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666666666666%}.col-sm-10{width:83.33333333333334%}.col-sm-9{width:75%}.col-sm-8{width:66.66666666666666%}.col-sm-7{width:58.333333333333336%}.col-sm-6{width:50%}.col-sm-5{width:41.66666666666667%}.col-sm-4{width:33.33333333333333%}.col-sm-3{width:25%}.col-sm-2{width:16.666666666666664%}.col-sm-1{width:8.333333333333332%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666666666666%}.col-sm-pull-10{right:83.33333333333334%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666666666666%}.col-sm-pull-7{right:58.333333333333336%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666666666667%}.col-sm-pull-4{right:33.33333333333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.666666666666664%}.col-sm-pull-1{right:8.333333333333332%}.col-sm-pull-0{right:0}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666666666666%}.col-sm-push-10{left:83.33333333333334%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666666666666%}.col-sm-push-7{left:58.333333333333336%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666666666667%}.col-sm-push-4{left:33.33333333333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.666666666666664%}.col-sm-push-1{left:8.333333333333332%}.col-sm-push-0{left:0}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666666666666%}.col-sm-offset-10{margin-left:83.33333333333334%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666666666666%}.col-sm-offset-7{margin-left:58.333333333333336%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666666666667%}.col-sm-offset-4{margin-left:33.33333333333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.666666666666664%}.col-sm-offset-1{margin-left:8.333333333333332%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666666666666%}.col-md-10{width:83.33333333333334%}.col-md-9{width:75%}.col-md-8{width:66.66666666666666%}.col-md-7{width:58.333333333333336%}.col-md-6{width:50%}.col-md-5{width:41.66666666666667%}.col-md-4{width:33.33333333333333%}.col-md-3{width:25%}.col-md-2{width:16.666666666666664%}.col-md-1{width:8.333333333333332%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666666666666%}.col-md-pull-10{right:83.33333333333334%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666666666666%}.col-md-pull-7{right:58.333333333333336%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666666666667%}.col-md-pull-4{right:33.33333333333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.666666666666664%}.col-md-pull-1{right:8.333333333333332%}.col-md-pull-0{right:0}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666666666666%}.col-md-push-10{left:83.33333333333334%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666666666666%}.col-md-push-7{left:58.333333333333336%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666666666667%}.col-md-push-4{left:33.33333333333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.666666666666664%}.col-md-push-1{left:8.333333333333332%}.col-md-push-0{left:0}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666666666666%}.col-md-offset-10{margin-left:83.33333333333334%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666666666666%}.col-md-offset-7{margin-left:58.333333333333336%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666666666667%}.col-md-offset-4{margin-left:33.33333333333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.666666666666664%}.col-md-offset-1{margin-left:8.333333333333332%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666666666666%}.col-lg-10{width:83.33333333333334%}.col-lg-9{width:75%}.col-lg-8{width:66.66666666666666%}.col-lg-7{width:58.333333333333336%}.col-lg-6{width:50%}.col-lg-5{width:41.66666666666667%}.col-lg-4{width:33.33333333333333%}.col-lg-3{width:25%}.col-lg-2{width:16.666666666666664%}.col-lg-1{width:8.333333333333332%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666666666666%}.col-lg-pull-10{right:83.33333333333334%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666666666666%}.col-lg-pull-7{right:58.333333333333336%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666666666667%}.col-lg-pull-4{right:33.33333333333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.666666666666664%}.col-lg-pull-1{right:8.333333333333332%}.col-lg-pull-0{right:0}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666666666666%}.col-lg-push-10{left:83.33333333333334%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666666666666%}.col-lg-push-7{left:58.333333333333336%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666666666667%}.col-lg-push-4{left:33.33333333333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.666666666666664%}.col-lg-push-1{left:8.333333333333332%}.col-lg-push-0{left:0}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666666666666%}.col-lg-offset-10{margin-left:83.33333333333334%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666666666666%}.col-lg-offset-7{margin-left:58.333333333333336%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666666666667%}.col-lg-offset-4{margin-left:33.33333333333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.666666666666664%}.col-lg-offset-1{margin-left:8.333333333333332%}.col-lg-offset-0{margin-left:0}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.428571429;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{display:table-cell;float:none}.table>thead>tr>.active,.table>tbody>tr>.active,.table>tfoot>tr>.active,.table>thead>.active>td,.table>tbody>.active>td,.table>tfoot>.active>td,.table>thead>.active>th,.table>tbody>.active>th,.table>tfoot>.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>.active:hover,.table-hover>tbody>.active:hover>td,.table-hover>tbody>.active:hover>th{background-color:#e8e8e8}.table>thead>tr>.success,.table>tbody>tr>.success,.table>tfoot>tr>.success,.table>thead>.success>td,.table>tbody>.success>td,.table>tfoot>.success>td,.table>thead>.success>th,.table>tbody>.success>th,.table>tfoot>.success>th{background-color:#dff0d8}.table-hover>tbody>tr>.success:hover,.table-hover>tbody>.success:hover>td,.table-hover>tbody>.success:hover>th{background-color:#d0e9c6}.table>thead>tr>.danger,.table>tbody>tr>.danger,.table>tfoot>tr>.danger,.table>thead>.danger>td,.table>tbody>.danger>td,.table>tfoot>.danger>td,.table>thead>.danger>th,.table>tbody>.danger>th,.table>tfoot>.danger>th{background-color:#f2dede}.table-hover>tbody>tr>.danger:hover,.table-hover>tbody>.danger:hover>td,.table-hover>tbody>.danger:hover>th{background-color:#ebcccc}.table>thead>tr>.warning,.table>tbody>tr>.warning,.table>tfoot>tr>.warning,.table>thead>.warning>td,.table>tbody>.warning>td,.table>tfoot>.warning>td,.table>thead>.warning>th,.table>tbody>.warning>th,.table>tfoot>.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>.warning:hover,.table-hover>tbody>.warning:hover>td,.table-hover>tbody>.warning:hover>th{background-color:#faf2cc}@media(max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-x:scroll;overflow-y:hidden;border:1px solid #ddd;-ms-overflow-style:-ms-autohiding-scrollbar;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}select[multiple],select[size]{height:auto}select optgroup{font-family:inherit;font-size:inherit;font-style:inherit}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}input[type="number"]::-webkit-outer-spin-button,input[type="number"]::-webkit-inner-spin-button{height:auto}output{display:block;padding-top:7px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.428571429;color:#555;vertical-align:middle;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control:-moz-placeholder{color:#999}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee}textarea.form-control{height:auto}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;padding-left:20px;margin-top:10px;margin-bottom:10px;vertical-align:middle}.radio label,.checkbox label{display:inline;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],.radio[disabled],.radio-inline[disabled],.checkbox[disabled],.checkbox-inline[disabled],fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"],fieldset[disabled] .radio,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm{height:auto}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg{height:auto}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block}.form-inline select.form-control{width:auto}.form-inline .radio,.form-inline .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:none;margin-left:0}}.form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-group:before,.form-horizontal .form-group:after{display:table;content:" "}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media(min-width:768px){.form-horizontal .control-label{text-align:right}}.btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.428571429;text-align:center;white-space:nowrap;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;-o-user-select:none;user-select:none}.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus{color:#333;text-decoration:none}.btn:active,.btn.active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{pointer-events:none;cursor:not-allowed;opacity:.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active,.open .dropdown-toggle.btn-default{background-image:none}.btn-default.disabled,.btn-default[disabled],fieldset[disabled] .btn-default,.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled:active,.btn-default[disabled]:active,fieldset[disabled] .btn-default:active,.btn-default.disabled.active,.btn-default[disabled].active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#fff}.btn-primary{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,.btn-primary.active,.open .dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled,.btn-primary[disabled],fieldset[disabled] .btn-primary,.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled:active,.btn-primary[disabled]:active,fieldset[disabled] .btn-primary:active,.btn-primary.disabled.active,.btn-primary[disabled].active,fieldset[disabled] .btn-primary.active{background-color:#428bca;border-color:#357ebd}.btn-primary .badge{color:#428bca;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open .dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled,.btn-warning[disabled],fieldset[disabled] .btn-warning,.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled:active,.btn-warning[disabled]:active,fieldset[disabled] .btn-warning:active,.btn-warning.disabled.active,.btn-warning[disabled].active,fieldset[disabled] .btn-warning.active{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open .dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled,.btn-danger[disabled],fieldset[disabled] .btn-danger,.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled:active,.btn-danger[disabled]:active,fieldset[disabled] .btn-danger:active,.btn-danger.disabled.active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.btn-success.active,.open .dropdown-toggle.btn-success{background-image:none}.btn-success.disabled,.btn-success[disabled],fieldset[disabled] .btn-success,.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled:active,.btn-success[disabled]:active,fieldset[disabled] .btn-success:active,.btn-success.disabled.active,.btn-success[disabled].active,fieldset[disabled] .btn-success.active{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active,.open .dropdown-toggle.btn-info{background-image:none}.btn-info.disabled,.btn-info[disabled],fieldset[disabled] .btn-info,.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled:active,.btn-info[disabled]:active,fieldset[disabled] .btn-info:active,.btn-info.disabled.active,.btn-info[disabled].active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-link{font-weight:normal;color:#428bca;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%;padding-right:0;padding-left:0}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height .35s ease;transition:height .35s ease}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';-webkit-font-smoothing:antialiased;font-style:normal;font-weight:normal;line-height:1;-moz-osx-font-smoothing:grayscale}.glyphicon:empty{width:1em}.glyphicon-asterisk:before{content:"\2a"}.glyphicon-plus:before{content:"\2b"}.glyphicon-euro:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;list-style:none;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.428571429;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#428bca;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.428571429;color:#999}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group>.btn:focus,.btn-group-vertical>.btn:focus{outline:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar:before,.btn-toolbar:after{display:table;content:" "}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group{float:left}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group,.btn-toolbar>.btn-group+.btn-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{display:table;content:" "}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child){border-top-right-radius:0;border-bottom-left-radius:4px;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child>.btn:last-child,.btn-group-vertical>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child>.btn:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;border-collapse:separate;table-layout:fixed}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{width:100%;margin-bottom:0}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;white-space:nowrap}.input-group-btn:first-child>.btn{margin-right:-1px}.input-group-btn:last-child>.btn{margin-left:-1px}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-4px}.input-group-btn>.btn:hover,.input-group-btn>.btn:active{z-index:2}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav:before,.nav:after{display:table;content:" "}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.428571429;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-right-radius:0;border-top-left-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}.navbar:before,.navbar:after{display:table;content:" "}.navbar:after{clear:both}@media(min-width:768px){.navbar{border-radius:4px}}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}.navbar-header:before,.navbar-header:after{display:table;content:" "}.navbar-header:after{clear:both}@media(min-width:768px){.navbar-header{float:left}}.navbar-collapse{max-height:340px;padding-right:15px;padding-left:15px;overflow-x:visible;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse:before,.navbar-collapse:after{display:table;content:" "}.navbar-collapse:after{clear:both}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.container>.navbar-header,.container>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}@media(min-width:768px){.navbar>.container .navbar-brand{margin-left:-15px}}.navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.navbar-nav.navbar-right:last-child{margin-right:-15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important}}.navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}@media(min-width:768px){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block}.navbar-form select.form-control{width:auto}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;padding-left:0;margin-top:0;margin-bottom:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}}@media(min-width:768px){.navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-form.navbar-right:last-child{margin-right:-15px}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.navbar-nav.pull-right>li>.dropdown-menu,.navbar-nav>li>.dropdown-menu.pull-right{right:0;left:auto}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}.navbar-text.navbar-right:last-child{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#ccc}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#999}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#999}.navbar-inverse .navbar-nav>li>a{color:#999}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#999}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#999}.navbar-inverse .navbar-link:hover{color:#fff}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#999}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.428571429;text-decoration:none;background-color:#fff;border:1px solid #ddd}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-bottom-left-radius:4px;border-top-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{background-color:#eee}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:2;color:#fff;cursor:default;background-color:#428bca;border-color:#428bca}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#999;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-bottom-left-radius:6px;border-top-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-bottom-left-radius:3px;border-top-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager:before,.pager:after{display:table;content:" "}.pager:after{clear:both}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#999;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}.label[href]:hover,.label[href]:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#999}.label-default[href]:hover,.label-default[href]:focus{background-color:#808080}.label-primary{background-color:#428bca}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#3071a9}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;background-color:#999;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}a.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#428bca;background-color:#fff}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding:30px;margin-bottom:30px;font-size:21px;font-weight:200;line-height:2.1428571435;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{line-height:1;color:inherit}.jumbotron p{line-height:1.4}.container .jumbotron{border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.428571429;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;height:auto;max-width:100%;margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width .6s ease;transition:width .6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,0.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,0.15) 50%,rgba(255,255,255,0.15) 75%,transparent 75%,transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left{margin-right:10px}.media>.pull-right{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel-body:before,.panel-body:after{display:table;content:" "}.panel-body:after{clear:both}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0}.panel>.list-group .list-group-item:first-child{border-top-right-radius:0;border-top-left-radius:0}.panel>.list-group .list-group-item:last-child{border-bottom:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child th,.panel>.table>tbody:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:last-child>th,.panel>.table-responsive>.table-bordered>thead>tr:last-child>th,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th,.panel>.table-bordered>thead>tr:last-child>td,.panel>.table-responsive>.table-bordered>thead>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-group .panel{margin-bottom:0;overflow:hidden;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;display:none;overflow:auto;overflow-y:scroll}.modal.fade .modal-dialog{-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);transform:translate(0,-25%);-webkit-transition:-webkit-transform .3s ease-out;-moz-transition:-moz-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0)}.modal-dialog{position:relative;z-index:1050;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1030;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:.5;filter:alpha(opacity=50)}.modal-header{min-height:16.428571429px;padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.428571429}.modal-body{position:relative;padding:20px}.modal-footer{padding:19px 20px 20px;margin-top:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer:before,.modal-footer:after{display:table;content:" "}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}@media screen and (min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}}.tooltip{position:absolute;z-index:1030;display:block;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0);visibility:visible}.tooltip.in{opacity:.9;filter:alpha(opacity=90)}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-top-color:#000;border-width:5px 5px 0}.tooltip.top-right .tooltip-arrow{right:5px;bottom:0;border-top-color:#000;border-width:5px 5px 0}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-right-color:#000;border-width:5px 5px 5px 0}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-left-color:#000;border-width:5px 0 5px 5px}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-bottom-color:#000;border-width:0 5px 5px}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-bottom-color:#000;border-width:0 5px 5px}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;white-space:normal;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);background-clip:padding-box}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover .arrow,.popover .arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover .arrow{border-width:11px}.popover .arrow:after{border-width:10px;content:""}.popover.top .arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,0.25);border-bottom-width:0}.popover.top .arrow:after{bottom:1px;margin-left:-10px;border-top-color:#fff;border-bottom-width:0;content:" "}.popover.right .arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,0.25);border-left-width:0}.popover.right .arrow:after{bottom:-10px;left:1px;border-right-color:#fff;border-left-width:0;content:" "}.popover.bottom .arrow{top:-11px;left:50%;margin-left:-11px;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,0.25);border-top-width:0}.popover.bottom .arrow:after{top:1px;margin-left:-10px;border-bottom-color:#fff;border-top-width:0;content:" "}.popover.left .arrow{top:50%;right:-11px;margin-top:-11px;border-left-color:#999;border-left-color:rgba(0,0,0,0.25);border-right-width:0}.popover.left .arrow:after{right:1px;bottom:-10px;border-left-color:#fff;border-right-width:0;content:" "}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;height:auto;max-width:100%;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6);opacity:.5;filter:alpha(opacity=50)}.carousel-control.left{background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.5) 0),color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.5) 0,rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1)}.carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,color-stop(rgba(0,0,0,0.0001) 0),color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right,rgba(0,0,0,0.0001) 0,rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1)}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;outline:0;opacity:.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicons-chevron-left,.carousel-control .glyphicons-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after{display:table;content:" "}.clearfix:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important;visibility:hidden!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,tr.visible-xs,th.visible-xs,td.visible-xs{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-xs.visible-sm{display:block!important}table.visible-xs.visible-sm{display:table}tr.visible-xs.visible-sm{display:table-row!important}th.visible-xs.visible-sm,td.visible-xs.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-xs.visible-md{display:block!important}table.visible-xs.visible-md{display:table}tr.visible-xs.visible-md{display:table-row!important}th.visible-xs.visible-md,td.visible-xs.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-xs.visible-lg{display:block!important}table.visible-xs.visible-lg{display:table}tr.visible-xs.visible-lg{display:table-row!important}th.visible-xs.visible-lg,td.visible-xs.visible-lg{display:table-cell!important}}.visible-sm,tr.visible-sm,th.visible-sm,td.visible-sm{display:none!important}@media(max-width:767px){.visible-sm.visible-xs{display:block!important}table.visible-sm.visible-xs{display:table}tr.visible-sm.visible-xs{display:table-row!important}th.visible-sm.visible-xs,td.visible-sm.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-sm.visible-md{display:block!important}table.visible-sm.visible-md{display:table}tr.visible-sm.visible-md{display:table-row!important}th.visible-sm.visible-md,td.visible-sm.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-sm.visible-lg{display:block!important}table.visible-sm.visible-lg{display:table}tr.visible-sm.visible-lg{display:table-row!important}th.visible-sm.visible-lg,td.visible-sm.visible-lg{display:table-cell!important}}.visible-md,tr.visible-md,th.visible-md,td.visible-md{display:none!important}@media(max-width:767px){.visible-md.visible-xs{display:block!important}table.visible-md.visible-xs{display:table}tr.visible-md.visible-xs{display:table-row!important}th.visible-md.visible-xs,td.visible-md.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-md.visible-sm{display:block!important}table.visible-md.visible-sm{display:table}tr.visible-md.visible-sm{display:table-row!important}th.visible-md.visible-sm,td.visible-md.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-md.visible-lg{display:block!important}table.visible-md.visible-lg{display:table}tr.visible-md.visible-lg{display:table-row!important}th.visible-md.visible-lg,td.visible-md.visible-lg{display:table-cell!important}}.visible-lg,tr.visible-lg,th.visible-lg,td.visible-lg{display:none!important}@media(max-width:767px){.visible-lg.visible-xs{display:block!important}table.visible-lg.visible-xs{display:table}tr.visible-lg.visible-xs{display:table-row!important}th.visible-lg.visible-xs,td.visible-lg.visible-xs{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-lg.visible-sm{display:block!important}table.visible-lg.visible-sm{display:table}tr.visible-lg.visible-sm{display:table-row!important}th.visible-lg.visible-sm,td.visible-lg.visible-sm{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-lg.visible-md{display:block!important}table.visible-lg.visible-md{display:table}tr.visible-lg.visible-md{display:table-row!important}th.visible-lg.visible-md,td.visible-lg.visible-md{display:table-cell!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}.hidden-xs{display:block!important}table.hidden-xs{display:table}tr.hidden-xs{display:table-row!important}th.hidden-xs,td.hidden-xs{display:table-cell!important}@media(max-width:767px){.hidden-xs,tr.hidden-xs,th.hidden-xs,td.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-xs.hidden-sm,tr.hidden-xs.hidden-sm,th.hidden-xs.hidden-sm,td.hidden-xs.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-xs.hidden-md,tr.hidden-xs.hidden-md,th.hidden-xs.hidden-md,td.hidden-xs.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-xs.hidden-lg,tr.hidden-xs.hidden-lg,th.hidden-xs.hidden-lg,td.hidden-xs.hidden-lg{display:none!important}}.hidden-sm{display:block!important}table.hidden-sm{display:table}tr.hidden-sm{display:table-row!important}th.hidden-sm,td.hidden-sm{display:table-cell!important}@media(max-width:767px){.hidden-sm.hidden-xs,tr.hidden-sm.hidden-xs,th.hidden-sm.hidden-xs,td.hidden-sm.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm,tr.hidden-sm,th.hidden-sm,td.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-sm.hidden-md,tr.hidden-sm.hidden-md,th.hidden-sm.hidden-md,td.hidden-sm.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-sm.hidden-lg,tr.hidden-sm.hidden-lg,th.hidden-sm.hidden-lg,td.hidden-sm.hidden-lg{display:none!important}}.hidden-md{display:block!important}table.hidden-md{display:table}tr.hidden-md{display:table-row!important}th.hidden-md,td.hidden-md{display:table-cell!important}@media(max-width:767px){.hidden-md.hidden-xs,tr.hidden-md.hidden-xs,th.hidden-md.hidden-xs,td.hidden-md.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-md.hidden-sm,tr.hidden-md.hidden-sm,th.hidden-md.hidden-sm,td.hidden-md.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md,tr.hidden-md,th.hidden-md,td.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-md.hidden-lg,tr.hidden-md.hidden-lg,th.hidden-md.hidden-lg,td.hidden-md.hidden-lg{display:none!important}}.hidden-lg{display:block!important}table.hidden-lg{display:table}tr.hidden-lg{display:table-row!important}th.hidden-lg,td.hidden-lg{display:table-cell!important}@media(max-width:767px){.hidden-lg.hidden-xs,tr.hidden-lg.hidden-xs,th.hidden-lg.hidden-xs,td.hidden-lg.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-lg.hidden-sm,tr.hidden-lg.hidden-sm,th.hidden-lg.hidden-sm,td.hidden-lg.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-lg.hidden-md,tr.hidden-lg.hidden-md,th.hidden-lg.hidden-md,td.hidden-lg.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg,tr.hidden-lg,th.hidden-lg,td.hidden-lg{display:none!important}}.visible-print,tr.visible-print,th.visible-print,td.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}.hidden-print,tr.hidden-print,th.hidden-print,td.hidden-print{display:none!important}}
+ </style>
+ </head>
+
+ <body>
+ <div class="container">
+ <h1>GNU Name System Business Card</h1>
+
+ <p>Please fill in the information below to generate your business
+ card.</p>
+
+ <form class="form-horizontal" name="gnsinput" action="submit.pdf" method=
+ "get" accept-charset="utf-8" id="gnsinput">
+ <fieldset>
+ <legend></legend>
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="prefix">Academic Title
+ (prefix):</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="prefix" name="prefix"
+ type="text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="name">Name:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="name" name="name" type=
+ "text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="suffix">Academic Title
+ (suffix):</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="suffix" name="suffix"
+ type="text">
+ </div>
+ </div>
+ </fieldset>
+
+ <fieldset>
+ <legend></legend>
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="phone">Phone:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="phone" name="phone"
+ type="text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="fax">Fax:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="fax" name="fax" type=
+ "text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="email">E-mail:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="email" name="email"
+ type="text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for=
+ "homepage">Homepage:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="homepage" name=
+ "homepage" type="text">
+ </div>
+ </div>
+ </fieldset>
+
+ <fieldset>
+ <legend></legend>
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for=
+ "orga">Organization:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="orga" name="orga" type=
+ "text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for=
+ "departmenti18n">Department:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="departmenti18n" name=
+ "departmenti18n" type="text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for=
+ "subdepartmenti18n">Division:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="subdepartmenti18n" name=
+ "subdepartmenti18n" type="text">
+ </div>
+ </div>
+ </fieldset>
+
+ <fieldset>
+ <legend></legend>
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for=
+ "jobtitlei18n">Jobtitle:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="jobtitlei18n" name=
+ "jobtitlei18n" type="text">
+ </div>
+ </div>
+ </fieldset>
+
+ <fieldset>
+ <legend></legend>
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="gpgfingerprint">GPG
+ Fingerprint:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="gpgfingerprint" name=
+ "gpgfingerprint" type="text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="gnskey">GNS Public
+ Key:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="gnskey" name="gnskey"
+ type="text">
+ </div>
+ </div>
+
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="gnsnick">GNS
+ Nickname:</label>
+
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="gnsnick" name="gnsnick"
+ type="text">
+ </div>
+ </div>
+ </fieldset>
+
+ <div class="form-group">
+ <div class="col-sm-offset-2 col-sm-10">
+ <input class="btn btn-submit" type="submit">
+ </div>
+ </div>
+ </form>
+ </div>
+ </body>
+</html>
--- /dev/null
+\documentclass[14pt,a4paper,oneside,ngerman]{scrartcl}
+
+\usepackage{geometry}
+%\geometry{paperwidth=95mm, paperheight=65mm,left=0mm,right=0mm, top=0mm, bottom=0mm}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+\usepackage{graphicx}
+\usepackage{units}
+\usepackage{tikz}
+\usepackage{url}
+\usepackage[newdimens]{labels}
+\usepackage{pspicture}
+\usepackage{pst-barcode}
+\usepackage{auto-pst-pdf}
+\usetikzlibrary{positioning,shapes,shadows,arrows}
+
+
+\LabelCols=2%
+\LabelRows=5%
+\LeftPageMargin=17.0mm%
+\RightPageMargin=17.0mm%
+\TopPageMargin=10.0mm%
+\BottomPageMargin=10.0mm%
+\InterLabelColumn=3.5mm%
+\InterLabelRow=3.0mm%
+\LeftLabelBorder=2mm%
+\RightLabelBorder=2mm%
+\TopLabelBorder=2mm%
+\BottomLabelBorder=2mm%
+\numberoflabels=10%
+\LabelGridfalse% <-- or \LabelGridfalse
+
+
+
+\renewcommand{\rmdefault}{phv}
+\renewcommand{\seriesdefault}{m}
+\renewcommand{\shapedefault}{n}
+
+\definecolor{MyBlack}{cmyk}{0,0,0,1}
+\input{def.tex}
+
+\setlength\parindent{0pt}
+\newlength{\width}
+\newlength{\height}
+\setlength{\width}{85mm}
+\setlength{\height}{50mm}
+
+\newcommand{\logo}{
+%LaTeX with PSTricks extensions
+%%Creator: inkscape 0.48.4
+%%Please note this file requires PSTricks extensions
+\psset{xunit=.1pt,yunit=.1pt,runit=.1pt}
+\begin{pspicture}(744.09448242,1052.36218262)
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.57414055,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,1179.80841262)
+\lineto(-381.25674,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-282.64454,1133.40272062)
+\lineto(-381.25674,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-242.03964,1034.79060862)
+\lineto(-381.25674,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-281.67794,935.21172262)
+\lineto(-381.25674,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-382.22354,1034.79060862)
+\lineto(-521.44064,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-479.86894,936.17850262)
+\lineto(-381.25674,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-479.86894,1134.36951062)
+\lineto(-381.25674,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,1034.79060862)
+\lineto(-381.25674,888.80601262)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.57414055,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.35404,1179.66521262)
+\curveto(-352.25324,1156.60557262)(-317.44894,1142.47793062)(-282.64454,1133.40272062)
+\curveto(-273.72464,1095.34014862)(-259.44184,1067.08441862)(-242.03964,1034.79060862)
+\curveto(-265.24254,1003.07363862)(-276.84404,970.98276862)(-282.64454,936.17850262)
+\curveto(-323.24954,930.37778262)(-352.25324,912.97565262)(-381.25674,889.77279262)
+\curveto(-410.26034,918.77635262)(-433.46314,930.37778262)(-479.86894,936.17850262)
+\curveto(-482.44324,970.98276862)(-494.24764,1002.49677862)(-520.47384,1034.79060862)
+\curveto(-494.96354,1078.62190862)(-488.55394,1089.91334862)(-479.86894,1133.40272062)
+\curveto(-439.26394,1147.09291062)(-410.26034,1156.60557262)(-381.35404,1179.66521262)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.29664,1144.91591062)
+\curveto(-358.05394,1127.60200862)(-332.72784,1116.00057862)(-305.84754,1110.19985862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.00044,1112.41446862)
+\curveto(-363.85464,1098.59843862)(-346.45254,1090.27762862)(-329.05034,1086.99701862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-352.25324,1063.79416862)
+\lineto(-381.25674,1081.19630862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,1144.91591062)
+\curveto(-404.45964,1127.60200862)(-430.40244,1118.91690862)(-456.70584,1110.19985862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.55294,1112.41446862)
+\curveto(-395.40834,1101.05761862)(-413.30194,1092.79772862)(-433.50304,1086.99701862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-410.42664,1063.77335862)
+\lineto(-381.29664,1081.19630862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,924.57707262)
+\curveto(-358.05394,945.40846262)(-332.71464,956.43303862)(-305.84754,959.38134862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,959.38134862)
+\curveto(-363.85464,973.46123862)(-352.25324,980.27668862)(-329.05034,982.58418862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-352.25324,1005.78704862)
+\lineto(-381.25674,988.38490862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,924.57707262)
+\curveto(-410.26034,950.02348262)(-419.41524,953.58061862)(-456.66604,959.38134862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.25674,959.38134862)
+\curveto(-395.77454,976.78347862)(-413.75354,982.58418862)(-433.46314,982.58418862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-410.26034,1005.78704862)
+\lineto(-381.25674,988.38490862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-456.66604,959.38134862)
+\curveto(-462.46674,990.86337862)(-471.79264,1011.58774862)(-491.47034,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.46314,982.58418862)
+\curveto(-436.00564,1003.44757862)(-445.06464,1017.38846862)(-456.66604,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-427.66244,1034.79060862)
+\lineto(-410.26034,1005.78704862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-305.84754,959.38134862)
+\curveto(-300.04684,988.38490862)(-288.44534,1011.58774862)(-271.04324,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.05034,982.58418862)
+\curveto(-323.24954,1005.78704862)(-317.44894,1017.38846862)(-305.84754,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.85114,1034.79060862)
+\curveto(-342.95924,1026.27648862)(-348.76004,1017.38846862)(-352.25324,1005.78704862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-305.84754,1110.19985862)
+\curveto(-296.72764,1075.39557862)(-286.23964,1057.99345812)(-271.04324,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.05034,1086.99701862)
+\curveto(-325.35424,1067.28736862)(-317.44894,1052.19274815)(-305.84754,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.85114,1034.79060862)
+\lineto(-352.25324,1063.79416862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-456.66604,1110.19985862)
+\curveto(-462.46674,1083.90969862)(-474.06814,1057.99345812)(-491.47034,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.46314,1086.99701862)
+\curveto(-439.26394,1069.59487862)(-445.06464,1052.19274815)(-456.66604,1034.79060862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=6.66012001,linecolor=curcolor]
+{
+\newpath
+\moveto(-427.66244,1034.79060862)
+\lineto(-410.26034,1063.79416862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.86714172,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,1180.91840262)
+\lineto(-384.86194,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-286.24984,1134.51270062)
+\lineto(-384.86194,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-245.64484,1035.90058862)
+\lineto(-384.86194,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-285.28304,936.32170262)
+\lineto(-384.86194,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-385.82874,1035.90058862)
+\lineto(-525.04584,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-483.47404,937.28848262)
+\lineto(-384.86194,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-483.47404,1135.47950062)
+\lineto(-384.86194,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,1035.90058862)
+\lineto(-384.86194,889.91599262)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.86714172,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.95924,1180.77520262)
+\curveto(-355.85834,1157.71555262)(-321.05404,1143.58791062)(-286.24984,1134.51270062)
+\curveto(-277.32984,1096.45013862)(-263.04704,1068.19441862)(-245.64484,1035.90058862)
+\curveto(-268.84764,1004.18361862)(-280.44904,972.09274862)(-286.24984,937.28848262)
+\curveto(-326.85484,931.48776262)(-355.85834,914.08563262)(-384.86194,890.88278262)
+\curveto(-413.86544,919.88634262)(-437.06834,931.48776262)(-483.47404,937.28848262)
+\curveto(-486.04844,972.09274862)(-497.85284,1003.60676862)(-524.07904,1035.90058862)
+\curveto(-498.56864,1079.73189862)(-492.15914,1091.02332862)(-483.47404,1134.51270062)
+\curveto(-442.86904,1148.20291062)(-413.86544,1157.71555262)(-384.95924,1180.77520262)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.90174,1146.02590062)
+\curveto(-361.65904,1128.71199062)(-336.33294,1117.11056862)(-309.45264,1111.30984862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.60564,1113.52444862)
+\curveto(-367.45974,1099.70842862)(-350.05764,1091.38760862)(-332.65554,1088.10700862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-355.85834,1064.90414862)
+\lineto(-384.86194,1082.30629862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,1146.02590062)
+\curveto(-408.06474,1128.71199062)(-434.00754,1120.02688862)(-460.31104,1111.30984862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-385.15804,1113.52444862)
+\curveto(-399.01354,1102.16759862)(-416.90704,1093.90770862)(-437.10814,1088.10700862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-414.03174,1064.88334862)
+\lineto(-384.90174,1082.30629862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,925.68706262)
+\curveto(-361.65904,946.51845262)(-336.31974,957.54301862)(-309.45264,960.49133862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,960.49133862)
+\curveto(-367.45974,974.57122862)(-355.85834,981.38668862)(-332.65554,983.69417862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-355.85834,1006.89702862)
+\lineto(-384.86194,989.49489862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,925.68706262)
+\curveto(-413.86544,951.13347262)(-423.02044,954.69060862)(-460.27114,960.49133862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.86194,960.49133862)
+\curveto(-399.37974,977.89345862)(-417.35874,983.69417862)(-437.06834,983.69417862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-413.86544,1006.89702862)
+\lineto(-384.86194,989.49489862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-460.27114,960.49133862)
+\curveto(-466.07194,991.97335862)(-475.39784,1012.69773862)(-495.07544,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.06834,983.69417862)
+\curveto(-439.61074,1004.55755862)(-448.66974,1018.49844862)(-460.27114,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.26764,1035.90058862)
+\lineto(-413.86544,1006.89702862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-309.45264,960.49133862)
+\curveto(-303.65194,989.49489862)(-292.05064,1012.69773862)(-274.64834,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-332.65554,983.69417862)
+\curveto(-326.85484,1006.89702862)(-321.05404,1018.49844862)(-309.45264,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-338.45624,1035.90058862)
+\curveto(-346.56444,1027.38647862)(-352.36514,1018.49844862)(-355.85834,1006.89702862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-309.45264,1111.30984862)
+\curveto(-300.33274,1076.50557862)(-289.84464,1059.10344812)(-274.64834,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-332.65554,1088.10700862)
+\curveto(-328.95944,1068.39735862)(-321.05404,1053.30273815)(-309.45264,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-338.45624,1035.90058862)
+\lineto(-355.85834,1064.90414862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-460.27114,1111.30984862)
+\curveto(-466.07194,1085.01967862)(-477.67334,1059.10344812)(-495.07544,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.06834,1088.10700862)
+\curveto(-442.86904,1070.70485862)(-448.66974,1053.30273815)(-460.27114,1035.90058862)
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=3.91771698,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.26764,1035.90058862)
+\lineto(-413.86544,1064.90414862)
+}
+}
+{
+\newrgbcolor{curcolor}{1 1 1}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-393.8088526,985.67869244)
+\curveto(-393.8088526,985.67869244)(-393.44546987,985.76087805)(-393.67396775,984.76553303)
+\curveto(-394.05309973,983.16620422)(-395.79555868,982.55700599)(-396.87725482,981.47163855)
+\curveto(-398.351462,980.48101881)(-398.6104145,978.72434872)(-397.21444931,977.75378495)
+\curveto(-398.7210224,978.22655517)(-400.8061979,979.66881501)(-399.57477539,981.47163855)
+\curveto(-398.22764147,983.19752119)(-395.09015533,983.91500755)(-395.42734981,986.59184681)
+\curveto(-396.37998575,989.53091147)(-400.50677037,988.15464924)(-401.53047213,991.51637193)
+\curveto(-402.56322605,991.80858295)(-404.01218802,991.93029551)(-404.1942803,993.24484667)
+\curveto(-404.2680542,994.15904494)(-403.90643652,994.92636108)(-403.48616886,995.69080272)
+\curveto(-398.64953801,998.87380689)(-404.01974746,1002.29292386)(-407.26268253,1003.58308712)
+\curveto(-407.6434434,1004.01109576)(-407.57924109,1004.56329308)(-407.56616462,1005.11588376)
+\curveto(-408.00450635,1007.01133693)(-404.29139316,1007.79143201)(-405.57675045,1009.38815359)
+\curveto(-406.80790064,1008.0810358)(-410.1193649,1006.25080865)(-409.48814897,1004.0396643)
+\curveto(-407.40162194,1002.49382145)(-405.04265242,1000.92449843)(-403.28385923,999.1477522)
+\lineto(-409.69046364,1003.71353414)
+\curveto(-410.77513515,1005.27372934)(-409.16701137,1006.53519295)(-408.13939121,1007.56183981)
+\lineto(-410.49971225,1006.84435849)
+\curveto(-407.00643307,1008.34976665)(-409.81008841,1010.72005768)(-412.38797917,1010.88834226)
+\curveto(-412.80366779,1011.24238537)(-412.67526822,1011.80423497)(-412.69143605,1012.29068683)
+\curveto(-409.99391548,1014.99232752)(-415.61149367,1012.6301204)(-416.43423228,1014.93232098)
+\curveto(-417.47225612,1016.45207141)(-415.71318557,1017.56090388)(-415.25407176,1018.81323463)
+\curveto(-417.95564689,1019.93198161)(-420.70037488,1022.59761535)(-417.68185288,1025.20533035)
+\curveto(-418.15605531,1027.3773411)(-420.21344898,1029.4084608)(-418.52481891,1031.69526513)
+\curveto(-421.06182111,1028.99623671)(-425.19981125,1029.49195254)(-427.89868334,1027.12948319)
+\lineto(-428.60678973,1025.9880377)
+\curveto(-430.35882532,1015.89113459)(-427.87009967,1005.36374167)(-421.99787569,997.02792631)
+\curveto(-420.19863268,993.38312546)(-414.14674714,991.72770347)(-414.61342039,987.40716718)
+\curveto(-414.92741712,987.05834356)(-415.26582697,986.71107823)(-415.79358091,986.85275094)
+\lineto(-414.81573507,987.7332923)
+\curveto(-414.61747496,988.13873357)(-414.65306838,988.74155242)(-414.95061992,989.1030289)
+\lineto(-415.79358091,990.37492645)
+\lineto(-416.56911713,990.92934268)
+\curveto(-418.00420584,992.20919807)(-414.66333087,988.06985641)(-416.87259923,988.4181606)
+\lineto(-416.46797492,989.07041588)
+\lineto(-416.73771942,990.11402232)
+\lineto(-417.91787994,991.71205003)
+\curveto(-427.39964418,1000.49661586)(-431.11951497,1013.52344574)(-429.31487092,1025.95542469)
+\curveto(-430.26656382,1025.78766458)(-430.67306411,1026.6697743)(-431.27056765,1027.12948319)
+\curveto(-433.23975943,1025.53406774)(-435.53400217,1022.53369545)(-438.28411104,1023.99865883)
+\curveto(-439.63960119,1023.1836007)(-442.18606908,1022.46716833)(-442.90361595,1024.422623)
+\curveto(-443.13707613,1028.72489863)(-436.22321249,1029.80764371)(-437.64345968,1034.33689928)
+\lineto(-437.20511794,1035.47834477)
+\curveto(-434.73956987,1036.86112254)(-433.95056887,1039.41013713)(-434.44014234,1042.00089256)
+\curveto(-445.86414358,1042.63579491)(-455.00871283,1052.19172136)(-458.69081416,1062.12947276)
+\curveto(-462.89758161,1077.75750209)(-454.49077809,1096.84247586)(-437.65018702,1101.26475952)
+\curveto(-434.47523651,1102.26179898)(-431.11143106,1103.2958893)(-427.66938867,1102.96063132)
+\curveto(-423.73641624,1102.81452582)(-419.63754961,1103.1857857)(-416.03637062,1101.94963286)
+\lineto(-407.87637911,1097.84042306)
+\curveto(-405.93417237,1096.63832049)(-403.38097209,1097.3364922)(-401.40234992,1097.84042306)
+\lineto(-401.36863249,1097.22078079)
+\curveto(-402.69700649,1094.04430225)(-406.3684545,1093.01634926)(-409.46116393,1092.39409976)
+\lineto(-415.395689,1092.52454679)
+\curveto(-417.50111211,1093.08431363)(-419.64698505,1092.9453843)(-421.86974845,1092.91590298)
+\curveto(-423.64200642,1092.95400277)(-425.35627001,1092.80106401)(-426.99501987,1092.39409976)
+\curveto(-440.79280693,1091.49633156)(-449.54624238,1070.12611679)(-436.84093842,1062.39037689)
+\curveto(-434.47655777,1062.09882147)(-432.65304285,1063.55960925)(-430.7378161,1064.57543385)
+\curveto(-428.61622517,1065.94647155)(-426.68075082,1067.60841412)(-424.87072589,1069.46734092)
+\lineto(-420.82444252,1074.03312286)
+\curveto(-419.87034916,1075.3793793)(-418.9038097,1076.75693758)(-417.58744306,1077.8162025)
+\curveto(-410.65617101,1087.7526528)(-394.60461121,1089.62853918)(-386.63344436,1080.29477157)
+\lineto(-383.59875453,1081.99063329)
+\curveto(-372.52814586,1090.46212021)(-359.1997351,1078.86111507)(-353.18426499,1069.59779298)
+\lineto(-349.94726048,1066.07561748)
+\curveto(-348.69964493,1065.25455819)(-347.29965039,1064.60673569)(-345.79980969,1064.47758976)
+\curveto(-344.71866828,1064.18381542)(-343.50962151,1064.38074418)(-342.46163776,1064.64065484)
+\curveto(-334.57411899,1069.13860353)(-335.48586637,1080.22954553)(-339.35949289,1087.01299746)
+\curveto(-342.82716881,1091.17438203)(-348.54183464,1092.71761766)(-353.76424414,1092.13319563)
+\lineto(-359.83365407,1092.52454679)
+\curveto(-361.76774664,1093.03826609)(-363.67221164,1094.10300266)(-364.79032825,1095.81843622)
+\curveto(-364.92923741,1096.64823501)(-365.47603369,1097.52734416)(-365.0600677,1098.36222628)
+\curveto(-361.7825932,1096.74594294)(-357.75521096,1096.52287132)(-354.47232533,1098.42745231)
+\curveto(-344.68304964,1105.30613606)(-328.58968849,1104.10729126)(-323.31604222,1092.36148675)
+\curveto(-320.72777803,1086.5590275)(-319.80792152,1079.96472804)(-320.58480926,1073.47218604)
+\curveto(-319.76206562,1060.58493604)(-330.83264907,1047.51244693)(-344.7005942,1048.25601564)
+\lineto(-341.46356448,1042.19004503)
+\curveto(-340.7944404,1040.95597999)(-338.70535153,1037.47815758)(-337.82191046,1040.29851025)
+\curveto(-337.68501345,1040.42604747)(-337.50132254,1040.71294821)(-337.34985634,1040.42895728)
+\curveto(-336.79768423,1039.02921993)(-337.72211977,1037.58904284)(-338.69861914,1036.58065665)
+\curveto(-346.41485779,1034.94349533)(-356.42129471,1036.39802477)(-361.02054698,1043.16843047)
+\lineto(-360.88566213,1034.49343873)
+\curveto(-358.52804413,1030.8368978)(-354.6948876,1035.98449454)(-352.32107657,1033.38460626)
+\curveto(-350.97231376,1030.58903989)(-349.90273088,1027.59389214)(-350.97231376,1024.44871543)
+\lineto(-357.37889296,1017.60004252)
+\curveto(-357.86647949,1015.4345574)(-353.69949215,1014.93884157)(-353.77097653,1012.6755174)
+\curveto(-355.36790488,1010.67179123)(-357.7133844,1009.19508776)(-359.94155388,1008.07712244)
+\curveto(-357.89953124,1006.06556955)(-358.11533591,1002.36075711)(-360.27872315,1000.44574218)
+\lineto(-361.59376852,1000.02177801)
+\curveto(-365.2259619,1001.37976948)(-371.67439287,997.479284)(-368.2364,993.59706422)
+\lineto(-367.79806331,992.32516667)
+\curveto(-367.81138688,991.52733035)(-367.68635099,990.7023577)(-368.10151514,990.00966268)
+\curveto(-368.75405788,988.07768313)(-370.44970275,986.86187875)(-372.14779851,985.83523189)
+\curveto(-377.09909183,983.99065744)(-379.81142365,978.3134358)(-377.07075526,973.70328059)
+\lineto(-375.78945254,973.6380596)
+\curveto(-379.00622961,972.50171258)(-374.37728926,971.86001227)(-373.09193197,972.00741887)
+\curveto(-374.83047252,971.19786769)(-377.84091061,971.34083645)(-377.94746395,973.76853184)
+\curveto(-381.85074829,976.7910832)(-379.88440076,974.72472309)(-378.99273961,974.05551832)
+\lineto(-378.75671255,973.30541894)
+\curveto(-379.26841466,973.46769731)(-379.89033132,973.73514725)(-380.5865766,974.08488365)
+\curveto(-381.28279163,974.43462005)(-383.24157972,977.3525344)(-384.05050053,977.84397378)
+\curveto(-384.85944656,978.33541315)(-385.09533746,979.02980262)(-384.74023532,980.94777275)
+\curveto(-385.08510019,977.15423899)(-385.08510019,976.80937412)(-385.24258268,976.11963934)
+\curveto(-385.47358692,975.10792981)(-387.49916941,978.87857344)(-387.67601699,979.91317309)
+\curveto(-387.83804826,980.86105854)(-388.84944512,983.10603126)(-389.39063863,983.70670685)
+\curveto(-389.93185736,984.30738747)(-392.32730283,988.87971017)(-393.85801671,988.034147)
+\curveto(-393.85014965,987.15537573)(-393.8326303,985.29793661)(-393.8088526,985.67869244)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.10980392 0.10980392 0.10980392}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-361.9777559,1018.19375575)
+\lineto(-361.84288013,1018.32420681)
+\curveto(-361.58863929,1018.30596975)(-361.86172227,1018.57010705)(-361.84288013,1018.32420681)
+\lineto(-361.9777559,1018.19375575)
+\lineto(-364.37180093,1016.40005372)
+\lineto(-364.50667671,1016.59573031)
+\curveto(-363.07429596,1017.97851151)(-361.21570777,1019.72003311)(-359.4488351,1020.24835989)
+\lineto(-360.25808976,1019.13952591)
+\curveto(-358.37387517,1020.54839732)(-356.31971709,1021.76420117)(-354.25611772,1022.85738103)
+\curveto(-352.45282859,1022.85238867)(-351.09597828,1024.85458671)(-351.05281804,1026.54262338)
+\curveto(-351.49075968,1028.70680641)(-351.71708123,1030.90360221)(-352.70504629,1032.9021124)
+\curveto(-354.65804753,1035.11586683)(-357.32454163,1031.36278993)(-359.65114877,1032.96733792)
+\lineto(-361.67428541,1034.53275061)
+\curveto(-364.13576832,1040.19693549)(-367.29995403,1045.71110166)(-371.25046551,1050.57823058)
+\lineto(-372.36319067,1052.76328578)
+\curveto(-372.79492803,1056.24371998)(-372.12850682,1060.24074035)(-369.49708042,1062.90585544)
+\curveto(-368.82067841,1063.28155449)(-368.09167484,1063.68595276)(-367.27163012,1063.55811073)
+\lineto(-368.72154471,1062.80801715)
+\lineto(-367.87857111,1061.2099917)
+\lineto(-371.25046551,1056.05717496)
+\curveto(-370.1709198,1057.71259887)(-366.82384254,1058.94014332)(-365.51824503,1057.16600895)
+\curveto(-365.42124237,1056.9139775)(-365.44600556,1056.33203534)(-365.85543447,1056.44852813)
+\lineto(-366.19262391,1057.29646)
+\curveto(-368.99534254,1058.28893164)(-372.2471975,1055.32534454)(-371.65509284,1052.66544749)
+\curveto(-369.80864347,1053.14955136)(-367.29590776,1054.4447999)(-365.1136177,1053.51337936)
+\lineto(-364.03461149,1053.05680066)
+\curveto(-363.62796103,1053.43054294)(-363.3936818,1055.35926181)(-364.23692515,1054.7526644)
+\lineto(-364.37180093,1054.94834098)
+\curveto(-362.76947671,1056.51505817)(-362.74519907,1059.00406434)(-363.62998416,1060.94908959)
+\lineto(-368.68782577,1066.81938714)
+\lineto(-365.6531208,1064.60171918)
+\curveto(-364.4621677,1063.36373865)(-363.35483758,1062.05531455)(-362.75329162,1060.49251089)
+\curveto(-362.21972305,1058.90361702)(-362.11735233,1056.77074224)(-363.19163789,1055.37230692)
+\curveto(-363.07140962,1054.55503105)(-363.09922101,1053.67513867)(-363.46138944,1052.89373684)
+\curveto(-361.87120404,1053.0868044)(-360.99855777,1050.03164065)(-363.02304317,1050.18687741)
+\lineto(-363.22535683,1050.90435822)
+\lineto(-363.83229783,1051.36093692)
+\lineto(-364.50667671,1051.42616245)
+\curveto(-363.38963553,1049.37677635)(-365.72352596,1047.03909341)(-367.91229005,1047.93659668)
+\lineto(-368.04716583,1047.54524351)
+\curveto(-367.03883453,1046.36661822)(-364.12228074,1046.09854129)(-363.4276705,1048.03443498)
+\curveto(-362.65833907,1047.95705141)(-363.62661227,1047.10170992)(-363.83229783,1046.79514994)
+\lineto(-361.7417233,1048.29533709)
+\lineto(-361.87659907,1047.31695416)
+\curveto(-364.30840932,1046.15306984)(-361.89304043,1043.43342621)(-361.60684752,1041.70755872)
+\lineto(-361.57312858,1043.50126075)
+\curveto(-361.66319862,1043.89391844)(-361.53649631,1045.28974474)(-361.06734441,1044.51225644)
+\curveto(-358.6314879,1039.07636091)(-351.65841027,1036.57430964)(-346.09613326,1037.98970361)
+\lineto(-347.95067518,1036.97870792)
+\lineto(-348.18670779,1036.88086963)
+\curveto(-346.52099196,1036.11133884)(-344.55045687,1036.90660762)(-342.82539569,1036.97870792)
+\curveto(-341.77269026,1036.00554304)(-339.20667862,1036.62609871)(-338.27333825,1038.05492914)
+\lineto(-339.82440967,1038.44628231)
+\lineto(-340.7685401,1039.3594397)
+\lineto(-352.97479785,1060.94908959)
+\curveto(-355.08290623,1063.31286274)(-357.69814753,1065.02698962)(-360.52784131,1066.42803397)
+\lineto(-361.67428541,1066.36280845)
+\lineto(-362.92188634,1067.24335308)
+\lineto(-364.8101472,1066.85199991)
+\lineto(-365.21477453,1067.7651573)
+\curveto(-365.69385329,1067.30205605)(-366.04331642,1066.51961062)(-366.83328385,1066.46064674)
+\lineto(-366.32749968,1067.8629956)
+\lineto(-367.40650589,1067.08028926)
+\curveto(-367.67989909,1067.40798231)(-367.85388884,1067.73971935)(-367.67625745,1068.12389771)
+\curveto(-370.19438819,1068.83629093)(-373.43140681,1068.00341311)(-375.22930091,1065.84100422)
+\lineto(-375.97111768,1065.51487658)
+\curveto(-375.09429026,1064.39612831)(-374.37823476,1062.55233308)(-375.49905246,1061.27521723)
+\curveto(-376.21537771,1060.08485134)(-377.60716084,1059.7893797)(-378.9721037,1059.9380939)
+\curveto(-379.23929261,1060.08172052)(-380.10762286,1060.09593968)(-379.61276364,1060.55773642)
+\curveto(-379.25035242,1060.53125486)(-379.10657485,1060.67362914)(-378.93838475,1060.94908959)
+\curveto(-376.62391644,1061.22708079)(-377.70413653,1064.54171169)(-378.33144376,1065.90622975)
+\curveto(-380.65939966,1066.86647998)(-382.41278475,1069.2209911)(-382.47887388,1071.67868901)
+\lineto(-383.1869717,1072.82013575)
+\curveto(-383.23262715,1070.83075714)(-382.65947254,1068.49959675)(-381.29871084,1066.81938714)
+\curveto(-380.26057199,1065.87100796)(-378.09541115,1064.33559902)(-379.14069842,1062.71017886)
+\lineto(-380.08482885,1064.99307235)
+\curveto(-383.62801549,1065.23205869)(-386.16368008,1068.33001038)(-386.42399033,1071.64607624)
+\curveto(-387.01137434,1070.22024619)(-386.35358518,1068.28565702)(-385.41242201,1067.01506373)
+\curveto(-384.12300959,1065.25788799)(-380.9709627,1065.41442926)(-379.68020152,1063.4928852)
+\lineto(-380.05110991,1063.32982138)
+\curveto(-381.59813506,1064.51588238)(-383.44863071,1065.22657974)(-385.27754623,1065.84100422)
+\curveto(-386.38393223,1067.24465759)(-387.12264685,1068.83616048)(-387.23324499,1070.60246779)
+\curveto(-387.74752632,1070.26316459)(-388.34246337,1070.19637365)(-388.91919219,1070.34156568)
+\curveto(-389.40609374,1069.94903845)(-390.43114964,1069.33683164)(-390.80745306,1070.08066356)
+\lineto(-394.38166112,1068.05867218)
+\lineto(-395.73041888,1067.01506373)
+\lineto(-395.86529466,1067.8629956)
+\curveto(-396.62235239,1067.78699481)(-397.08753894,1068.3259664)(-397.48380397,1068.77615299)
+\lineto(-398.12446391,1067.50425519)
+\lineto(-399.37206484,1068.38479982)
+\curveto(-400.15043295,1068.05084512)(-400.43124431,1068.39384921)(-400.1813195,1069.16750616)
+\lineto(-401.8672667,1068.3195743)
+\curveto(-401.31292726,1069.42697332)(-401.75666856,1070.23459581)(-402.4067698,1071.12427202)
+\lineto(-402.81139713,1069.62408486)
+\curveto(-402.33096962,1069.65020116)(-401.80050319,1069.57718771)(-402.06958036,1068.97182958)
+\lineto(-402.47420769,1068.58047641)
+\curveto(-403.15667912,1068.82546349)(-403.76807101,1068.71718912)(-404.09271701,1067.92822113)
+\curveto(-405.16349579,1067.68036412)(-405.27517294,1068.04826219)(-405.0031285,1068.80876576)
+\curveto(-405.34800585,1068.58321588)(-405.78958915,1067.96526923)(-406.0821347,1068.54786365)
+\curveto(-406.52102048,1068.24469539)(-407.25258669,1068.05697632)(-407.66692507,1068.38479982)
+\lineto(-409.48774805,1066.75416162)
+\curveto(-415.33326419,1065.76064637)(-422.31443436,1063.97685862)(-426.21234429,1058.6661961)
+\lineto(-427.49366417,1057.55736212)
+\curveto(-428.72966578,1055.03052515)(-429.44666541,1052.2597447)(-431.2701859,1049.99120083)
+\lineto(-433.22588465,1041.1857545)
+\curveto(-434.11296263,1041.11902878)(-432.92214441,1042.97945653)(-434.00142037,1042.32720124)
+\curveto(-433.87730768,1040.00647695)(-433.43305385,1036.9265275)(-436.12571384,1035.77203564)
+\lineto(-436.9349685,1034.85887825)
+\lineto(-437.10356322,1033.58698044)
+\curveto(-436.18006878,1030.04914779)(-440.44308744,1028.65853952)(-442.06024799,1026.11865745)
+\curveto(-442.46986572,1025.41409129)(-442.32028849,1024.68630484)(-442.06024799,1023.96621501)
+\curveto(-441.64887687,1023.40344915)(-441.06810178,1023.72409785)(-440.47545762,1023.67270013)
+\curveto(-438.38623185,1024.09797058)(-437.3787098,1026.56871359)(-434.97926974,1026.31433403)
+\curveto(-434.21519847,1027.47456573)(-432.94534304,1028.32849835)(-431.47249956,1028.14064883)
+\curveto(-429.87017534,1030.22003867)(-426.99867007,1029.66170815)(-424.72871076,1029.83651256)
+\lineto(-422.84044989,1031.72805289)
+\lineto(-423.51482877,1029.96696362)
+\lineto(-421.32309741,1030.7170572)
+\curveto(-421.06885657,1030.69882014)(-421.34193955,1030.96295744)(-421.32309741,1030.7170572)
+\lineto(-421.42425424,1031.33669972)
+\lineto(-419.67086915,1032.77166134)
+\curveto(-418.92514098,1032.98507927)(-418.38995391,1033.77026418)(-417.91748406,1034.33707402)
+\curveto(-416.71762916,1035.24892691)(-415.74463531,1036.49342999)(-414.95021699,1037.72880149)
+\lineto(-414.71418438,1037.50051215)
+\curveto(-414.86848227,1037.06258795)(-415.86912565,1036.37198005)(-415.15253065,1036.22861434)
+\lineto(-415.75947164,1035.18500589)
+\lineto(-414.61302755,1035.70681012)
+\lineto(-412.32013935,1038.31583125)
+\lineto(-411.03881948,1041.25098003)
+\lineto(-410.70163004,1041.57710767)
+\lineto(-409.04940178,1046.50163506)
+\lineto(-408.64477445,1049.63246042)
+\curveto(-408.26806641,1050.30402246)(-408.24675604,1051.07524911)(-408.24014712,1051.85012838)
+\lineto(-407.56576824,1054.06779635)
+\lineto(-407.43089247,1056.67681748)
+\lineto(-406.58791886,1058.86187268)
+\lineto(-402.74395924,1062.18837463)
+\lineto(-402.74395924,1062.38405122)
+\lineto(-403.24974341,1062.54711504)
+\curveto(-405.05303253,1061.98030519)(-406.58791886,1060.49251089)(-407.32973563,1058.79664716)
+\lineto(-410.83650581,1054.7526644)
+\lineto(-412.52245302,1053.70905594)
+\lineto(-412.52245302,1053.90473253)
+\lineto(-410.09468904,1055.99194944)
+\lineto(-409.7574996,1056.31807708)
+\lineto(-408.914526,1057.85087699)
+\lineto(-408.77965023,1057.98132805)
+\curveto(-408.52540939,1057.96310404)(-408.79849237,1058.22722829)(-408.77965023,1057.98132805)
+\lineto(-408.914526,1057.85087699)
+\lineto(-409.31915333,1057.58997488)
+\lineto(-409.42031016,1057.62258764)
+\lineto(-408.47617973,1058.99232374)
+\lineto(-408.24014712,1059.28583862)
+\lineto(-408.10527135,1059.41628967)
+\lineto(-407.97039557,1059.54674073)
+\curveto(-407.71615473,1059.52851672)(-407.98923772,1059.79264097)(-407.97039557,1059.54674073)
+\lineto(-408.10527135,1059.41628967)
+\lineto(-408.24014712,1059.28583862)
+\lineto(-410.63419215,1057.36168553)
+\lineto(-405.50891266,1063.29720861)
+\curveto(-402.68596266,1063.4497059)(-400.10039403,1063.11692525)(-398.56281018,1065.64532763)
+\curveto(-398.053789,1065.1475264)(-398.86075077,1064.66603155)(-399.0348754,1064.21036601)
+\lineto(-398.39421546,1063.59072349)
+\curveto(-399.25337416,1060.90864976)(-401.63797788,1058.78229754)(-403.5532139,1056.57897919)
+\curveto(-403.81001738,1056.32525189)(-404.14680219,1055.56550493)(-404.56478222,1055.92672391)
+\curveto(-402.39867726,1057.45169676)(-403.98535589,1059.19974092)(-403.5532139,1060.81863853)
+\lineto(-406.18329154,1058.34006846)
+\curveto(-408.31567756,1049.0376036)(-408.89294588,1038.08101935)(-417.91748406,1031.988955)
+\curveto(-418.3276413,1031.08336376)(-418.64473425,1030.17046727)(-418.62558189,1029.15164452)
+\lineto(-417.27682412,1026.15127021)
+\curveto(-417.2885219,1023.35439955)(-417.61428332,1020.15704415)(-414.47815177,1019.07430038)
+\lineto(-414.0398055,1018.06330469)
+\curveto(-415.11962096,1013.57839736)(-407.54688563,1013.30575466)(-406.31816731,1009.61659877)
+\curveto(-405.8416512,1009.85493285)(-405.10752235,1009.70149632)(-404.86825272,1009.19263284)
+\curveto(-405.03199191,1007.24238954)(-408.45594836,1006.08398416)(-406.99254619,1003.74630122)
+\lineto(-405.77866421,1002.96359488)
+\curveto(-401.62718782,1002.59950598)(-398.92157975,997.78990597)(-403.21602446,995.46265912)
+\lineto(-403.78924651,994.32121237)
+\curveto(-403.80667246,993.63895334)(-403.87226255,992.90842743)(-403.35090024,992.39705928)
+\lineto(-401.79982881,992.00570611)
+\curveto(-401.79898854,993.93507724)(-400.34856546,995.19132092)(-398.96743751,996.44104204)
+\curveto(-398.50643211,997.62932072)(-397.9619386,997.12447513)(-398.76512385,996.24536546)
+\curveto(-399.99991158,995.09322172)(-401.38845769,993.93116371)(-401.49635832,992.23399546)
+\curveto(-400.70126561,990.53943624)(-399.20751639,988.84487701)(-397.07917665,989.00533181)
+\curveto(-397.98972301,990.27357698)(-400.09230149,991.58304469)(-399.23718906,993.31021668)
+\curveto(-399.01963444,994.29864434)(-397.99808531,994.78953166)(-398.79884279,993.53850603)
+\curveto(-399.14533866,993.03066007)(-399.34225729,992.44636978)(-399.0348754,991.87525506)
+\lineto(-395.15719684,986.75505108)
+\curveto(-394.77455426,984.5230335)(-396.90114062,983.08807188)(-398.63024807,982.15665133)
+\lineto(-399.57437851,980.85214076)
+\curveto(-399.84143254,980.05051902)(-399.40376065,979.42891974)(-398.76512385,978.96060044)
+\curveto(-398.66361634,981.8931402)(-393.99861392,982.66541045)(-393.80843907,985.71144263)
+\lineto(-393.90959591,988.02694888)
+\curveto(-393.39733771,987.21176023)(-393.44508373,985.79362679)(-393.6735633,984.79828523)
+\curveto(-394.05269911,983.19895527)(-395.79515926,982.58974884)(-396.87686298,981.50439605)
+\curveto(-398.35105522,980.51375072)(-398.61001671,978.75709679)(-397.21405242,977.78654093)
+\curveto(-398.72061484,978.25929556)(-400.80579434,979.70156244)(-399.57437851,981.50439605)
+\curveto(-398.22723925,983.23026353)(-395.08975895,983.94774434)(-395.42694839,986.62460002)
+\curveto(-396.379576,989.56366233)(-400.50637012,988.18740368)(-401.53007726,991.54912742)
+\curveto(-402.56282108,991.84133778)(-404.01179154,991.96304862)(-404.19387384,993.27760392)
+\curveto(-404.26765089,994.19180492)(-403.90604893,994.95911804)(-403.48577601,995.72356123)
+\curveto(-398.64913068,998.90656701)(-404.01934458,1002.32568921)(-407.26229775,1003.61585016)
+\curveto(-407.64305206,1004.04386008)(-407.57885119,1004.5960594)(-407.56576824,1005.14865008)
+\curveto(-408.00411451,1007.04410393)(-404.2909844,1007.82420125)(-405.57635054,1009.42092219)
+\curveto(-406.80749663,1008.1138026)(-410.11896668,1006.28357427)(-409.48774805,1004.07242886)
+\curveto(-407.40121979,1002.52658384)(-405.04224247,1000.95725763)(-403.28346235,999.18051423)
+\lineto(-409.69006172,1003.74630122)
+\curveto(-410.77473271,1005.30649586)(-409.16660883,1006.56795758)(-408.13899029,1007.59460739)
+\lineto(-410.49931637,1006.87712658)
+\curveto(-407.00603377,1008.38253177)(-409.80969653,1010.75282748)(-412.38757724,1010.92110934)
+\curveto(-412.80326438,1011.27515351)(-412.67486264,1011.83700621)(-412.69104774,1012.3234582)
+\curveto(-409.99353221,1015.02509958)(-415.61110829,1012.66289185)(-416.43385052,1014.9650921)
+\curveto(-417.4718545,1016.48484691)(-415.71280462,1017.59368089)(-415.25368748,1018.84601103)
+\curveto(-417.95524928,1019.9647593)(-420.69997132,1022.63039619)(-417.68145145,1025.23811281)
+\curveto(-418.15567468,1027.41012291)(-420.21306977,1029.44124586)(-418.52442505,1031.72805289)
+\curveto(-421.0614384,1029.02902052)(-425.19942722,1029.52473454)(-427.8982915,1027.1622659)
+\lineto(-428.60638932,1026.02081915)
+\curveto(-430.35842565,1015.92390736)(-427.86969783,1005.39650709)(-421.99747629,997.06068456)
+\curveto(-420.19823344,993.41588204)(-414.14635736,991.76045813)(-414.61302755,987.43991913)
+\curveto(-414.92701835,987.091093)(-415.26542167,986.74383229)(-415.79319059,986.88550214)
+\lineto(-414.81534121,987.76604677)
+\curveto(-414.61707382,988.17148865)(-414.65268102,988.77430299)(-414.95021699,989.13578287)
+\lineto(-415.79319059,990.40768067)
+\lineto(-416.5687263,990.96209766)
+\curveto(-418.00380456,992.24195298)(-414.66293158,988.1026105)(-416.8721968,988.45091482)
+\lineto(-416.46756947,989.1031701)
+\lineto(-416.73732102,990.14677856)
+\lineto(-417.91748406,991.744804)
+\curveto(-427.39925112,1000.52937816)(-431.11912503,1013.55622068)(-429.31448715,1025.98820639)
+\curveto(-430.26617062,1025.82044633)(-430.67268621,1026.70255638)(-431.2701859,1027.1622659)
+\curveto(-433.23937223,1025.56684948)(-435.53360918,1022.56647517)(-438.28372626,1024.03144054)
+\curveto(-439.63922781,1023.21638234)(-442.18568246,1022.49994513)(-442.90322159,1024.45540647)
+\curveto(-443.13669156,1028.75768232)(-436.2228244,1029.84042609)(-437.64306632,1034.36968678)
+\lineto(-437.20472005,1035.51113353)
+\curveto(-434.73919086,1036.89391473)(-433.95016757,1039.44292838)(-434.43976664,1042.03368637)
+\curveto(-445.86374488,1042.66859166)(-455.0083225,1052.22452292)(-458.69043119,1062.16228442)
+\curveto(-462.89720665,1077.79032101)(-454.49039952,1096.87531061)(-437.64981011,1101.29760144)
+\curveto(-434.47483434,1102.29463886)(-431.11103248,1103.32872439)(-427.66900268,1102.99346517)
+\curveto(-423.73602504,1102.84735999)(-419.63715021,1103.2186237)(-416.03596698,1101.98246948)
+\lineto(-407.87598253,1097.8732612)
+\curveto(-405.93377135,1096.67115471)(-403.38057291,1097.36932876)(-401.40194527,1097.8732612)
+\lineto(-401.36822633,1097.25361868)
+\curveto(-402.69661785,1094.07713545)(-406.36807135,1093.04918112)(-409.4607729,1092.42692958)
+\lineto(-415.39530705,1092.55738063)
+\curveto(-417.50071791,1093.11714612)(-419.64659151,1092.97821574)(-421.8693443,1092.94873381)
+\curveto(-423.641612,1092.98683856)(-425.35588312,1092.83389774)(-426.9946238,1092.42692958)
+\curveto(-440.7924157,1091.52916541)(-449.54585357,1070.1589342)(-436.84055545,1062.42318653)
+\curveto(-434.4761831,1062.13162842)(-432.65266261,1063.59241935)(-430.73742658,1064.60824173)
+\curveto(-428.61583063,1065.97928234)(-426.68036324,1067.6412288)(-424.87033032,1069.50015636)
+\lineto(-420.82405704,1074.06594334)
+\curveto(-419.8699458,1075.41219825)(-418.90342598,1076.78976141)(-417.58703841,1077.84902399)
+\curveto(-410.65577227,1087.78548098)(-394.60420615,1089.66136718)(-386.63304778,1080.32759407)
+\lineto(-383.59834282,1082.0234578)
+\curveto(-372.52773911,1090.49494943)(-359.19931492,1078.89393695)(-353.1838553,1069.63060742)
+\lineto(-349.94683667,1066.10842888)
+\curveto(-348.69923574,1065.28736993)(-347.29922519,1064.63954999)(-345.79940655,1064.51040344)
+\curveto(-344.71824233,1064.21662766)(-343.50921588,1064.41355658)(-342.4612311,1064.67346726)
+\curveto(-334.57369571,1069.1714197)(-335.48545595,1080.26236854)(-339.35908824,1087.04582349)
+\curveto(-342.82674445,1091.2072122)(-348.54143108,1092.7504482)(-353.76382114,1092.16602746)
+\lineto(-359.83323106,1092.55738063)
+\curveto(-361.76734969,1093.0710969)(-363.67179565,1094.13583842)(-364.78991584,1095.85126982)
+\curveto(-364.92883789,1096.68106899)(-365.47562428,1097.56017866)(-365.05966739,1098.39506542)
+\curveto(-361.78218603,1096.77877683)(-357.75479535,1096.55570552)(-354.47191896,1098.46029095)
+\curveto(-344.68263513,1105.33897517)(-328.58925752,1104.14012996)(-323.31561467,1092.39431681)
+\curveto(-320.72734853,1086.59185381)(-319.80749573,1079.99755289)(-320.5843802,1073.5050038)
+\curveto(-319.76163797,1060.61774391)(-330.83224168,1047.54524351)(-344.70016898,1048.28881454)
+\lineto(-341.46315035,1042.2228404)
+\curveto(-340.79403163,1040.9887734)(-338.70494073,1037.51094823)(-337.8215044,1040.33130008)
+\curveto(-337.68460548,1040.45884207)(-337.50090468,1040.74574308)(-337.34943918,1040.46175113)
+\curveto(-336.79725775,1039.06201129)(-337.72169632,1037.62183163)(-338.69819694,1036.61344496)
+\curveto(-346.41444009,1034.9762842)(-356.42087393,1036.43081348)(-361.02013789,1043.20122332)
+\lineto(-360.88526212,1034.52622805)
+\curveto(-358.52763355,1030.86968493)(-354.69446399,1036.01728363)(-352.32065033,1033.41739407)
+\curveto(-350.97189257,1030.62182792)(-349.90232767,1027.62667166)(-350.97189257,1024.48149668)
+\lineto(-357.37849194,1017.63281621)
+\curveto(-357.86606787,1015.46732867)(-353.69908076,1014.97161465)(-353.77056493,1012.70828882)
+\curveto(-355.36749411,1010.70456058)(-357.71298386,1009.22785462)(-359.94113168,1008.10988907)
+\curveto(-357.89911243,1006.09833377)(-358.11491367,1002.39352376)(-360.27832112,1000.47850225)
+\lineto(-361.59335994,1000.05453631)
+\curveto(-365.22556459,1001.41253181)(-371.67397545,997.51204522)(-368.23599192,993.62982177)
+\lineto(-367.79764564,992.35792397)
+\curveto(-367.81098216,991.5600853)(-367.68595501,990.73511282)(-368.10111614,990.04241771)
+\curveto(-368.75364515,988.11043756)(-370.4493034,986.89463371)(-372.14738943,985.86798389)
+\curveto(-377.09867917,984.02340595)(-379.81103103,978.34617596)(-377.07035525,973.73603562)
+\lineto(-375.78903538,973.67081009)
+\curveto(-379.00582264,972.53445094)(-374.37688601,971.89276219)(-373.09151986,972.04017188)
+\curveto(-374.83006861,971.23059262)(-377.84049594,971.37356698)(-377.9470478,973.80126115)
+\curveto(-381.85035276,976.82381213)(-379.67210898,983.08024481)(-375.51928383,984.9548265)
+\lineto(-372.68689253,987.56384763)
+\curveto(-371.81505551,988.62454517)(-371.3340885,989.86500427)(-371.16954005,991.18386446)
+\lineto(-371.03466427,993.14063031)
+\curveto(-369.01422515,986.45631816)(-378.93973351,984.9300408)(-379.36324345,979.20845745)
+\lineto(-375.99134905,983.83946996)
+\curveto(-371.74411085,986.25151)(-364.99897329,990.87078192)(-370.596318,995.6452906)
+\lineto(-371.06838322,997.14547775)
+\lineto(-371.4392916,997.96079685)
+\curveto(-374.35260837,997.25570889)(-375.81735929,993.31413021)(-373.46242824,991.30779296)
+\lineto(-373.32755247,989.22057605)
+\curveto(-374.16337765,987.29772748)(-376.04799687,985.7818862)(-377.81217202,984.55695077)
+\curveto(-380.47461984,982.74368109)(-381.42819158,979.5724159)(-380.88059593,976.56682355)
+\curveto(-380.65993916,975.48968918)(-379.88399882,974.75746739)(-378.99233506,974.08825347)
+\lineto(-378.75630246,973.3381599)
+\curveto(-382.84978226,974.63640881)(-386.01261921,979.13149133)(-382.60026208,982.79586151)
+\curveto(-381.1274186,984.35214262)(-379.31603693,985.3748789)(-377.27266892,985.86146134)
+\curveto(-375.05531116,988.0778248)(-372.55201675,991.27387569)(-376.12622482,993.55807369)
+\lineto(-376.29481954,994.96042255)
+\lineto(-375.78903538,997.14547775)
+\curveto(-377.40349842,997.62605944)(-377.60716084,995.15870815)(-377.47498258,993.68852475)
+\lineto(-376.73316581,992.90581841)
+\curveto(-378.82643786,993.58703382)(-377.68889556,997.76512027)(-375.78903538,998.58043937)
+\lineto(-376.39597637,998.31953726)
+\lineto(-376.93547948,998.05863515)
+\lineto(-378.62142668,996.94980116)
+\curveto(-378.75016561,996.77069186)(-379.13449413,996.46374053)(-379.26208662,996.78673734)
+\lineto(-378.01448569,997.79773303)
+\lineto(-376.93547948,998.44998832)
+\lineto(-376.59829004,998.71089043)
+\lineto(-380.57712543,996.55844799)
+\lineto(-379.9364655,997.30854157)
+\lineto(-378.89117823,998.12386067)
+\curveto(-377.3212242,999.27026456)(-379.47330208,998.36506468)(-380.17249811,998.05863515)
+\lineto(-381.65613164,997.21070328)
+\lineto(-380.61084438,998.74350319)
+\curveto(-381.57722931,997.96379723)(-384.06501301,997.26418821)(-381.85844531,998.51521384)
+\curveto(-380.03627357,999.40606411)(-377.895795,1000.65200215)(-375.89019221,1000.04801376)
+\curveto(-371.15470371,1002.82531676)(-365.55196397,1000.85028776)(-360.27157734,1001.38513709)
+\curveto(-357.26924256,1004.94384192)(-360.50814945,1009.41439963)(-364.85735372,1009.01652391)
+\lineto(-369.8140385,1008.91868562)
+\lineto(-372.91618135,1008.00552822)
+\curveto(-382.58003071,1003.78021849)(-389.06081175,1015.41253922)(-392.91825895,1022.32905425)
+\curveto(-393.6089578,1023.22942744)(-394.6379251,1023.77575647)(-395.68321236,1023.76401587)
+\curveto(-393.41729932,1024.52350192)(-392.01459125,1021.57374263)(-391.02999809,1019.98093523)
+\lineto(-389.276613,1017.30668856)
+\curveto(-388.81398908,1019.64698052)(-388.08053461,1022.41645646)(-386.03959437,1023.89446693)
+\lineto(-386.27562698,1023.40527547)
+\curveto(-387.69317138,1021.55939301)(-388.61437294,1019.36911977)(-388.56851517,1017.01317369)
+\curveto(-386.81917635,1011.77686827)(-380.284445,1006.5340403)(-374.67631023,1009.83836557)
+\curveto(-374.15703849,1009.7791147)(-372.79883942,1010.21028153)(-373.05780091,1009.4470124)
+\curveto(-375.3925006,1008.92625178)(-377.75282668,1008.09684396)(-380.17249811,1008.04466354)
+\curveto(-379.0545128,1007.65422352)(-377.94030401,1007.31361582)(-376.69944687,1007.35979549)
+\curveto(-370.40074812,1009.74835434)(-363.87006304,1011.79513142)(-356.87270778,1010.62107191)
+\lineto(-354.47866275,1012.61045052)
+\curveto(-354.34866948,1014.77072002)(-358.25653324,1015.12815592)(-357.85055715,1017.37191409)
+\curveto(-358.96314743,1016.51993824)(-358.63607367,1017.76378907)(-358.12030871,1018.41552255)
+\lineto(-360.48063479,1016.39353117)
+\lineto(-359.60394224,1017.56759068)
+\curveto(-357.53899411,1020.11138628)(-361.98045342,1015.60169325)(-361.559641,1016.85010987)
+\lineto(-360.88526212,1017.63281621)
+\curveto(-360.70506808,1017.83358038)(-359.89163227,1018.42687179)(-360.61551056,1018.28507149)
+\lineto(-363.04327454,1016.13262905)
+\lineto(-361.99798727,1018.1872332)
+\lineto(-361.9777559,1018.19375575)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.10980392 0.10980392 0.10980392}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-361.9777559,1018.19375575)
+\lineto(-361.84288013,1018.32420681)
+\curveto(-361.58863929,1018.30596975)(-361.86172227,1018.57010705)(-361.84288013,1018.32420681)
+\lineto(-361.9777559,1018.19375575)
+\lineto(-364.37180093,1016.40005372)
+\lineto(-364.50667671,1016.59573031)
+\curveto(-363.07429596,1017.97851151)(-361.21570777,1019.72003311)(-359.4488351,1020.24835989)
+\lineto(-360.25808976,1019.13952591)
+\curveto(-358.37387517,1020.54839732)(-356.31971709,1021.76420117)(-354.25611772,1022.85738103)
+\curveto(-352.45282859,1022.85238867)(-351.09597828,1024.85458671)(-351.05281804,1026.54262338)
+\curveto(-351.49075968,1028.70680641)(-351.71708123,1030.90360221)(-352.70504629,1032.9021124)
+\curveto(-354.65804753,1035.11586683)(-357.32454163,1031.36278993)(-359.65114877,1032.96733792)
+\lineto(-361.67428541,1034.53275061)
+\curveto(-364.13576832,1040.19693549)(-367.29995403,1045.71110166)(-371.25046551,1050.57823058)
+\lineto(-372.36319067,1052.76328578)
+\curveto(-372.79492803,1056.24371998)(-372.12850682,1060.24074035)(-369.49708042,1062.90585544)
+\curveto(-368.82067841,1063.28155449)(-368.09167484,1063.68595276)(-367.27163012,1063.55811073)
+\lineto(-368.72154471,1062.80801715)
+\lineto(-367.87857111,1061.2099917)
+\lineto(-371.25046551,1056.05717496)
+\curveto(-370.1709198,1057.71259887)(-366.82384254,1058.94014332)(-365.51824503,1057.16600895)
+\curveto(-365.42124237,1056.9139775)(-365.44600556,1056.33203534)(-365.85543447,1056.44852813)
+\lineto(-366.19262391,1057.29646)
+\curveto(-368.99534254,1058.28893164)(-372.2471975,1055.32534454)(-371.65509284,1052.66544749)
+\curveto(-369.80864347,1053.14955136)(-367.29590776,1054.4447999)(-365.1136177,1053.51337936)
+\lineto(-364.03461149,1053.05680066)
+\curveto(-363.62796103,1053.43054294)(-363.3936818,1055.35926181)(-364.23692515,1054.7526644)
+\lineto(-364.37180093,1054.94834098)
+\curveto(-362.76947671,1056.51505817)(-362.74519907,1059.00406434)(-363.62998416,1060.94908959)
+\lineto(-368.68782577,1066.81938714)
+\lineto(-365.6531208,1064.60171918)
+\curveto(-364.4621677,1063.36373865)(-363.35483758,1062.05531455)(-362.75329162,1060.49251089)
+\curveto(-362.21972305,1058.90361702)(-362.11735233,1056.77074224)(-363.19163789,1055.37230692)
+\curveto(-363.07140962,1054.55503105)(-363.09922101,1053.67513867)(-363.46138944,1052.89373684)
+\curveto(-361.87120404,1053.0868044)(-360.99855777,1050.03164065)(-363.02304317,1050.18687741)
+\lineto(-363.22535683,1050.90435822)
+\lineto(-363.83229783,1051.36093692)
+\lineto(-364.50667671,1051.42616245)
+\curveto(-363.38963553,1049.37677635)(-365.72352596,1047.03909341)(-367.91229005,1047.93659668)
+\lineto(-368.04716583,1047.54524351)
+\curveto(-367.03883453,1046.36661822)(-364.12228074,1046.09854129)(-363.4276705,1048.03443498)
+\curveto(-362.65833907,1047.95705141)(-363.62661227,1047.10170992)(-363.83229783,1046.79514994)
+\lineto(-361.7417233,1048.29533709)
+\lineto(-361.87659907,1047.31695416)
+\curveto(-364.30840932,1046.15306984)(-361.89304043,1043.43342621)(-361.60684752,1041.70755872)
+\lineto(-361.57312858,1043.50126075)
+\curveto(-361.66319862,1043.89391844)(-361.53649631,1045.28974474)(-361.06734441,1044.51225644)
+\curveto(-358.6314879,1039.07636091)(-351.65841027,1036.57430964)(-346.09613326,1037.98970361)
+\lineto(-347.95067518,1036.97870792)
+\lineto(-348.18670779,1036.88086963)
+\curveto(-346.52099196,1036.11133884)(-344.55045687,1036.90660762)(-342.82539569,1036.97870792)
+\curveto(-341.77269026,1036.00554304)(-339.20667862,1036.62609871)(-338.27333825,1038.05492914)
+\lineto(-339.82440967,1038.44628231)
+\lineto(-340.7685401,1039.3594397)
+\lineto(-352.97479785,1060.94908959)
+\curveto(-355.08290623,1063.31286274)(-357.69814753,1065.02698962)(-360.52784131,1066.42803397)
+\lineto(-361.67428541,1066.36280845)
+\lineto(-362.92188634,1067.24335308)
+\lineto(-364.8101472,1066.85199991)
+\lineto(-365.21477453,1067.7651573)
+\curveto(-365.69385329,1067.30205605)(-366.04331642,1066.51961062)(-366.83328385,1066.46064674)
+\lineto(-366.32749968,1067.8629956)
+\lineto(-367.40650589,1067.08028926)
+\curveto(-367.67989909,1067.40798231)(-367.85388884,1067.73971935)(-367.67625745,1068.12389771)
+\curveto(-370.19438819,1068.83629093)(-373.43140681,1068.00341311)(-375.22930091,1065.84100422)
+\lineto(-375.97111768,1065.51487658)
+\curveto(-375.09429026,1064.39612831)(-374.37823476,1062.55233308)(-375.49905246,1061.27521723)
+\curveto(-376.21537771,1060.08485134)(-377.60716084,1059.7893797)(-378.9721037,1059.9380939)
+\curveto(-379.23929261,1060.08172052)(-380.10762286,1060.09593968)(-379.61276364,1060.55773642)
+\curveto(-379.25035242,1060.53125486)(-379.10657485,1060.67362914)(-378.93838475,1060.94908959)
+\curveto(-376.62391644,1061.22708079)(-377.70413653,1064.54171169)(-378.33144376,1065.90622975)
+\curveto(-380.65939966,1066.86647998)(-382.41278475,1069.2209911)(-382.47887388,1071.67868901)
+\lineto(-383.1869717,1072.82013575)
+\curveto(-383.23262715,1070.83075714)(-382.65947254,1068.49959675)(-381.29871084,1066.81938714)
+\curveto(-380.26057199,1065.87100796)(-378.09541115,1064.33559902)(-379.14069842,1062.71017886)
+\lineto(-380.08482885,1064.99307235)
+\curveto(-383.62801549,1065.23205869)(-386.16368008,1068.33001038)(-386.42399033,1071.64607624)
+\curveto(-387.01137434,1070.22024619)(-386.35358518,1068.28565702)(-385.41242201,1067.01506373)
+\curveto(-384.12300959,1065.25788799)(-380.9709627,1065.41442926)(-379.68020152,1063.4928852)
+\lineto(-380.05110991,1063.32982138)
+\curveto(-381.59813506,1064.51588238)(-383.44863071,1065.22657974)(-385.27754623,1065.84100422)
+\curveto(-386.38393223,1067.24465759)(-387.12264685,1068.83616048)(-387.23324499,1070.60246779)
+\curveto(-387.74752632,1070.26316459)(-388.34246337,1070.19637365)(-388.91919219,1070.34156568)
+\curveto(-389.40609374,1069.94903845)(-390.43114964,1069.33683164)(-390.80745306,1070.08066356)
+\lineto(-394.38166112,1068.05867218)
+\lineto(-395.73041888,1067.01506373)
+\lineto(-395.86529466,1067.8629956)
+\curveto(-396.62235239,1067.78699481)(-397.08753894,1068.3259664)(-397.48380397,1068.77615299)
+\lineto(-398.12446391,1067.50425519)
+\lineto(-399.37206484,1068.38479982)
+\curveto(-400.15043295,1068.05084512)(-400.43124431,1068.39384921)(-400.1813195,1069.16750616)
+\lineto(-401.8672667,1068.3195743)
+\curveto(-401.31292726,1069.42697332)(-401.75666856,1070.23459581)(-402.4067698,1071.12427202)
+\lineto(-402.81139713,1069.62408486)
+\curveto(-402.33096962,1069.65020116)(-401.80050319,1069.57718771)(-402.06958036,1068.97182958)
+\lineto(-402.47420769,1068.58047641)
+\curveto(-403.15667912,1068.82546349)(-403.76807101,1068.71718912)(-404.09271701,1067.92822113)
+\curveto(-405.16349579,1067.68036412)(-405.27517294,1068.04826219)(-405.0031285,1068.80876576)
+\curveto(-405.34800585,1068.58321588)(-405.78958915,1067.96526923)(-406.0821347,1068.54786365)
+\curveto(-406.52102048,1068.24469539)(-407.25258669,1068.05697632)(-407.66692507,1068.38479982)
+\lineto(-409.48774805,1066.75416162)
+\curveto(-415.33326419,1065.76064637)(-422.31443436,1063.97685862)(-426.21234429,1058.6661961)
+\lineto(-427.49366417,1057.55736212)
+\curveto(-428.72966578,1055.03052515)(-429.44666541,1052.2597447)(-431.2701859,1049.99120083)
+\lineto(-433.22588465,1041.1857545)
+\curveto(-434.11296263,1041.11902878)(-432.92214441,1042.97945653)(-434.00142037,1042.32720124)
+\curveto(-433.87730768,1040.00647695)(-433.43305385,1036.9265275)(-436.12571384,1035.77203564)
+\lineto(-436.9349685,1034.85887825)
+\lineto(-437.10356322,1033.58698044)
+\curveto(-436.18006878,1030.04914779)(-440.44308744,1028.65853952)(-442.06024799,1026.11865745)
+\curveto(-442.46986572,1025.41409129)(-442.32028849,1024.68630484)(-442.06024799,1023.96621501)
+\curveto(-441.64887687,1023.40344915)(-441.06810178,1023.72409785)(-440.47545762,1023.67270013)
+\curveto(-438.38623185,1024.09797058)(-437.3787098,1026.56871359)(-434.97926974,1026.31433403)
+\curveto(-434.21519847,1027.47456573)(-432.94534304,1028.32849835)(-431.47249956,1028.14064883)
+\curveto(-429.87017534,1030.22003867)(-426.99867007,1029.66170815)(-424.72871076,1029.83651256)
+\lineto(-422.84044989,1031.72805289)
+\lineto(-423.51482877,1029.96696362)
+\lineto(-421.32309741,1030.7170572)
+\curveto(-421.06885657,1030.69882014)(-421.34193955,1030.96295744)(-421.32309741,1030.7170572)
+\lineto(-421.42425424,1031.33669972)
+\lineto(-419.67086915,1032.77166134)
+\curveto(-418.92514098,1032.98507927)(-418.38995391,1033.77026418)(-417.91748406,1034.33707402)
+\curveto(-416.71762916,1035.24892691)(-415.74463531,1036.49342999)(-414.95021699,1037.72880149)
+\lineto(-414.71418438,1037.50051215)
+\curveto(-414.86848227,1037.06258795)(-415.86912565,1036.37198005)(-415.15253065,1036.22861434)
+\lineto(-415.75947164,1035.18500589)
+\lineto(-414.61302755,1035.70681012)
+\lineto(-412.32013935,1038.31583125)
+\lineto(-411.03881948,1041.25098003)
+\lineto(-410.70163004,1041.57710767)
+\lineto(-409.04940178,1046.50163506)
+\lineto(-408.64477445,1049.63246042)
+\curveto(-408.26806641,1050.30402246)(-408.24675604,1051.07524911)(-408.24014712,1051.85012838)
+\lineto(-407.56576824,1054.06779635)
+\lineto(-407.43089247,1056.67681748)
+\lineto(-406.58791886,1058.86187268)
+\lineto(-402.74395924,1062.18837463)
+\lineto(-402.74395924,1062.38405122)
+\lineto(-403.24974341,1062.54711504)
+\curveto(-405.05303253,1061.98030519)(-406.58791886,1060.49251089)(-407.32973563,1058.79664716)
+\lineto(-410.83650581,1054.7526644)
+\lineto(-412.52245302,1053.70905594)
+\lineto(-412.52245302,1053.90473253)
+\lineto(-410.09468904,1055.99194944)
+\lineto(-409.7574996,1056.31807708)
+\lineto(-408.914526,1057.85087699)
+\lineto(-408.77965023,1057.98132805)
+\curveto(-408.52540939,1057.96310404)(-408.79849237,1058.22722829)(-408.77965023,1057.98132805)
+\lineto(-408.914526,1057.85087699)
+\lineto(-409.31915333,1057.58997488)
+\lineto(-409.42031016,1057.62258764)
+\lineto(-408.47617973,1058.99232374)
+\lineto(-408.24014712,1059.28583862)
+\lineto(-408.10527135,1059.41628967)
+\lineto(-407.97039557,1059.54674073)
+\curveto(-407.71615473,1059.52851672)(-407.98923772,1059.79264097)(-407.97039557,1059.54674073)
+\lineto(-408.10527135,1059.41628967)
+\lineto(-408.24014712,1059.28583862)
+\lineto(-410.63419215,1057.36168553)
+\lineto(-405.50891266,1063.29720861)
+\curveto(-402.68596266,1063.4497059)(-400.10039403,1063.11692525)(-398.56281018,1065.64532763)
+\curveto(-398.053789,1065.1475264)(-398.86075077,1064.66603155)(-399.0348754,1064.21036601)
+\lineto(-398.39421546,1063.59072349)
+\curveto(-399.25337416,1060.90864976)(-401.63797788,1058.78229754)(-403.5532139,1056.57897919)
+\curveto(-403.81001738,1056.32525189)(-404.14680219,1055.56550493)(-404.56478222,1055.92672391)
+\curveto(-402.39867726,1057.45169676)(-403.98535589,1059.19974092)(-403.5532139,1060.81863853)
+\lineto(-406.18329154,1058.34006846)
+\curveto(-408.31567756,1049.0376036)(-408.89294588,1038.08101935)(-417.91748406,1031.988955)
+\curveto(-418.3276413,1031.08336376)(-418.64473425,1030.17046727)(-418.62558189,1029.15164452)
+\lineto(-417.27682412,1026.15127021)
+\curveto(-417.2885219,1023.35439955)(-417.61428332,1020.15704415)(-414.47815177,1019.07430038)
+\lineto(-414.0398055,1018.06330469)
+\curveto(-415.11962096,1013.57839736)(-407.54688563,1013.30575466)(-406.31816731,1009.61659877)
+\curveto(-405.8416512,1009.85493285)(-405.10752235,1009.70149632)(-404.86825272,1009.19263284)
+\curveto(-405.03199191,1007.24238954)(-408.45594836,1006.08398416)(-406.99254619,1003.74630122)
+\lineto(-405.77866421,1002.96359488)
+\curveto(-401.62718782,1002.59950598)(-398.92157975,997.78990597)(-403.21602446,995.46265912)
+\lineto(-403.78924651,994.32121237)
+\curveto(-403.80667246,993.63895334)(-403.87226255,992.90842743)(-403.35090024,992.39705928)
+\lineto(-401.79982881,992.00570611)
+\curveto(-401.79898854,993.93507724)(-400.34856546,995.19132092)(-398.96743751,996.44104204)
+\curveto(-398.50643211,997.62932072)(-397.9619386,997.12447513)(-398.76512385,996.24536546)
+\curveto(-399.99991158,995.09322172)(-401.38845769,993.93116371)(-401.49635832,992.23399546)
+\curveto(-400.70126561,990.53943624)(-399.20751639,988.84487701)(-397.07917665,989.00533181)
+\curveto(-397.98972301,990.27357698)(-400.09230149,991.58304469)(-399.23718906,993.31021668)
+\curveto(-399.01963444,994.29864434)(-397.99808531,994.78953166)(-398.79884279,993.53850603)
+\curveto(-399.14533866,993.03066007)(-399.34225729,992.44636978)(-399.0348754,991.87525506)
+\lineto(-395.15719684,986.75505108)
+\curveto(-394.77455426,984.5230335)(-396.90114062,983.08807188)(-398.63024807,982.15665133)
+\lineto(-399.57437851,980.85214076)
+\curveto(-399.84143254,980.05051902)(-399.40376065,979.42891974)(-398.76512385,978.96060044)
+\curveto(-398.66361634,981.8931402)(-393.99861392,982.66541045)(-393.80843907,985.71144263)
+\lineto(-393.90959591,988.02694888)
+\curveto(-393.39733771,987.21176023)(-393.44508373,985.79362679)(-393.6735633,984.79828523)
+\curveto(-394.05269911,983.19895527)(-395.79515926,982.58974884)(-396.87686298,981.50439605)
+\curveto(-398.35105522,980.51375072)(-398.61001671,978.75709679)(-397.21405242,977.78654093)
+\curveto(-398.72061484,978.25929556)(-400.80579434,979.70156244)(-399.57437851,981.50439605)
+\curveto(-398.22723925,983.23026353)(-395.08975895,983.94774434)(-395.42694839,986.62460002)
+\curveto(-396.379576,989.56366233)(-400.50637012,988.18740368)(-401.53007726,991.54912742)
+\curveto(-402.56282108,991.84133778)(-404.01179154,991.96304862)(-404.19387384,993.27760392)
+\curveto(-404.26765089,994.19180492)(-403.90604893,994.95911804)(-403.48577601,995.72356123)
+\curveto(-398.64913068,998.90656701)(-404.01934458,1002.32568921)(-407.26229775,1003.61585016)
+\curveto(-407.64305206,1004.04386008)(-407.57885119,1004.5960594)(-407.56576824,1005.14865008)
+\curveto(-408.00411451,1007.04410393)(-404.2909844,1007.82420125)(-405.57635054,1009.42092219)
+\curveto(-406.80749663,1008.1138026)(-410.11896668,1006.28357427)(-409.48774805,1004.07242886)
+\curveto(-407.40121979,1002.52658384)(-405.04224247,1000.95725763)(-403.28346235,999.18051423)
+\lineto(-409.69006172,1003.74630122)
+\curveto(-410.77473271,1005.30649586)(-409.16660883,1006.56795758)(-408.13899029,1007.59460739)
+\lineto(-410.49931637,1006.87712658)
+\curveto(-407.00603377,1008.38253177)(-409.80969653,1010.75282748)(-412.38757724,1010.92110934)
+\curveto(-412.80326438,1011.27515351)(-412.67486264,1011.83700621)(-412.69104774,1012.3234582)
+\curveto(-409.99353221,1015.02509958)(-415.61110829,1012.66289185)(-416.43385052,1014.9650921)
+\curveto(-417.4718545,1016.48484691)(-415.71280462,1017.59368089)(-415.25368748,1018.84601103)
+\curveto(-417.95524928,1019.9647593)(-420.69997132,1022.63039619)(-417.68145145,1025.23811281)
+\curveto(-418.15567468,1027.41012291)(-420.21306977,1029.44124586)(-418.52442505,1031.72805289)
+\curveto(-421.0614384,1029.02902052)(-425.19942722,1029.52473454)(-427.8982915,1027.1622659)
+\lineto(-428.60638932,1026.02081915)
+\curveto(-430.35842565,1015.92390736)(-427.86969783,1005.39650709)(-421.99747629,997.06068456)
+\curveto(-420.19823344,993.41588204)(-414.14635736,991.76045813)(-414.61302755,987.43991913)
+\curveto(-414.92701835,987.091093)(-415.26542167,986.74383229)(-415.79319059,986.88550214)
+\lineto(-414.81534121,987.76604677)
+\curveto(-414.61707382,988.17148865)(-414.65268102,988.77430299)(-414.95021699,989.13578287)
+\lineto(-415.79319059,990.40768067)
+\lineto(-416.5687263,990.96209766)
+\curveto(-418.00380456,992.24195298)(-414.66293158,988.1026105)(-416.8721968,988.45091482)
+\lineto(-416.46756947,989.1031701)
+\lineto(-416.73732102,990.14677856)
+\lineto(-417.91748406,991.744804)
+\curveto(-427.39925112,1000.52937816)(-431.11912503,1013.55622068)(-429.31448715,1025.98820639)
+\curveto(-430.26617062,1025.82044633)(-430.67268621,1026.70255638)(-431.2701859,1027.1622659)
+\curveto(-433.23937223,1025.56684948)(-435.53360918,1022.56647517)(-438.28372626,1024.03144054)
+\curveto(-439.63922781,1023.21638234)(-442.18568246,1022.49994513)(-442.90322159,1024.45540647)
+\curveto(-443.13669156,1028.75768232)(-436.2228244,1029.84042609)(-437.64306632,1034.36968678)
+\lineto(-437.20472005,1035.51113353)
+\curveto(-434.73919086,1036.89391473)(-433.95016757,1039.44292838)(-434.43976664,1042.03368637)
+\curveto(-445.86374488,1042.66859166)(-455.0083225,1052.22452292)(-458.69043119,1062.16228442)
+\curveto(-462.89720665,1077.79032101)(-454.49039952,1096.87531061)(-437.64981011,1101.29760144)
+\curveto(-434.47483434,1102.29463886)(-431.11103248,1103.32872439)(-427.66900268,1102.99346517)
+\curveto(-423.73602504,1102.84735999)(-419.63715021,1103.2186237)(-416.03596698,1101.98246948)
+\lineto(-407.87598253,1097.8732612)
+\curveto(-405.93377135,1096.67115471)(-403.38057291,1097.36932876)(-401.40194527,1097.8732612)
+\lineto(-401.36822633,1097.25361868)
+\curveto(-402.69661785,1094.07713545)(-406.36807135,1093.04918112)(-409.4607729,1092.42692958)
+\lineto(-415.39530705,1092.55738063)
+\curveto(-417.50071791,1093.11714612)(-419.64659151,1092.97821574)(-421.8693443,1092.94873381)
+\curveto(-423.641612,1092.98683856)(-425.35588312,1092.83389774)(-426.9946238,1092.42692958)
+\curveto(-440.7924157,1091.52916541)(-449.54585357,1070.1589342)(-436.84055545,1062.42318653)
+\curveto(-434.4761831,1062.13162842)(-432.65266261,1063.59241935)(-430.73742658,1064.60824173)
+\curveto(-428.61583063,1065.97928234)(-426.68036324,1067.6412288)(-424.87033032,1069.50015636)
+\lineto(-420.82405704,1074.06594334)
+\curveto(-419.8699458,1075.41219825)(-418.90342598,1076.78976141)(-417.58703841,1077.84902399)
+\curveto(-410.65577227,1087.78548098)(-394.60420615,1089.66136718)(-386.63304778,1080.32759407)
+\lineto(-383.59834282,1082.0234578)
+\curveto(-372.52773911,1090.49494943)(-359.19931492,1078.89393695)(-353.1838553,1069.63060742)
+\lineto(-349.94683667,1066.10842888)
+\curveto(-348.69923574,1065.28736993)(-347.29922519,1064.63954999)(-345.79940655,1064.51040344)
+\curveto(-344.71824233,1064.21662766)(-343.50921588,1064.41355658)(-342.4612311,1064.67346726)
+\curveto(-334.57369571,1069.1714197)(-335.48545595,1080.26236854)(-339.35908824,1087.04582349)
+\curveto(-342.82674445,1091.2072122)(-348.54143108,1092.7504482)(-353.76382114,1092.16602746)
+\lineto(-359.83323106,1092.55738063)
+\curveto(-361.76734969,1093.0710969)(-363.67179565,1094.13583842)(-364.78991584,1095.85126982)
+\curveto(-364.92883789,1096.68106899)(-365.47562428,1097.56017866)(-365.05966739,1098.39506542)
+\curveto(-361.78218603,1096.77877683)(-357.75479535,1096.55570552)(-354.47191896,1098.46029095)
+\curveto(-344.68263513,1105.33897517)(-328.58925752,1104.14012996)(-323.31561467,1092.39431681)
+\curveto(-320.72734853,1086.59185381)(-319.80749573,1079.99755289)(-320.5843802,1073.5050038)
+\curveto(-319.76163797,1060.61774391)(-330.83224168,1047.54524351)(-344.70016898,1048.28881454)
+\lineto(-341.46315035,1042.2228404)
+\curveto(-340.79403163,1040.9887734)(-338.70494073,1037.51094823)(-337.8215044,1040.33130008)
+\curveto(-337.68460548,1040.45884207)(-337.50090468,1040.74574308)(-337.34943918,1040.46175113)
+\curveto(-336.79725775,1039.06201129)(-337.72169632,1037.62183163)(-338.69819694,1036.61344496)
+\curveto(-346.41444009,1034.9762842)(-356.42087393,1036.43081348)(-361.02013789,1043.20122332)
+\lineto(-360.88526212,1034.52622805)
+\curveto(-358.52763355,1030.86968493)(-354.69446399,1036.01728363)(-352.32065033,1033.41739407)
+\curveto(-350.97189257,1030.62182792)(-349.90232767,1027.62667166)(-350.97189257,1024.48149668)
+\lineto(-357.37849194,1017.63281621)
+\curveto(-357.86606787,1015.46732867)(-353.69908076,1014.97161465)(-353.77056493,1012.70828882)
+\curveto(-355.36749411,1010.70456058)(-357.71298386,1009.22785462)(-359.94113168,1008.10988907)
+\curveto(-357.89911243,1006.09833377)(-358.11491367,1002.39352376)(-360.27832112,1000.47850225)
+\lineto(-361.59335994,1000.05453631)
+\curveto(-365.22556459,1001.41253181)(-371.67397545,997.51204522)(-368.23599192,993.62982177)
+\lineto(-367.79764564,992.35792397)
+\curveto(-367.81098216,991.5600853)(-367.68595501,990.73511282)(-368.10111614,990.04241771)
+\curveto(-368.75364515,988.11043756)(-370.4493034,986.89463371)(-372.14738943,985.86798389)
+\curveto(-377.09867917,984.02340595)(-379.81103103,978.34617596)(-377.07035525,973.73603562)
+\lineto(-375.78903538,973.67081009)
+\curveto(-379.00582264,972.53445094)(-374.37688601,971.89276219)(-373.09151986,972.04017188)
+\curveto(-374.83006861,971.23059262)(-377.84049594,971.37356698)(-377.9470478,973.80126115)
+\curveto(-381.85035276,976.82381213)(-379.67210898,983.08024481)(-375.51928383,984.9548265)
+\lineto(-372.68689253,987.56384763)
+\curveto(-371.81505551,988.62454517)(-371.3340885,989.86500427)(-371.16954005,991.18386446)
+\lineto(-371.03466427,993.14063031)
+\curveto(-369.01422515,986.45631816)(-378.93973351,984.9300408)(-379.36324345,979.20845745)
+\lineto(-375.99134905,983.83946996)
+\curveto(-371.74411085,986.25151)(-364.99897329,990.87078192)(-370.596318,995.6452906)
+\lineto(-371.06838322,997.14547775)
+\lineto(-371.4392916,997.96079685)
+\curveto(-374.35260837,997.25570889)(-375.81735929,993.31413021)(-373.46242824,991.30779296)
+\lineto(-373.32755247,989.22057605)
+\curveto(-374.16337765,987.29772748)(-376.04799687,985.7818862)(-377.81217202,984.55695077)
+\curveto(-380.47461984,982.74368109)(-381.42819158,979.5724159)(-380.88059593,976.56682355)
+\curveto(-380.65993916,975.48968918)(-379.88399882,974.75746739)(-378.99233506,974.08825347)
+\lineto(-378.75630246,973.3381599)
+\curveto(-382.84978226,974.63640881)(-386.01261921,979.13149133)(-382.60026208,982.79586151)
+\curveto(-381.1274186,984.35214262)(-379.31603693,985.3748789)(-377.27266892,985.86146134)
+\curveto(-375.05531116,988.0778248)(-372.55201675,991.27387569)(-376.12622482,993.55807369)
+\lineto(-376.29481954,994.96042255)
+\lineto(-375.78903538,997.14547775)
+\curveto(-377.40349842,997.62605944)(-377.60716084,995.15870815)(-377.47498258,993.68852475)
+\lineto(-376.73316581,992.90581841)
+\curveto(-378.82643786,993.58703382)(-377.68889556,997.76512027)(-375.78903538,998.58043937)
+\lineto(-376.39597637,998.31953726)
+\lineto(-376.93547948,998.05863515)
+\lineto(-378.62142668,996.94980116)
+\curveto(-378.75016561,996.77069186)(-379.13449413,996.46374053)(-379.26208662,996.78673734)
+\lineto(-378.01448569,997.79773303)
+\lineto(-376.93547948,998.44998832)
+\lineto(-376.59829004,998.71089043)
+\lineto(-380.57712543,996.55844799)
+\lineto(-379.9364655,997.30854157)
+\lineto(-378.89117823,998.12386067)
+\curveto(-377.3212242,999.27026456)(-379.47330208,998.36506468)(-380.17249811,998.05863515)
+\lineto(-381.65613164,997.21070328)
+\lineto(-380.61084438,998.74350319)
+\curveto(-381.57722931,997.96379723)(-384.06501301,997.26418821)(-381.85844531,998.51521384)
+\curveto(-380.03627357,999.40606411)(-377.895795,1000.65200215)(-375.89019221,1000.04801376)
+\curveto(-371.15470371,1002.82531676)(-365.55196397,1000.85028776)(-360.27157734,1001.38513709)
+\curveto(-357.26924256,1004.94384192)(-360.50814945,1009.41439963)(-364.85735372,1009.01652391)
+\lineto(-369.8140385,1008.91868562)
+\lineto(-372.91618135,1008.00552822)
+\curveto(-382.58003071,1003.78021849)(-389.06081175,1015.41253922)(-392.91825895,1022.32905425)
+\curveto(-393.6089578,1023.22942744)(-394.6379251,1023.77575647)(-395.68321236,1023.76401587)
+\curveto(-393.41729932,1024.52350192)(-392.01459125,1021.57374263)(-391.02999809,1019.98093523)
+\lineto(-389.276613,1017.30668856)
+\curveto(-388.81398908,1019.64698052)(-388.08053461,1022.41645646)(-386.03959437,1023.89446693)
+\lineto(-386.27562698,1023.40527547)
+\curveto(-387.69317138,1021.55939301)(-388.61437294,1019.36911977)(-388.56851517,1017.01317369)
+\curveto(-386.81917635,1011.77686827)(-380.284445,1006.5340403)(-374.67631023,1009.83836557)
+\curveto(-374.15703849,1009.7791147)(-372.79883942,1010.21028153)(-373.05780091,1009.4470124)
+\curveto(-375.3925006,1008.92625178)(-377.75282668,1008.09684396)(-380.17249811,1008.04466354)
+\curveto(-379.0545128,1007.65422352)(-377.94030401,1007.31361582)(-376.69944687,1007.35979549)
+\curveto(-370.40074812,1009.74835434)(-363.87006304,1011.79513142)(-356.87270778,1010.62107191)
+\lineto(-354.47866275,1012.61045052)
+\curveto(-354.34866948,1014.77072002)(-358.25653324,1015.12815592)(-357.85055715,1017.37191409)
+\curveto(-358.96314743,1016.51993824)(-358.63607367,1017.76378907)(-358.12030871,1018.41552255)
+\lineto(-360.48063479,1016.39353117)
+\lineto(-359.60394224,1017.56759068)
+\curveto(-357.53899411,1020.11138628)(-361.98045342,1015.60169325)(-361.559641,1016.85010987)
+\lineto(-360.88526212,1017.63281621)
+\curveto(-360.70506808,1017.83358038)(-359.89163227,1018.42687179)(-360.61551056,1018.28507149)
+\lineto(-363.04327454,1016.13262905)
+\lineto(-361.99798727,1018.1872332)
+\lineto(-361.9777559,1018.19375575)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1077.54898656)
+\lineto(-454.09791101,1078.72304607)
+\lineto(-449.20866413,1077.19024615)
+\lineto(-444.69032563,1075.49438242)
+\lineto(-444.38685513,1075.85312282)
+\lineto(-443.88107097,1075.55960794)
+\curveto(-444.40924451,1071.32386213)(-443.4995074,1066.51152265)(-440.07083029,1063.59072349)
+\lineto(-442.36371849,1060.72080024)
+\lineto(-441.41958806,1062.54711504)
+\curveto(-441.54745029,1063.67434262)(-442.12336985,1062.87963478)(-442.5997511,1062.44927674)
+\curveto(-443.50233979,1062.7956243)(-442.20429532,1065.00220392)(-443.61131942,1063.75378731)
+\lineto(-443.94850886,1063.88423837)
+\lineto(-443.07181631,1065.90622975)
+\lineto(-445.16239084,1064.53649365)
+\curveto(-444.52807007,1065.49413486)(-443.67875731,1066.37976708)(-444.42057407,1067.47164243)
+\lineto(-446.24139705,1066.62371056)
+\lineto(-445.22982873,1068.51525088)
+\lineto(-445.46586134,1068.6783147)
+\curveto(-446.56482916,1067.84708057)(-446.05823575,1069.92138282)(-445.90420761,1070.47201673)
+\lineto(-447.85990637,1070.14588909)
+\lineto(-446.67974332,1071.15688478)
+\lineto(-447.08437065,1071.15688478)
+\lineto(-453.28865636,1069.5914721)
+\curveto(-454.42633353,1069.44667143)(-456.1196989,1069.7828438)(-456.79542654,1068.93921682)
+\curveto(-456.34831334,1068.67935831)(-455.57399151,1068.96944233)(-455.04204145,1069.06966787)
+\lineto(-453.05262375,1069.16750616)
+\lineto(-454.67113306,1068.58047641)
+\lineto(-456.12104766,1068.02605942)
+\lineto(-448.60172313,1069.55885933)
+\lineto(-449.78188618,1068.93921682)
+\lineto(-454.73857095,1066.9498382)
+\lineto(-454.60369517,1066.10190633)
+\lineto(-448.87147469,1067.8629956)
+\lineto(-455.311793,1065.15613617)
+\lineto(-450.89461133,1066.10190633)
+\lineto(-448.06222003,1067.21074031)
+\lineto(-448.19709581,1066.75416162)
+\curveto(-450.87033369,1065.46347886)(-453.94954766,1064.43213281)(-456.52567498,1063.59072349)
+\curveto(-455.7939739,1063.08731286)(-454.66304052,1063.76722377)(-453.82815946,1063.98207666)
+\lineto(-450.489984,1065.18874893)
+\lineto(-446.84833805,1066.81938714)
+\curveto(-449.71175077,1064.27559154)(-453.63798462,1063.45244537)(-457.03145914,1061.86224699)
+\lineto(-457.03145914,1061.40566829)
+\lineto(-453.45725108,1062.64495333)
+\lineto(-452.24336909,1062.64495333)
+\lineto(-455.8512961,1060.32944707)
+\curveto(-454.13432747,1059.90613339)(-452.15435108,1061.61530314)(-450.45626506,1062.28621292)
+\lineto(-448.87147469,1063.23198308)
+\lineto(-447.25296537,1064.07991495)
+\lineto(-452.44568276,1060.62296195)
+\curveto(-451.92438788,1060.27361402)(-451.27428664,1060.95000275)(-450.72601661,1061.11215341)
+\lineto(-447.52271693,1062.90585544)
+\lineto(-452.58055853,1059.77503008)
+\lineto(-455.27807405,1058.40529399)
+\lineto(-449.41097779,1060.68818748)
+\curveto(-449.53838145,1060.52003607)(-449.58038177,1060.13311823)(-449.27610202,1060.10115772)
+\lineto(-448.06222003,1060.42728536)
+\curveto(-448.37014143,1059.57165688)(-449.40949416,1059.26131382)(-450.15279456,1058.73142163)
+\lineto(-454.06419207,1056.44852813)
+\curveto(-451.77939642,1056.89741022)(-449.73602841,1058.41833909)(-447.75874953,1059.67719179)
+\lineto(-447.25296537,1059.90548114)
+\curveto(-448.88361351,1057.97219648)(-450.84335853,1056.42113341)(-453.25493741,1055.33969415)
+\lineto(-453.25493741,1055.01356651)
+\curveto(-452.89185182,1054.90154819)(-452.5016562,1055.02237717)(-452.24336909,1055.27446862)
+\lineto(-450.22023245,1056.44852813)
+\lineto(-448.60172313,1057.42691106)
+\curveto(-448.46347546,1056.57036942)(-447.51529876,1057.49894613)(-447.1180896,1057.68781317)
+\lineto(-452.71543431,1054.16563464)
+\lineto(-452.71543431,1053.70905594)
+\lineto(-451.13064394,1054.45914952)
+\lineto(-449.24238307,1055.50275797)
+\lineto(-446.54486755,1057.06817065)
+\curveto(-445.35607246,1057.92353823)(-445.70229858,1056.88149519)(-446.64602438,1056.51375366)
+\lineto(-451.77130387,1053.31770277)
+\curveto(-448.95644643,1054.34761387)(-445.87318618,1055.94107352)(-443.88107097,1058.2096174)
+\curveto(-444.16795175,1058.53965857)(-443.44609659,1058.83760879)(-443.20669209,1058.86187268)
+\curveto(-444.56623991,1055.50014895)(-448.72985512,1054.04561967)(-451.77130387,1052.27409432)
+\curveto(-453.11035058,1053.59947706)(-453.86592468,1055.22098369)(-454.80600884,1056.77465578)
+\curveto(-456.10675082,1058.3583316)(-456.89118834,1060.2707441)(-457.70583802,1062.05792357)
+\curveto(-461.72918243,1075.76832963)(-455.66651629,1092.64869637)(-441.58818278,1098.71467051)
+\curveto(-440.24603393,1099.60369446)(-438.73960638,1100.13006448)(-437.23843899,1100.6388236)
+\curveto(-433.04784863,1101.97072889)(-428.37170547,1102.85779607)(-423.88573716,1102.07378522)
+\curveto(-419.00728033,1102.1396891)(-413.93190488,1101.27764242)(-410.08794526,1098.06241523)
+\lineto(-407.15439712,1096.59484084)
+\curveto(-405.66132228,1096.28749815)(-404.21140769,1096.48488364)(-402.73721546,1096.82313019)
+\curveto(-404.19657135,1093.40400799)(-409.22878656,1093.281384)(-412.51570923,1093.36617719)
+\lineto(-411.90876823,1093.75753036)
+\curveto(-410.98257628,1094.38017325)(-411.41633678,1095.98172087)(-411.36926513,1097.0840323)
+\lineto(-412.1110819,1097.01880677)
+\curveto(-412.45933115,1098.43159172)(-413.75926388,1097.69219513)(-414.67372164,1097.9971897)
+\curveto(-414.65242476,1096.57396867)(-414.74790332,1094.87549591)(-415.41553841,1093.49662824)
+\lineto(-415.92132257,1093.46401548)
+\curveto(-416.30531391,1093.35925024)(-416.88406586,1093.54736066)(-416.35966885,1093.88798141)
+\curveto(-416.38799276,1094.82383729)(-415.92037844,1095.55905945)(-415.51669525,1096.33393873)
+\lineto(-415.55041419,1098.38854287)
+\lineto(-416.19107413,1099.33431303)
+\lineto(-416.89917195,1093.6270793)
+\lineto(-419.42809275,1093.72491759)
+\lineto(-419.56296853,1095.68168344)
+\lineto(-419.56296853,1096.59484084)
+\curveto(-419.41433542,1097.13216874)(-419.3927553,1097.69167333)(-418.78743282,1097.73628759)
+\lineto(-418.75371387,1096.20348767)
+\curveto(-418.99783903,1095.76269355)(-419.06878369,1094.14888353)(-418.48396232,1095.15987922)
+\lineto(-418.34908654,1095.68168344)
+\curveto(-418.03010533,1097.45973135)(-417.43597754,1095.28876486)(-418.21421077,1094.63807499)
+\lineto(-417.97817816,1094.27933458)
+\curveto(-416.45947692,1095.95041262)(-416.03192071,1098.55552022)(-417.57355083,1100.47575978)
+\lineto(-418.04561605,1100.34530872)
+\lineto(-417.97817816,1098.58421946)
+\lineto(-418.85487071,1100.47575978)
+\curveto(-419.69636067,1100.43589394)(-418.89978434,1098.11068212)(-419.52924959,1099.10602368)
+\curveto(-419.03128822,1100.46401918)(-420.64224449,1100.76536112)(-420.50709896,1099.33431303)
+\lineto(-420.87800735,1096.10564938)
+\lineto(-420.0013148,1097.34493442)
+\curveto(-420.06488176,1096.11725952)(-420.02356931,1094.72286818)(-420.94544524,1093.75753036)
+\lineto(-422.49651666,1093.75753036)
+\lineto(-420.64197474,1099.85611726)
+\curveto(-420.55886429,1100.33591625)(-420.92184197,1100.53707177)(-421.31635362,1100.6388236)
+\lineto(-422.96858188,1093.75753036)
+\lineto(-423.87899337,1093.72491759)
+\lineto(-425.59865951,1093.75753036)
+\lineto(-425.3626269,1097.89935141)
+\curveto(-425.6710878,1098.90369409)(-425.42418421,1100.4287974)(-426.40791417,1100.997564)
+\curveto(-426.0430752,1098.97165909)(-425.58517194,1096.31437107)(-426.07072473,1094.01843247)
+\lineto(-432.4773241,1091.99644109)
+\lineto(-438.58045297,1087.20236476)
+\lineto(-439.35598868,1088.27858597)
+\lineto(-438.9850803,1088.89822849)
+\lineto(-443.94176507,1093.10527507)
+\curveto(-444.2032892,1093.49597599)(-445.55083308,1094.1334903)(-445.02077128,1093.23572613)
+\lineto(-444.48126817,1092.84437296)
+\lineto(-445.42539861,1092.64869637)
+\lineto(-445.56027438,1092.19211768)
+\curveto(-444.13733494,1090.46494569)(-442.2612129,1088.77690901)(-440.50243278,1087.49587963)
+\curveto(-440.33208467,1087.82265953)(-440.73212622,1088.00176883)(-440.90706011,1088.21336045)
+\lineto(-442.59300731,1089.97444971)
+\curveto(-443.31432296,1090.65670874)(-444.45429302,1091.19912423)(-444.75101973,1092.12689215)
+\lineto(-441.98606631,1090.95283264)
+\lineto(-440.30011911,1088.47426256)
+\lineto(-440.16524334,1088.14813492)
+\curveto(-438.78951042,1087.43052365)(-438.78006912,1086.33486523)(-439.96292967,1085.40866273)
+\curveto(-441.44791197,1083.11272413)(-442.69955917,1080.70851115)(-443.33482408,1078.10340355)
+\lineto(-444.75101973,1078.88610989)
+\curveto(-445.9889096,1080.76982315)(-449.15876009,1080.68763898)(-451.22505698,1081.4299055)
+\lineto(-451.22505698,1081.10377785)
+\curveto(-448.56530668,1080.15370281)(-445.71807904,1079.47705318)(-443.57085668,1077.54898656)
+\lineto(-443.87432718,1076.1466377)
+\curveto(-446.79978277,1078.00426075)(-449.76974736,1079.94667698)(-453.01216101,1081.20161615)
+\lineto(-453.55166412,1080.94071403)
+\lineto(-450.44952127,1079.50575241)
+\curveto(-449.1258504,1079.01786546)(-448.72850636,1078.35452183)(-448.29150885,1077.54898656)
+\lineto(-448.29825264,1077.54898656)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1077.54898656)
+\lineto(-454.09791101,1078.72304607)
+\lineto(-449.20866413,1077.19024615)
+\lineto(-444.69032563,1075.49438242)
+\lineto(-444.38685513,1075.85312282)
+\lineto(-443.88107097,1075.55960794)
+\curveto(-444.40924451,1071.32386213)(-443.4995074,1066.51152265)(-440.07083029,1063.59072349)
+\lineto(-442.36371849,1060.72080024)
+\lineto(-441.41958806,1062.54711504)
+\curveto(-441.54745029,1063.67434262)(-442.12336985,1062.87963478)(-442.5997511,1062.44927674)
+\curveto(-443.50233979,1062.7956243)(-442.20429532,1065.00220392)(-443.61131942,1063.75378731)
+\lineto(-443.94850886,1063.88423837)
+\lineto(-443.07181631,1065.90622975)
+\lineto(-445.16239084,1064.53649365)
+\curveto(-444.52807007,1065.49413486)(-443.67875731,1066.37976708)(-444.42057407,1067.47164243)
+\lineto(-446.24139705,1066.62371056)
+\lineto(-445.22982873,1068.51525088)
+\lineto(-445.46586134,1068.6783147)
+\curveto(-446.56482916,1067.84708057)(-446.05823575,1069.92138282)(-445.90420761,1070.47201673)
+\lineto(-447.85990637,1070.14588909)
+\lineto(-446.67974332,1071.15688478)
+\lineto(-447.08437065,1071.15688478)
+\lineto(-453.28865636,1069.5914721)
+\curveto(-454.42633353,1069.44667143)(-456.1196989,1069.7828438)(-456.79542654,1068.93921682)
+\curveto(-456.34831334,1068.67935831)(-455.57399151,1068.96944233)(-455.04204145,1069.06966787)
+\lineto(-453.05262375,1069.16750616)
+\lineto(-454.67113306,1068.58047641)
+\lineto(-456.12104766,1068.02605942)
+\lineto(-448.60172313,1069.55885933)
+\lineto(-449.78188618,1068.93921682)
+\lineto(-454.73857095,1066.9498382)
+\lineto(-454.60369517,1066.10190633)
+\lineto(-448.87147469,1067.8629956)
+\lineto(-455.311793,1065.15613617)
+\lineto(-450.89461133,1066.10190633)
+\lineto(-448.06222003,1067.21074031)
+\lineto(-448.19709581,1066.75416162)
+\curveto(-450.87033369,1065.46347886)(-453.94954766,1064.43213281)(-456.52567498,1063.59072349)
+\curveto(-455.7939739,1063.08731286)(-454.66304052,1063.76722377)(-453.82815946,1063.98207666)
+\lineto(-450.489984,1065.18874893)
+\lineto(-446.84833805,1066.81938714)
+\curveto(-449.71175077,1064.27559154)(-453.63798462,1063.45244537)(-457.03145914,1061.86224699)
+\lineto(-457.03145914,1061.40566829)
+\lineto(-453.45725108,1062.64495333)
+\lineto(-452.24336909,1062.64495333)
+\lineto(-455.8512961,1060.32944707)
+\curveto(-454.13432747,1059.90613339)(-452.15435108,1061.61530314)(-450.45626506,1062.28621292)
+\lineto(-448.87147469,1063.23198308)
+\lineto(-447.25296537,1064.07991495)
+\lineto(-452.44568276,1060.62296195)
+\curveto(-451.92438788,1060.27361402)(-451.27428664,1060.95000275)(-450.72601661,1061.11215341)
+\lineto(-447.52271693,1062.90585544)
+\lineto(-452.58055853,1059.77503008)
+\lineto(-455.27807405,1058.40529399)
+\lineto(-449.41097779,1060.68818748)
+\curveto(-449.53838145,1060.52003607)(-449.58038177,1060.13311823)(-449.27610202,1060.10115772)
+\lineto(-448.06222003,1060.42728536)
+\curveto(-448.37014143,1059.57165688)(-449.40949416,1059.26131382)(-450.15279456,1058.73142163)
+\lineto(-454.06419207,1056.44852813)
+\curveto(-451.77939642,1056.89741022)(-449.73602841,1058.41833909)(-447.75874953,1059.67719179)
+\lineto(-447.25296537,1059.90548114)
+\curveto(-448.88361351,1057.97219648)(-450.84335853,1056.42113341)(-453.25493741,1055.33969415)
+\lineto(-453.25493741,1055.01356651)
+\curveto(-452.89185182,1054.90154819)(-452.5016562,1055.02237717)(-452.24336909,1055.27446862)
+\lineto(-450.22023245,1056.44852813)
+\lineto(-448.60172313,1057.42691106)
+\curveto(-448.46347546,1056.57036942)(-447.51529876,1057.49894613)(-447.1180896,1057.68781317)
+\lineto(-452.71543431,1054.16563464)
+\lineto(-452.71543431,1053.70905594)
+\lineto(-451.13064394,1054.45914952)
+\lineto(-449.24238307,1055.50275797)
+\lineto(-446.54486755,1057.06817065)
+\curveto(-445.35607246,1057.92353823)(-445.70229858,1056.88149519)(-446.64602438,1056.51375366)
+\lineto(-451.77130387,1053.31770277)
+\curveto(-448.95644643,1054.34761387)(-445.87318618,1055.94107352)(-443.88107097,1058.2096174)
+\curveto(-444.16795175,1058.53965857)(-443.44609659,1058.83760879)(-443.20669209,1058.86187268)
+\curveto(-444.56623991,1055.50014895)(-448.72985512,1054.04561967)(-451.77130387,1052.27409432)
+\curveto(-453.11035058,1053.59947706)(-453.86592468,1055.22098369)(-454.80600884,1056.77465578)
+\curveto(-456.10675082,1058.3583316)(-456.89118834,1060.2707441)(-457.70583802,1062.05792357)
+\curveto(-461.72918243,1075.76832963)(-455.66651629,1092.64869637)(-441.58818278,1098.71467051)
+\curveto(-440.24603393,1099.60369446)(-438.73960638,1100.13006448)(-437.23843899,1100.6388236)
+\curveto(-433.04784863,1101.97072889)(-428.37170547,1102.85779607)(-423.88573716,1102.07378522)
+\curveto(-419.00728033,1102.1396891)(-413.93190488,1101.27764242)(-410.08794526,1098.06241523)
+\lineto(-407.15439712,1096.59484084)
+\curveto(-405.66132228,1096.28749815)(-404.21140769,1096.48488364)(-402.73721546,1096.82313019)
+\curveto(-404.19657135,1093.40400799)(-409.22878656,1093.281384)(-412.51570923,1093.36617719)
+\lineto(-411.90876823,1093.75753036)
+\curveto(-410.98257628,1094.38017325)(-411.41633678,1095.98172087)(-411.36926513,1097.0840323)
+\lineto(-412.1110819,1097.01880677)
+\curveto(-412.45933115,1098.43159172)(-413.75926388,1097.69219513)(-414.67372164,1097.9971897)
+\curveto(-414.65242476,1096.57396867)(-414.74790332,1094.87549591)(-415.41553841,1093.49662824)
+\lineto(-415.92132257,1093.46401548)
+\curveto(-416.30531391,1093.35925024)(-416.88406586,1093.54736066)(-416.35966885,1093.88798141)
+\curveto(-416.38799276,1094.82383729)(-415.92037844,1095.55905945)(-415.51669525,1096.33393873)
+\lineto(-415.55041419,1098.38854287)
+\lineto(-416.19107413,1099.33431303)
+\lineto(-416.89917195,1093.6270793)
+\lineto(-419.42809275,1093.72491759)
+\lineto(-419.56296853,1095.68168344)
+\lineto(-419.56296853,1096.59484084)
+\curveto(-419.41433542,1097.13216874)(-419.3927553,1097.69167333)(-418.78743282,1097.73628759)
+\lineto(-418.75371387,1096.20348767)
+\curveto(-418.99783903,1095.76269355)(-419.06878369,1094.14888353)(-418.48396232,1095.15987922)
+\lineto(-418.34908654,1095.68168344)
+\curveto(-418.03010533,1097.45973135)(-417.43597754,1095.28876486)(-418.21421077,1094.63807499)
+\lineto(-417.97817816,1094.27933458)
+\curveto(-416.45947692,1095.95041262)(-416.03192071,1098.55552022)(-417.57355083,1100.47575978)
+\lineto(-418.04561605,1100.34530872)
+\lineto(-417.97817816,1098.58421946)
+\lineto(-418.85487071,1100.47575978)
+\curveto(-419.69636067,1100.43589394)(-418.89978434,1098.11068212)(-419.52924959,1099.10602368)
+\curveto(-419.03128822,1100.46401918)(-420.64224449,1100.76536112)(-420.50709896,1099.33431303)
+\lineto(-420.87800735,1096.10564938)
+\lineto(-420.0013148,1097.34493442)
+\curveto(-420.06488176,1096.11725952)(-420.02356931,1094.72286818)(-420.94544524,1093.75753036)
+\lineto(-422.49651666,1093.75753036)
+\lineto(-420.64197474,1099.85611726)
+\curveto(-420.55886429,1100.33591625)(-420.92184197,1100.53707177)(-421.31635362,1100.6388236)
+\lineto(-422.96858188,1093.75753036)
+\lineto(-423.87899337,1093.72491759)
+\lineto(-425.59865951,1093.75753036)
+\lineto(-425.3626269,1097.89935141)
+\curveto(-425.6710878,1098.90369409)(-425.42418421,1100.4287974)(-426.40791417,1100.997564)
+\curveto(-426.0430752,1098.97165909)(-425.58517194,1096.31437107)(-426.07072473,1094.01843247)
+\lineto(-432.4773241,1091.99644109)
+\lineto(-438.58045297,1087.20236476)
+\lineto(-439.35598868,1088.27858597)
+\lineto(-438.9850803,1088.89822849)
+\lineto(-443.94176507,1093.10527507)
+\curveto(-444.2032892,1093.49597599)(-445.55083308,1094.1334903)(-445.02077128,1093.23572613)
+\lineto(-444.48126817,1092.84437296)
+\lineto(-445.42539861,1092.64869637)
+\lineto(-445.56027438,1092.19211768)
+\curveto(-444.13733494,1090.46494569)(-442.2612129,1088.77690901)(-440.50243278,1087.49587963)
+\curveto(-440.33208467,1087.82265953)(-440.73212622,1088.00176883)(-440.90706011,1088.21336045)
+\lineto(-442.59300731,1089.97444971)
+\curveto(-443.31432296,1090.65670874)(-444.45429302,1091.19912423)(-444.75101973,1092.12689215)
+\lineto(-441.98606631,1090.95283264)
+\lineto(-440.30011911,1088.47426256)
+\lineto(-440.16524334,1088.14813492)
+\curveto(-438.78951042,1087.43052365)(-438.78006912,1086.33486523)(-439.96292967,1085.40866273)
+\curveto(-441.44791197,1083.11272413)(-442.69955917,1080.70851115)(-443.33482408,1078.10340355)
+\lineto(-444.75101973,1078.88610989)
+\curveto(-445.9889096,1080.76982315)(-449.15876009,1080.68763898)(-451.22505698,1081.4299055)
+\lineto(-451.22505698,1081.10377785)
+\curveto(-448.56530668,1080.15370281)(-445.71807904,1079.47705318)(-443.57085668,1077.54898656)
+\lineto(-443.87432718,1076.1466377)
+\curveto(-446.79978277,1078.00426075)(-449.76974736,1079.94667698)(-453.01216101,1081.20161615)
+\lineto(-453.55166412,1080.94071403)
+\lineto(-450.44952127,1079.50575241)
+\curveto(-449.1258504,1079.01786546)(-448.72850636,1078.35452183)(-448.29150885,1077.54898656)
+\lineto(-448.29825264,1077.54898656)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-331.49583049,1078.72304607)
+\curveto(-328.89137926,1079.66920758)(-325.95783113,1080.73981941)(-322.9986566,1080.28845875)
+\lineto(-322.49287244,1080.45152257)
+\lineto(-324.3811333,1081.29945444)
+\lineto(-324.71832274,1081.4299055)
+\lineto(-322.49287244,1081.62558208)
+\lineto(-322.49287244,1081.95170972)
+\lineto(-324.9880743,1082.27783737)
+\lineto(-324.92063641,1082.40828842)
+\curveto(-325.23894324,1082.92109153)(-324.94866359,1082.95135617)(-324.34741436,1082.89747988)
+\lineto(-322.22312088,1083.06054371)
+\lineto(-328.09021715,1083.19099476)
+\lineto(-327.61815193,1083.32144582)
+\curveto(-327.4301351,1083.86320906)(-326.89265513,1083.86020868)(-326.370551,1083.81063728)
+\curveto(-325.24690091,1083.93069139)(-323.96706467,1084.17798746)(-322.86378082,1083.94108834)
+\lineto(-322.62774821,1084.10415216)
+\lineto(-324.71832274,1084.62595639)
+\curveto(-324.55323479,1084.74513647)(-323.57929681,1084.73767467)(-324.11138175,1085.21298614)
+\lineto(-325.5275774,1085.40866273)
+\curveto(-326.05399755,1085.97221129)(-324.99185082,1085.84254294)(-324.71832274,1085.99569248)
+\lineto(-323.8416302,1086.19136907)
+\lineto(-324.34741436,1086.55010947)
+\lineto(-329.06806652,1086.02830525)
+\lineto(-329.57385068,1086.06091801)
+\lineto(-326.10079945,1087.59371793)
+\lineto(-326.370551,1087.85462004)
+\lineto(-330.24822957,1086.45227118)
+\curveto(-328.92145656,1087.46731085)(-327.2040833,1088.09986803)(-325.59501529,1088.53948809)
+\lineto(-326.77517833,1089.02867955)
+\lineto(-325.86476684,1089.58309654)
+\lineto(-326.20195628,1090.56147947)
+\lineto(-325.59501529,1090.95283264)
+\lineto(-328.22509292,1090.88760711)
+\curveto(-327.84285497,1091.20316822)(-325.9618774,1091.32983619)(-327.04492988,1092.02905386)
+\curveto(-326.69034147,1092.22446954)(-326.50192001,1092.52489832)(-327.01121094,1092.7139219)
+\curveto(-326.82777988,1092.95343004)(-326.89640468,1093.29482046)(-327.28096249,1093.23572613)
+\lineto(-327.17980566,1094.24672182)
+\lineto(-327.34840038,1094.47501117)
+\lineto(-329.2029423,1094.11627076)
+\lineto(-331.19236,1094.40978564)
+\lineto(-328.69715814,1094.93158987)
+\lineto(-328.69715814,1095.25771751)
+\lineto(-329.57385068,1095.38816857)
+\curveto(-329.16099593,1095.58488876)(-328.13067988,1095.33579247)(-328.29253081,1096.04042385)
+\lineto(-330.68657584,1095.68168344)
+\lineto(-331.22607894,1095.68168344)
+\lineto(-331.32723577,1095.77952174)
+\lineto(-329.10178547,1096.49700255)
+\lineto(-329.06806652,1096.7252919)
+\lineto(-330.68657584,1096.59484084)
+\lineto(-332.54111776,1096.75790466)
+\lineto(-332.54111776,1096.95358125)
+\curveto(-331.56515664,1096.80760651)(-332.08092161,1097.52091289)(-332.54111776,1097.73628759)
+\lineto(-332.20392832,1097.93196417)
+\lineto(-332.3388041,1098.38854287)
+\curveto(-333.03071683,1098.1088558)(-333.98293981,1097.56644031)(-334.49681651,1098.38854287)
+\lineto(-334.83400595,1098.4537684)
+\curveto(-334.36113148,1098.51926787)(-333.63765782,1098.74663102)(-333.82243763,1099.43215132)
+\lineto(-338.34077613,1099.23647474)
+\lineto(-337.46408359,1099.69305344)
+\curveto(-337.96973287,1100.11767163)(-338.64006548,1099.64386034)(-339.18374973,1099.59521515)
+\lineto(-338.81284135,1100.08440661)
+\lineto(-341.61151371,1099.33431303)
+\lineto(-340.70110222,1099.88873002)
+\lineto(-340.02672334,1100.41053425)
+\lineto(-340.26275594,1100.6388236)
+\lineto(-343.87068296,1098.58421946)
+\lineto(-343.23002302,1099.46476409)
+\lineto(-342.58936308,1100.21485766)
+\curveto(-343.00329684,1100.34130387)(-343.4957283,1100.35287488)(-343.87068296,1100.08440661)
+\lineto(-344.34274817,1099.88873002)
+\lineto(-345.28687861,1099.23647474)
+\curveto(-345.98607463,1099.5335118)(-346.59382488,1099.64883053)(-347.2762963,1099.07341092)
+\lineto(-347.68092363,1099.46476409)
+\lineto(-351.15397487,1097.9971897)
+\curveto(-351.38784946,1098.06887256)(-351.74446102,1098.83638135)(-351.28885064,1099.17124921)
+\lineto(-347.2762963,1100.6388236)
+\curveto(-344.89573885,1101.54115356)(-342.34388917,1102.30859712)(-339.72325284,1101.68243205)
+\curveto(-337.26446744,1102.02590969)(-334.94595285,1100.67652395)(-332.81086931,1099.62782791)
+\curveto(-329.90294758,1098.6763179)(-327.68828733,1096.61701752)(-325.86476684,1094.21410906)
+\curveto(-321.36396219,1087.53762397)(-321.08476933,1079.68186134)(-321.24527151,1071.67216645)
+\lineto(-321.91965039,1067.6281837)
+\lineto(-323.8416302,1062.31230313)
+\lineto(-325.19038796,1064.46474557)
+\lineto(-326.26939417,1065.37790297)
+\curveto(-326.96805069,1065.58766827)(-327.00406252,1066.1664796)(-327.01121094,1066.68241353)
+\curveto(-325.84291696,1066.32797801)(-324.69809138,1065.6408923)(-323.67303548,1064.8887115)
+\lineto(-323.30212709,1065.05177533)
+\lineto(-324.17881964,1065.83448167)
+\lineto(-325.86476684,1066.81286459)
+\lineto(-327.95534137,1068.11737516)
+\lineto(-325.93220473,1067.72602199)
+\lineto(-325.59501529,1067.59557093)
+\lineto(-322.89749976,1066.09538378)
+\curveto(-322.81834117,1066.73681162)(-323.68787181,1066.98545134)(-324.07766281,1067.36728158)
+\curveto(-324.85265902,1067.89626062)(-326.53375069,1068.21338714)(-326.26939417,1069.29143467)
+\lineto(-326.74145939,1069.68278784)
+\lineto(-323.94278703,1068.54134109)
+\lineto(-322.86378082,1067.75863475)
+\lineto(-322.22312088,1067.5303454)
+\lineto(-322.22312088,1067.85647304)
+\curveto(-323.31871681,1068.65731208)(-324.65627989,1069.32143841)(-325.5275774,1070.46549418)
+\lineto(-324.65088485,1070.33504312)
+\curveto(-324.4457388,1070.15123758)(-324.08642973,1069.69452843)(-323.8416302,1070.00891548)
+\lineto(-325.29154479,1071.28081328)
+\lineto(-327.14608671,1072.29180897)
+\curveto(-325.39000411,1071.96424637)(-323.65550163,1070.88554658)(-322.86378082,1069.32404743)
+\curveto(-322.50595539,1069.52702928)(-322.8875864,1069.97852038)(-322.9986566,1070.23720483)
+\lineto(-323.36956498,1072.09613239)
+\lineto(-324.17881964,1072.68316214)
+\lineto(-321.548742,1071.57432816)
+\curveto(-321.39390461,1072.00612116)(-322.04022933,1072.12561433)(-322.32427772,1072.32442174)
+\lineto(-323.16725132,1072.8136132)
+\curveto(-323.85929892,1072.92377912)(-324.55782057,1073.41994971)(-325.25782585,1073.13974084)
+\lineto(-327.28096249,1074.24857482)
+\lineto(-324.34741436,1073.6289323)
+\curveto(-323.55340066,1073.93379642)(-322.72216126,1073.81756453)(-322.29055877,1072.87883873)
+\lineto(-321.81849356,1072.74838767)
+\curveto(-321.98614415,1073.87209307)(-323.44509542,1074.13247338)(-324.17881964,1074.63992799)
+\lineto(-322.62774821,1074.31380035)
+\curveto(-322.74472597,1074.75328996)(-322.84692135,1075.34814678)(-323.36956498,1075.55308539)
+\lineto(-322.35799666,1075.55308539)
+\curveto(-322.1601339,1075.4118069)(-321.63749026,1075.35780016)(-321.51502306,1075.58569816)
+\curveto(-323.26705939,1076.16920573)(-325.18769044,1076.76380165)(-327.17980566,1076.75975767)
+\lineto(-327.85418454,1077.15111084)
+\lineto(-333.88987552,1076.7271449)
+\lineto(-333.95731341,1076.14011515)
+\lineto(-335.64326061,1075.61831092)
+\lineto(-335.64326061,1076.85759596)
+\lineto(-331.52954944,1078.096881)
+\lineto(-326.50542678,1078.71652352)
+\curveto(-325.1662452,1078.68191485)(-323.74856591,1078.74130922)(-322.59402927,1079.10787669)
+\lineto(-323.40328393,1079.49922986)
+\lineto(-331.49583049,1078.71652352)
+\lineto(-331.49583049,1078.72304607)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-331.49583049,1078.72304607)
+\curveto(-328.89137926,1079.66920758)(-325.95783113,1080.73981941)(-322.9986566,1080.28845875)
+\lineto(-322.49287244,1080.45152257)
+\lineto(-324.3811333,1081.29945444)
+\lineto(-324.71832274,1081.4299055)
+\lineto(-322.49287244,1081.62558208)
+\lineto(-322.49287244,1081.95170972)
+\lineto(-324.9880743,1082.27783737)
+\lineto(-324.92063641,1082.40828842)
+\curveto(-325.23894324,1082.92109153)(-324.94866359,1082.95135617)(-324.34741436,1082.89747988)
+\lineto(-322.22312088,1083.06054371)
+\lineto(-328.09021715,1083.19099476)
+\lineto(-327.61815193,1083.32144582)
+\curveto(-327.4301351,1083.86320906)(-326.89265513,1083.86020868)(-326.370551,1083.81063728)
+\curveto(-325.24690091,1083.93069139)(-323.96706467,1084.17798746)(-322.86378082,1083.94108834)
+\lineto(-322.62774821,1084.10415216)
+\lineto(-324.71832274,1084.62595639)
+\curveto(-324.55323479,1084.74513647)(-323.57929681,1084.73767467)(-324.11138175,1085.21298614)
+\lineto(-325.5275774,1085.40866273)
+\curveto(-326.05399755,1085.97221129)(-324.99185082,1085.84254294)(-324.71832274,1085.99569248)
+\lineto(-323.8416302,1086.19136907)
+\lineto(-324.34741436,1086.55010947)
+\lineto(-329.06806652,1086.02830525)
+\lineto(-329.57385068,1086.06091801)
+\lineto(-326.10079945,1087.59371793)
+\lineto(-326.370551,1087.85462004)
+\lineto(-330.24822957,1086.45227118)
+\curveto(-328.92145656,1087.46731085)(-327.2040833,1088.09986803)(-325.59501529,1088.53948809)
+\lineto(-326.77517833,1089.02867955)
+\lineto(-325.86476684,1089.58309654)
+\lineto(-326.20195628,1090.56147947)
+\lineto(-325.59501529,1090.95283264)
+\lineto(-328.22509292,1090.88760711)
+\curveto(-327.84285497,1091.20316822)(-325.9618774,1091.32983619)(-327.04492988,1092.02905386)
+\curveto(-326.69034147,1092.22446954)(-326.50192001,1092.52489832)(-327.01121094,1092.7139219)
+\curveto(-326.82777988,1092.95343004)(-326.89640468,1093.29482046)(-327.28096249,1093.23572613)
+\lineto(-327.17980566,1094.24672182)
+\lineto(-327.34840038,1094.47501117)
+\lineto(-329.2029423,1094.11627076)
+\lineto(-331.19236,1094.40978564)
+\lineto(-328.69715814,1094.93158987)
+\lineto(-328.69715814,1095.25771751)
+\lineto(-329.57385068,1095.38816857)
+\curveto(-329.16099593,1095.58488876)(-328.13067988,1095.33579247)(-328.29253081,1096.04042385)
+\lineto(-330.68657584,1095.68168344)
+\lineto(-331.22607894,1095.68168344)
+\lineto(-331.32723577,1095.77952174)
+\lineto(-329.10178547,1096.49700255)
+\lineto(-329.06806652,1096.7252919)
+\lineto(-330.68657584,1096.59484084)
+\lineto(-332.54111776,1096.75790466)
+\lineto(-332.54111776,1096.95358125)
+\curveto(-331.56515664,1096.80760651)(-332.08092161,1097.52091289)(-332.54111776,1097.73628759)
+\lineto(-332.20392832,1097.93196417)
+\lineto(-332.3388041,1098.38854287)
+\curveto(-333.03071683,1098.1088558)(-333.98293981,1097.56644031)(-334.49681651,1098.38854287)
+\lineto(-334.83400595,1098.4537684)
+\curveto(-334.36113148,1098.51926787)(-333.63765782,1098.74663102)(-333.82243763,1099.43215132)
+\lineto(-338.34077613,1099.23647474)
+\lineto(-337.46408359,1099.69305344)
+\curveto(-337.96973287,1100.11767163)(-338.64006548,1099.64386034)(-339.18374973,1099.59521515)
+\lineto(-338.81284135,1100.08440661)
+\lineto(-341.61151371,1099.33431303)
+\lineto(-340.70110222,1099.88873002)
+\lineto(-340.02672334,1100.41053425)
+\lineto(-340.26275594,1100.6388236)
+\lineto(-343.87068296,1098.58421946)
+\lineto(-343.23002302,1099.46476409)
+\lineto(-342.58936308,1100.21485766)
+\curveto(-343.00329684,1100.34130387)(-343.4957283,1100.35287488)(-343.87068296,1100.08440661)
+\lineto(-344.34274817,1099.88873002)
+\lineto(-345.28687861,1099.23647474)
+\curveto(-345.98607463,1099.5335118)(-346.59382488,1099.64883053)(-347.2762963,1099.07341092)
+\lineto(-347.68092363,1099.46476409)
+\lineto(-351.15397487,1097.9971897)
+\curveto(-351.38784946,1098.06887256)(-351.74446102,1098.83638135)(-351.28885064,1099.17124921)
+\lineto(-347.2762963,1100.6388236)
+\curveto(-344.89573885,1101.54115356)(-342.34388917,1102.30859712)(-339.72325284,1101.68243205)
+\curveto(-337.26446744,1102.02590969)(-334.94595285,1100.67652395)(-332.81086931,1099.62782791)
+\curveto(-329.90294758,1098.6763179)(-327.68828733,1096.61701752)(-325.86476684,1094.21410906)
+\curveto(-321.36396219,1087.53762397)(-321.08476933,1079.68186134)(-321.24527151,1071.67216645)
+\lineto(-321.91965039,1067.6281837)
+\lineto(-323.8416302,1062.31230313)
+\lineto(-325.19038796,1064.46474557)
+\lineto(-326.26939417,1065.37790297)
+\curveto(-326.96805069,1065.58766827)(-327.00406252,1066.1664796)(-327.01121094,1066.68241353)
+\curveto(-325.84291696,1066.32797801)(-324.69809138,1065.6408923)(-323.67303548,1064.8887115)
+\lineto(-323.30212709,1065.05177533)
+\lineto(-324.17881964,1065.83448167)
+\lineto(-325.86476684,1066.81286459)
+\lineto(-327.95534137,1068.11737516)
+\lineto(-325.93220473,1067.72602199)
+\lineto(-325.59501529,1067.59557093)
+\lineto(-322.89749976,1066.09538378)
+\curveto(-322.81834117,1066.73681162)(-323.68787181,1066.98545134)(-324.07766281,1067.36728158)
+\curveto(-324.85265902,1067.89626062)(-326.53375069,1068.21338714)(-326.26939417,1069.29143467)
+\lineto(-326.74145939,1069.68278784)
+\lineto(-323.94278703,1068.54134109)
+\lineto(-322.86378082,1067.75863475)
+\lineto(-322.22312088,1067.5303454)
+\lineto(-322.22312088,1067.85647304)
+\curveto(-323.31871681,1068.65731208)(-324.65627989,1069.32143841)(-325.5275774,1070.46549418)
+\lineto(-324.65088485,1070.33504312)
+\curveto(-324.4457388,1070.15123758)(-324.08642973,1069.69452843)(-323.8416302,1070.00891548)
+\lineto(-325.29154479,1071.28081328)
+\lineto(-327.14608671,1072.29180897)
+\curveto(-325.39000411,1071.96424637)(-323.65550163,1070.88554658)(-322.86378082,1069.32404743)
+\curveto(-322.50595539,1069.52702928)(-322.8875864,1069.97852038)(-322.9986566,1070.23720483)
+\lineto(-323.36956498,1072.09613239)
+\lineto(-324.17881964,1072.68316214)
+\lineto(-321.548742,1071.57432816)
+\curveto(-321.39390461,1072.00612116)(-322.04022933,1072.12561433)(-322.32427772,1072.32442174)
+\lineto(-323.16725132,1072.8136132)
+\curveto(-323.85929892,1072.92377912)(-324.55782057,1073.41994971)(-325.25782585,1073.13974084)
+\lineto(-327.28096249,1074.24857482)
+\lineto(-324.34741436,1073.6289323)
+\curveto(-323.55340066,1073.93379642)(-322.72216126,1073.81756453)(-322.29055877,1072.87883873)
+\lineto(-321.81849356,1072.74838767)
+\curveto(-321.98614415,1073.87209307)(-323.44509542,1074.13247338)(-324.17881964,1074.63992799)
+\lineto(-322.62774821,1074.31380035)
+\curveto(-322.74472597,1074.75328996)(-322.84692135,1075.34814678)(-323.36956498,1075.55308539)
+\lineto(-322.35799666,1075.55308539)
+\curveto(-322.1601339,1075.4118069)(-321.63749026,1075.35780016)(-321.51502306,1075.58569816)
+\curveto(-323.26705939,1076.16920573)(-325.18769044,1076.76380165)(-327.17980566,1076.75975767)
+\lineto(-327.85418454,1077.15111084)
+\lineto(-333.88987552,1076.7271449)
+\lineto(-333.95731341,1076.14011515)
+\lineto(-335.64326061,1075.61831092)
+\lineto(-335.64326061,1076.85759596)
+\lineto(-331.52954944,1078.096881)
+\lineto(-326.50542678,1078.71652352)
+\curveto(-325.1662452,1078.68191485)(-323.74856591,1078.74130922)(-322.59402927,1079.10787669)
+\lineto(-323.40328393,1079.49922986)
+\lineto(-331.49583049,1078.71652352)
+\lineto(-331.49583049,1078.72304607)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.94160672,1100.89972571)
+\curveto(-423.19584756,1100.88148865)(-422.92276458,1101.14562595)(-422.94160672,1100.89972571)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.94160672,1100.89972571)
+\curveto(-423.19584756,1100.88148865)(-422.92276458,1101.14562595)(-422.94160672,1100.89972571)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-424.69499181,1100.89972571)
+\lineto(-424.4589592,1100.47575978)
+\lineto(-424.4589592,1100.41053425)
+\curveto(-424.78886535,1100.26547267)(-424.68096473,1100.73013934)(-424.69499181,1100.89972571)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-424.69499181,1100.89972571)
+\lineto(-424.4589592,1100.47575978)
+\lineto(-424.4589592,1100.41053425)
+\curveto(-424.78886535,1100.26547267)(-424.68096473,1100.73013934)(-424.69499181,1100.89972571)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.94160672,1100.89972571)
+\lineto(-422.84044989,1100.86711295)
+\lineto(-422.57069834,1099.75827897)
+\lineto(-422.773012,1099.75827897)
+\lineto(-422.94160672,1100.89972571)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.94160672,1100.89972571)
+\lineto(-422.84044989,1100.86711295)
+\lineto(-422.57069834,1099.75827897)
+\lineto(-422.773012,1099.75827897)
+\lineto(-422.94160672,1100.89972571)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-430.22489863,1100.6388236)
+\curveto(-430.47913947,1100.62058654)(-430.20605649,1100.88472384)(-430.22489863,1100.6388236)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-430.22489863,1100.6388236)
+\curveto(-430.47913947,1100.62058654)(-430.20605649,1100.88472384)(-430.22489863,1100.6388236)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-428.7412651,1100.76927466)
+\curveto(-428.49390292,1100.85606374)(-428.39611799,1100.58259919)(-428.50523249,1100.41053425)
+\lineto(-428.7412651,1100.76927466)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-428.7412651,1100.76927466)
+\curveto(-428.49390292,1100.85606374)(-428.39611799,1100.58259919)(-428.50523249,1100.41053425)
+\lineto(-428.7412651,1100.76927466)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-427.66225889,1100.76927466)
+\curveto(-427.38873081,1100.83478718)(-427.14743805,1100.51385149)(-427.2913505,1100.28008319)
+\lineto(-427.35878839,1100.28008319)
+\lineto(-427.66225889,1100.76927466)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-427.66225889,1100.76927466)
+\curveto(-427.38873081,1100.83478718)(-427.14743805,1100.51385149)(-427.2913505,1100.28008319)
+\lineto(-427.35878839,1100.28008319)
+\lineto(-427.66225889,1100.76927466)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1100.24747043)
+\lineto(-430.22489863,1100.6388236)
+\lineto(-429.95514708,1100.24747043)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1100.24747043)
+\lineto(-430.22489863,1100.6388236)
+\lineto(-429.95514708,1100.24747043)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.01960784 0.01960784 0.01960784}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-430.89927752,1100.37792149)
+\curveto(-431.15351835,1100.35968443)(-430.88043537,1100.62382173)(-430.89927752,1100.37792149)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.01960784 0.01960784 0.01960784}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-430.89927752,1100.37792149)
+\curveto(-431.15351835,1100.35968443)(-430.88043537,1100.62382173)(-430.89927752,1100.37792149)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-430.62952596,1099.98656832)
+\lineto(-430.89927752,1100.37792149)
+\lineto(-430.62952596,1099.98656832)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-430.62952596,1099.98656832)
+\lineto(-430.89927752,1100.37792149)
+\lineto(-430.62952596,1099.98656832)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1100.37792149)
+\lineto(-423.24507722,1100.34530872)
+\lineto(-423.24507722,1098.97557263)
+\lineto(-423.31251511,1098.97557263)
+\lineto(-423.44739088,1100.21485766)
+\lineto(-423.34623405,1100.37792149)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1100.37792149)
+\lineto(-423.24507722,1100.34530872)
+\lineto(-423.24507722,1098.97557263)
+\lineto(-423.31251511,1098.97557263)
+\lineto(-423.44739088,1100.21485766)
+\lineto(-423.34623405,1100.37792149)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1100.24747043)
+\lineto(-429.71911447,1099.88873002)
+\lineto(-429.95514708,1100.24747043)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1100.24747043)
+\lineto(-429.71911447,1099.88873002)
+\lineto(-429.95514708,1100.24747043)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-428.47151354,1100.24747043)
+\lineto(-428.23548094,1099.62782791)
+\lineto(-428.30291882,1099.62782791)
+\lineto(-428.47151354,1100.24747043)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-428.47151354,1100.24747043)
+\lineto(-428.23548094,1099.62782791)
+\lineto(-428.30291882,1099.62782791)
+\lineto(-428.47151354,1100.24747043)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.97828372,1100.11701937)
+\curveto(-431.73092155,1100.20380846)(-431.63313661,1099.93034391)(-431.74225112,1099.75827897)
+\lineto(-431.97828372,1100.11701937)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.97828372,1100.11701937)
+\curveto(-431.73092155,1100.20380846)(-431.63313661,1099.93034391)(-431.74225112,1099.75827897)
+\lineto(-431.97828372,1100.11701937)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.35017813,1099.7256662)
+\lineto(-435.45133496,1099.95395555)
+\lineto(-435.35017813,1099.7256662)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.35017813,1099.7256662)
+\lineto(-435.45133496,1099.95395555)
+\lineto(-435.35017813,1099.7256662)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-430.49465019,1099.7256662)
+\lineto(-430.62952596,1099.98656832)
+\lineto(-430.49465019,1099.7256662)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-430.49465019,1099.7256662)
+\lineto(-430.62952596,1099.98656832)
+\lineto(-430.49465019,1099.7256662)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-426.85300423,1099.07341092)
+\lineto(-427.25763156,1099.85611726)
+\lineto(-427.22391262,1099.95395555)
+\lineto(-426.98788001,1099.59521515)
+\lineto(-426.85300423,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-426.85300423,1099.07341092)
+\lineto(-427.25763156,1099.85611726)
+\lineto(-427.22391262,1099.95395555)
+\lineto(-426.98788001,1099.59521515)
+\lineto(-426.85300423,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-424.56011604,1099.98656832)
+\lineto(-424.4589592,1099.95395555)
+\lineto(-424.32408343,1098.84512157)
+\lineto(-424.52639709,1098.84512157)
+\lineto(-424.56011604,1099.98656832)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-424.56011604,1099.98656832)
+\lineto(-424.4589592,1099.95395555)
+\lineto(-424.32408343,1098.84512157)
+\lineto(-424.52639709,1098.84512157)
+\lineto(-424.56011604,1099.98656832)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-434.00142037,1099.07341092)
+\lineto(-434.4060477,1099.20386197)
+\lineto(-434.27117192,1098.55160669)
+\lineto(-434.23745298,1097.80151312)
+\lineto(-434.6420803,1099.56260238)
+\lineto(-434.27117192,1099.85611726)
+\lineto(-434.13629614,1099.7256662)
+\lineto(-434.00142037,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-434.00142037,1099.07341092)
+\lineto(-434.4060477,1099.20386197)
+\lineto(-434.27117192,1098.55160669)
+\lineto(-434.23745298,1097.80151312)
+\lineto(-434.6420803,1099.56260238)
+\lineto(-434.27117192,1099.85611726)
+\lineto(-434.13629614,1099.7256662)
+\lineto(-434.00142037,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.35017813,1099.7256662)
+\lineto(-435.11414552,1099.30170027)
+\lineto(-435.11414552,1099.23647474)
+\curveto(-435.44405167,1099.09141316)(-435.33615105,1099.55607983)(-435.35017813,1099.7256662)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.35017813,1099.7256662)
+\lineto(-435.11414552,1099.30170027)
+\lineto(-435.11414552,1099.23647474)
+\curveto(-435.44405167,1099.09141316)(-435.33615105,1099.55607983)(-435.35017813,1099.7256662)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-432.65266261,1097.89935141)
+\lineto(-432.88869521,1098.84512157)
+\lineto(-433.15844677,1099.69305344)
+\lineto(-432.9561331,1099.69305344)
+\lineto(-432.75381944,1099.10602368)
+\lineto(-432.55150577,1099.04079815)
+\lineto(-432.1131595,1097.37754718)
+\lineto(-431.97828372,1097.11664507)
+\lineto(-432.21431633,1094.86636434)
+\lineto(-432.14687844,1094.67068775)
+\lineto(-432.24803528,1094.63807499)
+\lineto(-432.38291105,1094.76852605)
+\lineto(-432.38291105,1096.46438978)
+\lineto(-432.55150577,1097.86673864)
+\lineto(-432.65266261,1097.89935141)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-432.65266261,1097.89935141)
+\lineto(-432.88869521,1098.84512157)
+\lineto(-433.15844677,1099.69305344)
+\lineto(-432.9561331,1099.69305344)
+\lineto(-432.75381944,1099.10602368)
+\lineto(-432.55150577,1099.04079815)
+\lineto(-432.1131595,1097.37754718)
+\lineto(-431.97828372,1097.11664507)
+\lineto(-432.21431633,1094.86636434)
+\lineto(-432.14687844,1094.67068775)
+\lineto(-432.24803528,1094.63807499)
+\lineto(-432.38291105,1094.76852605)
+\lineto(-432.38291105,1096.46438978)
+\lineto(-432.55150577,1097.86673864)
+\lineto(-432.65266261,1097.89935141)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-430.22489863,1099.20386197)
+\lineto(-430.49465019,1099.7256662)
+\lineto(-430.22489863,1099.20386197)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-430.22489863,1099.20386197)
+\lineto(-430.49465019,1099.7256662)
+\lineto(-430.22489863,1099.20386197)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.41564398,1099.20386197)
+\lineto(-429.65167659,1099.69305344)
+\lineto(-429.41564398,1099.20386197)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.41564398,1099.20386197)
+\lineto(-429.65167659,1099.69305344)
+\lineto(-429.41564398,1099.20386197)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.5736564,1098.94295986)
+\lineto(-431.67481323,1099.56260238)
+\lineto(-431.5736564,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.5736564,1098.94295986)
+\lineto(-431.67481323,1099.56260238)
+\lineto(-431.5736564,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.80673095,1099.59521515)
+\lineto(-422.57069834,1099.49737685)
+\lineto(-422.80673095,1099.59521515)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.80673095,1099.59521515)
+\lineto(-422.57069834,1099.49737685)
+\lineto(-422.80673095,1099.59521515)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-428.06688622,1099.07341092)
+\lineto(-428.16804305,1099.43215132)
+\lineto(-428.06688622,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-428.06688622,1099.07341092)
+\lineto(-428.16804305,1099.43215132)
+\lineto(-428.06688622,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-341.61151371,1099.33431303)
+\lineto(-341.98242209,1099.04079815)
+\lineto(-342.72423886,1098.4537684)
+\lineto(-342.92655252,1098.4537684)
+\lineto(-342.31961153,1098.97557263)
+\lineto(-341.61151371,1099.33431303)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-341.61151371,1099.33431303)
+\lineto(-341.98242209,1099.04079815)
+\lineto(-342.72423886,1098.4537684)
+\lineto(-342.92655252,1098.4537684)
+\lineto(-342.31961153,1098.97557263)
+\lineto(-341.61151371,1099.33431303)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1098.55160669)
+\lineto(-430.22489863,1099.20386197)
+\lineto(-429.95514708,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1098.55160669)
+\lineto(-430.22489863,1099.20386197)
+\lineto(-429.95514708,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1098.94295986)
+\lineto(-429.41564398,1099.20386197)
+\lineto(-429.2807682,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1098.94295986)
+\lineto(-429.41564398,1099.20386197)
+\lineto(-429.2807682,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.67185517,1099.20386197)
+\curveto(-422.41761433,1099.22209903)(-422.69069732,1098.95796173)(-422.67185517,1099.20386197)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.67185517,1099.20386197)
+\curveto(-422.41761433,1099.22209903)(-422.69069732,1098.95796173)(-422.67185517,1099.20386197)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.35017813,1099.07341092)
+\lineto(-434.97926974,1098.38854287)
+\lineto(-434.97926974,1098.32331734)
+\lineto(-435.31645918,1098.97557263)
+\lineto(-435.35017813,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.35017813,1099.07341092)
+\lineto(-434.97926974,1098.38854287)
+\lineto(-434.97926974,1098.32331734)
+\lineto(-435.31645918,1098.97557263)
+\lineto(-435.35017813,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.86654459,1098.8125088)
+\lineto(-434.00142037,1099.07341092)
+\lineto(-433.86654459,1098.8125088)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.86654459,1098.8125088)
+\lineto(-434.00142037,1099.07341092)
+\lineto(-433.86654459,1098.8125088)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-428.06688622,1099.07341092)
+\lineto(-427.96572938,1098.58421946)
+\lineto(-428.06688622,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-428.06688622,1099.07341092)
+\lineto(-427.96572938,1098.58421946)
+\lineto(-428.06688622,1099.07341092)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-426.71812845,1098.55160669)
+\lineto(-426.85300423,1099.07341092)
+\lineto(-426.71812845,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-426.71812845,1098.55160669)
+\lineto(-426.85300423,1099.07341092)
+\lineto(-426.71812845,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.43878062,1098.29070458)
+\lineto(-431.5736564,1098.94295986)
+\lineto(-431.43878062,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.43878062,1098.29070458)
+\lineto(-431.5736564,1098.94295986)
+\lineto(-431.43878062,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1098.94295986)
+\lineto(-429.04473559,1098.32331734)
+\lineto(-429.11217348,1098.32331734)
+\lineto(-429.2807682,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1098.94295986)
+\lineto(-429.04473559,1098.32331734)
+\lineto(-429.11217348,1098.32331734)
+\lineto(-429.2807682,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.67185517,1098.94295986)
+\lineto(-422.57069834,1098.19286629)
+\lineto(-422.63813623,1098.19286629)
+\lineto(-422.67185517,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.67185517,1098.94295986)
+\lineto(-422.57069834,1098.19286629)
+\lineto(-422.63813623,1098.19286629)
+\lineto(-422.67185517,1098.94295986)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.59679304,1098.02980246)
+\lineto(-433.69794987,1098.06241523)
+\lineto(-433.86654459,1098.8125088)
+\lineto(-433.59679304,1098.02980246)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.59679304,1098.02980246)
+\lineto(-433.69794987,1098.06241523)
+\lineto(-433.86654459,1098.8125088)
+\lineto(-433.59679304,1098.02980246)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1098.8125088)
+\lineto(-423.11020144,1098.77989604)
+\lineto(-423.11020144,1097.67106206)
+\lineto(-423.17763933,1097.67106206)
+\lineto(-423.34623405,1098.68205775)
+\lineto(-423.34623405,1098.8125088)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1098.8125088)
+\lineto(-423.11020144,1098.77989604)
+\lineto(-423.11020144,1097.67106206)
+\lineto(-423.17763933,1097.67106206)
+\lineto(-423.34623405,1098.68205775)
+\lineto(-423.34623405,1098.8125088)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-339.45350129,1093.85536865)
+\lineto(-337.86871092,1094.083658)
+\curveto(-338.17218141,1093.4916711)(-338.68835101,1092.88194286)(-339.35234446,1092.45301979)
+\lineto(-340.16159911,1091.40941134)
+\curveto(-340.42851827,1091.109113)(-340.85216309,1090.7812895)(-340.7685401,1090.36580288)
+\lineto(-338.61052769,1092.38779426)
+\lineto(-336.78970471,1092.90959849)
+\lineto(-337.26176992,1092.2573432)
+\lineto(-338.20590036,1090.95283264)
+\curveto(-338.69887132,1090.35575815)(-339.6288398,1089.6274499)(-339.15003079,1088.93084126)
+\curveto(-337.35213669,1090.70758465)(-335.38969415,1092.81306471)(-332.74343142,1093.36617719)
+\lineto(-330.58541901,1093.82275589)
+\curveto(-333.69430565,1092.56272913)(-336.82746993,1090.51843062)(-338.77912241,1087.72416898)
+\curveto(-341.29050936,1090.54973887)(-345.07512364,1092.18820414)(-348.75992984,1092.94221125)
+\curveto(-353.3146848,1093.36043734)(-358.11761119,1092.22016465)(-362.21378851,1094.27933458)
+\curveto(-363.29778513,1095.052518)(-364.24097143,1096.09782231)(-364.50667671,1097.34493442)
+\lineto(-363.49510839,1097.0840323)
+\curveto(-361.2116615,1095.48861588)(-358.46693945,1096.35272368)(-356.0769407,1097.0840323)
+\lineto(-355.7734702,1096.59484084)
+\lineto(-356.6164438,1096.10564938)
+\curveto(-358.20528045,1095.72342778)(-359.65924131,1094.98416164)(-361.40453386,1095.12726645)
+\lineto(-361.70800435,1094.76852605)
+\curveto(-359.99238448,1094.33986387)(-358.2835084,1095.00946915)(-356.6164438,1095.38816857)
+\lineto(-357.29082268,1094.93158987)
+\lineto(-359.01048883,1094.11627076)
+\lineto(-356.81875747,1094.14888353)
+\lineto(-356.58272486,1094.11627076)
+\lineto(-353.31198729,1095.77952174)
+\lineto(-352.9410789,1095.55123239)
+\lineto(-350.34472021,1096.82313019)
+\lineto(-349.97381183,1096.59484084)
+\lineto(-352.43529474,1095.45339409)
+\lineto(-354.12124194,1094.5402367)
+\curveto(-352.47440872,1094.75730726)(-350.84510934,1095.43787042)(-349.40058978,1096.30132596)
+\lineto(-348.62505407,1096.07303661)
+\lineto(-344.7473755,1098.12764076)
+\lineto(-345.69150593,1094.80113881)
+\lineto(-346.09613326,1094.01843247)
+\curveto(-346.03071851,1093.54880867)(-345.33098298,1094.50892844)(-345.15200283,1094.80113881)
+\lineto(-344.41018606,1095.90997279)
+\curveto(-343.21680519,1097.14325708)(-341.80708358,1098.29853164)(-340.02672334,1098.38854287)
+\curveto(-341.31640551,1097.46586255)(-342.94543513,1096.65093479)(-343.80324507,1095.19249198)
+\curveto(-344.24873976,1094.51505964)(-344.73537156,1093.76013938)(-344.81481339,1092.97482402)
+\lineto(-344.57878078,1092.94221125)
+\curveto(-343.49599805,1096.16435235)(-339.89589383,1098.34158049)(-336.51995316,1098.77989604)
+\lineto(-339.15003079,1097.86673864)
+\lineto(-341.57779476,1096.30132596)
+\curveto(-342.60406454,1095.10913376)(-343.32983109,1093.36617719)(-342.96027147,1091.8986028)
+\lineto(-342.69051991,1092.42040703)
+\curveto(-342.87894137,1094.89375906)(-340.81439787,1096.64702126)(-338.64424663,1097.50799824)
+\lineto(-337.32920781,1097.73628759)
+\lineto(-339.21746868,1096.6274536)
+\lineto(-341.30804321,1094.73591328)
+\curveto(-342.1321342,1093.72204767)(-342.31947665,1092.26517027)(-341.98242209,1091.01805817)
+\lineto(-339.89184756,1093.10527507)
+\lineto(-339.45350129,1093.85536865)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-339.45350129,1093.85536865)
+\lineto(-337.86871092,1094.083658)
+\curveto(-338.17218141,1093.4916711)(-338.68835101,1092.88194286)(-339.35234446,1092.45301979)
+\lineto(-340.16159911,1091.40941134)
+\curveto(-340.42851827,1091.109113)(-340.85216309,1090.7812895)(-340.7685401,1090.36580288)
+\lineto(-338.61052769,1092.38779426)
+\lineto(-336.78970471,1092.90959849)
+\lineto(-337.26176992,1092.2573432)
+\lineto(-338.20590036,1090.95283264)
+\curveto(-338.69887132,1090.35575815)(-339.6288398,1089.6274499)(-339.15003079,1088.93084126)
+\curveto(-337.35213669,1090.70758465)(-335.38969415,1092.81306471)(-332.74343142,1093.36617719)
+\lineto(-330.58541901,1093.82275589)
+\curveto(-333.69430565,1092.56272913)(-336.82746993,1090.51843062)(-338.77912241,1087.72416898)
+\curveto(-341.29050936,1090.54973887)(-345.07512364,1092.18820414)(-348.75992984,1092.94221125)
+\curveto(-353.3146848,1093.36043734)(-358.11761119,1092.22016465)(-362.21378851,1094.27933458)
+\curveto(-363.29778513,1095.052518)(-364.24097143,1096.09782231)(-364.50667671,1097.34493442)
+\lineto(-363.49510839,1097.0840323)
+\curveto(-361.2116615,1095.48861588)(-358.46693945,1096.35272368)(-356.0769407,1097.0840323)
+\lineto(-355.7734702,1096.59484084)
+\lineto(-356.6164438,1096.10564938)
+\curveto(-358.20528045,1095.72342778)(-359.65924131,1094.98416164)(-361.40453386,1095.12726645)
+\lineto(-361.70800435,1094.76852605)
+\curveto(-359.99238448,1094.33986387)(-358.2835084,1095.00946915)(-356.6164438,1095.38816857)
+\lineto(-357.29082268,1094.93158987)
+\lineto(-359.01048883,1094.11627076)
+\lineto(-356.81875747,1094.14888353)
+\lineto(-356.58272486,1094.11627076)
+\lineto(-353.31198729,1095.77952174)
+\lineto(-352.9410789,1095.55123239)
+\lineto(-350.34472021,1096.82313019)
+\lineto(-349.97381183,1096.59484084)
+\lineto(-352.43529474,1095.45339409)
+\lineto(-354.12124194,1094.5402367)
+\curveto(-352.47440872,1094.75730726)(-350.84510934,1095.43787042)(-349.40058978,1096.30132596)
+\lineto(-348.62505407,1096.07303661)
+\lineto(-344.7473755,1098.12764076)
+\lineto(-345.69150593,1094.80113881)
+\lineto(-346.09613326,1094.01843247)
+\curveto(-346.03071851,1093.54880867)(-345.33098298,1094.50892844)(-345.15200283,1094.80113881)
+\lineto(-344.41018606,1095.90997279)
+\curveto(-343.21680519,1097.14325708)(-341.80708358,1098.29853164)(-340.02672334,1098.38854287)
+\curveto(-341.31640551,1097.46586255)(-342.94543513,1096.65093479)(-343.80324507,1095.19249198)
+\curveto(-344.24873976,1094.51505964)(-344.73537156,1093.76013938)(-344.81481339,1092.97482402)
+\lineto(-344.57878078,1092.94221125)
+\curveto(-343.49599805,1096.16435235)(-339.89589383,1098.34158049)(-336.51995316,1098.77989604)
+\lineto(-339.15003079,1097.86673864)
+\lineto(-341.57779476,1096.30132596)
+\curveto(-342.60406454,1095.10913376)(-343.32983109,1093.36617719)(-342.96027147,1091.8986028)
+\lineto(-342.69051991,1092.42040703)
+\curveto(-342.87894137,1094.89375906)(-340.81439787,1096.64702126)(-338.64424663,1097.50799824)
+\lineto(-337.32920781,1097.73628759)
+\lineto(-339.21746868,1096.6274536)
+\lineto(-341.30804321,1094.73591328)
+\curveto(-342.1321342,1093.72204767)(-342.31947665,1092.26517027)(-341.98242209,1091.01805817)
+\lineto(-339.89184756,1093.10527507)
+\lineto(-339.45350129,1093.85536865)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.72207253,1098.68205775)
+\curveto(-438.46783169,1098.70029481)(-438.74091468,1098.43615751)(-438.72207253,1098.68205775)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.72207253,1098.68205775)
+\curveto(-438.46783169,1098.70029481)(-438.74091468,1098.43615751)(-438.72207253,1098.68205775)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.96868744,1098.29070458)
+\lineto(-437.20472005,1098.64944498)
+\lineto(-436.96868744,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.96868744,1098.29070458)
+\lineto(-437.20472005,1098.64944498)
+\lineto(-436.96868744,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-424.42524026,1098.68205775)
+\lineto(-424.32408343,1098.64944498)
+\lineto(-424.32408343,1097.01880677)
+\lineto(-424.39152132,1097.01880677)
+\lineto(-424.42524026,1098.68205775)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-424.42524026,1098.68205775)
+\lineto(-424.32408343,1098.64944498)
+\lineto(-424.32408343,1097.01880677)
+\lineto(-424.39152132,1097.01880677)
+\lineto(-424.42524026,1098.68205775)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1098.55160669)
+\lineto(-429.71911447,1098.19286629)
+\lineto(-429.95514708,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.95514708,1098.55160669)
+\lineto(-429.71911447,1098.19286629)
+\lineto(-429.95514708,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-426.71812845,1098.55160669)
+\lineto(-426.61697162,1098.51899393)
+\lineto(-426.4483769,1097.76890035)
+\lineto(-426.34722007,1096.88835572)
+\lineto(-426.4483769,1096.85574295)
+\lineto(-426.54953373,1096.88835572)
+\lineto(-426.58325268,1097.63844929)
+\lineto(-426.71812845,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-426.71812845,1098.55160669)
+\lineto(-426.61697162,1098.51899393)
+\lineto(-426.4483769,1097.76890035)
+\lineto(-426.34722007,1096.88835572)
+\lineto(-426.4483769,1096.85574295)
+\lineto(-426.54953373,1096.88835572)
+\lineto(-426.58325268,1097.63844929)
+\lineto(-426.71812845,1098.55160669)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.72207253,1098.42115563)
+\curveto(-438.52663753,1098.47559286)(-438.23490123,1098.2629185)(-438.35116415,1098.06241523)
+\lineto(-438.72207253,1098.42115563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.72207253,1098.42115563)
+\curveto(-438.52663753,1098.47559286)(-438.23490123,1098.2629185)(-438.35116415,1098.06241523)
+\lineto(-438.72207253,1098.42115563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-427.93201044,1098.42115563)
+\lineto(-427.83085361,1098.38854287)
+\lineto(-427.66225889,1097.37754718)
+\curveto(-427.46088935,1097.08024922)(-427.46088935,1096.63123669)(-427.66225889,1096.33393873)
+\lineto(-427.79713466,1095.55123239)
+\lineto(-427.96572938,1094.67068775)
+\lineto(-428.03316727,1094.67068775)
+\lineto(-427.93201044,1095.29033027)
+\lineto(-427.79713466,1095.94258556)
+\lineto(-427.83085361,1096.56222808)
+\lineto(-427.93201044,1097.11664507)
+\curveto(-427.7379242,1097.37859079)(-427.7379242,1097.76785674)(-427.93201044,1098.02980246)
+\lineto(-427.93201044,1098.42115563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-427.93201044,1098.42115563)
+\lineto(-427.83085361,1098.38854287)
+\lineto(-427.66225889,1097.37754718)
+\curveto(-427.46088935,1097.08024922)(-427.46088935,1096.63123669)(-427.66225889,1096.33393873)
+\lineto(-427.79713466,1095.55123239)
+\lineto(-427.96572938,1094.67068775)
+\lineto(-428.03316727,1094.67068775)
+\lineto(-427.93201044,1095.29033027)
+\lineto(-427.79713466,1095.94258556)
+\lineto(-427.83085361,1096.56222808)
+\lineto(-427.93201044,1097.11664507)
+\curveto(-427.7379242,1097.37859079)(-427.7379242,1097.76785674)(-427.93201044,1098.02980246)
+\lineto(-427.93201044,1098.42115563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.96868744,1098.29070458)
+\lineto(-436.73265483,1097.80151312)
+\lineto(-436.96868744,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.96868744,1098.29070458)
+\lineto(-436.73265483,1097.80151312)
+\lineto(-436.96868744,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.43878062,1098.29070458)
+\lineto(-431.33762379,1097.67106206)
+\lineto(-431.43878062,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.43878062,1098.29070458)
+\lineto(-431.33762379,1097.67106206)
+\lineto(-431.43878062,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-343.9044019,1098.29070458)
+\lineto(-343.39861774,1098.12764076)
+\lineto(-343.80324507,1097.540611)
+\curveto(-344.04237982,1097.40872498)(-344.04237982,1097.21591832)(-343.80324507,1097.0840323)
+\lineto(-343.80324507,1096.88835572)
+\lineto(-345.42175438,1095.19249198)
+\lineto(-345.62406805,1095.19249198)
+\curveto(-345.29159926,1096.30158687)(-344.70124799,1097.38928778)(-343.9044019,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-343.9044019,1098.29070458)
+\lineto(-343.39861774,1098.12764076)
+\lineto(-343.80324507,1097.540611)
+\curveto(-344.04237982,1097.40872498)(-344.04237982,1097.21591832)(-343.80324507,1097.0840323)
+\lineto(-343.80324507,1096.88835572)
+\lineto(-345.42175438,1095.19249198)
+\lineto(-345.62406805,1095.19249198)
+\curveto(-345.29159926,1096.30158687)(-344.70124799,1097.38928778)(-343.9044019,1098.29070458)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.34058185,1098.16025352)
+\curveto(-440.08634101,1098.17849058)(-440.35943748,1097.91435328)(-440.34058185,1098.16025352)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.34058185,1098.16025352)
+\curveto(-440.08634101,1098.17849058)(-440.35943748,1097.91435328)(-440.34058185,1098.16025352)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.21530235,1098.16025352)
+\lineto(-434.97926974,1098.06241523)
+\lineto(-435.21530235,1098.16025352)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.21530235,1098.16025352)
+\lineto(-434.97926974,1098.06241523)
+\lineto(-435.21530235,1098.16025352)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.01101665,1098.16025352)
+\lineto(-428.64010827,1097.14925783)
+\lineto(-428.84242193,1097.14925783)
+\lineto(-429.01101665,1098.16025352)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.01101665,1098.16025352)
+\lineto(-428.64010827,1097.14925783)
+\lineto(-428.84242193,1097.14925783)
+\lineto(-429.01101665,1098.16025352)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.59679304,1098.02980246)
+\lineto(-433.49563621,1097.67106206)
+\lineto(-433.59679304,1098.02980246)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.59679304,1098.02980246)
+\lineto(-433.49563621,1097.67106206)
+\lineto(-433.59679304,1098.02980246)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-432.65266261,1097.89935141)
+\lineto(-432.78753838,1096.85574295)
+\lineto(-432.88869521,1096.36655149)
+\lineto(-432.92241416,1097.37754718)
+\curveto(-433.06255009,1097.56030911)(-433.14563357,1097.85278038)(-432.88869521,1097.9971897)
+\lineto(-432.65266261,1097.89935141)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-432.65266261,1097.89935141)
+\lineto(-432.78753838,1096.85574295)
+\lineto(-432.88869521,1096.36655149)
+\lineto(-432.92241416,1097.37754718)
+\curveto(-433.06255009,1097.56030911)(-433.14563357,1097.85278038)(-432.88869521,1097.9971897)
+\lineto(-432.65266261,1097.89935141)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.55051975,1097.76890035)
+\lineto(-429.65167659,1097.9971897)
+\lineto(-429.55051975,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.55051975,1097.76890035)
+\lineto(-429.65167659,1097.9971897)
+\lineto(-429.55051975,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.07083029,1097.76890035)
+\curveto(-440.32507113,1097.75066329)(-440.05197466,1098.01480059)(-440.07083029,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.07083029,1097.76890035)
+\curveto(-440.32507113,1097.75066329)(-440.05197466,1098.01480059)(-440.07083029,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.18256943,1097.76890035)
+\curveto(-438.43681027,1097.75066329)(-438.16372728,1098.01480059)(-438.18256943,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.18256943,1097.76890035)
+\curveto(-438.43681027,1097.75066329)(-438.16372728,1098.01480059)(-438.18256943,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1097.63844929)
+\lineto(-440.07083029,1097.76890035)
+\lineto(-439.93595452,1097.63844929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1097.63844929)
+\lineto(-440.07083029,1097.76890035)
+\lineto(-439.93595452,1097.63844929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.91281788,1097.24709612)
+\lineto(-438.18256943,1097.76890035)
+\lineto(-437.91281788,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.91281788,1097.24709612)
+\lineto(-438.18256943,1097.76890035)
+\lineto(-437.91281788,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.88968123,1097.24709612)
+\lineto(-435.99083807,1097.27970889)
+\lineto(-436.26058962,1097.73628759)
+\curveto(-435.97236008,1097.85639387)(-435.82291772,1097.46521029)(-435.88968123,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.88968123,1097.24709612)
+\lineto(-435.99083807,1097.27970889)
+\lineto(-436.26058962,1097.73628759)
+\curveto(-435.97236008,1097.85639387)(-435.82291772,1097.46521029)(-435.88968123,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.08042658,1097.76890035)
+\lineto(-434.97926974,1097.73628759)
+\lineto(-434.81067502,1096.46438978)
+\lineto(-434.9455508,1096.33393873)
+\lineto(-435.04670763,1096.36655149)
+\lineto(-435.08042658,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.08042658,1097.76890035)
+\lineto(-434.97926974,1097.73628759)
+\lineto(-434.81067502,1096.46438978)
+\lineto(-434.9455508,1096.33393873)
+\lineto(-435.04670763,1096.36655149)
+\lineto(-435.08042658,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.55051975,1097.76890035)
+\lineto(-429.31448715,1097.21448336)
+\lineto(-429.2807682,1097.11664507)
+\lineto(-429.31448715,1097.01880677)
+\curveto(-429.73138817,1096.9081321)(-429.48470038,1097.54543769)(-429.55051975,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.55051975,1097.76890035)
+\lineto(-429.31448715,1097.21448336)
+\lineto(-429.2807682,1097.11664507)
+\lineto(-429.31448715,1097.01880677)
+\curveto(-429.73138817,1096.9081321)(-429.48470038,1097.54543769)(-429.55051975,1097.76890035)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.80107874,1097.50799824)
+\lineto(-439.93595452,1097.63844929)
+\lineto(-439.80107874,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.80107874,1097.50799824)
+\lineto(-439.93595452,1097.63844929)
+\lineto(-439.80107874,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.42918434,1097.11664507)
+\curveto(-436.64673896,1097.15545426)(-436.77918698,1097.41511709)(-436.66521695,1097.60583653)
+\lineto(-436.59777906,1097.60583653)
+\lineto(-436.42918434,1097.11664507)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.42918434,1097.11664507)
+\curveto(-436.64673896,1097.15545426)(-436.77918698,1097.41511709)(-436.66521695,1097.60583653)
+\lineto(-436.59777906,1097.60583653)
+\lineto(-436.42918434,1097.11664507)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-334.73284912,1097.63844929)
+\lineto(-334.36194074,1097.60583653)
+\lineto(-334.36194074,1097.41015995)
+\lineto(-334.59797335,1097.37754718)
+\lineto(-335.64326061,1097.14925783)
+\curveto(-335.94834962,1097.28257881)(-335.63082506,1097.58078993)(-335.407228,1097.50799824)
+\lineto(-334.73284912,1097.63844929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.73284912,1097.63844929)
+\lineto(-334.36194074,1097.60583653)
+\lineto(-334.36194074,1097.41015995)
+\lineto(-334.59797335,1097.37754718)
+\lineto(-335.64326061,1097.14925783)
+\curveto(-335.94834962,1097.28257881)(-335.63082506,1097.58078993)(-335.407228,1097.50799824)
+\lineto(-334.73284912,1097.63844929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.34058185,1097.24709612)
+\lineto(-440.84636601,1097.41015995)
+\lineto(-440.84636601,1097.47538547)
+\curveto(-440.64917762,1097.58557748)(-440.38077483,1097.45747454)(-440.34058185,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.34058185,1097.24709612)
+\lineto(-440.84636601,1097.41015995)
+\lineto(-440.84636601,1097.47538547)
+\curveto(-440.64917762,1097.58557748)(-440.38077483,1097.45747454)(-440.34058185,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.12669986,1096.85574295)
+\lineto(-439.80107874,1097.50799824)
+\curveto(-439.4856043,1097.50451128)(-439.13034151,1097.16086798)(-439.12669986,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.12669986,1096.85574295)
+\lineto(-439.80107874,1097.50799824)
+\curveto(-439.4856043,1097.50451128)(-439.13034151,1097.16086798)(-439.12669986,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-434.13629614,1097.50799824)
+\lineto(-434.03513931,1096.88835572)
+\lineto(-434.13629614,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-434.13629614,1097.50799824)
+\lineto(-434.03513931,1096.88835572)
+\lineto(-434.13629614,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.46191726,1097.50799824)
+\lineto(-433.22588465,1096.95358125)
+\lineto(-433.22588465,1096.88835572)
+\curveto(-433.60596459,1096.7562088)(-433.41875701,1097.31388707)(-433.46191726,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.46191726,1097.50799824)
+\lineto(-433.22588465,1096.95358125)
+\lineto(-433.22588465,1096.88835572)
+\curveto(-433.60596459,1096.7562088)(-433.41875701,1097.31388707)(-433.46191726,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1097.50799824)
+\lineto(-431.20274801,1096.88835572)
+\lineto(-431.30390484,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1097.50799824)
+\lineto(-431.20274801,1096.88835572)
+\lineto(-431.30390484,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1097.50799824)
+\curveto(-422.95711744,1097.5262353)(-423.23020042,1097.262098)(-423.21135828,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1097.50799824)
+\curveto(-422.95711744,1097.5262353)(-423.23020042,1097.262098)(-423.21135828,1097.50799824)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.20570607,1097.11664507)
+\lineto(-440.34058185,1097.24709612)
+\lineto(-440.20570607,1097.11664507)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.20570607,1097.11664507)
+\lineto(-440.34058185,1097.24709612)
+\lineto(-440.20570607,1097.11664507)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.50819055,1096.33393873)
+\lineto(-437.60934738,1096.36655149)
+\lineto(-437.91281788,1097.24709612)
+\lineto(-437.81166104,1097.21448336)
+\lineto(-437.50819055,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.50819055,1096.33393873)
+\lineto(-437.60934738,1096.36655149)
+\lineto(-437.91281788,1097.24709612)
+\lineto(-437.81166104,1097.21448336)
+\lineto(-437.50819055,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.88968123,1097.24709612)
+\lineto(-435.7885244,1096.88835572)
+\lineto(-435.88968123,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.88968123,1097.24709612)
+\lineto(-435.7885244,1096.88835572)
+\lineto(-435.88968123,1097.24709612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.07083029,1096.98619401)
+\lineto(-440.20570607,1097.11664507)
+\lineto(-440.07083029,1096.98619401)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.07083029,1096.98619401)
+\lineto(-440.20570607,1097.11664507)
+\lineto(-440.07083029,1096.98619401)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.42918434,1097.11664507)
+\lineto(-436.15943279,1096.59484084)
+\lineto(-436.05827595,1096.10564938)
+\lineto(-436.42918434,1096.98619401)
+\lineto(-436.42918434,1097.11664507)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.42918434,1097.11664507)
+\lineto(-436.15943279,1096.59484084)
+\lineto(-436.05827595,1096.10564938)
+\lineto(-436.42918434,1096.98619401)
+\lineto(-436.42918434,1097.11664507)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-338.50937085,1096.46438978)
+\lineto(-338.47565191,1096.56222808)
+\lineto(-337.16061309,1097.11664507)
+\lineto(-336.92458048,1097.0840323)
+\lineto(-336.92458048,1097.01880677)
+\lineto(-338.50937085,1096.46438978)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-338.50937085,1096.46438978)
+\lineto(-338.47565191,1096.56222808)
+\lineto(-337.16061309,1097.11664507)
+\lineto(-336.92458048,1097.0840323)
+\lineto(-336.92458048,1097.01880677)
+\lineto(-338.50937085,1096.46438978)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1096.85574295)
+\lineto(-440.07083029,1096.98619401)
+\lineto(-439.93595452,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1096.85574295)
+\lineto(-440.07083029,1096.98619401)
+\lineto(-439.93595452,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.66620297,1096.59484084)
+\lineto(-439.93595452,1096.85574295)
+\lineto(-439.66620297,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.66620297,1096.59484084)
+\lineto(-439.93595452,1096.85574295)
+\lineto(-439.66620297,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.99182408,1096.7252919)
+\lineto(-439.12669986,1096.85574295)
+\lineto(-438.99182408,1096.7252919)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.99182408,1096.7252919)
+\lineto(-439.12669986,1096.85574295)
+\lineto(-438.99182408,1096.7252919)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1095.94258556)
+\lineto(-429.38192503,1095.97519832)
+\lineto(-429.38192503,1096.82313019)
+\lineto(-429.31448715,1096.82313019)
+\lineto(-429.2807682,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1095.94258556)
+\lineto(-429.38192503,1095.97519832)
+\lineto(-429.38192503,1096.82313019)
+\lineto(-429.31448715,1096.82313019)
+\lineto(-429.2807682,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-424.56011604,1096.85574295)
+\curveto(-424.3058752,1096.87398001)(-424.57895818,1096.60984271)(-424.56011604,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-424.56011604,1096.85574295)
+\curveto(-424.3058752,1096.87398001)(-424.57895818,1096.60984271)(-424.56011604,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1096.85574295)
+\lineto(-422.97532567,1096.75790466)
+\lineto(-423.21135828,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1096.85574295)
+\lineto(-422.97532567,1096.75790466)
+\lineto(-423.21135828,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-410.39815954,1096.85574295)
+\lineto(-410.16212693,1096.82313019)
+\lineto(-409.99353221,1096.46438978)
+\lineto(-410.12840799,1094.63807499)
+\lineto(-410.16212693,1094.27933458)
+\lineto(-410.63419215,1094.27933458)
+\lineto(-410.66791109,1094.63807499)
+\lineto(-410.39815954,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-410.39815954,1096.85574295)
+\lineto(-410.16212693,1096.82313019)
+\lineto(-409.99353221,1096.46438978)
+\lineto(-410.12840799,1094.63807499)
+\lineto(-410.16212693,1094.27933458)
+\lineto(-410.63419215,1094.27933458)
+\lineto(-410.66791109,1094.63807499)
+\lineto(-410.39815954,1096.85574295)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.85694831,1096.59484084)
+\lineto(-438.99182408,1096.7252919)
+\lineto(-438.85694831,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.85694831,1096.59484084)
+\lineto(-438.99182408,1096.7252919)
+\lineto(-438.85694831,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-434.13629614,1096.7252919)
+\lineto(-433.90026353,1096.69267913)
+\lineto(-433.90026353,1095.19249198)
+\lineto(-433.96770142,1095.19249198)
+\lineto(-434.13629614,1096.7252919)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-434.13629614,1096.7252919)
+\lineto(-433.90026353,1096.69267913)
+\lineto(-433.90026353,1095.19249198)
+\lineto(-433.96770142,1095.19249198)
+\lineto(-434.13629614,1096.7252919)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1096.33393873)
+\lineto(-439.66620297,1096.59484084)
+\lineto(-439.39645141,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1096.33393873)
+\lineto(-439.66620297,1096.59484084)
+\lineto(-439.39645141,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.72207253,1096.46438978)
+\lineto(-438.85694831,1096.59484084)
+\lineto(-438.72207253,1096.46438978)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.72207253,1096.46438978)
+\lineto(-438.85694831,1096.59484084)
+\lineto(-438.72207253,1096.46438978)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-435.88968123,1096.59484084)
+\lineto(-435.65364862,1096.56222808)
+\lineto(-435.4850539,1095.02942816)
+\lineto(-435.35017813,1093.59446654)
+\lineto(-435.21530235,1093.33356442)
+\lineto(-435.35017813,1093.07266231)
+\lineto(-435.2490213,1091.67031345)
+\lineto(-435.35017813,1092.68130914)
+\lineto(-435.61992968,1093.72491759)
+\lineto(-435.75480546,1093.98581971)
+\lineto(-436.02455701,1095.8121345)
+\lineto(-435.75480546,1096.07303661)
+\lineto(-435.88968123,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-435.88968123,1096.59484084)
+\lineto(-435.65364862,1096.56222808)
+\lineto(-435.4850539,1095.02942816)
+\lineto(-435.35017813,1093.59446654)
+\lineto(-435.21530235,1093.33356442)
+\lineto(-435.35017813,1093.07266231)
+\lineto(-435.2490213,1091.67031345)
+\lineto(-435.35017813,1092.68130914)
+\lineto(-435.61992968,1093.72491759)
+\lineto(-435.75480546,1093.98581971)
+\lineto(-436.02455701,1095.8121345)
+\lineto(-435.75480546,1096.07303661)
+\lineto(-435.88968123,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.32704149,1096.59484084)
+\lineto(-433.09100888,1095.64907068)
+\lineto(-433.09100888,1095.58384515)
+\lineto(-433.29332254,1095.58384515)
+\lineto(-433.32704149,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.32704149,1096.59484084)
+\lineto(-433.09100888,1095.64907068)
+\lineto(-433.09100888,1095.58384515)
+\lineto(-433.29332254,1095.58384515)
+\lineto(-433.32704149,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1096.59484084)
+\lineto(-431.06787224,1096.49700255)
+\lineto(-431.30390484,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1096.59484084)
+\lineto(-431.06787224,1096.49700255)
+\lineto(-431.30390484,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1096.59484084)
+\lineto(-422.97532567,1096.49700255)
+\lineto(-423.21135828,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1096.59484084)
+\lineto(-422.97532567,1096.49700255)
+\lineto(-423.21135828,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-346.33216587,1096.59484084)
+\curveto(-346.07792503,1096.6130779)(-346.35100802,1096.3489406)(-346.33216587,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-346.33216587,1096.59484084)
+\curveto(-346.07792503,1096.6130779)(-346.35100802,1096.3489406)(-346.33216587,1096.59484084)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1096.20348767)
+\lineto(-442.06024799,1096.43177702)
+\lineto(-441.68933961,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1096.20348767)
+\lineto(-442.06024799,1096.43177702)
+\lineto(-441.68933961,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.7779421,1095.29033027)
+\lineto(-438.01397471,1095.45339409)
+\lineto(-438.72207253,1096.46438978)
+\curveto(-438.32257048,1096.17791926)(-437.8263625,1095.79687173)(-437.7779421,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.7779421,1095.29033027)
+\lineto(-438.01397471,1095.45339409)
+\lineto(-438.72207253,1096.46438978)
+\curveto(-438.32257048,1096.17791926)(-437.8263625,1095.79687173)(-437.7779421,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.88235295 0.88235295 0.88235295}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-338.50937085,1096.46438978)
+\lineto(-338.5430898,1095.71429621)
+\lineto(-339.55465812,1094.73591328)
+\lineto(-339.62209601,1094.5402367)
+\lineto(-339.82440967,1094.47501117)
+\lineto(-341.71267054,1092.19211768)
+\lineto(-341.30804321,1094.21410906)
+\lineto(-338.50937085,1096.46438978)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.88235295 0.88235295 0.88235295}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-338.50937085,1096.46438978)
+\lineto(-338.5430898,1095.71429621)
+\lineto(-339.55465812,1094.73591328)
+\lineto(-339.62209601,1094.5402367)
+\lineto(-339.82440967,1094.47501117)
+\lineto(-341.71267054,1092.19211768)
+\lineto(-341.30804321,1094.21410906)
+\lineto(-338.50937085,1096.46438978)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1096.33393873)
+\curveto(-439.14221057,1096.35217578)(-439.41530705,1096.08803849)(-439.39645141,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1096.33393873)
+\curveto(-439.14221057,1096.35217578)(-439.41530705,1096.08803849)(-439.39645141,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.64306632,1093.98581971)
+\lineto(-437.00240639,1093.23572613)
+\lineto(-437.64306632,1095.02942816)
+\lineto(-437.33959583,1094.67068775)
+\lineto(-437.06984427,1094.14888353)
+\lineto(-437.00240639,1094.14888353)
+\lineto(-437.27215794,1095.38816857)
+\curveto(-437.53975148,1095.62285002)(-437.78792291,1096.02490017)(-437.50819055,1096.33393873)
+\lineto(-436.53034117,1094.40978564)
+\lineto(-436.46290328,1094.40978564)
+\lineto(-436.32802751,1094.9968154)
+\lineto(-436.15943279,1093.72491759)
+\curveto(-435.94430592,1093.27264378)(-435.94430592,1092.61177873)(-436.15943279,1092.15950491)
+\lineto(-436.29430856,1091.50724963)
+\lineto(-436.32802751,1091.14850922)
+\lineto(-436.39546539,1091.14850922)
+\lineto(-437.60934738,1093.75753036)
+\lineto(-437.64306632,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.64306632,1093.98581971)
+\lineto(-437.00240639,1093.23572613)
+\lineto(-437.64306632,1095.02942816)
+\lineto(-437.33959583,1094.67068775)
+\lineto(-437.06984427,1094.14888353)
+\lineto(-437.00240639,1094.14888353)
+\lineto(-437.27215794,1095.38816857)
+\curveto(-437.53975148,1095.62285002)(-437.78792291,1096.02490017)(-437.50819055,1096.33393873)
+\lineto(-436.53034117,1094.40978564)
+\lineto(-436.46290328,1094.40978564)
+\lineto(-436.32802751,1094.9968154)
+\lineto(-436.15943279,1093.72491759)
+\curveto(-435.94430592,1093.27264378)(-435.94430592,1092.61177873)(-436.15943279,1092.15950491)
+\lineto(-436.29430856,1091.50724963)
+\lineto(-436.32802751,1091.14850922)
+\lineto(-436.39546539,1091.14850922)
+\lineto(-437.60934738,1093.75753036)
+\lineto(-437.64306632,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1096.33393873)
+\lineto(-431.06787224,1096.23610043)
+\lineto(-431.30390484,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1096.33393873)
+\lineto(-431.06787224,1096.23610043)
+\lineto(-431.30390484,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-426.58325268,1096.33393873)
+\lineto(-426.34722007,1096.23610043)
+\lineto(-426.58325268,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-426.58325268,1096.33393873)
+\lineto(-426.34722007,1096.23610043)
+\lineto(-426.58325268,1096.33393873)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.914526,1096.20348767)
+\curveto(-409.16876684,1096.18525061)(-408.89568386,1096.44938791)(-408.914526,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.914526,1096.20348767)
+\curveto(-409.16876684,1096.18525061)(-408.89568386,1096.44938791)(-408.914526,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-346.87166898,1096.07303661)
+\lineto(-346.50076059,1096.30132596)
+\lineto(-346.87166898,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-346.87166898,1096.07303661)
+\lineto(-346.50076059,1096.30132596)
+\lineto(-346.87166898,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-339.45350129,1093.85536865)
+\lineto(-339.41978234,1094.083658)
+\curveto(-338.65571107,1094.9235019)(-337.8821985,1095.99215696)(-336.75598576,1096.33393873)
+\lineto(-336.38507738,1096.30132596)
+\lineto(-337.12689415,1095.77952174)
+\lineto(-337.80127303,1094.9968154)
+\lineto(-338.00358669,1094.67068775)
+\lineto(-339.45350129,1093.85536865)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-339.45350129,1093.85536865)
+\lineto(-339.41978234,1094.083658)
+\curveto(-338.65571107,1094.9235019)(-337.8821985,1095.99215696)(-336.75598576,1096.33393873)
+\lineto(-336.38507738,1096.30132596)
+\lineto(-337.12689415,1095.77952174)
+\lineto(-337.80127303,1094.9968154)
+\lineto(-338.00358669,1094.67068775)
+\lineto(-339.45350129,1093.85536865)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1096.20348767)
+\lineto(-444.2856983,1096.04042385)
+\lineto(-441.92537222,1094.27933458)
+\lineto(-441.72305855,1094.21410906)
+\lineto(-440.91380389,1093.43140272)
+\lineto(-439.43017036,1091.99644109)
+\lineto(-438.99182408,1090.85499434)
+\lineto(-439.1604188,1090.626705)
+\lineto(-439.49760824,1090.75715605)
+\curveto(-440.35690181,1092.417798)(-441.98471756,1093.72883112)(-443.47644364,1094.86636434)
+\lineto(-443.94850886,1095.06204092)
+\lineto(-444.75776351,1095.71429621)
+\lineto(-444.65660668,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1096.20348767)
+\lineto(-444.2856983,1096.04042385)
+\lineto(-441.92537222,1094.27933458)
+\lineto(-441.72305855,1094.21410906)
+\lineto(-440.91380389,1093.43140272)
+\lineto(-439.43017036,1091.99644109)
+\lineto(-438.99182408,1090.85499434)
+\lineto(-439.1604188,1090.626705)
+\lineto(-439.49760824,1090.75715605)
+\curveto(-440.35690181,1092.417798)(-441.98471756,1093.72883112)(-443.47644364,1094.86636434)
+\lineto(-443.94850886,1095.06204092)
+\lineto(-444.75776351,1095.71429621)
+\lineto(-444.65660668,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.41958806,1096.07303661)
+\lineto(-441.68933961,1096.20348767)
+\lineto(-441.41958806,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.41958806,1096.07303661)
+\lineto(-441.68933961,1096.20348767)
+\lineto(-441.41958806,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-432.92241416,1096.20348767)
+\lineto(-432.68638155,1096.17087491)
+\lineto(-432.68638155,1094.27933458)
+\lineto(-432.75381944,1094.27933458)
+\lineto(-432.92241416,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-432.92241416,1096.20348767)
+\lineto(-432.68638155,1096.17087491)
+\lineto(-432.68638155,1094.27933458)
+\lineto(-432.75381944,1094.27933458)
+\lineto(-432.92241416,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1096.20348767)
+\lineto(-423.11020144,1095.58384515)
+\lineto(-423.21135828,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.21135828,1096.20348767)
+\lineto(-423.11020144,1095.58384515)
+\lineto(-423.21135828,1096.20348767)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1095.8121345)
+\lineto(-408.914526,1096.20348767)
+\lineto(-408.77965023,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1095.8121345)
+\lineto(-408.914526,1096.20348767)
+\lineto(-408.77965023,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.1498365,1095.8121345)
+\lineto(-441.41958806,1096.07303661)
+\lineto(-441.1498365,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.1498365,1095.8121345)
+\lineto(-441.41958806,1096.07303661)
+\lineto(-441.1498365,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.99182408,1093.72491759)
+\lineto(-438.48603992,1093.6270793)
+\lineto(-438.72207253,1094.11627076)
+\lineto(-439.49760824,1095.19249198)
+\lineto(-439.7673598,1096.04042385)
+\lineto(-439.43017036,1096.04042385)
+\lineto(-437.50819055,1092.68130914)
+\lineto(-437.54190949,1092.32256873)
+\lineto(-438.01397471,1092.45301979)
+\lineto(-438.6209157,1093.43140272)
+\lineto(-438.99182408,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.99182408,1093.72491759)
+\lineto(-438.48603992,1093.6270793)
+\lineto(-438.72207253,1094.11627076)
+\lineto(-439.49760824,1095.19249198)
+\lineto(-439.7673598,1096.04042385)
+\lineto(-439.43017036,1096.04042385)
+\lineto(-437.50819055,1092.68130914)
+\lineto(-437.54190949,1092.32256873)
+\lineto(-438.01397471,1092.45301979)
+\lineto(-438.6209157,1093.43140272)
+\lineto(-438.99182408,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.85694831,1095.68168344)
+\lineto(-439.22785669,1096.04042385)
+\curveto(-439.02055262,1096.15289875)(-438.80070511,1095.87070702)(-438.85694831,1095.68168344)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.85694831,1095.68168344)
+\lineto(-439.22785669,1096.04042385)
+\curveto(-439.02055262,1096.15289875)(-438.80070511,1095.87070702)(-438.85694831,1095.68168344)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.96868744,1096.07303661)
+\curveto(-436.7144466,1096.09127367)(-436.98752959,1095.82713637)(-436.96868744,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.96868744,1096.07303661)
+\curveto(-436.7144466,1096.09127367)(-436.98752959,1095.82713637)(-436.96868744,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-434.9455508,1096.07303661)
+\lineto(-434.81067502,1095.94258556)
+\lineto(-434.81067502,1092.02905386)
+\lineto(-434.91183186,1091.93121556)
+\lineto(-435.04670763,1092.19211768)
+\lineto(-434.9455508,1092.42040703)
+\lineto(-434.9455508,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-434.9455508,1096.07303661)
+\lineto(-434.81067502,1095.94258556)
+\lineto(-434.81067502,1092.02905386)
+\lineto(-434.91183186,1091.93121556)
+\lineto(-435.04670763,1092.19211768)
+\lineto(-434.9455508,1092.42040703)
+\lineto(-434.9455508,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-426.58325268,1096.07303661)
+\curveto(-426.31120824,1096.13206572)(-426.32280756,1095.96395344)(-426.4483769,1095.8121345)
+\curveto(-426.36128761,1095.52983841)(-426.67038243,1095.52983841)(-426.58325268,1095.8121345)
+\lineto(-426.58325268,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-426.58325268,1096.07303661)
+\curveto(-426.31120824,1096.13206572)(-426.32280756,1095.96395344)(-426.4483769,1095.8121345)
+\curveto(-426.36128761,1095.52983841)(-426.67038243,1095.52983841)(-426.58325268,1095.8121345)
+\lineto(-426.58325268,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.82745099 0.82745099 0.82745099}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-413.36542662,1096.07303661)
+\lineto(-413.09567506,1095.8121345)
+\curveto(-413.3582782,1095.48078882)(-413.23689,1095.04142966)(-412.96079929,1094.76852605)
+\lineto(-413.12939401,1093.23572613)
+\lineto(-414.95021699,1093.36617719)
+\lineto(-414.41071388,1094.9968154)
+\lineto(-414.07352444,1095.25771751)
+\lineto(-413.93864866,1094.14888353)
+\lineto(-413.50030239,1095.55123239)
+\lineto(-413.36542662,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.82745099 0.82745099 0.82745099}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-413.36542662,1096.07303661)
+\lineto(-413.09567506,1095.8121345)
+\curveto(-413.3582782,1095.48078882)(-413.23689,1095.04142966)(-412.96079929,1094.76852605)
+\lineto(-413.12939401,1093.23572613)
+\lineto(-414.95021699,1093.36617719)
+\lineto(-414.41071388,1094.9968154)
+\lineto(-414.07352444,1095.25771751)
+\lineto(-413.93864866,1094.14888353)
+\lineto(-413.50030239,1095.55123239)
+\lineto(-413.36542662,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-346.87166898,1096.07303661)
+\lineto(-347.2762963,1095.94258556)
+\lineto(-346.87166898,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-346.87166898,1096.07303661)
+\lineto(-347.2762963,1095.94258556)
+\lineto(-346.87166898,1096.07303661)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1095.94258556)
+\lineto(-429.17961137,1095.45339409)
+\lineto(-429.2807682,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.2807682,1095.94258556)
+\lineto(-429.17961137,1095.45339409)
+\lineto(-429.2807682,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-407.16114091,1095.94258556)
+\lineto(-406.92510831,1095.71429621)
+\lineto(-407.16114091,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-407.16114091,1095.94258556)
+\lineto(-406.92510831,1095.71429621)
+\lineto(-407.16114091,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-355.63859442,1095.94258556)
+\lineto(-355.36884287,1095.94258556)
+\curveto(-354.630398,1095.93718488)(-356.11160377,1095.3798197)(-355.63859442,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-355.63859442,1095.94258556)
+\lineto(-355.36884287,1095.94258556)
+\curveto(-354.630398,1095.93718488)(-356.11160377,1095.3798197)(-355.63859442,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-347.2762963,1095.94258556)
+\curveto(-347.25744067,1095.69668532)(-347.53053714,1095.96082261)(-347.2762963,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-347.2762963,1095.94258556)
+\curveto(-347.25744067,1095.69668532)(-347.53053714,1095.96082261)(-347.2762963,1095.94258556)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.01496073,1095.68168344)
+\lineto(-441.1498365,1095.8121345)
+\lineto(-441.01496073,1095.68168344)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.01496073,1095.68168344)
+\lineto(-441.1498365,1095.8121345)
+\lineto(-441.01496073,1095.68168344)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.83381167,1095.8121345)
+\curveto(-436.60708549,1095.71674869)(-436.3146748,1095.46200386)(-436.46290328,1095.19249198)
+\lineto(-436.53034117,1095.19249198)
+\lineto(-436.83381167,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.83381167,1095.8121345)
+\curveto(-436.60708549,1095.71674869)(-436.3146748,1095.46200386)(-436.46290328,1095.19249198)
+\lineto(-436.53034117,1095.19249198)
+\lineto(-436.83381167,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.16902907,1095.8121345)
+\lineto(-431.06787224,1095.77952174)
+\lineto(-431.06787224,1094.67068775)
+\lineto(-431.2701859,1094.67068775)
+\lineto(-431.16902907,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.16902907,1095.8121345)
+\lineto(-431.06787224,1095.77952174)
+\lineto(-431.06787224,1094.67068775)
+\lineto(-431.2701859,1094.67068775)
+\lineto(-431.16902907,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1095.8121345)
+\lineto(-408.54361762,1094.9968154)
+\lineto(-408.54361762,1094.93158987)
+\lineto(-408.77965023,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1095.8121345)
+\lineto(-408.54361762,1094.9968154)
+\lineto(-408.54361762,1094.93158987)
+\lineto(-408.77965023,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.08555096,1095.55123239)
+\lineto(-347.71464258,1095.77952174)
+\curveto(-347.56506534,1095.5277512)(-347.92882531,1095.52983841)(-348.08555096,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.08555096,1095.55123239)
+\lineto(-347.71464258,1095.77952174)
+\curveto(-347.56506534,1095.5277512)(-347.92882531,1095.52983841)(-348.08555096,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1095.8121345)
+\lineto(-332.8783072,1095.77952174)
+\curveto(-332.96248317,1095.25380398)(-333.58627015,1095.15087809)(-334.05847024,1095.15987922)
+\lineto(-335.37350906,1095.06204092)
+\lineto(-335.37350906,1095.12726645)
+\lineto(-335.00260067,1095.29033027)
+\lineto(-334.36194074,1095.45339409)
+\lineto(-333.51896714,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1095.8121345)
+\lineto(-332.8783072,1095.77952174)
+\curveto(-332.96248317,1095.25380398)(-333.58627015,1095.15087809)(-334.05847024,1095.15987922)
+\lineto(-335.37350906,1095.06204092)
+\lineto(-335.37350906,1095.12726645)
+\lineto(-335.00260067,1095.29033027)
+\lineto(-334.36194074,1095.45339409)
+\lineto(-333.51896714,1095.8121345)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.74520917,1095.55123239)
+\lineto(-441.01496073,1095.68168344)
+\lineto(-440.74520917,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.74520917,1095.55123239)
+\lineto(-441.01496073,1095.68168344)
+\lineto(-440.74520917,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.58719676,1095.29033027)
+\lineto(-438.85694831,1095.68168344)
+\lineto(-438.58719676,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.58719676,1095.29033027)
+\lineto(-438.85694831,1095.68168344)
+\lineto(-438.58719676,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.74520917,1095.55123239)
+\curveto(-440.49096834,1095.56946944)(-440.76406481,1095.30533214)(-440.74520917,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.74520917,1095.55123239)
+\curveto(-440.49096834,1095.56946944)(-440.76406481,1095.30533214)(-440.74520917,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-407.16114091,1095.55123239)
+\curveto(-406.66452831,1095.60578702)(-407.08512493,1095.16274914)(-407.05998408,1094.93158987)
+\lineto(-407.16114091,1095.15987922)
+\lineto(-407.16114091,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-407.16114091,1095.55123239)
+\curveto(-406.66452831,1095.60578702)(-407.08512493,1095.16274914)(-407.05998408,1094.93158987)
+\lineto(-407.16114091,1095.15987922)
+\lineto(-407.16114091,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.08555096,1095.55123239)
+\curveto(-348.06669533,1095.30533214)(-348.3397918,1095.56946944)(-348.08555096,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.08555096,1095.55123239)
+\curveto(-348.06669533,1095.30533214)(-348.3397918,1095.56946944)(-348.08555096,1095.55123239)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.32704149,1095.42078133)
+\lineto(-433.09100888,1095.19249198)
+\lineto(-433.32704149,1095.42078133)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.32704149,1095.42078133)
+\lineto(-433.09100888,1095.19249198)
+\lineto(-433.32704149,1095.42078133)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1095.02942816)
+\lineto(-423.24507722,1095.38816857)
+\lineto(-423.34623405,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1095.02942816)
+\lineto(-423.24507722,1095.38816857)
+\lineto(-423.34623405,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.75992984,1095.29033027)
+\lineto(-348.52389723,1095.38816857)
+\lineto(-348.75992984,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.75992984,1095.29033027)
+\lineto(-348.52389723,1095.38816857)
+\lineto(-348.75992984,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.20570607,1095.02942816)
+\lineto(-440.44173868,1095.25771751)
+\lineto(-440.20570607,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.20570607,1095.02942816)
+\lineto(-440.44173868,1095.25771751)
+\lineto(-440.20570607,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.58719676,1095.29033027)
+\lineto(-438.35116415,1094.93158987)
+\lineto(-438.58719676,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.58719676,1095.29033027)
+\lineto(-438.35116415,1094.93158987)
+\lineto(-438.58719676,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.64306632,1095.02942816)
+\lineto(-437.7779421,1095.29033027)
+\lineto(-437.64306632,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.64306632,1095.02942816)
+\lineto(-437.7779421,1095.29033027)
+\lineto(-437.64306632,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.41564398,1095.29033027)
+\lineto(-429.31448715,1094.93158987)
+\lineto(-429.41564398,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.41564398,1095.29033027)
+\lineto(-429.31448715,1094.93158987)
+\lineto(-429.41564398,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.75992984,1095.29033027)
+\lineto(-348.99596245,1095.19249198)
+\lineto(-348.75992984,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.75992984,1095.29033027)
+\lineto(-348.99596245,1095.19249198)
+\lineto(-348.75992984,1095.29033027)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-349.97381183,1094.8989771)
+\lineto(-349.94009288,1094.9968154)
+\lineto(-349.33315189,1095.12726645)
+\lineto(-349.97381183,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-349.97381183,1094.8989771)
+\lineto(-349.94009288,1094.9968154)
+\lineto(-349.33315189,1095.12726645)
+\lineto(-349.97381183,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.07083029,1094.8989771)
+\lineto(-440.20570607,1095.02942816)
+\lineto(-440.07083029,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.07083029,1094.8989771)
+\lineto(-440.20570607,1095.02942816)
+\lineto(-440.07083029,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1095.02942816)
+\lineto(-423.51482877,1094.27933458)
+\lineto(-423.58226666,1094.27933458)
+\lineto(-423.44739088,1094.9968154)
+\lineto(-423.34623405,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-423.34623405,1095.02942816)
+\lineto(-423.51482877,1094.27933458)
+\lineto(-423.58226666,1094.27933458)
+\lineto(-423.44739088,1094.9968154)
+\lineto(-423.34623405,1095.02942816)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1094.76852605)
+\lineto(-440.07083029,1094.8989771)
+\lineto(-439.93595452,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1094.76852605)
+\lineto(-440.07083029,1094.8989771)
+\lineto(-439.93595452,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.32704149,1094.8989771)
+\lineto(-433.22588465,1094.67068775)
+\lineto(-433.32704149,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.32704149,1094.8989771)
+\lineto(-433.22588465,1094.67068775)
+\lineto(-433.32704149,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-349.97381183,1094.8989771)
+\lineto(-350.24356338,1094.76852605)
+\lineto(-349.97381183,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-349.97381183,1094.8989771)
+\lineto(-350.24356338,1094.76852605)
+\lineto(-349.97381183,1094.8989771)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.66620297,1094.50762393)
+\lineto(-439.93595452,1094.76852605)
+\lineto(-439.66620297,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.66620297,1094.50762393)
+\lineto(-439.93595452,1094.76852605)
+\lineto(-439.66620297,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.3174452,1094.76852605)
+\lineto(-438.0814126,1094.5402367)
+\lineto(-438.3174452,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.3174452,1094.76852605)
+\lineto(-438.0814126,1094.5402367)
+\lineto(-438.3174452,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1094.76852605)
+\lineto(-408.54361762,1094.67068775)
+\lineto(-408.77965023,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1094.76852605)
+\lineto(-408.54361762,1094.67068775)
+\lineto(-408.77965023,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-350.24356338,1094.76852605)
+\lineto(-350.51331493,1094.63807499)
+\lineto(-350.24356338,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-350.24356338,1094.76852605)
+\lineto(-350.51331493,1094.63807499)
+\lineto(-350.24356338,1094.76852605)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-350.51331493,1094.63807499)
+\lineto(-350.78306648,1094.50762393)
+\lineto(-350.51331493,1094.63807499)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-350.51331493,1094.63807499)
+\lineto(-350.78306648,1094.50762393)
+\lineto(-350.51331493,1094.63807499)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-347.54604786,1094.50762393)
+\lineto(-347.31001525,1094.60546223)
+\lineto(-347.54604786,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-347.54604786,1094.50762393)
+\lineto(-347.31001525,1094.60546223)
+\lineto(-347.54604786,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1094.50762393)
+\lineto(-332.74343142,1094.60546223)
+\lineto(-333.11433981,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1094.50762393)
+\lineto(-332.74343142,1094.60546223)
+\lineto(-333.11433981,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.53132719,1094.37717288)
+\lineto(-439.66620297,1094.50762393)
+\lineto(-439.53132719,1094.37717288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.53132719,1094.37717288)
+\lineto(-439.66620297,1094.50762393)
+\lineto(-439.53132719,1094.37717288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1094.50762393)
+\lineto(-431.06787224,1094.40978564)
+\lineto(-431.30390484,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1094.50762393)
+\lineto(-431.06787224,1094.40978564)
+\lineto(-431.30390484,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-350.78306648,1094.50762393)
+\lineto(-351.05281804,1094.37717288)
+\lineto(-350.78306648,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-350.78306648,1094.50762393)
+\lineto(-351.05281804,1094.37717288)
+\lineto(-350.78306648,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-347.54604786,1094.50762393)
+\lineto(-347.78208046,1094.40978564)
+\lineto(-347.54604786,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-347.54604786,1094.50762393)
+\lineto(-347.78208046,1094.40978564)
+\lineto(-347.54604786,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1094.50762393)
+\lineto(-333.14805875,1094.40978564)
+\lineto(-334.32822179,1093.85536865)
+\lineto(-334.42937863,1093.88798141)
+\curveto(-334.15045552,1094.25794061)(-333.60906416,1094.49340477)(-333.11433981,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1094.50762393)
+\lineto(-333.14805875,1094.40978564)
+\lineto(-334.32822179,1093.85536865)
+\lineto(-334.42937863,1093.88798141)
+\curveto(-334.15045552,1094.25794061)(-333.60906416,1094.49340477)(-333.11433981,1094.50762393)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1094.24672182)
+\lineto(-439.53132719,1094.37717288)
+\lineto(-439.39645141,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1094.24672182)
+\lineto(-439.53132719,1094.37717288)
+\lineto(-439.39645141,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.64306632,1093.98581971)
+\lineto(-437.87909893,1094.34456011)
+\lineto(-437.64306632,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.64306632,1093.98581971)
+\lineto(-437.87909893,1094.34456011)
+\lineto(-437.64306632,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1093.98581971)
+\lineto(-408.6784934,1094.34456011)
+\lineto(-408.77965023,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1093.98581971)
+\lineto(-408.6784934,1094.34456011)
+\lineto(-408.77965023,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-351.05281804,1094.37717288)
+\lineto(-351.32256959,1094.24672182)
+\lineto(-351.05281804,1094.37717288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-351.05281804,1094.37717288)
+\lineto(-351.32256959,1094.24672182)
+\lineto(-351.05281804,1094.37717288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.08555096,1094.37717288)
+\curveto(-347.83131012,1094.39540993)(-348.10439311,1094.13127263)(-348.08555096,1094.37717288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.08555096,1094.37717288)
+\curveto(-347.83131012,1094.39540993)(-348.10439311,1094.13127263)(-348.08555096,1094.37717288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.38685513,1094.11627076)
+\lineto(-444.62288774,1094.21410906)
+\lineto(-444.38685513,1094.11627076)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.38685513,1094.11627076)
+\lineto(-444.62288774,1094.21410906)
+\lineto(-444.38685513,1094.11627076)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.99182408,1093.72491759)
+\lineto(-439.39645141,1094.24672182)
+\lineto(-438.99182408,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.99182408,1093.72491759)
+\lineto(-439.39645141,1094.24672182)
+\lineto(-438.99182408,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-432.78753838,1093.20311337)
+\curveto(-432.84352532,1093.63047103)(-432.82005693,1094.16649442)(-432.28175422,1094.21410906)
+\curveto(-432.18475156,1093.91968102)(-432.20951476,1093.46336322)(-432.61894366,1093.43140272)
+\lineto(-432.78753838,1093.20311337)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-432.78753838,1093.20311337)
+\curveto(-432.84352532,1093.63047103)(-432.82005693,1094.16649442)(-432.28175422,1094.21410906)
+\curveto(-432.18475156,1093.91968102)(-432.20951476,1093.46336322)(-432.61894366,1093.43140272)
+\lineto(-432.78753838,1093.20311337)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1094.24672182)
+\curveto(-430.98532826,1094.11209633)(-431.25391988,1093.71226384)(-431.33762379,1093.49662824)
+\lineto(-431.40506168,1093.49662824)
+\lineto(-431.30390484,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-431.30390484,1094.24672182)
+\curveto(-430.98532826,1094.11209633)(-431.25391988,1093.71226384)(-431.33762379,1093.49662824)
+\lineto(-431.40506168,1093.49662824)
+\lineto(-431.30390484,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-351.32256959,1094.24672182)
+\curveto(-351.30371395,1094.00082158)(-351.57681043,1094.26495888)(-351.32256959,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-351.32256959,1094.24672182)
+\curveto(-351.30371395,1094.00082158)(-351.57681043,1094.26495888)(-351.32256959,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.35530251,1094.24672182)
+\curveto(-348.10106167,1094.26495888)(-348.37414466,1094.00082158)(-348.35530251,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.35530251,1094.24672182)
+\curveto(-348.10106167,1094.26495888)(-348.37414466,1094.00082158)(-348.35530251,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-332.30508515,1094.24672182)
+\curveto(-331.64230559,1094.26237595)(-332.70593596,1093.71878639)(-332.30508515,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-332.30508515,1094.24672182)
+\curveto(-331.64230559,1094.26237595)(-332.70593596,1093.71878639)(-332.30508515,1094.24672182)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.84735203,1093.85536865)
+\lineto(-444.38685513,1094.11627076)
+\lineto(-443.84735203,1093.85536865)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.84735203,1093.85536865)
+\lineto(-444.38685513,1094.11627076)
+\lineto(-443.84735203,1093.85536865)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.89480562,1093.98581971)
+\lineto(-348.65877301,1094.083658)
+\lineto(-348.89480562,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.89480562,1093.98581971)
+\lineto(-348.65877301,1094.083658)
+\lineto(-348.89480562,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1093.98581971)
+\curveto(-408.76080808,1093.73991946)(-409.03389107,1094.00405676)(-408.77965023,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1093.98581971)
+\curveto(-408.76080808,1093.73991946)(-409.03389107,1094.00405676)(-408.77965023,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-351.99694847,1093.98581971)
+\curveto(-351.74270763,1094.00405676)(-352.01579061,1093.73991946)(-351.99694847,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-351.99694847,1093.98581971)
+\curveto(-351.74270763,1094.00405676)(-352.01579061,1093.73991946)(-351.99694847,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-348.89480562,1093.98581971)
+\lineto(-349.265714,1093.88798141)
+\lineto(-348.89480562,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-348.89480562,1093.98581971)
+\lineto(-349.265714,1093.88798141)
+\lineto(-348.89480562,1093.98581971)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.57760047,1093.72491759)
+\lineto(-443.84735203,1093.85536865)
+\lineto(-443.57760047,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.57760047,1093.72491759)
+\lineto(-443.84735203,1093.85536865)
+\lineto(-443.57760047,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.30784892,1093.59446654)
+\lineto(-443.57760047,1093.72491759)
+\lineto(-443.30784892,1093.59446654)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.30784892,1093.59446654)
+\lineto(-443.57760047,1093.72491759)
+\lineto(-443.30784892,1093.59446654)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-349.83893605,1093.72491759)
+\lineto(-349.60290344,1093.6270793)
+\lineto(-349.83893605,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-349.83893605,1093.72491759)
+\lineto(-349.60290344,1093.6270793)
+\lineto(-349.83893605,1093.72491759)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1093.46401548)
+\lineto(-443.30784892,1093.59446654)
+\lineto(-443.17297314,1093.46401548)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1093.46401548)
+\lineto(-443.30784892,1093.59446654)
+\lineto(-443.17297314,1093.46401548)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1093.20311337)
+\lineto(-443.17297314,1093.46401548)
+\lineto(-442.90322159,1093.20311337)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1093.20311337)
+\lineto(-443.17297314,1093.46401548)
+\lineto(-442.90322159,1093.20311337)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.63347004,1092.94221125)
+\lineto(-442.90322159,1093.20311337)
+\lineto(-442.63347004,1092.94221125)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.63347004,1092.94221125)
+\lineto(-442.90322159,1093.20311337)
+\lineto(-442.63347004,1092.94221125)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-432.78753838,1093.20311337)
+\curveto(-432.76869624,1092.95721312)(-433.04177922,1093.22135042)(-432.78753838,1093.20311337)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-432.78753838,1093.20311337)
+\curveto(-432.76869624,1092.95721312)(-433.04177922,1093.22135042)(-432.78753838,1093.20311337)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1092.8117602)
+\lineto(-442.63347004,1092.94221125)
+\lineto(-442.49859426,1092.8117602)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1092.8117602)
+\lineto(-442.63347004,1092.94221125)
+\lineto(-442.49859426,1092.8117602)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.36371849,1092.68130914)
+\lineto(-442.49859426,1092.8117602)
+\lineto(-442.36371849,1092.68130914)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.36371849,1092.68130914)
+\lineto(-442.49859426,1092.8117602)
+\lineto(-442.36371849,1092.68130914)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.22884271,1092.55085808)
+\lineto(-442.36371849,1092.68130914)
+\lineto(-442.22884271,1092.55085808)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.22884271,1092.55085808)
+\lineto(-442.36371849,1092.68130914)
+\lineto(-442.22884271,1092.55085808)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1092.42040703)
+\lineto(-442.22884271,1092.55085808)
+\lineto(-442.09396694,1092.42040703)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1092.42040703)
+\lineto(-442.22884271,1092.55085808)
+\lineto(-442.09396694,1092.42040703)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.95909116,1092.28995597)
+\lineto(-442.09396694,1092.42040703)
+\lineto(-441.95909116,1092.28995597)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.95909116,1092.28995597)
+\lineto(-442.09396694,1092.42040703)
+\lineto(-441.95909116,1092.28995597)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.82421538,1092.15950491)
+\lineto(-441.95909116,1092.28995597)
+\lineto(-441.82421538,1092.15950491)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.82421538,1092.15950491)
+\lineto(-441.95909116,1092.28995597)
+\lineto(-441.82421538,1092.15950491)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1092.02905386)
+\lineto(-441.82421538,1092.15950491)
+\lineto(-441.68933961,1092.02905386)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1092.02905386)
+\lineto(-441.82421538,1092.15950491)
+\lineto(-441.68933961,1092.02905386)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.75598576,1092.15950491)
+\lineto(-336.2502016,1092.12689215)
+\lineto(-337.05945626,1091.40941134)
+\lineto(-337.26176992,1091.40941134)
+\lineto(-336.99201837,1091.73553898)
+\lineto(-336.75598576,1092.15950491)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.75598576,1092.15950491)
+\lineto(-336.2502016,1092.12689215)
+\lineto(-337.05945626,1091.40941134)
+\lineto(-337.26176992,1091.40941134)
+\lineto(-336.99201837,1091.73553898)
+\lineto(-336.75598576,1092.15950491)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.94949488,1092.02905386)
+\curveto(-446.69525404,1092.04729091)(-446.96835051,1091.78315361)(-446.94949488,1092.02905386)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.94949488,1092.02905386)
+\curveto(-446.69525404,1092.04729091)(-446.96835051,1091.78315361)(-446.94949488,1092.02905386)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1092.02905386)
+\curveto(-441.43509877,1092.04729091)(-441.70819524,1091.78315361)(-441.68933961,1092.02905386)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1092.02905386)
+\curveto(-441.43509877,1092.04729091)(-441.70819524,1091.78315361)(-441.68933961,1092.02905386)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.275116,1091.63770069)
+\lineto(-446.64602438,1091.86599003)
+\lineto(-446.275116,1091.63770069)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.275116,1091.63770069)
+\lineto(-446.64602438,1091.86599003)
+\lineto(-446.275116,1091.63770069)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1091.37679857)
+\lineto(-446.275116,1091.63770069)
+\lineto(-445.87048867,1091.37679857)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1091.37679857)
+\lineto(-446.275116,1091.63770069)
+\lineto(-445.87048867,1091.37679857)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1091.37679857)
+\curveto(-445.67505367,1091.4312358)(-445.38331736,1091.21856144)(-445.49958028,1091.01805817)
+\lineto(-445.87048867,1091.37679857)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1091.37679857)
+\curveto(-445.67505367,1091.4312358)(-445.38331736,1091.21856144)(-445.49958028,1091.01805817)
+\lineto(-445.87048867,1091.37679857)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1090.85499434)
+\curveto(-445.45035063,1090.83675729)(-445.17725415,1091.10089459)(-445.19610979,1090.85499434)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1090.85499434)
+\curveto(-445.45035063,1090.83675729)(-445.17725415,1091.10089459)(-445.19610979,1090.85499434)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.29430856,1090.9854454)
+\curveto(-436.04006772,1091.00368246)(-436.31315071,1090.73954516)(-436.29430856,1090.9854454)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.29430856,1090.9854454)
+\curveto(-436.04006772,1091.00368246)(-436.31315071,1090.73954516)(-436.29430856,1090.9854454)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-334.05847024,1090.9854454)
+\lineto(-333.62012397,1090.49625394)
+\lineto(-332.60855565,1090.82238158)
+\lineto(-335.57582272,1088.53948809)
+\curveto(-336.42162872,1088.11108682)(-337.07024632,1087.36099324)(-337.66639725,1086.64794777)
+\lineto(-337.66639725,1086.32182012)
+\lineto(-337.53152148,1086.19136907)
+\lineto(-336.72226682,1086.12614354)
+\lineto(-335.17119539,1087.36542858)
+\lineto(-332.60855565,1088.73516467)
+\lineto(-332.3388041,1088.53948809)
+\lineto(-332.8783072,1087.75678175)
+\curveto(-334.38891589,1087.03838778)(-335.39508918,1085.59259872)(-336.31763949,1084.29982874)
+\lineto(-336.45251527,1083.71279899)
+\lineto(-336.11532583,1083.45189688)
+\lineto(-336.21648266,1082.76702883)
+\lineto(-336.31763949,1082.79964159)
+\lineto(-337.19433204,1084.95208403)
+\lineto(-338.50937085,1087.0719137)
+\lineto(-337.59895937,1088.01768386)
+\lineto(-334.22706496,1090.75715605)
+\lineto(-334.05847024,1090.9854454)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.05847024,1090.9854454)
+\lineto(-333.62012397,1090.49625394)
+\lineto(-332.60855565,1090.82238158)
+\lineto(-335.57582272,1088.53948809)
+\curveto(-336.42162872,1088.11108682)(-337.07024632,1087.36099324)(-337.66639725,1086.64794777)
+\lineto(-337.66639725,1086.32182012)
+\lineto(-337.53152148,1086.19136907)
+\lineto(-336.72226682,1086.12614354)
+\lineto(-335.17119539,1087.36542858)
+\lineto(-332.60855565,1088.73516467)
+\lineto(-332.3388041,1088.53948809)
+\lineto(-332.8783072,1087.75678175)
+\curveto(-334.38891589,1087.03838778)(-335.39508918,1085.59259872)(-336.31763949,1084.29982874)
+\lineto(-336.45251527,1083.71279899)
+\lineto(-336.11532583,1083.45189688)
+\lineto(-336.21648266,1082.76702883)
+\lineto(-336.31763949,1082.79964159)
+\lineto(-337.19433204,1084.95208403)
+\lineto(-338.50937085,1087.0719137)
+\lineto(-337.59895937,1088.01768386)
+\lineto(-334.22706496,1090.75715605)
+\lineto(-334.05847024,1090.9854454)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.06123401,1090.72454329)
+\lineto(-445.19610979,1090.85499434)
+\lineto(-445.06123401,1090.72454329)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.06123401,1090.72454329)
+\lineto(-445.19610979,1090.85499434)
+\lineto(-445.06123401,1090.72454329)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.67974332,1090.59409223)
+\lineto(-447.18552749,1090.69193052)
+\lineto(-446.67974332,1090.59409223)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.67974332,1090.59409223)
+\lineto(-447.18552749,1090.69193052)
+\lineto(-446.67974332,1090.59409223)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1090.59409223)
+\lineto(-445.06123401,1090.72454329)
+\lineto(-444.92635823,1090.59409223)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1090.59409223)
+\lineto(-445.06123401,1090.72454329)
+\lineto(-444.92635823,1090.59409223)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.40999177,1090.46364117)
+\lineto(-446.67974332,1090.59409223)
+\lineto(-446.40999177,1090.46364117)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.40999177,1090.46364117)
+\lineto(-446.67974332,1090.59409223)
+\lineto(-446.40999177,1090.46364117)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1090.59409223)
+\lineto(-444.69032563,1090.36580288)
+\lineto(-444.92635823,1090.59409223)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1090.59409223)
+\lineto(-444.69032563,1090.36580288)
+\lineto(-444.92635823,1090.59409223)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1090.33319012)
+\lineto(-446.40999177,1090.46364117)
+\lineto(-446.14024022,1090.33319012)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1090.33319012)
+\lineto(-446.40999177,1090.46364117)
+\lineto(-446.14024022,1090.33319012)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1090.33319012)
+\lineto(-445.90420761,1090.23535183)
+\lineto(-446.14024022,1090.33319012)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1090.33319012)
+\lineto(-445.90420761,1090.23535183)
+\lineto(-446.14024022,1090.33319012)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-332.43996093,1090.33319012)
+\curveto(-332.03061295,1090.23128175)(-332.63971195,1089.87061067)(-332.67599354,1090.1701263)
+\lineto(-332.5748367,1090.20273906)
+\lineto(-332.43996093,1090.33319012)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-332.43996093,1090.33319012)
+\curveto(-332.03061295,1090.23128175)(-332.63971195,1089.87061067)(-332.67599354,1090.1701263)
+\lineto(-332.5748367,1090.20273906)
+\lineto(-332.43996093,1090.33319012)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.38685513,1090.072288)
+\curveto(-444.64109597,1090.05405095)(-444.3679995,1090.31818825)(-444.38685513,1090.072288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.38685513,1090.072288)
+\curveto(-444.64109597,1090.05405095)(-444.3679995,1090.31818825)(-444.38685513,1090.072288)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1089.81138589)
+\lineto(-445.56701817,1090.03967524)
+\lineto(-445.19610979,1089.81138589)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1089.81138589)
+\lineto(-445.56701817,1090.03967524)
+\lineto(-445.19610979,1089.81138589)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1089.94183695)
+\lineto(-444.38685513,1090.072288)
+\lineto(-444.25197935,1089.94183695)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1089.94183695)
+\lineto(-444.38685513,1090.072288)
+\lineto(-444.25197935,1089.94183695)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.9822278,1089.68093483)
+\lineto(-444.25197935,1089.94183695)
+\lineto(-443.9822278,1089.68093483)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.9822278,1089.68093483)
+\lineto(-444.25197935,1089.94183695)
+\lineto(-443.9822278,1089.68093483)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.35412221,1089.81138589)
+\curveto(-447.09988137,1089.82962295)(-447.37297784,1089.56548565)(-447.35412221,1089.81138589)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.35412221,1089.81138589)
+\curveto(-447.09988137,1089.82962295)(-447.37297784,1089.56548565)(-447.35412221,1089.81138589)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1089.81138589)
+\curveto(-444.94186895,1089.82962295)(-445.21496542,1089.56548565)(-445.19610979,1089.81138589)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1089.81138589)
+\curveto(-444.94186895,1089.82962295)(-445.21496542,1089.56548565)(-445.19610979,1089.81138589)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.67974332,1089.55048378)
+\lineto(-447.05065171,1089.64832207)
+\lineto(-446.67974332,1089.55048378)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.67974332,1089.55048378)
+\lineto(-447.05065171,1089.64832207)
+\lineto(-446.67974332,1089.55048378)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1089.68093483)
+\lineto(-444.69032563,1089.45264549)
+\lineto(-444.92635823,1089.68093483)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1089.68093483)
+\lineto(-444.69032563,1089.45264549)
+\lineto(-444.92635823,1089.68093483)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.84735203,1089.55048378)
+\lineto(-443.9822278,1089.68093483)
+\lineto(-443.84735203,1089.55048378)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.84735203,1089.55048378)
+\lineto(-443.9822278,1089.68093483)
+\lineto(-443.84735203,1089.55048378)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1089.28958166)
+\lineto(-446.67974332,1089.55048378)
+\lineto(-446.00536444,1089.28958166)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1089.28958166)
+\lineto(-446.67974332,1089.55048378)
+\lineto(-446.00536444,1089.28958166)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.03809737,1088.76777744)
+\curveto(-443.5089487,1088.66916948)(-443.81174482,1089.17856781)(-443.84735203,1089.55048378)
+\curveto(-443.4610678,1089.43159068)(-443.1609692,1089.14138926)(-443.03809737,1088.76777744)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.03809737,1088.76777744)
+\curveto(-443.5089487,1088.66916948)(-443.81174482,1089.17856781)(-443.84735203,1089.55048378)
+\curveto(-443.4610678,1089.43159068)(-443.1609692,1089.14138926)(-443.03809737,1088.76777744)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1089.02867955)
+\curveto(-444.31253858,1088.97424232)(-444.60427488,1089.18691668)(-444.48801196,1089.38741996)
+\lineto(-444.11710358,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1089.02867955)
+\curveto(-444.31253858,1088.97424232)(-444.60427488,1089.18691668)(-444.48801196,1089.38741996)
+\lineto(-444.11710358,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.73561289,1089.15913061)
+\lineto(-446.00536444,1089.28958166)
+\lineto(-445.73561289,1089.15913061)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.73561289,1089.15913061)
+\lineto(-446.00536444,1089.28958166)
+\lineto(-445.73561289,1089.15913061)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.46586134,1089.02867955)
+\lineto(-445.73561289,1089.15913061)
+\lineto(-445.46586134,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.46586134,1089.02867955)
+\lineto(-445.73561289,1089.15913061)
+\lineto(-445.46586134,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.35135844,1087.20236476)
+\lineto(-335.44094695,1088.01768386)
+\curveto(-334.92086595,1088.59232077)(-334.22558133,1088.92014427)(-333.51896714,1089.15913061)
+\lineto(-333.28293453,1089.12651784)
+\lineto(-333.28293453,1089.06129231)
+\lineto(-336.11532583,1087.23497752)
+\lineto(-336.35135844,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.35135844,1087.20236476)
+\lineto(-335.44094695,1088.01768386)
+\curveto(-334.92086595,1088.59232077)(-334.22558133,1088.92014427)(-333.51896714,1089.15913061)
+\lineto(-333.28293453,1089.12651784)
+\lineto(-333.28293453,1089.06129231)
+\lineto(-336.11532583,1087.23497752)
+\lineto(-336.35135844,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.83775574,1089.02867955)
+\lineto(-447.6575927,1088.40903703)
+\lineto(-447.75874953,1088.37642427)
+\lineto(-448.83775574,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.83775574,1089.02867955)
+\lineto(-447.6575927,1088.40903703)
+\lineto(-447.75874953,1088.37642427)
+\lineto(-448.83775574,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.46586134,1089.02867955)
+\curveto(-445.2116205,1089.04691661)(-445.48471697,1088.78277931)(-445.46586134,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.46586134,1089.02867955)
+\curveto(-445.2116205,1089.04691661)(-445.48471697,1088.78277931)(-445.46586134,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1089.02867955)
+\curveto(-443.86286274,1089.04691661)(-444.13595921,1088.78277931)(-444.11710358,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1089.02867955)
+\curveto(-443.86286274,1089.04691661)(-444.13595921,1088.78277931)(-444.11710358,1089.02867955)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1088.37642427)
+\lineto(-445.16239084,1088.73516467)
+\lineto(-444.65660668,1088.37642427)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1088.37642427)
+\lineto(-445.16239084,1088.73516467)
+\lineto(-444.65660668,1088.37642427)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1088.63732638)
+\lineto(-443.03809737,1088.76777744)
+\lineto(-442.90322159,1088.63732638)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1088.63732638)
+\lineto(-443.03809737,1088.76777744)
+\lineto(-442.90322159,1088.63732638)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1088.37642427)
+\lineto(-442.90322159,1088.63732638)
+\lineto(-442.49859426,1088.37642427)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1088.37642427)
+\lineto(-442.90322159,1088.63732638)
+\lineto(-442.49859426,1088.37642427)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.35412221,1088.24597321)
+\curveto(-447.60836304,1088.22773615)(-447.33526657,1088.49187345)(-447.35412221,1088.24597321)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.35412221,1088.24597321)
+\curveto(-447.60836304,1088.22773615)(-447.33526657,1088.49187345)(-447.35412221,1088.24597321)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1088.37642427)
+\lineto(-444.42057407,1088.14813492)
+\lineto(-444.65660668,1088.37642427)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1088.37642427)
+\lineto(-444.42057407,1088.14813492)
+\lineto(-444.65660668,1088.37642427)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.36371849,1088.24597321)
+\lineto(-442.49859426,1088.37642427)
+\lineto(-442.36371849,1088.24597321)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.36371849,1088.24597321)
+\lineto(-442.49859426,1088.37642427)
+\lineto(-442.36371849,1088.24597321)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.08437065,1088.11552215)
+\lineto(-447.35412221,1088.24597321)
+\lineto(-447.08437065,1088.11552215)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.08437065,1088.11552215)
+\lineto(-447.35412221,1088.24597321)
+\lineto(-447.08437065,1088.11552215)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1087.85462004)
+\lineto(-442.36371849,1088.24597321)
+\lineto(-442.09396694,1087.85462004)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1087.85462004)
+\lineto(-442.36371849,1088.24597321)
+\lineto(-442.09396694,1087.85462004)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.08437065,1088.11552215)
+\curveto(-446.927645,1088.13698135)(-446.56388503,1088.13902943)(-446.71346227,1087.8872328)
+\lineto(-447.08437065,1088.11552215)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.08437065,1088.11552215)
+\curveto(-446.927645,1088.13698135)(-446.56388503,1088.13902943)(-446.71346227,1087.8872328)
+\lineto(-447.08437065,1088.11552215)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1087.9850711)
+\curveto(-444.37134442,1087.96683404)(-444.09824794,1088.23097134)(-444.11710358,1087.9850711)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1087.9850711)
+\curveto(-444.37134442,1087.96683404)(-444.09824794,1088.23097134)(-444.11710358,1087.9850711)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1087.72416898)
+\lineto(-444.11710358,1087.9850711)
+\lineto(-443.71247625,1087.72416898)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1087.72416898)
+\lineto(-444.11710358,1087.9850711)
+\lineto(-443.71247625,1087.72416898)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1087.59371793)
+\lineto(-446.5111486,1087.82200728)
+\lineto(-446.14024022,1087.59371793)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1087.59371793)
+\lineto(-446.5111486,1087.82200728)
+\lineto(-446.14024022,1087.59371793)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.95909116,1087.72416898)
+\lineto(-442.09396694,1087.85462004)
+\lineto(-441.95909116,1087.72416898)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.95909116,1087.72416898)
+\lineto(-442.09396694,1087.85462004)
+\lineto(-441.95909116,1087.72416898)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1087.72416898)
+\lineto(-443.47644364,1087.49587963)
+\lineto(-443.71247625,1087.72416898)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1087.72416898)
+\lineto(-443.47644364,1087.49587963)
+\lineto(-443.71247625,1087.72416898)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.82421538,1087.59371793)
+\lineto(-441.95909116,1087.72416898)
+\lineto(-441.82421538,1087.59371793)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.82421538,1087.59371793)
+\lineto(-441.95909116,1087.72416898)
+\lineto(-441.82421538,1087.59371793)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.24238307,1087.46326687)
+\lineto(-449.47841568,1087.56110516)
+\lineto(-449.24238307,1087.46326687)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.24238307,1087.46326687)
+\lineto(-449.47841568,1087.56110516)
+\lineto(-449.24238307,1087.46326687)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1087.46326687)
+\lineto(-446.14024022,1087.59371793)
+\lineto(-445.87048867,1087.46326687)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1087.46326687)
+\lineto(-446.14024022,1087.59371793)
+\lineto(-445.87048867,1087.46326687)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.55446383,1087.33281581)
+\lineto(-441.82421538,1087.59371793)
+\lineto(-441.55446383,1087.33281581)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.55446383,1087.33281581)
+\lineto(-441.82421538,1087.59371793)
+\lineto(-441.55446383,1087.33281581)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1086.94146264)
+\lineto(-332.94574509,1087.16975199)
+\lineto(-331.66442521,1087.56110516)
+\lineto(-332.8783072,1086.97407541)
+\lineto(-333.11433981,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1086.94146264)
+\lineto(-332.94574509,1087.16975199)
+\lineto(-331.66442521,1087.56110516)
+\lineto(-332.8783072,1086.97407541)
+\lineto(-333.11433981,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-329.87732118,1087.59371793)
+\lineto(-329.5064128,1087.49587963)
+\curveto(-330.24593668,1087.176405)(-330.9145159,1086.74578606)(-331.46211155,1086.12614354)
+\lineto(-331.39467366,1085.93046695)
+\lineto(-331.66442521,1085.66956484)
+\lineto(-332.47367987,1085.27821167)
+\lineto(-334.49681651,1084.23460322)
+\lineto(-334.69913018,1084.23460322)
+\lineto(-331.19236,1087.03930094)
+\lineto(-329.87732118,1087.59371793)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.87732118,1087.59371793)
+\lineto(-329.5064128,1087.49587963)
+\curveto(-330.24593668,1087.176405)(-330.9145159,1086.74578606)(-331.46211155,1086.12614354)
+\lineto(-331.39467366,1085.93046695)
+\lineto(-331.66442521,1085.66956484)
+\lineto(-332.47367987,1085.27821167)
+\lineto(-334.49681651,1084.23460322)
+\lineto(-334.69913018,1084.23460322)
+\lineto(-331.19236,1087.03930094)
+\lineto(-329.87732118,1087.59371793)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.70287997,1087.20236476)
+\lineto(-449.24238307,1087.46326687)
+\lineto(-448.70287997,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.70287997,1087.20236476)
+\lineto(-449.24238307,1087.46326687)
+\lineto(-448.70287997,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.73561289,1087.33281581)
+\lineto(-445.87048867,1087.46326687)
+\lineto(-445.73561289,1087.33281581)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.73561289,1087.33281581)
+\lineto(-445.87048867,1087.46326687)
+\lineto(-445.73561289,1087.33281581)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1087.33281581)
+\curveto(-443.42721398,1087.31457876)(-443.15411751,1087.57871606)(-443.17297314,1087.33281581)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1087.33281581)
+\curveto(-443.42721398,1087.31457876)(-443.15411751,1087.57871606)(-443.17297314,1087.33281581)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1087.0719137)
+\lineto(-445.73561289,1087.33281581)
+\lineto(-445.33098556,1087.0719137)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1087.0719137)
+\lineto(-445.73561289,1087.33281581)
+\lineto(-445.33098556,1087.0719137)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.03809737,1087.20236476)
+\lineto(-443.17297314,1087.33281581)
+\lineto(-443.03809737,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.03809737,1087.20236476)
+\lineto(-443.17297314,1087.33281581)
+\lineto(-443.03809737,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.41958806,1087.20236476)
+\lineto(-441.55446383,1087.33281581)
+\lineto(-441.41958806,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.41958806,1087.20236476)
+\lineto(-441.55446383,1087.33281581)
+\lineto(-441.41958806,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.70287997,1087.20236476)
+\curveto(-448.44863913,1087.22060181)(-448.7217356,1086.95646451)(-448.70287997,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.70287997,1087.20236476)
+\curveto(-448.44863913,1087.22060181)(-448.7217356,1086.95646451)(-448.70287997,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1087.0719137)
+\lineto(-443.03809737,1087.20236476)
+\lineto(-442.90322159,1087.0719137)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1087.0719137)
+\lineto(-443.03809737,1087.20236476)
+\lineto(-442.90322159,1087.0719137)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.41958806,1087.20236476)
+\curveto(-441.16534722,1087.22060181)(-441.43844369,1086.95646451)(-441.41958806,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.41958806,1087.20236476)
+\curveto(-441.16534722,1087.22060181)(-441.43844369,1086.95646451)(-441.41958806,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.35135844,1087.20236476)
+\curveto(-336.3325028,1086.95646451)(-336.60559927,1087.22060181)(-336.35135844,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.35135844,1087.20236476)
+\curveto(-336.3325028,1086.95646451)(-336.60559927,1087.22060181)(-336.35135844,1087.20236476)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1086.94146264)
+\curveto(-448.55249348,1086.92322559)(-448.27939701,1087.18736289)(-448.29825264,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1086.94146264)
+\curveto(-448.55249348,1086.92322559)(-448.27939701,1087.18736289)(-448.29825264,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1087.0719137)
+\curveto(-445.07674473,1087.09015076)(-445.3498412,1086.82601346)(-445.33098556,1087.0719137)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1087.0719137)
+\curveto(-445.07674473,1087.09015076)(-445.3498412,1086.82601346)(-445.33098556,1087.0719137)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.76834582,1086.94146264)
+\lineto(-442.90322159,1087.0719137)
+\lineto(-442.76834582,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.76834582,1086.94146264)
+\lineto(-442.90322159,1087.0719137)
+\lineto(-442.76834582,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1086.94146264)
+\lineto(-448.06222003,1086.84362435)
+\lineto(-448.29825264,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1086.94146264)
+\lineto(-448.06222003,1086.84362435)
+\lineto(-448.29825264,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1086.68056053)
+\lineto(-442.76834582,1086.94146264)
+\lineto(-442.49859426,1086.68056053)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1086.68056053)
+\lineto(-442.76834582,1086.94146264)
+\lineto(-442.49859426,1086.68056053)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.75598576,1086.94146264)
+\curveto(-336.50174493,1086.9596997)(-336.77482791,1086.6955624)(-336.75598576,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.75598576,1086.94146264)
+\curveto(-336.50174493,1086.9596997)(-336.77482791,1086.6955624)(-336.75598576,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1086.94146264)
+\lineto(-333.51896714,1086.68056053)
+\lineto(-333.11433981,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.11433981,1086.94146264)
+\lineto(-333.51896714,1086.68056053)
+\lineto(-333.11433981,1086.94146264)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.62387376,1086.55010947)
+\lineto(-447.85990637,1086.77839882)
+\lineto(-447.62387376,1086.55010947)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.62387376,1086.55010947)
+\lineto(-447.85990637,1086.77839882)
+\lineto(-447.62387376,1086.55010947)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1086.41965842)
+\lineto(-445.02751507,1086.77839882)
+\lineto(-444.52173091,1086.41965842)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1086.41965842)
+\lineto(-445.02751507,1086.77839882)
+\lineto(-444.52173091,1086.41965842)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1086.68056053)
+\lineto(-442.26256166,1086.32182012)
+\lineto(-442.49859426,1086.68056053)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1086.68056053)
+\lineto(-442.26256166,1086.32182012)
+\lineto(-442.49859426,1086.68056053)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1086.68056053)
+\curveto(-333.5001115,1086.43466029)(-333.77320797,1086.69879759)(-333.51896714,1086.68056053)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1086.68056053)
+\curveto(-333.5001115,1086.43466029)(-333.77320797,1086.69879759)(-333.51896714,1086.68056053)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.35412221,1086.41965842)
+\lineto(-447.62387376,1086.55010947)
+\lineto(-447.35412221,1086.41965842)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.35412221,1086.41965842)
+\lineto(-447.62387376,1086.55010947)
+\lineto(-447.35412221,1086.41965842)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.53527127,1086.41965842)
+\lineto(-451.02948711,1086.2565946)
+\lineto(-451.02948711,1086.19136907)
+\curveto(-451.22667549,1086.08117706)(-451.49507828,1086.20928)(-451.53527127,1086.41965842)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.53527127,1086.41965842)
+\lineto(-451.02948711,1086.2565946)
+\lineto(-451.02948711,1086.19136907)
+\curveto(-451.22667549,1086.08117706)(-451.49507828,1086.20928)(-451.53527127,1086.41965842)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.21924643,1086.28920736)
+\lineto(-447.35412221,1086.41965842)
+\lineto(-447.21924643,1086.28920736)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.21924643,1086.28920736)
+\lineto(-447.35412221,1086.41965842)
+\lineto(-447.21924643,1086.28920736)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1086.1587563)
+\lineto(-444.52173091,1086.41965842)
+\lineto(-444.25197935,1086.1587563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1086.1587563)
+\lineto(-444.52173091,1086.41965842)
+\lineto(-444.25197935,1086.1587563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.8146191,1086.02830525)
+\lineto(-447.21924643,1086.28920736)
+\lineto(-446.8146191,1086.02830525)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.8146191,1086.02830525)
+\lineto(-447.21924643,1086.28920736)
+\lineto(-446.8146191,1086.02830525)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.72601661,1086.02830525)
+\curveto(-450.98025745,1086.01006819)(-450.70716098,1086.27420549)(-450.72601661,1086.02830525)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.72601661,1086.02830525)
+\curveto(-450.98025745,1086.01006819)(-450.70716098,1086.27420549)(-450.72601661,1086.02830525)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1086.02830525)
+\lineto(-444.25197935,1086.1587563)
+\lineto(-444.11710358,1086.02830525)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1086.02830525)
+\lineto(-444.25197935,1086.1587563)
+\lineto(-444.11710358,1086.02830525)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1086.1587563)
+\lineto(-441.9928101,1085.93046695)
+\lineto(-442.09396694,1086.1587563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1086.1587563)
+\lineto(-441.9928101,1085.93046695)
+\lineto(-442.09396694,1086.1587563)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.32138928,1085.89785419)
+\lineto(-450.72601661,1086.02830525)
+\lineto(-450.32138928,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.32138928,1085.89785419)
+\lineto(-450.72601661,1086.02830525)
+\lineto(-450.32138928,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.32138928,1085.89785419)
+\lineto(-449.78188618,1086.02830525)
+\lineto(-448.8040368,1085.53911378)
+\curveto(-447.86813379,1085.40383604)(-446.91712469,1085.06414149)(-446.24139705,1084.36505427)
+\lineto(-444.8252014,1083.5171224)
+\lineto(-444.15082252,1082.86486712)
+\lineto(-443.20669209,1081.82125867)
+\lineto(-443.34156787,1081.36467997)
+\lineto(-443.94850886,1081.8864842)
+\lineto(-444.55544985,1082.86486712)
+\lineto(-446.44371072,1084.29982874)
+\lineto(-450.01791878,1085.66956484)
+\lineto(-450.32138928,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.32138928,1085.89785419)
+\lineto(-449.78188618,1086.02830525)
+\lineto(-448.8040368,1085.53911378)
+\curveto(-447.86813379,1085.40383604)(-446.91712469,1085.06414149)(-446.24139705,1084.36505427)
+\lineto(-444.8252014,1083.5171224)
+\lineto(-444.15082252,1082.86486712)
+\lineto(-443.20669209,1081.82125867)
+\lineto(-443.34156787,1081.36467997)
+\lineto(-443.94850886,1081.8864842)
+\lineto(-444.55544985,1082.86486712)
+\lineto(-446.44371072,1084.29982874)
+\lineto(-450.01791878,1085.66956484)
+\lineto(-450.32138928,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1085.89785419)
+\lineto(-446.8146191,1086.02830525)
+\lineto(-446.54486755,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1085.89785419)
+\lineto(-446.8146191,1086.02830525)
+\lineto(-446.54486755,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.9822278,1085.89785419)
+\lineto(-444.11710358,1086.02830525)
+\lineto(-443.9822278,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.9822278,1085.89785419)
+\lineto(-444.11710358,1086.02830525)
+\lineto(-443.9822278,1085.89785419)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.275116,1085.76740313)
+\lineto(-446.54486755,1085.89785419)
+\lineto(-446.275116,1085.76740313)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.275116,1085.76740313)
+\lineto(-446.54486755,1085.89785419)
+\lineto(-446.275116,1085.76740313)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.84735203,1085.76740313)
+\lineto(-443.9822278,1085.89785419)
+\lineto(-443.84735203,1085.76740313)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.84735203,1085.76740313)
+\lineto(-443.9822278,1085.89785419)
+\lineto(-443.84735203,1085.76740313)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1085.50650102)
+\lineto(-446.275116,1085.76740313)
+\lineto(-445.87048867,1085.50650102)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1085.50650102)
+\lineto(-446.275116,1085.76740313)
+\lineto(-445.87048867,1085.50650102)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.03809737,1084.98469679)
+\lineto(-443.84735203,1085.76740313)
+\curveto(-443.48777321,1085.72738075)(-443.07950423,1085.33247931)(-443.03809737,1084.98469679)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.03809737,1084.98469679)
+\lineto(-443.84735203,1085.76740313)
+\curveto(-443.48777321,1085.72738075)(-443.07950423,1085.33247931)(-443.03809737,1084.98469679)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1085.37604996)
+\lineto(-445.87048867,1085.50650102)
+\lineto(-445.60073712,1085.37604996)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1085.37604996)
+\lineto(-445.87048867,1085.50650102)
+\lineto(-445.60073712,1085.37604996)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-409.31915333,1077.80988867)
+\lineto(-411.2074142,1079.50575241)
+\curveto(-411.76391165,1079.03143237)(-410.75342234,1078.22707115)(-410.53303532,1077.67943762)
+\lineto(-409.89237538,1075.88573559)
+\lineto(-410.43187849,1076.6032164)
+\lineto(-411.10625737,1077.77727591)
+\curveto(-411.33810882,1078.17971742)(-411.48013302,1078.81149189)(-411.98294991,1078.95133542)
+\lineto(-412.15154463,1078.59259501)
+\curveto(-411.42321544,1077.37692162)(-410.56810302,1076.13750613)(-410.56675426,1074.71167608)
+\lineto(-411.30857103,1076.01618664)
+\curveto(-411.86641724,1076.79289223)(-412.05955935,1078.27559895)(-413.1968319,1078.42953119)
+\lineto(-411.57832258,1075.10302925)
+\lineto(-411.37600892,1074.45077396)
+\lineto(-413.50030239,1077.94033973)
+\lineto(-413.736335,1077.77727591)
+\lineto(-413.50030239,1077.28808445)
+\curveto(-413.10187935,1076.76119263)(-412.61295466,1076.14872492)(-412.5898909,1075.49438242)
+\lineto(-412.72476668,1075.690059)
+\lineto(-413.39914556,1076.86411851)
+\curveto(-413.68710534,1077.08066727)(-413.78286714,1077.7016143)(-414.27583811,1077.51637379)
+\lineto(-414.41071388,1077.32069721)
+\curveto(-413.47926177,1075.99661898)(-412.32418562,1074.44033788)(-412.52245302,1072.88536128)
+\lineto(-412.82592351,1074.02680803)
+\lineto(-413.46658345,1075.36393136)
+\lineto(-414.47815177,1077.12502062)
+\curveto(-415.34742615,1077.27660475)(-414.59040888,1076.49324616)(-414.61302755,1076.1466377)
+\lineto(-414.95021699,1076.40753981)
+\lineto(-415.35484431,1076.86411851)
+\lineto(-415.52343903,1076.37492705)
+\curveto(-414.5782296,1074.94779249)(-413.79163407,1073.14887242)(-413.736335,1071.58085071)
+\curveto(-414.49636,1073.02103038)(-414.63150553,1075.05737138)(-416.16409897,1075.95096111)
+\lineto(-415.15253065,1073.40716551)
+\lineto(-415.82690953,1074.64645055)
+\curveto(-416.16477335,1074.99149359)(-416.78183003,1076.18055497)(-417.27682412,1075.46176965)
+\curveto(-416.02436767,1074.46734125)(-415.35754183,1072.81752673)(-415.15253065,1071.3199486)
+\lineto(-416.09666108,1072.82013575)
+\lineto(-417.64773251,1074.32032291)
+\curveto(-418.1589117,1074.70293585)(-418.16053021,1073.95584265)(-417.85004617,1073.73329315)
+\lineto(-416.33269369,1071.41778689)
+\curveto(-416.08195962,1070.9985172)(-416.45845187,1070.95481609)(-416.83847785,1071.05904649)
+\curveto(-417.27183372,1071.67020969)(-417.64786738,1073.27671445)(-418.45698717,1072.95058681)
+\lineto(-417.17566729,1070.4067912)
+\lineto(-418.86161449,1072.88536128)
+\curveto(-419.02400493,1073.00401956)(-419.22038406,1073.39633807)(-419.4011176,1073.08103787)
+\lineto(-417.54657568,1068.93921682)
+\lineto(-418.32211139,1070.27634015)
+\lineto(-419.13136605,1071.84175283)
+\curveto(-419.01117824,1072.33564053)(-419.85848136,1072.33564053)(-419.73830704,1071.84175283)
+\curveto(-419.97946493,1071.88302754)(-420.2791589,1072.24706426)(-420.48012381,1071.90697836)
+\lineto(-419.60343126,1070.01543803)
+\lineto(-419.97433965,1070.24372738)
+\lineto(-420.37896698,1070.11327633)
+\curveto(-419.96773073,1069.50393944)(-419.63283418,1068.80746125)(-419.60343126,1068.05867218)
+\curveto(-420.03570813,1069.05062202)(-420.68500011,1069.80410732)(-421.69400579,1070.08066356)
+\lineto(-421.35681635,1068.84137852)
+\lineto(-422.90788778,1069.55885933)
+\lineto(-422.16607101,1068.05867218)
+\lineto(-423.31251511,1068.64570194)
+\lineto(-422.16607101,1066.36280845)
+\lineto(-423.85201821,1068.12389771)
+\lineto(-423.64970455,1067.47164243)
+\lineto(-425.20077597,1067.60209348)
+\lineto(-424.4589592,1065.84100422)
+\lineto(-425.13333809,1066.42803397)
+\lineto(-425.77399802,1067.24335308)
+\lineto(-421.62656791,1071.84175283)
+\curveto(-417.4818353,1077.56724971)(-412.04229525,1083.17403612)(-404.99638471,1085.1216704)
+\curveto(-403.4223844,1085.33039209)(-401.86187167,1085.60616563)(-400.27573254,1085.25212146)
+\curveto(-396.00421671,1085.64738816)(-391.83655523,1083.69584035)(-388.71013474,1081.04507488)
+\lineto(-386.82187387,1079.4796622)
+\curveto(-386.32876803,1078.41178985)(-386.25755362,1076.98804702)(-386.48468443,1075.89225814)
+\curveto(-386.86328073,1076.8137644)(-386.66002294,1078.5169334)(-387.69856642,1078.82740691)
+\lineto(-387.83344219,1078.50127927)
+\curveto(-388.11762545,1079.1779289)(-388.44240632,1080.00668447)(-389.31707573,1079.74056431)
+\curveto(-389.16331734,1079.40400059)(-388.9864952,1078.10470806)(-389.48567045,1078.72956862)
+\lineto(-389.755422,1080.55588342)
+\lineto(-390.02517355,1078.46866651)
+\lineto(-390.19376827,1077.45767082)
+\lineto(-391.00302293,1082.21913439)
+\curveto(-391.19683942,1082.29157386)(-391.60699666,1082.30739757)(-391.50880709,1081.99084504)
+\lineto(-391.7448397,1080.19714301)
+\curveto(-391.601197,1079.72347522)(-391.17377566,1079.02621433)(-391.50880709,1078.59911757)
+\lineto(-392.21690492,1080.00146643)
+\lineto(-392.62153224,1082.08868333)
+\lineto(-394.03772789,1083.91499813)
+\lineto(-394.34119839,1080.81678553)
+\lineto(-394.07144684,1079.51227496)
+\lineto(-394.20632261,1079.12092179)
+\lineto(-395.85855087,1084.17590024)
+\lineto(-396.33061609,1084.04544918)
+\curveto(-396.11913087,1083.57321636)(-395.67822196,1083.12537788)(-395.85855087,1082.54526203)
+\curveto(-395.92509858,1082.76963785)(-396.24658848,1083.87586281)(-396.63408659,1083.16490455)
+\lineto(-396.2631782,1081.11030041)
+\lineto(-397.17358969,1082.64310032)
+\lineto(-397.44334124,1082.38219821)
+\curveto(-396.97518742,1081.07116509)(-395.90171112,1079.77317708)(-396.2631782,1078.37082822)
+\lineto(-397.98284435,1081.86039398)
+\lineto(-398.62350428,1083.19751732)
+\lineto(-399.06185056,1083.81715983)
+\curveto(-399.78937049,1083.50081602)(-398.14361627,1082.13695022)(-399.29788316,1082.21913439)
+\lineto(-399.43275894,1082.0234578)
+\curveto(-399.07587764,1081.40642431)(-398.4307668,1080.83074379)(-398.5560664,1080.06669195)
+\lineto(-399.19672633,1080.94723659)
+\lineto(-399.90482416,1082.21913439)
+\lineto(-400.51176515,1082.34958545)
+\lineto(-398.96069372,1078.76218139)
+\lineto(-401.79308502,1082.74093862)
+\lineto(-402.06283658,1082.54526203)
+\lineto(-401.35473875,1081.2081387)
+\lineto(-400.68035987,1079.77317708)
+\lineto(-400.71407881,1079.15353456)
+\lineto(-403.20928067,1082.87138967)
+\lineto(-403.24299962,1082.51264927)
+\curveto(-402.84309294,1082.1407333)(-402.84026055,1081.70241775)(-402.93952912,1081.24075146)
+\lineto(-402.56862074,1079.77317708)
+\lineto(-402.60233968,1079.0230835)
+\curveto(-403.66151915,1079.49570768)(-403.09976154,1081.62949561)(-404.42316266,1081.82778122)
+\lineto(-403.68134589,1079.15353456)
+\curveto(-405.61951079,1079.07555092)(-405.21623222,1082.41481097)(-406.71605085,1083.00184073)
+\lineto(-405.43473098,1079.67533878)
+\lineto(-407.18811607,1080.78417277)
+\lineto(-407.79505706,1081.37120252)
+\curveto(-407.95245709,1081.72472488)(-408.72381166,1081.683111)(-408.60431172,1081.24075146)
+\curveto(-407.89068399,1081.04285721)(-406.58791886,1079.6649027)(-407.25555396,1079.34921114)
+\curveto(-407.43925476,1079.07617708)(-407.55578743,1079.16162252)(-407.66018129,1079.41443667)
+\curveto(-407.84361234,1079.6779478)(-407.95434535,1080.48139586)(-408.40199805,1080.19714301)
+\curveto(-410.38197445,1081.89431126)(-407.77172355,1078.10601257)(-409.2786906,1078.17515163)
+\lineto(-409.31240954,1077.81641123)
+\lineto(-409.31915333,1077.80988867)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-409.31915333,1077.80988867)
+\lineto(-411.2074142,1079.50575241)
+\curveto(-411.76391165,1079.03143237)(-410.75342234,1078.22707115)(-410.53303532,1077.67943762)
+\lineto(-409.89237538,1075.88573559)
+\lineto(-410.43187849,1076.6032164)
+\lineto(-411.10625737,1077.77727591)
+\curveto(-411.33810882,1078.17971742)(-411.48013302,1078.81149189)(-411.98294991,1078.95133542)
+\lineto(-412.15154463,1078.59259501)
+\curveto(-411.42321544,1077.37692162)(-410.56810302,1076.13750613)(-410.56675426,1074.71167608)
+\lineto(-411.30857103,1076.01618664)
+\curveto(-411.86641724,1076.79289223)(-412.05955935,1078.27559895)(-413.1968319,1078.42953119)
+\lineto(-411.57832258,1075.10302925)
+\lineto(-411.37600892,1074.45077396)
+\lineto(-413.50030239,1077.94033973)
+\lineto(-413.736335,1077.77727591)
+\lineto(-413.50030239,1077.28808445)
+\curveto(-413.10187935,1076.76119263)(-412.61295466,1076.14872492)(-412.5898909,1075.49438242)
+\lineto(-412.72476668,1075.690059)
+\lineto(-413.39914556,1076.86411851)
+\curveto(-413.68710534,1077.08066727)(-413.78286714,1077.7016143)(-414.27583811,1077.51637379)
+\lineto(-414.41071388,1077.32069721)
+\curveto(-413.47926177,1075.99661898)(-412.32418562,1074.44033788)(-412.52245302,1072.88536128)
+\lineto(-412.82592351,1074.02680803)
+\lineto(-413.46658345,1075.36393136)
+\lineto(-414.47815177,1077.12502062)
+\curveto(-415.34742615,1077.27660475)(-414.59040888,1076.49324616)(-414.61302755,1076.1466377)
+\lineto(-414.95021699,1076.40753981)
+\lineto(-415.35484431,1076.86411851)
+\lineto(-415.52343903,1076.37492705)
+\curveto(-414.5782296,1074.94779249)(-413.79163407,1073.14887242)(-413.736335,1071.58085071)
+\curveto(-414.49636,1073.02103038)(-414.63150553,1075.05737138)(-416.16409897,1075.95096111)
+\lineto(-415.15253065,1073.40716551)
+\lineto(-415.82690953,1074.64645055)
+\curveto(-416.16477335,1074.99149359)(-416.78183003,1076.18055497)(-417.27682412,1075.46176965)
+\curveto(-416.02436767,1074.46734125)(-415.35754183,1072.81752673)(-415.15253065,1071.3199486)
+\lineto(-416.09666108,1072.82013575)
+\lineto(-417.64773251,1074.32032291)
+\curveto(-418.1589117,1074.70293585)(-418.16053021,1073.95584265)(-417.85004617,1073.73329315)
+\lineto(-416.33269369,1071.41778689)
+\curveto(-416.08195962,1070.9985172)(-416.45845187,1070.95481609)(-416.83847785,1071.05904649)
+\curveto(-417.27183372,1071.67020969)(-417.64786738,1073.27671445)(-418.45698717,1072.95058681)
+\lineto(-417.17566729,1070.4067912)
+\lineto(-418.86161449,1072.88536128)
+\curveto(-419.02400493,1073.00401956)(-419.22038406,1073.39633807)(-419.4011176,1073.08103787)
+\lineto(-417.54657568,1068.93921682)
+\lineto(-418.32211139,1070.27634015)
+\lineto(-419.13136605,1071.84175283)
+\curveto(-419.01117824,1072.33564053)(-419.85848136,1072.33564053)(-419.73830704,1071.84175283)
+\curveto(-419.97946493,1071.88302754)(-420.2791589,1072.24706426)(-420.48012381,1071.90697836)
+\lineto(-419.60343126,1070.01543803)
+\lineto(-419.97433965,1070.24372738)
+\lineto(-420.37896698,1070.11327633)
+\curveto(-419.96773073,1069.50393944)(-419.63283418,1068.80746125)(-419.60343126,1068.05867218)
+\curveto(-420.03570813,1069.05062202)(-420.68500011,1069.80410732)(-421.69400579,1070.08066356)
+\lineto(-421.35681635,1068.84137852)
+\lineto(-422.90788778,1069.55885933)
+\lineto(-422.16607101,1068.05867218)
+\lineto(-423.31251511,1068.64570194)
+\lineto(-422.16607101,1066.36280845)
+\lineto(-423.85201821,1068.12389771)
+\lineto(-423.64970455,1067.47164243)
+\lineto(-425.20077597,1067.60209348)
+\lineto(-424.4589592,1065.84100422)
+\lineto(-425.13333809,1066.42803397)
+\lineto(-425.77399802,1067.24335308)
+\lineto(-421.62656791,1071.84175283)
+\curveto(-417.4818353,1077.56724971)(-412.04229525,1083.17403612)(-404.99638471,1085.1216704)
+\curveto(-403.4223844,1085.33039209)(-401.86187167,1085.60616563)(-400.27573254,1085.25212146)
+\curveto(-396.00421671,1085.64738816)(-391.83655523,1083.69584035)(-388.71013474,1081.04507488)
+\lineto(-386.82187387,1079.4796622)
+\curveto(-386.32876803,1078.41178985)(-386.25755362,1076.98804702)(-386.48468443,1075.89225814)
+\curveto(-386.86328073,1076.8137644)(-386.66002294,1078.5169334)(-387.69856642,1078.82740691)
+\lineto(-387.83344219,1078.50127927)
+\curveto(-388.11762545,1079.1779289)(-388.44240632,1080.00668447)(-389.31707573,1079.74056431)
+\curveto(-389.16331734,1079.40400059)(-388.9864952,1078.10470806)(-389.48567045,1078.72956862)
+\lineto(-389.755422,1080.55588342)
+\lineto(-390.02517355,1078.46866651)
+\lineto(-390.19376827,1077.45767082)
+\lineto(-391.00302293,1082.21913439)
+\curveto(-391.19683942,1082.29157386)(-391.60699666,1082.30739757)(-391.50880709,1081.99084504)
+\lineto(-391.7448397,1080.19714301)
+\curveto(-391.601197,1079.72347522)(-391.17377566,1079.02621433)(-391.50880709,1078.59911757)
+\lineto(-392.21690492,1080.00146643)
+\lineto(-392.62153224,1082.08868333)
+\lineto(-394.03772789,1083.91499813)
+\lineto(-394.34119839,1080.81678553)
+\lineto(-394.07144684,1079.51227496)
+\lineto(-394.20632261,1079.12092179)
+\lineto(-395.85855087,1084.17590024)
+\lineto(-396.33061609,1084.04544918)
+\curveto(-396.11913087,1083.57321636)(-395.67822196,1083.12537788)(-395.85855087,1082.54526203)
+\curveto(-395.92509858,1082.76963785)(-396.24658848,1083.87586281)(-396.63408659,1083.16490455)
+\lineto(-396.2631782,1081.11030041)
+\lineto(-397.17358969,1082.64310032)
+\lineto(-397.44334124,1082.38219821)
+\curveto(-396.97518742,1081.07116509)(-395.90171112,1079.77317708)(-396.2631782,1078.37082822)
+\lineto(-397.98284435,1081.86039398)
+\lineto(-398.62350428,1083.19751732)
+\lineto(-399.06185056,1083.81715983)
+\curveto(-399.78937049,1083.50081602)(-398.14361627,1082.13695022)(-399.29788316,1082.21913439)
+\lineto(-399.43275894,1082.0234578)
+\curveto(-399.07587764,1081.40642431)(-398.4307668,1080.83074379)(-398.5560664,1080.06669195)
+\lineto(-399.19672633,1080.94723659)
+\lineto(-399.90482416,1082.21913439)
+\lineto(-400.51176515,1082.34958545)
+\lineto(-398.96069372,1078.76218139)
+\lineto(-401.79308502,1082.74093862)
+\lineto(-402.06283658,1082.54526203)
+\lineto(-401.35473875,1081.2081387)
+\lineto(-400.68035987,1079.77317708)
+\lineto(-400.71407881,1079.15353456)
+\lineto(-403.20928067,1082.87138967)
+\lineto(-403.24299962,1082.51264927)
+\curveto(-402.84309294,1082.1407333)(-402.84026055,1081.70241775)(-402.93952912,1081.24075146)
+\lineto(-402.56862074,1079.77317708)
+\lineto(-402.60233968,1079.0230835)
+\curveto(-403.66151915,1079.49570768)(-403.09976154,1081.62949561)(-404.42316266,1081.82778122)
+\lineto(-403.68134589,1079.15353456)
+\curveto(-405.61951079,1079.07555092)(-405.21623222,1082.41481097)(-406.71605085,1083.00184073)
+\lineto(-405.43473098,1079.67533878)
+\lineto(-407.18811607,1080.78417277)
+\lineto(-407.79505706,1081.37120252)
+\curveto(-407.95245709,1081.72472488)(-408.72381166,1081.683111)(-408.60431172,1081.24075146)
+\curveto(-407.89068399,1081.04285721)(-406.58791886,1079.6649027)(-407.25555396,1079.34921114)
+\curveto(-407.43925476,1079.07617708)(-407.55578743,1079.16162252)(-407.66018129,1079.41443667)
+\curveto(-407.84361234,1079.6779478)(-407.95434535,1080.48139586)(-408.40199805,1080.19714301)
+\curveto(-410.38197445,1081.89431126)(-407.77172355,1078.10601257)(-409.2786906,1078.17515163)
+\lineto(-409.31240954,1077.81641123)
+\lineto(-409.31915333,1077.80988867)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1085.11514785)
+\lineto(-445.60073712,1085.37604996)
+\lineto(-445.19610979,1085.11514785)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1085.11514785)
+\lineto(-445.60073712,1085.37604996)
+\lineto(-445.19610979,1085.11514785)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.82352942 0.82352942 0.82352942}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-331.49583049,1085.24559891)
+\lineto(-330.45054323,1085.21298614)
+\lineto(-331.22607894,1084.85424574)
+\lineto(-332.40624198,1084.4302798)
+\lineto(-332.74343142,1083.9737011)
+\curveto(-333.75931577,1083.53199382)(-334.76656807,1082.92487461)(-335.50838483,1082.14738631)
+\lineto(-335.23863328,1081.8864842)
+\lineto(-332.67599354,1083.5171224)
+\lineto(-330.82145161,1084.33244151)
+\lineto(-329.23666124,1084.69118191)
+\lineto(-330.51798112,1084.16937769)
+\lineto(-330.58541901,1083.58234793)
+\lineto(-335.37350906,1081.4299055)
+\lineto(-335.37350906,1081.10377785)
+\lineto(-333.35037242,1081.95170972)
+\lineto(-331.22607894,1082.76702883)
+\curveto(-330.78503515,1083.04306326)(-330.39443491,1082.98514299)(-329.91104012,1082.86486712)
+\curveto(-330.40347158,1082.67440858)(-331.15311115,1082.58191878)(-331.52954944,1082.01693525)
+\curveto(-332.45331363,1082.00289872)(-333.22224043,1081.48991298)(-333.88987552,1080.90810127)
+\lineto(-332.74343142,1080.90810127)
+\lineto(-335.37350906,1079.08178648)
+\lineto(-334.22706496,1079.21223753)
+\lineto(-334.22706496,1078.88610989)
+\lineto(-335.64326061,1078.10340355)
+\lineto(-335.91301216,1082.21261184)
+\curveto(-334.78005564,1083.60452461)(-333.09141093,1084.60117069)(-331.49583049,1085.24559891)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.82352942 0.82352942 0.82352942}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-331.49583049,1085.24559891)
+\lineto(-330.45054323,1085.21298614)
+\lineto(-331.22607894,1084.85424574)
+\lineto(-332.40624198,1084.4302798)
+\lineto(-332.74343142,1083.9737011)
+\curveto(-333.75931577,1083.53199382)(-334.76656807,1082.92487461)(-335.50838483,1082.14738631)
+\lineto(-335.23863328,1081.8864842)
+\lineto(-332.67599354,1083.5171224)
+\lineto(-330.82145161,1084.33244151)
+\lineto(-329.23666124,1084.69118191)
+\lineto(-330.51798112,1084.16937769)
+\lineto(-330.58541901,1083.58234793)
+\lineto(-335.37350906,1081.4299055)
+\lineto(-335.37350906,1081.10377785)
+\lineto(-333.35037242,1081.95170972)
+\lineto(-331.22607894,1082.76702883)
+\curveto(-330.78503515,1083.04306326)(-330.39443491,1082.98514299)(-329.91104012,1082.86486712)
+\curveto(-330.40347158,1082.67440858)(-331.15311115,1082.58191878)(-331.52954944,1082.01693525)
+\curveto(-332.45331363,1082.00289872)(-333.22224043,1081.48991298)(-333.88987552,1080.90810127)
+\lineto(-332.74343142,1080.90810127)
+\lineto(-335.37350906,1079.08178648)
+\lineto(-334.22706496,1079.21223753)
+\lineto(-334.22706496,1078.88610989)
+\lineto(-335.64326061,1078.10340355)
+\lineto(-335.91301216,1082.21261184)
+\curveto(-334.78005564,1083.60452461)(-333.09141093,1084.60117069)(-331.49583049,1085.24559891)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1084.85424574)
+\lineto(-445.19610979,1085.11514785)
+\lineto(-444.92635823,1084.85424574)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1084.85424574)
+\lineto(-445.19610979,1085.11514785)
+\lineto(-444.92635823,1084.85424574)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.63347004,1084.59334362)
+\curveto(-442.86154498,1084.5395717)(-443.09366619,1084.76410406)(-443.03809737,1084.98469679)
+\lineto(-442.63347004,1084.59334362)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.63347004,1084.59334362)
+\curveto(-442.86154498,1084.5395717)(-443.09366619,1084.76410406)(-443.03809737,1084.98469679)
+\lineto(-442.63347004,1084.59334362)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1084.72379468)
+\lineto(-444.92635823,1084.85424574)
+\lineto(-444.65660668,1084.72379468)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1084.72379468)
+\lineto(-444.92635823,1084.85424574)
+\lineto(-444.65660668,1084.72379468)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1084.59334362)
+\lineto(-444.65660668,1084.72379468)
+\lineto(-444.52173091,1084.59334362)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1084.59334362)
+\lineto(-444.65660668,1084.72379468)
+\lineto(-444.52173091,1084.59334362)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1084.59334362)
+\curveto(-444.26749007,1084.61156763)(-444.54058654,1084.34744338)(-444.52173091,1084.59334362)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1084.59334362)
+\curveto(-444.26749007,1084.61156763)(-444.54058654,1084.34744338)(-444.52173091,1084.59334362)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.22884271,1084.0715394)
+\lineto(-442.63347004,1084.59334362)
+\lineto(-442.22884271,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.22884271,1084.0715394)
+\lineto(-442.63347004,1084.59334362)
+\lineto(-442.22884271,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.9822278,1084.0715394)
+\lineto(-444.21826041,1084.4302798)
+\lineto(-443.9822278,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.9822278,1084.0715394)
+\lineto(-444.21826041,1084.4302798)
+\lineto(-443.9822278,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74901962 0.74901962 0.74901962}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-376.27458818,1084.46289257)
+\lineto(-375.90367979,1084.29982874)
+\lineto(-375.86996085,1083.81063728)
+\lineto(-375.73508507,1081.98432249)
+\lineto(-375.90367979,1081.10377785)
+\lineto(-376.10599346,1080.9733268)
+\lineto(-376.1397124,1084.0715394)
+\lineto(-376.27458818,1084.46289257)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74901962 0.74901962 0.74901962}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-376.27458818,1084.46289257)
+\lineto(-375.90367979,1084.29982874)
+\lineto(-375.86996085,1083.81063728)
+\lineto(-375.73508507,1081.98432249)
+\lineto(-375.90367979,1081.10377785)
+\lineto(-376.10599346,1080.9733268)
+\lineto(-376.1397124,1084.0715394)
+\lineto(-376.27458818,1084.46289257)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-375.33045774,1084.46289257)
+\lineto(-374.95954936,1084.4302798)
+\lineto(-374.65607886,1083.68018623)
+\lineto(-374.52120309,1082.89747988)
+\lineto(-374.65607886,1082.63657777)
+\curveto(-374.43933349,1082.14347278)(-374.43933349,1081.43381903)(-374.65607886,1080.94071403)
+\lineto(-374.68979781,1080.19062046)
+\lineto(-374.95954936,1079.66881623)
+\lineto(-375.02698725,1079.66881623)
+\lineto(-375.06070619,1082.2452246)
+\lineto(-375.19558197,1083.158382)
+\lineto(-375.33045774,1084.46289257)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-375.33045774,1084.46289257)
+\lineto(-374.95954936,1084.4302798)
+\lineto(-374.65607886,1083.68018623)
+\lineto(-374.52120309,1082.89747988)
+\lineto(-374.65607886,1082.63657777)
+\curveto(-374.43933349,1082.14347278)(-374.43933349,1081.43381903)(-374.65607886,1080.94071403)
+\lineto(-374.68979781,1080.19062046)
+\lineto(-374.95954936,1079.66881623)
+\lineto(-375.02698725,1079.66881623)
+\lineto(-375.06070619,1082.2452246)
+\lineto(-375.19558197,1083.158382)
+\lineto(-375.33045774,1084.46289257)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-374.38632731,1084.46289257)
+\curveto(-374.13491886,1084.50621536)(-373.62198629,1084.46295257)(-373.74566737,1084.10415216)
+\lineto(-373.81310526,1084.10415216)
+\lineto(-374.38632731,1084.46289257)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-374.38632731,1084.46289257)
+\curveto(-374.13491886,1084.50621536)(-373.62198629,1084.46295257)(-373.74566737,1084.10415216)
+\lineto(-373.81310526,1084.10415216)
+\lineto(-374.38632731,1084.46289257)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.13064394,1083.81063728)
+\lineto(-452.1759312,1084.10415216)
+\lineto(-452.1759312,1084.16937769)
+\lineto(-451.53527127,1084.0715394)
+\lineto(-451.13064394,1083.81063728)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.13064394,1083.81063728)
+\lineto(-452.1759312,1084.10415216)
+\lineto(-452.1759312,1084.16937769)
+\lineto(-451.53527127,1084.0715394)
+\lineto(-451.13064394,1083.81063728)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1083.81063728)
+\lineto(-443.9822278,1084.0715394)
+\lineto(-443.71247625,1083.81063728)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1083.81063728)
+\lineto(-443.9822278,1084.0715394)
+\lineto(-443.71247625,1083.81063728)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1083.94108834)
+\lineto(-442.22884271,1084.0715394)
+\lineto(-442.09396694,1083.94108834)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.09396694,1083.94108834)
+\lineto(-442.22884271,1084.0715394)
+\lineto(-442.09396694,1083.94108834)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-378.02797327,1084.0715394)
+\curveto(-377.59637078,1084.14315703)(-377.77494631,1083.55677953)(-377.79194066,1083.32144582)
+\curveto(-378.30365935,1083.09928767)(-378.22731966,1083.84481546)(-378.02797327,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-378.02797327,1084.0715394)
+\curveto(-377.59637078,1084.14315703)(-377.77494631,1083.55677953)(-377.79194066,1083.32144582)
+\curveto(-378.30365935,1083.09928767)(-378.22731966,1083.84481546)(-378.02797327,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-329.33781808,1084.0715394)
+\lineto(-328.96690969,1083.9737011)
+\lineto(-329.33781808,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.33781808,1084.0715394)
+\lineto(-328.96690969,1083.9737011)
+\lineto(-329.33781808,1084.0715394)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.95909116,1083.81063728)
+\lineto(-442.09396694,1083.94108834)
+\lineto(-441.95909116,1083.81063728)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.95909116,1083.81063728)
+\lineto(-442.09396694,1083.94108834)
+\lineto(-441.95909116,1083.81063728)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.72601661,1083.68018623)
+\lineto(-451.13064394,1083.81063728)
+\lineto(-450.72601661,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.72601661,1083.68018623)
+\lineto(-451.13064394,1083.81063728)
+\lineto(-450.72601661,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.57760047,1083.68018623)
+\lineto(-443.71247625,1083.81063728)
+\lineto(-443.57760047,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.57760047,1083.68018623)
+\lineto(-443.71247625,1083.81063728)
+\lineto(-443.57760047,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.82421538,1083.68018623)
+\lineto(-441.95909116,1083.81063728)
+\lineto(-441.82421538,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.82421538,1083.68018623)
+\lineto(-441.95909116,1083.81063728)
+\lineto(-441.82421538,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.59114083,1083.54973517)
+\lineto(-450.72601661,1083.68018623)
+\lineto(-450.59114083,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.59114083,1083.54973517)
+\lineto(-450.72601661,1083.68018623)
+\lineto(-450.59114083,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1083.54973517)
+\lineto(-448.8040368,1083.64757346)
+\lineto(-448.29825264,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1083.54973517)
+\lineto(-448.8040368,1083.64757346)
+\lineto(-448.29825264,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1083.158382)
+\lineto(-443.57760047,1083.68018623)
+\lineto(-443.17297314,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1083.158382)
+\lineto(-443.57760047,1083.68018623)
+\lineto(-443.17297314,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1083.54973517)
+\lineto(-441.82421538,1083.68018623)
+\lineto(-441.68933961,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1083.54973517)
+\lineto(-441.82421538,1083.68018623)
+\lineto(-441.68933961,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-372.90269377,1083.68018623)
+\lineto(-372.19459595,1083.32144582)
+\lineto(-371.11558974,1082.79964159)
+\lineto(-370.50864875,1082.86486712)
+\lineto(-370.07030247,1081.98432249)
+\lineto(-370.23889719,1080.71242468)
+\lineto(-370.4749298,1080.54936086)
+\lineto(-370.64352452,1081.03855233)
+\curveto(-370.95427831,1081.19091916)(-371.18397176,1081.51365508)(-371.04815185,1081.82125867)
+\lineto(-371.41906023,1082.37567566)
+\lineto(-371.68881179,1082.89747988)
+\curveto(-372.02357346,1082.83151079)(-372.00684887,1082.44285795)(-371.82368756,1082.2452246)
+\lineto(-371.95856334,1081.20161615)
+\lineto(-372.12715806,1082.34306289)
+\curveto(-372.53623629,1082.33308208)(-372.92791554,1082.38877294)(-372.767818,1082.89747988)
+\curveto(-372.95529532,1083.12890006)(-373.17554747,1083.40649991)(-372.90269377,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-372.90269377,1083.68018623)
+\lineto(-372.19459595,1083.32144582)
+\lineto(-371.11558974,1082.79964159)
+\lineto(-370.50864875,1082.86486712)
+\lineto(-370.07030247,1081.98432249)
+\lineto(-370.23889719,1080.71242468)
+\lineto(-370.4749298,1080.54936086)
+\lineto(-370.64352452,1081.03855233)
+\curveto(-370.95427831,1081.19091916)(-371.18397176,1081.51365508)(-371.04815185,1081.82125867)
+\lineto(-371.41906023,1082.37567566)
+\lineto(-371.68881179,1082.89747988)
+\curveto(-372.02357346,1082.83151079)(-372.00684887,1082.44285795)(-371.82368756,1082.2452246)
+\lineto(-371.95856334,1081.20161615)
+\lineto(-372.12715806,1082.34306289)
+\curveto(-372.53623629,1082.33308208)(-372.92791554,1082.38877294)(-372.767818,1082.89747988)
+\curveto(-372.95529532,1083.12890006)(-373.17554747,1083.40649991)(-372.90269377,1083.68018623)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.05163773,1083.28883305)
+\lineto(-450.59114083,1083.54973517)
+\lineto(-450.05163773,1083.28883305)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.05163773,1083.28883305)
+\lineto(-450.59114083,1083.54973517)
+\lineto(-450.05163773,1083.28883305)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.02850109,1083.41928411)
+\lineto(-448.29825264,1083.54973517)
+\lineto(-448.02850109,1083.41928411)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.02850109,1083.41928411)
+\lineto(-448.29825264,1083.54973517)
+\lineto(-448.02850109,1083.41928411)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1083.54973517)
+\curveto(-441.43509877,1083.56795918)(-441.70819524,1083.30383493)(-441.68933961,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-441.68933961,1083.54973517)
+\curveto(-441.43509877,1083.56795918)(-441.70819524,1083.30383493)(-441.68933961,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-371.01443291,1083.54973517)
+\lineto(-370.64352452,1083.32144582)
+\lineto(-371.01443291,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-371.01443291,1083.54973517)
+\lineto(-370.64352452,1083.32144582)
+\lineto(-371.01443291,1083.54973517)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.75874953,1083.28883305)
+\lineto(-448.02850109,1083.41928411)
+\lineto(-447.75874953,1083.28883305)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.75874953,1083.28883305)
+\lineto(-448.02850109,1083.41928411)
+\lineto(-447.75874953,1083.28883305)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.78188618,1083.158382)
+\lineto(-450.05163773,1083.28883305)
+\lineto(-449.78188618,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.78188618,1083.158382)
+\lineto(-450.05163773,1083.28883305)
+\lineto(-449.78188618,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.75874953,1083.28883305)
+\lineto(-447.52271693,1083.19099476)
+\lineto(-447.75874953,1083.28883305)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.75874953,1083.28883305)
+\lineto(-447.52271693,1083.19099476)
+\lineto(-447.75874953,1083.28883305)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.51213462,1083.02793094)
+\lineto(-449.78188618,1083.158382)
+\lineto(-449.51213462,1083.02793094)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.51213462,1083.02793094)
+\lineto(-449.78188618,1083.158382)
+\lineto(-449.51213462,1083.02793094)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1083.158382)
+\lineto(-442.80206476,1082.66919054)
+\lineto(-443.17297314,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.17297314,1083.158382)
+\lineto(-442.80206476,1082.66919054)
+\lineto(-443.17297314,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-380.18598568,1083.158382)
+\curveto(-379.47019994,1083.09468275)(-379.86498134,1082.09181416)(-379.8150773,1081.62558208)
+\lineto(-380.28714252,1081.62558208)
+\curveto(-380.60976537,1082.10994686)(-380.42377168,1082.69710706)(-380.18598568,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80784315 0.80784315 0.80784315}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-380.18598568,1083.158382)
+\curveto(-379.47019994,1083.09468275)(-379.86498134,1082.09181416)(-379.8150773,1081.62558208)
+\lineto(-380.28714252,1081.62558208)
+\curveto(-380.60976537,1082.10994686)(-380.42377168,1082.69710706)(-380.18598568,1083.158382)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.37725885,1082.89747988)
+\lineto(-449.51213462,1083.02793094)
+\lineto(-449.37725885,1082.89747988)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02352941 0.02352941 0.02352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.37725885,1082.89747988)
+\lineto(-449.51213462,1083.02793094)
+\lineto(-449.37725885,1082.89747988)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.94949488,1082.89747988)
+\lineto(-447.18552749,1082.99531818)
+\lineto(-446.94949488,1082.89747988)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.94949488,1082.89747988)
+\lineto(-447.18552749,1082.99531818)
+\lineto(-446.94949488,1082.89747988)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.83775574,1082.63657777)
+\lineto(-449.37725885,1082.89747988)
+\lineto(-448.83775574,1082.63657777)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.83775574,1082.63657777)
+\lineto(-449.37725885,1082.89747988)
+\lineto(-448.83775574,1082.63657777)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1082.63657777)
+\lineto(-446.94949488,1082.89747988)
+\lineto(-446.54486755,1082.63657777)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1082.63657777)
+\lineto(-446.94949488,1082.89747988)
+\lineto(-446.54486755,1082.63657777)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-378.70235215,1082.89747988)
+\lineto(-378.43260059,1082.76702883)
+\lineto(-377.38731333,1082.73441606)
+\lineto(-377.48847016,1081.85387143)
+\curveto(-377.47437564,1081.5850118)(-377.41578561,1080.9922422)(-377.85937855,1081.10377785)
+\lineto(-377.92681643,1081.69080761)
+\lineto(-378.26400587,1081.69080761)
+\lineto(-378.60119531,1080.58197363)
+\lineto(-378.6686332,1080.58197363)
+\lineto(-378.70235215,1081.59296932)
+\curveto(-378.91262348,1081.96566799)(-378.91262348,1082.52478122)(-378.70235215,1082.89747988)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81568629 0.81568629 0.81568629}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-378.70235215,1082.89747988)
+\lineto(-378.43260059,1082.76702883)
+\lineto(-377.38731333,1082.73441606)
+\lineto(-377.48847016,1081.85387143)
+\curveto(-377.47437564,1081.5850118)(-377.41578561,1080.9922422)(-377.85937855,1081.10377785)
+\lineto(-377.92681643,1081.69080761)
+\lineto(-378.26400587,1081.69080761)
+\lineto(-378.60119531,1080.58197363)
+\lineto(-378.6686332,1080.58197363)
+\lineto(-378.70235215,1081.59296932)
+\curveto(-378.91262348,1081.96566799)(-378.91262348,1082.52478122)(-378.70235215,1082.89747988)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.43312841,1082.37567566)
+\lineto(-448.83775574,1082.63657777)
+\lineto(-448.43312841,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.43312841,1082.37567566)
+\lineto(-448.83775574,1082.63657777)
+\lineto(-448.43312841,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1082.37567566)
+\lineto(-446.54486755,1082.63657777)
+\lineto(-446.00536444,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1082.37567566)
+\lineto(-446.54486755,1082.63657777)
+\lineto(-446.00536444,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-381.53474345,1082.63657777)
+\lineto(-381.39986767,1082.37567566)
+\lineto(-382.07424655,1080.41890981)
+\lineto(-382.24284127,1079.147012)
+\lineto(-382.31027916,1079.147012)
+\lineto(-382.3439981,1079.89710558)
+\lineto(-382.20912233,1080.15800769)
+\lineto(-382.07424655,1081.3320672)
+\curveto(-382.13298495,1081.85139286)(-381.86168233,1082.26544451)(-381.53474345,1082.63657777)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.53474345,1082.63657777)
+\lineto(-381.39986767,1082.37567566)
+\lineto(-382.07424655,1080.41890981)
+\lineto(-382.24284127,1079.147012)
+\lineto(-382.31027916,1079.147012)
+\lineto(-382.3439981,1079.89710558)
+\lineto(-382.20912233,1080.15800769)
+\lineto(-382.07424655,1081.3320672)
+\curveto(-382.13298495,1081.85139286)(-381.86168233,1082.26544451)(-381.53474345,1082.63657777)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1082.37567566)
+\curveto(-442.7528351,1082.35745165)(-442.47973863,1082.6215759)(-442.49859426,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1082.37567566)
+\curveto(-442.7528351,1082.35745165)(-442.47973863,1082.6215759)(-442.49859426,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.68235296 0.68235296 0.68235296}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-368.85642049,1082.50612671)
+\curveto(-367.90446726,1082.33262681)(-368.46797825,1081.08290569)(-368.31691738,1080.41890981)
+\lineto(-368.41807421,1080.32107151)
+\lineto(-368.4855121,1081.56035655)
+\curveto(-368.99035213,1081.61403716)(-368.83983077,1082.16617126)(-368.85642049,1082.50612671)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.68235296 0.68235296 0.68235296}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-368.85642049,1082.50612671)
+\curveto(-367.90446726,1082.33262681)(-368.46797825,1081.08290569)(-368.31691738,1080.41890981)
+\lineto(-368.41807421,1080.32107151)
+\lineto(-368.4855121,1081.56035655)
+\curveto(-368.99035213,1081.61403716)(-368.83983077,1082.16617126)(-368.85642049,1082.50612671)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.16337686,1082.2452246)
+\lineto(-448.43312841,1082.37567566)
+\lineto(-448.16337686,1082.2452246)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.16337686,1082.2452246)
+\lineto(-448.43312841,1082.37567566)
+\lineto(-448.16337686,1082.2452246)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1082.11477354)
+\lineto(-446.00536444,1082.37567566)
+\lineto(-445.60073712,1082.11477354)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1082.11477354)
+\lineto(-446.00536444,1082.37567566)
+\lineto(-445.60073712,1082.11477354)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1082.37567566)
+\curveto(-442.24435343,1082.39389967)(-442.5174499,1082.12977542)(-442.49859426,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.49859426,1082.37567566)
+\curveto(-442.24435343,1082.39389967)(-442.5174499,1082.12977542)(-442.49859426,1082.37567566)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.89362531,1082.11477354)
+\lineto(-448.16337686,1082.2452246)
+\lineto(-447.89362531,1082.11477354)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.89362531,1082.11477354)
+\lineto(-448.16337686,1082.2452246)
+\lineto(-447.89362531,1082.11477354)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.75874953,1081.98432249)
+\lineto(-447.89362531,1082.11477354)
+\lineto(-447.75874953,1081.98432249)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.75874953,1081.98432249)
+\lineto(-447.89362531,1082.11477354)
+\lineto(-447.75874953,1081.98432249)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1081.85387143)
+\lineto(-445.60073712,1082.11477354)
+\lineto(-445.19610979,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1081.85387143)
+\lineto(-445.60073712,1082.11477354)
+\lineto(-445.19610979,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.48899798,1081.85387143)
+\lineto(-447.75874953,1081.98432249)
+\lineto(-447.48899798,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.48899798,1081.85387143)
+\lineto(-447.75874953,1081.98432249)
+\lineto(-447.48899798,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-372.767818,1081.98432249)
+\lineto(-372.66666116,1081.95170972)
+\lineto(-372.93641272,1079.79926729)
+\lineto(-373.13872638,1079.53836517)
+\lineto(-373.17244532,1079.76665452)
+\lineto(-372.90269377,1081.07116509)
+\lineto(-372.767818,1081.98432249)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-372.767818,1081.98432249)
+\lineto(-372.66666116,1081.95170972)
+\lineto(-372.93641272,1079.79926729)
+\lineto(-373.13872638,1079.53836517)
+\lineto(-373.17244532,1079.76665452)
+\lineto(-372.90269377,1081.07116509)
+\lineto(-372.767818,1081.98432249)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-329.60756963,1081.98432249)
+\lineto(-329.10178547,1081.8864842)
+\lineto(-330.95632739,1081.20161615)
+\lineto(-331.19236,1081.23422891)
+\lineto(-330.99004633,1081.36467997)
+\lineto(-330.38310534,1081.69080761)
+\lineto(-329.60756963,1081.98432249)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.60756963,1081.98432249)
+\lineto(-329.10178547,1081.8864842)
+\lineto(-330.95632739,1081.20161615)
+\lineto(-331.19236,1081.23422891)
+\lineto(-330.99004633,1081.36467997)
+\lineto(-330.38310534,1081.69080761)
+\lineto(-329.60756963,1081.98432249)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.21924643,1081.72342037)
+\lineto(-447.48899798,1081.85387143)
+\lineto(-447.21924643,1081.72342037)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.21924643,1081.72342037)
+\lineto(-447.48899798,1081.85387143)
+\lineto(-447.21924643,1081.72342037)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.06123401,1081.72342037)
+\lineto(-445.19610979,1081.85387143)
+\lineto(-445.06123401,1081.72342037)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.06123401,1081.72342037)
+\lineto(-445.19610979,1081.85387143)
+\lineto(-445.06123401,1081.72342037)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.75686276 0.75686276 0.75686276}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-382.74862543,1081.85387143)
+\lineto(-382.6474686,1081.23422891)
+\lineto(-382.74862543,1081.20161615)
+\curveto(-383.10065121,1081.55866069)(-383.47776388,1081.00215648)(-383.1869717,1080.71242468)
+\lineto(-383.32184748,1080.58197363)
+\lineto(-384.06366425,1081.03855233)
+\lineto(-382.78234437,1081.75603314)
+\lineto(-382.74862543,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.75686276 0.75686276 0.75686276}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-382.74862543,1081.85387143)
+\lineto(-382.6474686,1081.23422891)
+\lineto(-382.74862543,1081.20161615)
+\curveto(-383.10065121,1081.55866069)(-383.47776388,1081.00215648)(-383.1869717,1080.71242468)
+\lineto(-383.32184748,1080.58197363)
+\lineto(-384.06366425,1081.03855233)
+\lineto(-382.78234437,1081.75603314)
+\lineto(-382.74862543,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-367.77741428,1081.85387143)
+\lineto(-367.27163012,1081.82125867)
+\curveto(-367.28178087,1081.27532099)(-366.95709981,1080.30933092)(-367.74369533,1080.19062046)
+\lineto(-367.77741428,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-367.77741428,1081.85387143)
+\lineto(-367.27163012,1081.82125867)
+\curveto(-367.28178087,1081.27532099)(-366.95709981,1080.30933092)(-367.74369533,1080.19062046)
+\lineto(-367.77741428,1081.85387143)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.8146191,1081.46251826)
+\lineto(-447.21924643,1081.72342037)
+\lineto(-446.8146191,1081.46251826)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.8146191,1081.46251826)
+\lineto(-447.21924643,1081.72342037)
+\lineto(-446.8146191,1081.46251826)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1081.46251826)
+\lineto(-445.06123401,1081.72342037)
+\lineto(-444.65660668,1081.46251826)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1081.46251826)
+\lineto(-445.06123401,1081.72342037)
+\lineto(-444.65660668,1081.46251826)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1081.3320672)
+\lineto(-446.8146191,1081.46251826)
+\lineto(-446.54486755,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1081.3320672)
+\lineto(-446.8146191,1081.46251826)
+\lineto(-446.54486755,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1081.3320672)
+\lineto(-444.65660668,1081.46251826)
+\lineto(-444.52173091,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1081.3320672)
+\lineto(-444.65660668,1081.46251826)
+\lineto(-444.52173091,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1081.3320672)
+\curveto(-446.29062671,1081.35029122)(-446.56372318,1081.08616696)(-446.54486755,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04313726 0.04313726 0.04313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1081.3320672)
+\curveto(-446.29062671,1081.35029122)(-446.56372318,1081.08616696)(-446.54486755,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1081.07116509)
+\lineto(-444.52173091,1081.3320672)
+\lineto(-444.11710358,1081.07116509)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1081.07116509)
+\lineto(-444.52173091,1081.3320672)
+\lineto(-444.11710358,1081.07116509)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-366.42865652,1081.3320672)
+\curveto(-366.16956015,1081.41208588)(-365.89117655,1081.24980477)(-366.05774813,1080.9733268)
+\curveto(-366.2650522,1080.8608519)(-366.48489972,1081.14304362)(-366.42865652,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-366.42865652,1081.3320672)
+\curveto(-366.16956015,1081.41208588)(-365.89117655,1081.24980477)(-366.05774813,1080.9733268)
+\curveto(-366.2650522,1080.8608519)(-366.48489972,1081.14304362)(-366.42865652,1081.3320672)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1081.07116509)
+\curveto(-446.39448106,1081.05294108)(-446.12138459,1081.31706533)(-446.14024022,1081.07116509)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.14024022,1081.07116509)
+\curveto(-446.39448106,1081.05294108)(-446.12138459,1081.31706533)(-446.14024022,1081.07116509)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.72549021 0.72549021 0.72549021}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-393.40381175,1081.20161615)
+\lineto(-393.30265491,1081.16900338)
+\lineto(-393.16777914,1079.40791412)
+\lineto(-393.3700928,1079.53836517)
+\lineto(-393.40381175,1081.20161615)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.72549021 0.72549021 0.72549021}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-393.40381175,1081.20161615)
+\lineto(-393.30265491,1081.16900338)
+\lineto(-393.16777914,1079.40791412)
+\lineto(-393.3700928,1079.53836517)
+\lineto(-393.40381175,1081.20161615)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1080.94071403)
+\lineto(-446.14024022,1081.07116509)
+\lineto(-446.00536444,1080.94071403)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03921569 0.03921569 0.03921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1080.94071403)
+\lineto(-446.14024022,1081.07116509)
+\lineto(-446.00536444,1080.94071403)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1081.07116509)
+\lineto(-443.88107097,1080.9733268)
+\lineto(-444.11710358,1081.07116509)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.11710358,1081.07116509)
+\lineto(-443.88107097,1080.9733268)
+\lineto(-444.11710358,1081.07116509)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.73561289,1080.81026298)
+\lineto(-446.00536444,1080.94071403)
+\lineto(-445.73561289,1080.81026298)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.73561289,1080.81026298)
+\lineto(-446.00536444,1080.94071403)
+\lineto(-445.73561289,1080.81026298)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1080.54936086)
+\lineto(-445.73561289,1080.81026298)
+\lineto(-445.33098556,1080.54936086)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1080.54936086)
+\lineto(-445.73561289,1080.81026298)
+\lineto(-445.33098556,1080.54936086)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-365.48452608,1080.67981192)
+\lineto(-364.84386615,1080.5167481)
+\lineto(-363.62998416,1079.73404176)
+\lineto(-363.86601677,1078.98394818)
+\lineto(-363.76485994,1077.71205038)
+\lineto(-364.23692515,1077.58159932)
+\curveto(-364.18594211,1078.08474905)(-364.62226525,1078.74783177)(-365.18105559,1078.36430566)
+\lineto(-365.34965031,1079.63620347)
+\lineto(-365.38336925,1080.25584599)
+\lineto(-365.48452608,1080.67981192)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-365.48452608,1080.67981192)
+\lineto(-364.84386615,1080.5167481)
+\lineto(-363.62998416,1079.73404176)
+\lineto(-363.86601677,1078.98394818)
+\lineto(-363.76485994,1077.71205038)
+\lineto(-364.23692515,1077.58159932)
+\curveto(-364.18594211,1078.08474905)(-364.62226525,1078.74783177)(-365.18105559,1078.36430566)
+\lineto(-365.34965031,1079.63620347)
+\lineto(-365.38336925,1080.25584599)
+\lineto(-365.48452608,1080.67981192)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-332.17020938,1080.67981192)
+\lineto(-331.79930099,1080.45152257)
+\lineto(-333.51896714,1079.63620347)
+\lineto(-333.62012397,1079.66881623)
+\lineto(-333.48524819,1079.86449282)
+\lineto(-332.97946403,1080.15800769)
+\lineto(-332.20392832,1080.58197363)
+\lineto(-332.17020938,1080.67981192)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-332.17020938,1080.67981192)
+\lineto(-331.79930099,1080.45152257)
+\lineto(-333.51896714,1079.63620347)
+\lineto(-333.62012397,1079.66881623)
+\lineto(-333.48524819,1079.86449282)
+\lineto(-332.97946403,1080.15800769)
+\lineto(-332.20392832,1080.58197363)
+\lineto(-332.17020938,1080.67981192)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1080.41890981)
+\lineto(-445.33098556,1080.54936086)
+\lineto(-445.19610979,1080.41890981)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0 0 0}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1080.41890981)
+\lineto(-445.33098556,1080.54936086)
+\lineto(-445.19610979,1080.41890981)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.79148246,1080.15800769)
+\lineto(-445.19610979,1080.41890981)
+\lineto(-444.79148246,1080.15800769)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.79148246,1080.15800769)
+\lineto(-445.19610979,1080.41890981)
+\lineto(-444.79148246,1080.15800769)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-386.25539561,1080.41890981)
+\curveto(-386.06319763,1080.44657848)(-385.76026664,1080.433716)(-385.85076828,1080.15800769)
+\lineto(-385.74961145,1079.53836517)
+\lineto(-386.25539561,1080.41890981)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-386.25539561,1080.41890981)
+\curveto(-386.06319763,1080.44657848)(-385.76026664,1080.433716)(-385.85076828,1080.15800769)
+\lineto(-385.74961145,1079.53836517)
+\lineto(-386.25539561,1080.41890981)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.7764706 0.7764706 0.7764706}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-331.49583049,1078.72304607)
+\lineto(-331.52954944,1078.62520778)
+\lineto(-334.69913018,1077.64682485)
+\lineto(-335.37350906,1077.45114827)
+\lineto(-335.23863328,1077.77727591)
+\curveto(-333.47580689,1078.87906553)(-331.52280565,1079.56054185)(-329.60756963,1080.28845875)
+\lineto(-328.02277926,1080.38629704)
+\lineto(-328.02277926,1080.32107151)
+\lineto(-330.68657584,1079.50575241)
+\lineto(-331.09120317,1079.37530135)
+\curveto(-331.57176556,1079.54697494)(-332.30575953,1078.76479041)(-331.49583049,1078.72304607)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.7764706 0.7764706 0.7764706}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-331.49583049,1078.72304607)
+\lineto(-331.52954944,1078.62520778)
+\lineto(-334.69913018,1077.64682485)
+\lineto(-335.37350906,1077.45114827)
+\lineto(-335.23863328,1077.77727591)
+\curveto(-333.47580689,1078.87906553)(-331.52280565,1079.56054185)(-329.60756963,1080.28845875)
+\lineto(-328.02277926,1080.38629704)
+\lineto(-328.02277926,1080.32107151)
+\lineto(-330.68657584,1079.50575241)
+\lineto(-331.09120317,1079.37530135)
+\curveto(-331.57176556,1079.54697494)(-332.30575953,1078.76479041)(-331.49583049,1078.72304607)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.79148246,1080.15800769)
+\curveto(-444.53724162,1080.17623171)(-444.81033809,1079.91210745)(-444.79148246,1080.15800769)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.79148246,1080.15800769)
+\curveto(-444.53724162,1080.17623171)(-444.81033809,1079.91210745)(-444.79148246,1080.15800769)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-387.06465027,1080.15800769)
+\curveto(-386.81728809,1080.24479678)(-386.71950316,1079.97133223)(-386.82861766,1079.79926729)
+\lineto(-387.06465027,1080.15800769)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-387.06465027,1080.15800769)
+\curveto(-386.81728809,1080.24479678)(-386.71950316,1079.97133223)(-386.82861766,1079.79926729)
+\lineto(-387.06465027,1080.15800769)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-406.21701048,1079.63620347)
+\lineto(-405.98097787,1079.47313965)
+\lineto(-405.03684744,1077.84250144)
+\lineto(-405.17172322,1077.71205038)
+\lineto(-405.50891266,1077.97295249)
+\lineto(-406.21701048,1079.63620347)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-406.21701048,1079.63620347)
+\lineto(-405.98097787,1079.47313965)
+\lineto(-405.03684744,1077.84250144)
+\lineto(-405.17172322,1077.71205038)
+\lineto(-405.50891266,1077.97295249)
+\lineto(-406.21701048,1079.63620347)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-367.77741428,1079.63620347)
+\lineto(-367.67625745,1079.27746306)
+\lineto(-367.77741428,1079.63620347)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.627451 0.627451 0.627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-367.77741428,1079.63620347)
+\lineto(-367.67625745,1079.27746306)
+\lineto(-367.77741428,1079.63620347)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.02850109,1079.50575241)
+\lineto(-447.75874953,1079.50575241)
+\lineto(-447.6575927,1079.47313965)
+\lineto(-446.44371072,1078.62520778)
+\lineto(-447.18552749,1078.62520778)
+\curveto(-447.14811295,1079.06965453)(-447.63156168,1079.22684805)(-447.99478214,1079.27746306)
+\lineto(-448.02850109,1079.50575241)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.02850109,1079.50575241)
+\lineto(-447.75874953,1079.50575241)
+\lineto(-447.6575927,1079.47313965)
+\lineto(-446.44371072,1078.62520778)
+\lineto(-447.18552749,1078.62520778)
+\curveto(-447.14811295,1079.06965453)(-447.63156168,1079.22684805)(-447.99478214,1079.27746306)
+\lineto(-448.02850109,1079.50575241)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-385.58101673,1079.2448503)
+\lineto(-385.4798599,1079.21223753)
+\curveto(-385.35441194,1078.88558809)(-384.88869937,1078.30260231)(-385.41242201,1078.10340355)
+\lineto(-385.58101673,1079.2448503)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-385.58101673,1079.2448503)
+\lineto(-385.4798599,1079.21223753)
+\curveto(-385.35441194,1078.88558809)(-384.88869937,1078.30260231)(-385.41242201,1078.10340355)
+\lineto(-385.58101673,1079.2448503)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-377.08384283,1079.2448503)
+\curveto(-376.92711718,1079.2663095)(-376.56335721,1079.26837062)(-376.71293445,1079.01656095)
+\curveto(-376.8908356,1078.91103909)(-377.17353522,1079.0056448)(-377.08384283,1079.2448503)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-377.08384283,1079.2448503)
+\curveto(-376.92711718,1079.2663095)(-376.56335721,1079.26837062)(-376.71293445,1079.01656095)
+\curveto(-376.8908356,1078.91103909)(-377.17353522,1079.0056448)(-377.08384283,1079.2448503)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-400.01272478,1079.11439924)
+\lineto(-399.91156795,1079.08178648)
+\lineto(-399.47322167,1077.80988867)
+\lineto(-399.37206484,1076.92934404)
+\lineto(-399.57437851,1077.0597951)
+\lineto(-399.877849,1078.46214396)
+\lineto(-400.01272478,1079.11439924)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-400.01272478,1079.11439924)
+\lineto(-399.91156795,1079.08178648)
+\lineto(-399.47322167,1077.80988867)
+\lineto(-399.37206484,1076.92934404)
+\lineto(-399.57437851,1077.0597951)
+\lineto(-399.877849,1078.46214396)
+\lineto(-400.01272478,1079.11439924)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.76078433 0.76078433 0.76078433}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-392.59455709,1079.11439924)
+\lineto(-392.35852448,1079.08178648)
+\curveto(-391.92759638,1078.32490944)(-392.0449383,1077.39635882)(-392.08877293,1076.53799087)
+\lineto(-392.15621082,1076.53799087)
+\lineto(-392.59455709,1077.80988867)
+\lineto(-392.59455709,1079.11439924)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.76078433 0.76078433 0.76078433}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-392.59455709,1079.11439924)
+\lineto(-392.35852448,1079.08178648)
+\curveto(-391.92759638,1078.32490944)(-392.0449383,1077.39635882)(-392.08877293,1076.53799087)
+\lineto(-392.15621082,1076.53799087)
+\lineto(-392.59455709,1077.80988867)
+\lineto(-392.59455709,1079.11439924)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-363.05676211,1078.85349713)
+\lineto(-362.14635062,1078.29908014)
+\lineto(-362.14635062,1078.23385461)
+\lineto(-362.41610218,1077.32069721)
+\lineto(-362.88816739,1077.58159932)
+\lineto(-363.05676211,1078.59259501)
+\lineto(-363.05676211,1078.85349713)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-363.05676211,1078.85349713)
+\lineto(-362.14635062,1078.29908014)
+\lineto(-362.14635062,1078.23385461)
+\lineto(-362.41610218,1077.32069721)
+\lineto(-362.88816739,1077.58159932)
+\lineto(-363.05676211,1078.59259501)
+\lineto(-363.05676211,1078.85349713)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-384.6368863,1078.72304607)
+\curveto(-384.45938978,1078.65106318)(-384.08551412,1078.38987407)(-384.40085369,1078.23385461)
+\lineto(-384.6368863,1078.72304607)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.6368863,1078.72304607)
+\curveto(-384.45938978,1078.65106318)(-384.08551412,1078.38987407)(-384.40085369,1078.23385461)
+\lineto(-384.6368863,1078.72304607)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1078.3316929)
+\lineto(-446.24139705,1078.55998225)
+\lineto(-445.87048867,1078.3316929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.87048867,1078.3316929)
+\lineto(-446.24139705,1078.55998225)
+\lineto(-445.87048867,1078.3316929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-393.6735633,1078.46214396)
+\lineto(-393.43753069,1078.42953119)
+\lineto(-393.43753069,1077.19024615)
+\lineto(-393.50496858,1077.19024615)
+\lineto(-393.6735633,1078.46214396)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-393.6735633,1078.46214396)
+\lineto(-393.43753069,1078.42953119)
+\lineto(-393.43753069,1077.19024615)
+\lineto(-393.50496858,1077.19024615)
+\lineto(-393.6735633,1078.46214396)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.46586134,1078.07079079)
+\lineto(-445.87048867,1078.3316929)
+\lineto(-445.46586134,1078.07079079)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.46586134,1078.07079079)
+\lineto(-445.87048867,1078.3316929)
+\lineto(-445.46586134,1078.07079079)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.22352941 0.22352941 0.22352941}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-328.52856342,1078.20124184)
+\lineto(-325.56129634,1078.20124184)
+\curveto(-324.50886066,1078.17620828)(-323.4073302,1078.31673016)(-322.45915349,1077.94033973)
+\lineto(-321.95336933,1077.90772697)
+\lineto(-321.95336933,1077.58159932)
+\lineto(-322.32427772,1077.54898656)
+\lineto(-322.59402927,1077.67943762)
+\lineto(-328.6634392,1077.67943762)
+\lineto(-328.93319075,1077.54898656)
+\lineto(-330.28194851,1077.54898656)
+\lineto(-331.22607894,1077.28808445)
+\lineto(-331.59698733,1077.32069721)
+\lineto(-331.59698733,1077.77727591)
+\lineto(-328.6634392,1078.07079079)
+\lineto(-328.52856342,1078.20124184)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.22352941 0.22352941 0.22352941}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-328.52856342,1078.20124184)
+\lineto(-325.56129634,1078.20124184)
+\curveto(-324.50886066,1078.17620828)(-323.4073302,1078.31673016)(-322.45915349,1077.94033973)
+\lineto(-321.95336933,1077.90772697)
+\lineto(-321.95336933,1077.58159932)
+\lineto(-322.32427772,1077.54898656)
+\lineto(-322.59402927,1077.67943762)
+\lineto(-328.6634392,1077.67943762)
+\lineto(-328.93319075,1077.54898656)
+\lineto(-330.28194851,1077.54898656)
+\lineto(-331.22607894,1077.28808445)
+\lineto(-331.59698733,1077.32069721)
+\lineto(-331.59698733,1077.77727591)
+\lineto(-328.6634392,1078.07079079)
+\lineto(-328.52856342,1078.20124184)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1077.94033973)
+\lineto(-445.46586134,1078.07079079)
+\lineto(-445.33098556,1077.94033973)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.06666667 0.06666667 0.06666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1077.94033973)
+\lineto(-445.46586134,1078.07079079)
+\lineto(-445.33098556,1077.94033973)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1077.80988867)
+\lineto(-445.33098556,1077.94033973)
+\lineto(-445.19610979,1077.80988867)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.19610979,1077.80988867)
+\lineto(-445.33098556,1077.94033973)
+\lineto(-445.19610979,1077.80988867)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-402.84511608,1077.94033973)
+\lineto(-402.44048875,1077.15763339)
+\curveto(-402.52779384,1076.80867681)(-402.34525296,1076.54412207)(-402.06958036,1076.34231428)
+\lineto(-402.20445614,1076.01618664)
+\lineto(-402.57536452,1076.76628022)
+\lineto(-402.84511608,1077.94033973)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-402.84511608,1077.94033973)
+\lineto(-402.44048875,1077.15763339)
+\curveto(-402.52779384,1076.80867681)(-402.34525296,1076.54412207)(-402.06958036,1076.34231428)
+\lineto(-402.20445614,1076.01618664)
+\lineto(-402.57536452,1076.76628022)
+\lineto(-402.84511608,1077.94033973)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-361.84288013,1077.94033973)
+\lineto(-361.7417233,1077.90772697)
+\lineto(-361.7417233,1076.92934404)
+\lineto(-361.80916118,1076.92934404)
+\lineto(-361.84288013,1077.94033973)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-361.84288013,1077.94033973)
+\lineto(-361.7417233,1077.90772697)
+\lineto(-361.7417233,1076.92934404)
+\lineto(-361.80916118,1076.92934404)
+\lineto(-361.84288013,1077.94033973)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1077.4185355)
+\lineto(-445.19610979,1077.80988867)
+\lineto(-444.65660668,1077.4185355)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.65660668,1077.4185355)
+\lineto(-445.19610979,1077.80988867)
+\lineto(-444.65660668,1077.4185355)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-409.31915333,1077.80988867)
+\lineto(-409.2179965,1077.77727591)
+\lineto(-408.914526,1076.63582916)
+\lineto(-408.6784934,1075.10302925)
+\lineto(-409.01568284,1075.36393136)
+\lineto(-409.18427756,1076.89673128)
+\lineto(-409.31915333,1077.80988867)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-409.31915333,1077.80988867)
+\lineto(-409.2179965,1077.77727591)
+\lineto(-408.914526,1076.63582916)
+\lineto(-408.6784934,1075.10302925)
+\lineto(-409.01568284,1075.36393136)
+\lineto(-409.18427756,1076.89673128)
+\lineto(-409.31915333,1077.80988867)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1077.54898656)
+\curveto(-447.89079292,1077.49978042)(-447.3318677,1077.41938343)(-447.1180896,1077.0597951)
+\lineto(-448.26453369,1077.45114827)
+\lineto(-448.29825264,1077.54898656)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.29825264,1077.54898656)
+\curveto(-447.89079292,1077.49978042)(-447.3318677,1077.41938343)(-447.1180896,1077.0597951)
+\lineto(-448.26453369,1077.45114827)
+\lineto(-448.29825264,1077.54898656)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-384.50201052,1077.54898656)
+\lineto(-384.26597791,1077.51637379)
+\lineto(-384.13110214,1076.27708876)
+\lineto(-384.19854002,1076.27708876)
+\lineto(-384.26597791,1077.12502062)
+\curveto(-384.50686605,1077.15160655)(-384.715384,1077.35487539)(-384.50201052,1077.54898656)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.50201052,1077.54898656)
+\lineto(-384.26597791,1077.51637379)
+\lineto(-384.13110214,1076.27708876)
+\lineto(-384.19854002,1076.27708876)
+\lineto(-384.26597791,1077.12502062)
+\curveto(-384.50686605,1077.15160655)(-384.715384,1077.35487539)(-384.50201052,1077.54898656)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1077.28808445)
+\lineto(-444.65660668,1077.4185355)
+\lineto(-444.52173091,1077.28808445)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.02745098 0.02745098 0.02745098}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.52173091,1077.28808445)
+\lineto(-444.65660668,1077.4185355)
+\lineto(-444.52173091,1077.28808445)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-380.59061301,1077.4185355)
+\lineto(-380.48945618,1077.38592274)
+\lineto(-380.21970463,1076.53799087)
+\lineto(-380.48945618,1076.86411851)
+\curveto(-380.72279127,1077.00278798)(-380.77269531,1077.22468523)(-380.59061301,1077.4185355)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-380.59061301,1077.4185355)
+\lineto(-380.48945618,1077.38592274)
+\lineto(-380.21970463,1076.53799087)
+\lineto(-380.48945618,1076.86411851)
+\curveto(-380.72279127,1077.00278798)(-380.77269531,1077.22468523)(-380.59061301,1077.4185355)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.38685513,1077.15763339)
+\lineto(-444.52173091,1077.28808445)
+\lineto(-444.38685513,1077.15763339)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.38685513,1077.15763339)
+\lineto(-444.52173091,1077.28808445)
+\lineto(-444.38685513,1077.15763339)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-361.4382528,1074.15725908)
+\lineto(-360.89874969,1076.11402494)
+\curveto(-361.37445656,1076.38679809)(-361.33588209,1076.90977638)(-361.03362547,1077.28808445)
+\lineto(-360.25808976,1076.86411851)
+\curveto(-358.00161802,1074.78342416)(-356.20507268,1072.42878258)(-354.55958822,1069.98282527)
+\lineto(-355.26768604,1068.3195743)
+\lineto(-355.4699997,1068.51525088)
+\curveto(-355.12377359,1069.054666)(-354.63444427,1069.9371674)(-355.4699997,1070.27634015)
+\lineto(-355.7734702,1070.76553161)
+\lineto(-356.0769407,1069.75453592)
+\curveto(-356.55736821,1069.96964971)(-356.84600237,1069.73141999)(-357.22338479,1069.49363381)
+\lineto(-357.49313635,1071.18949754)
+\lineto(-357.89776368,1072.16788047)
+\curveto(-357.94772166,1071.92706782)(-357.93996631,1071.36638918)(-358.302391,1071.45039966)
+\lineto(-358.10007734,1073.99419526)
+\lineto(-358.97676988,1073.14626339)
+\lineto(-359.01048883,1073.5050038)
+\lineto(-359.04420777,1074.12464632)
+\lineto(-359.92090032,1072.75491022)
+\lineto(-359.98833821,1074.51599949)
+\curveto(-360.16623935,1074.62152135)(-360.44893898,1074.52691563)(-360.35924659,1074.28771014)
+\lineto(-360.39296553,1074.05942079)
+\lineto(-360.62899814,1075.33131859)
+\lineto(-361.4382528,1074.15725908)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.88627452 0.88627452 0.88627452}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-361.4382528,1074.15725908)
+\lineto(-360.89874969,1076.11402494)
+\curveto(-361.37445656,1076.38679809)(-361.33588209,1076.90977638)(-361.03362547,1077.28808445)
+\lineto(-360.25808976,1076.86411851)
+\curveto(-358.00161802,1074.78342416)(-356.20507268,1072.42878258)(-354.55958822,1069.98282527)
+\lineto(-355.26768604,1068.3195743)
+\lineto(-355.4699997,1068.51525088)
+\curveto(-355.12377359,1069.054666)(-354.63444427,1069.9371674)(-355.4699997,1070.27634015)
+\lineto(-355.7734702,1070.76553161)
+\lineto(-356.0769407,1069.75453592)
+\curveto(-356.55736821,1069.96964971)(-356.84600237,1069.73141999)(-357.22338479,1069.49363381)
+\lineto(-357.49313635,1071.18949754)
+\lineto(-357.89776368,1072.16788047)
+\curveto(-357.94772166,1071.92706782)(-357.93996631,1071.36638918)(-358.302391,1071.45039966)
+\lineto(-358.10007734,1073.99419526)
+\lineto(-358.97676988,1073.14626339)
+\lineto(-359.01048883,1073.5050038)
+\lineto(-359.04420777,1074.12464632)
+\lineto(-359.92090032,1072.75491022)
+\lineto(-359.98833821,1074.51599949)
+\curveto(-360.16623935,1074.62152135)(-360.44893898,1074.52691563)(-360.35924659,1074.28771014)
+\lineto(-360.39296553,1074.05942079)
+\lineto(-360.62899814,1075.33131859)
+\lineto(-361.4382528,1074.15725908)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1077.02718233)
+\lineto(-444.38685513,1077.15763339)
+\lineto(-444.25197935,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1077.02718233)
+\lineto(-444.38685513,1077.15763339)
+\lineto(-444.25197935,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1077.02718233)
+\lineto(-444.01594675,1076.92934404)
+\lineto(-444.25197935,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07058824 0.07058824 0.07058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.25197935,1077.02718233)
+\lineto(-444.01594675,1076.92934404)
+\lineto(-444.25197935,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87843138 0.87843138 0.87843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-383.55788009,1077.02718233)
+\lineto(-383.32184748,1076.99456957)
+\lineto(-382.31027916,1074.05942079)
+\lineto(-381.26499189,1072.20049323)
+\curveto(-381.39253043,1071.2026731)(-381.11474028,1070.08979514)(-380.21970463,1069.55885933)
+\curveto(-379.70501867,1068.46267911)(-378.36516271,1068.29439724)(-377.25243755,1068.45002535)
+\curveto(-377.00035473,1068.59104295)(-376.5394842,1068.79780787)(-376.71293445,1069.16750616)
+\lineto(-376.94896706,1069.20011893)
+\curveto(-377.75323131,1068.7457579)(-379.10023569,1068.77276127)(-379.64648258,1069.5914721)
+\lineto(-379.54532575,1069.75453592)
+\lineto(-379.8150773,1072.42878258)
+\curveto(-379.54370724,1071.57458906)(-379.51066267,1070.33373861)(-378.29772482,1070.24372738)
+\lineto(-375.22930091,1069.29795722)
+\curveto(-375.74735877,1067.95561585)(-377.41563724,1067.43511613)(-378.80350898,1067.47164243)
+\lineto(-379.00582264,1067.01506373)
+\lineto(-379.34301208,1067.01506373)
+\curveto(-381.02761053,1068.22930216)(-381.95420711,1070.23198679)(-382.07424655,1072.20049323)
+\lineto(-383.28812854,1075.07041648)
+\lineto(-383.28812854,1076.11402494)
+\lineto(-383.55788009,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87843138 0.87843138 0.87843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-383.55788009,1077.02718233)
+\lineto(-383.32184748,1076.99456957)
+\lineto(-382.31027916,1074.05942079)
+\lineto(-381.26499189,1072.20049323)
+\curveto(-381.39253043,1071.2026731)(-381.11474028,1070.08979514)(-380.21970463,1069.55885933)
+\curveto(-379.70501867,1068.46267911)(-378.36516271,1068.29439724)(-377.25243755,1068.45002535)
+\curveto(-377.00035473,1068.59104295)(-376.5394842,1068.79780787)(-376.71293445,1069.16750616)
+\lineto(-376.94896706,1069.20011893)
+\curveto(-377.75323131,1068.7457579)(-379.10023569,1068.77276127)(-379.64648258,1069.5914721)
+\lineto(-379.54532575,1069.75453592)
+\lineto(-379.8150773,1072.42878258)
+\curveto(-379.54370724,1071.57458906)(-379.51066267,1070.33373861)(-378.29772482,1070.24372738)
+\lineto(-375.22930091,1069.29795722)
+\curveto(-375.74735877,1067.95561585)(-377.41563724,1067.43511613)(-378.80350898,1067.47164243)
+\lineto(-379.00582264,1067.01506373)
+\lineto(-379.34301208,1067.01506373)
+\curveto(-381.02761053,1068.22930216)(-381.95420711,1070.23198679)(-382.07424655,1072.20049323)
+\lineto(-383.28812854,1075.07041648)
+\lineto(-383.28812854,1076.11402494)
+\lineto(-383.55788009,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-383.01837698,1077.02718233)
+\lineto(-382.10796549,1076.99456957)
+\lineto(-381.83821394,1076.73366745)
+\lineto(-380.69176984,1074.45077396)
+\lineto(-380.55689407,1074.32032291)
+\lineto(-380.21970463,1074.25509738)
+\lineto(-380.48945618,1072.88536128)
+\lineto(-380.9615214,1072.88536128)
+\lineto(-381.90565183,1074.45077396)
+\lineto(-383.01837698,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-383.01837698,1077.02718233)
+\lineto(-382.10796549,1076.99456957)
+\lineto(-381.83821394,1076.73366745)
+\lineto(-380.69176984,1074.45077396)
+\lineto(-380.55689407,1074.32032291)
+\lineto(-380.21970463,1074.25509738)
+\lineto(-380.48945618,1072.88536128)
+\lineto(-380.9615214,1072.88536128)
+\lineto(-381.90565183,1074.45077396)
+\lineto(-383.01837698,1077.02718233)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-407.43089247,1076.89673128)
+\lineto(-407.32973563,1076.86411851)
+\lineto(-406.79023253,1075.49438242)
+\lineto(-407.12742197,1075.49438242)
+\lineto(-407.29601669,1076.11402494)
+\lineto(-407.43089247,1076.89673128)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-407.43089247,1076.89673128)
+\lineto(-407.32973563,1076.86411851)
+\lineto(-406.79023253,1075.49438242)
+\lineto(-407.12742197,1075.49438242)
+\lineto(-407.29601669,1076.11402494)
+\lineto(-407.43089247,1076.89673128)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-453.42353213,1076.24447599)
+\lineto(-451.83874176,1076.21186323)
+\lineto(-451.83874176,1076.1466377)
+\lineto(-453.38981319,1076.1466377)
+\lineto(-453.42353213,1076.24447599)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-453.42353213,1076.24447599)
+\lineto(-451.83874176,1076.21186323)
+\lineto(-451.83874176,1076.1466377)
+\lineto(-453.38981319,1076.1466377)
+\lineto(-453.42353213,1076.24447599)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.53527127,1076.24447599)
+\lineto(-451.43411443,1076.01618664)
+\lineto(-451.53527127,1076.24447599)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.53527127,1076.24447599)
+\lineto(-451.43411443,1076.01618664)
+\lineto(-451.53527127,1076.24447599)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-379.5116068,1076.24447599)
+\lineto(-379.24185525,1075.85312282)
+\lineto(-379.24185525,1073.89635697)
+\lineto(-379.74763941,1073.01581234)
+\lineto(-379.5116068,1074.4181612)
+\lineto(-379.5116068,1076.24447599)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-379.5116068,1076.24447599)
+\lineto(-379.24185525,1075.85312282)
+\lineto(-379.24185525,1073.89635697)
+\lineto(-379.74763941,1073.01581234)
+\lineto(-379.5116068,1074.4181612)
+\lineto(-379.5116068,1076.24447599)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-454.36766257,1076.11402494)
+\lineto(-453.72700263,1076.01618664)
+\lineto(-454.36766257,1076.11402494)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-454.36766257,1076.11402494)
+\lineto(-453.72700263,1076.01618664)
+\lineto(-454.36766257,1076.11402494)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.26551971,1076.11402494)
+\lineto(-450.22023245,1076.08141217)
+\lineto(-450.22023245,1076.01618664)
+\lineto(-451.23180077,1076.01618664)
+\lineto(-451.26551971,1076.11402494)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.26551971,1076.11402494)
+\lineto(-450.22023245,1076.08141217)
+\lineto(-450.22023245,1076.01618664)
+\lineto(-451.23180077,1076.01618664)
+\lineto(-451.26551971,1076.11402494)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-378.70235215,1076.11402494)
+\lineto(-378.33144376,1076.08141217)
+\curveto(-378.37785452,1075.29322689)(-377.74689215,1074.1963944)(-378.56747637,1073.63545486)
+\lineto(-378.6686332,1073.66806762)
+\lineto(-378.80350898,1075.95096111)
+\lineto(-378.70235215,1076.11402494)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.79215688 0.79215688 0.79215688}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-378.70235215,1076.11402494)
+\lineto(-378.33144376,1076.08141217)
+\curveto(-378.37785452,1075.29322689)(-377.74689215,1074.1963944)(-378.56747637,1073.63545486)
+\lineto(-378.6686332,1073.66806762)
+\lineto(-378.80350898,1075.95096111)
+\lineto(-378.70235215,1076.11402494)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.91676195,1075.98357388)
+\curveto(-449.66252111,1076.00179789)(-449.93561759,1075.73767364)(-449.91676195,1075.98357388)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.91676195,1075.98357388)
+\curveto(-449.66252111,1076.00179789)(-449.93561759,1075.73767364)(-449.91676195,1075.98357388)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1075.20086754)
+\curveto(-445.62285674,1075.32216093)(-445.52722982,1074.92535491)(-445.36470451,1074.71167608)
+\lineto(-447.35412221,1074.80951437)
+\lineto(-447.62387376,1074.93996542)
+\curveto(-448.70719599,1074.9858842)(-449.76570108,1074.90743093)(-450.69229767,1074.45077396)
+\lineto(-450.72601661,1075.20086754)
+\lineto(-450.69229767,1075.29870583)
+\lineto(-449.1075073,1075.72267177)
+\lineto(-449.61329146,1075.95096111)
+\curveto(-448.71946969,1076.00779864)(-447.60499115,1076.10711103)(-446.98321382,1075.49438242)
+\lineto(-448.66916102,1075.42915689)
+\lineto(-448.56800419,1075.33131859)
+\lineto(-447.48899798,1075.20086754)
+\lineto(-446.275116,1074.93996542)
+\lineto(-445.90420761,1074.97257819)
+\lineto(-446.00536444,1075.20086754)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03137255 0.03137255 0.03137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1075.20086754)
+\curveto(-445.62285674,1075.32216093)(-445.52722982,1074.92535491)(-445.36470451,1074.71167608)
+\lineto(-447.35412221,1074.80951437)
+\lineto(-447.62387376,1074.93996542)
+\curveto(-448.70719599,1074.9858842)(-449.76570108,1074.90743093)(-450.69229767,1074.45077396)
+\lineto(-450.72601661,1075.20086754)
+\lineto(-450.69229767,1075.29870583)
+\lineto(-449.1075073,1075.72267177)
+\lineto(-449.61329146,1075.95096111)
+\curveto(-448.71946969,1076.00779864)(-447.60499115,1076.10711103)(-446.98321382,1075.49438242)
+\lineto(-448.66916102,1075.42915689)
+\lineto(-448.56800419,1075.33131859)
+\lineto(-447.48899798,1075.20086754)
+\lineto(-446.275116,1074.93996542)
+\lineto(-445.90420761,1074.97257819)
+\lineto(-446.00536444,1075.20086754)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-414.44443283,1075.85312282)
+\lineto(-414.20840022,1075.690059)
+\lineto(-413.50030239,1074.15725908)
+\lineto(-413.66889711,1073.92896974)
+\lineto(-413.736335,1073.92896974)
+\lineto(-414.20840022,1075.16825477)
+\lineto(-414.44443283,1075.85312282)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-414.44443283,1075.85312282)
+\lineto(-414.20840022,1075.690059)
+\lineto(-413.50030239,1074.15725908)
+\lineto(-413.66889711,1073.92896974)
+\lineto(-413.736335,1073.92896974)
+\lineto(-414.20840022,1075.16825477)
+\lineto(-414.44443283,1075.85312282)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1075.20086754)
+\lineto(-446.64602438,1075.36393136)
+\lineto(-446.64602438,1075.42915689)
+\lineto(-446.00536444,1075.20086754)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1075.20086754)
+\lineto(-446.64602438,1075.36393136)
+\lineto(-446.64602438,1075.42915689)
+\lineto(-446.00536444,1075.20086754)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9254902 0.9254902 0.9254902}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-334.8677249,1075.46176965)
+\curveto(-334.40658462,1075.62248535)(-334.36032223,1075.23139309)(-334.05847024,1075.07041648)
+\curveto(-333.1294459,1075.11775717)(-332.00700969,1075.75254506)(-331.22607894,1075.07041648)
+\lineto(-330.45054323,1074.90735266)
+\lineto(-330.51798112,1074.58122502)
+\lineto(-330.11335379,1074.32032291)
+\curveto(-328.85334429,1073.98806406)(-327.4819274,1073.69076611)(-326.40426994,1073.01581234)
+\lineto(-330.01219696,1073.63545486)
+\lineto(-330.28194851,1073.76590591)
+\lineto(-330.78773267,1073.60284209)
+\lineto(-331.09120317,1073.24410169)
+\lineto(-332.40624198,1073.21148892)
+\lineto(-330.99004633,1072.42878258)
+\lineto(-331.09120317,1072.33094429)
+\lineto(-333.48524819,1072.55923364)
+\lineto(-333.55268608,1072.233106)
+\curveto(-334.51367599,1071.72369462)(-333.21509201,1071.56415298)(-332.8783072,1071.3199486)
+\lineto(-334.49681651,1070.79814437)
+\curveto(-334.78801331,1070.77538066)(-334.8938908,1070.51806595)(-334.90144384,1070.27634015)
+\lineto(-335.94673111,1069.98282527)
+\lineto(-335.57582272,1069.68931039)
+\curveto(-335.69008948,1068.64544104)(-334.02879757,1069.92934034)(-334.36194074,1068.84137852)
+\lineto(-335.54210378,1068.54786365)
+\lineto(-334.19334602,1068.41741259)
+\lineto(-334.09218919,1068.3195743)
+\curveto(-334.75159685,1068.44938614)(-334.65192366,1067.8014227)(-334.22706496,1067.66731901)
+\curveto(-334.73150036,1067.67524913)(-335.39009878,1067.9746617)(-335.81185533,1067.50425519)
+\curveto(-336.13825471,1067.50759474)(-336.57471272,1067.99214214)(-336.65482893,1067.4064169)
+\curveto(-337.22751148,1067.49487576)(-337.16951489,1067.1044227)(-337.05945626,1066.75416162)
+\curveto(-337.65790008,1066.75542308)(-337.76350781,1066.2648397)(-337.32920781,1065.97145528)
+\curveto(-338.12389589,1065.99175346)(-337.5096716,1065.44221534)(-337.59895937,1065.05829788)
+\lineto(-337.86871092,1065.25397446)
+\curveto(-338.32216328,1066.17626343)(-339.52228793,1064.75134654)(-338.40821402,1064.73217024)
+\lineto(-338.2396193,1064.37342983)
+\lineto(-338.37449508,1064.24297877)
+\curveto(-338.68403498,1064.22637235)(-339.02958672,1064.49044443)(-339.0825929,1064.01468942)
+\lineto(-339.58837706,1063.32982138)
+\lineto(-340.90341588,1064.40604259)
+\lineto(-340.90341588,1064.73217024)
+\lineto(-339.28490657,1066.29758292)
+\curveto(-336.82072614,1068.5178599)(-336.02765657,1071.69695215)(-335.77813639,1074.7769016)
+\lineto(-334.8677249,1075.46176965)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9254902 0.9254902 0.9254902}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.8677249,1075.46176965)
+\curveto(-334.40658462,1075.62248535)(-334.36032223,1075.23139309)(-334.05847024,1075.07041648)
+\curveto(-333.1294459,1075.11775717)(-332.00700969,1075.75254506)(-331.22607894,1075.07041648)
+\lineto(-330.45054323,1074.90735266)
+\lineto(-330.51798112,1074.58122502)
+\lineto(-330.11335379,1074.32032291)
+\curveto(-328.85334429,1073.98806406)(-327.4819274,1073.69076611)(-326.40426994,1073.01581234)
+\lineto(-330.01219696,1073.63545486)
+\lineto(-330.28194851,1073.76590591)
+\lineto(-330.78773267,1073.60284209)
+\lineto(-331.09120317,1073.24410169)
+\lineto(-332.40624198,1073.21148892)
+\lineto(-330.99004633,1072.42878258)
+\lineto(-331.09120317,1072.33094429)
+\lineto(-333.48524819,1072.55923364)
+\lineto(-333.55268608,1072.233106)
+\curveto(-334.51367599,1071.72369462)(-333.21509201,1071.56415298)(-332.8783072,1071.3199486)
+\lineto(-334.49681651,1070.79814437)
+\curveto(-334.78801331,1070.77538066)(-334.8938908,1070.51806595)(-334.90144384,1070.27634015)
+\lineto(-335.94673111,1069.98282527)
+\lineto(-335.57582272,1069.68931039)
+\curveto(-335.69008948,1068.64544104)(-334.02879757,1069.92934034)(-334.36194074,1068.84137852)
+\lineto(-335.54210378,1068.54786365)
+\lineto(-334.19334602,1068.41741259)
+\lineto(-334.09218919,1068.3195743)
+\curveto(-334.75159685,1068.44938614)(-334.65192366,1067.8014227)(-334.22706496,1067.66731901)
+\curveto(-334.73150036,1067.67524913)(-335.39009878,1067.9746617)(-335.81185533,1067.50425519)
+\curveto(-336.13825471,1067.50759474)(-336.57471272,1067.99214214)(-336.65482893,1067.4064169)
+\curveto(-337.22751148,1067.49487576)(-337.16951489,1067.1044227)(-337.05945626,1066.75416162)
+\curveto(-337.65790008,1066.75542308)(-337.76350781,1066.2648397)(-337.32920781,1065.97145528)
+\curveto(-338.12389589,1065.99175346)(-337.5096716,1065.44221534)(-337.59895937,1065.05829788)
+\lineto(-337.86871092,1065.25397446)
+\curveto(-338.32216328,1066.17626343)(-339.52228793,1064.75134654)(-338.40821402,1064.73217024)
+\lineto(-338.2396193,1064.37342983)
+\lineto(-338.37449508,1064.24297877)
+\curveto(-338.68403498,1064.22637235)(-339.02958672,1064.49044443)(-339.0825929,1064.01468942)
+\lineto(-339.58837706,1063.32982138)
+\lineto(-340.90341588,1064.40604259)
+\lineto(-340.90341588,1064.73217024)
+\lineto(-339.28490657,1066.29758292)
+\curveto(-336.82072614,1068.5178599)(-336.02765657,1071.69695215)(-335.77813639,1074.7769016)
+\lineto(-334.8677249,1075.46176965)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.67014704,1075.33131859)
+\curveto(-451.26079906,1075.22941023)(-451.86989807,1074.86873915)(-451.90617965,1075.16825477)
+\lineto(-451.80502282,1075.20086754)
+\lineto(-451.67014704,1075.33131859)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.67014704,1075.33131859)
+\curveto(-451.26079906,1075.22941023)(-451.86989807,1074.86873915)(-451.90617965,1075.16825477)
+\lineto(-451.80502282,1075.20086754)
+\lineto(-451.67014704,1075.33131859)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.13064394,1075.33131859)
+\lineto(-450.89461133,1075.10302925)
+\lineto(-451.13064394,1075.33131859)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.13064394,1075.33131859)
+\lineto(-450.89461133,1075.10302925)
+\lineto(-451.13064394,1075.33131859)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90196079 0.90196079 0.90196079}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-377.62334594,1075.33131859)
+\lineto(-376.57805867,1075.03780372)
+\lineto(-376.37574501,1074.58122502)
+\lineto(-376.03855557,1074.51599949)
+\lineto(-375.49905246,1073.79851868)
+\lineto(-375.8362419,1073.86374421)
+\curveto(-376.35902041,1073.19205172)(-377.10960411,1072.76560721)(-377.99425432,1073.01581234)
+\lineto(-378.02797327,1073.37455274)
+\lineto(-377.75822171,1074.02680803)
+\lineto(-377.62334594,1075.33131859)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90196079 0.90196079 0.90196079}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-377.62334594,1075.33131859)
+\lineto(-376.57805867,1075.03780372)
+\lineto(-376.37574501,1074.58122502)
+\lineto(-376.03855557,1074.51599949)
+\lineto(-375.49905246,1073.79851868)
+\lineto(-375.8362419,1073.86374421)
+\curveto(-376.35902041,1073.19205172)(-377.10960411,1072.76560721)(-377.99425432,1073.01581234)
+\lineto(-378.02797327,1073.37455274)
+\lineto(-377.75822171,1074.02680803)
+\lineto(-377.62334594,1075.33131859)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-371.14930868,1074.93996542)
+\curveto(-370.95387368,1074.99440265)(-370.66213738,1074.78172829)(-370.7784003,1074.58122502)
+\lineto(-371.14930868,1074.93996542)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-371.14930868,1074.93996542)
+\curveto(-370.95387368,1074.99440265)(-370.66213738,1074.78172829)(-370.7784003,1074.58122502)
+\lineto(-371.14930868,1074.93996542)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-448.83775574,1074.54861225)
+\lineto(-447.08437065,1074.54861225)
+\lineto(-445.76933184,1074.38554843)
+\lineto(-445.90420761,1073.92896974)
+\lineto(-446.44371072,1073.99419526)
+\lineto(-448.33197158,1073.79851868)
+\lineto(-449.24238307,1073.89635697)
+\lineto(-452.07477437,1073.76590591)
+\lineto(-452.31080698,1073.66806762)
+\lineto(-452.34452592,1073.76590591)
+\lineto(-452.31080698,1073.86374421)
+\lineto(-450.72601661,1073.89635697)
+\lineto(-449.37725885,1074.02680803)
+\lineto(-448.19709581,1074.18987185)
+\lineto(-448.83775574,1074.54861225)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.03529412 0.03529412 0.03529412}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-448.83775574,1074.54861225)
+\lineto(-447.08437065,1074.54861225)
+\lineto(-445.76933184,1074.38554843)
+\lineto(-445.90420761,1073.92896974)
+\lineto(-446.44371072,1073.99419526)
+\lineto(-448.33197158,1073.79851868)
+\lineto(-449.24238307,1073.89635697)
+\lineto(-452.07477437,1073.76590591)
+\lineto(-452.31080698,1073.66806762)
+\lineto(-452.34452592,1073.76590591)
+\lineto(-452.31080698,1073.86374421)
+\lineto(-450.72601661,1073.89635697)
+\lineto(-449.37725885,1074.02680803)
+\lineto(-448.19709581,1074.18987185)
+\lineto(-448.83775574,1074.54861225)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.24238307,1074.4181612)
+\curveto(-448.98814223,1074.43638521)(-449.26123871,1074.17226096)(-449.24238307,1074.4181612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.24238307,1074.4181612)
+\curveto(-448.98814223,1074.43638521)(-449.26123871,1074.17226096)(-449.24238307,1074.4181612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-374.52120309,1074.4181612)
+\lineto(-374.35260837,1074.18987185)
+\curveto(-373.7505229,1074.11662358)(-374.14665306,1073.5980154)(-374.08285681,1073.27671445)
+\curveto(-373.89983038,1072.94719508)(-373.66555116,1073.25967754)(-373.47591582,1073.34193998)
+\lineto(-373.40847793,1072.49400811)
+\lineto(-372.80153694,1072.29833153)
+\lineto(-372.90269377,1071.67868901)
+\curveto(-372.81270465,1071.0550025)(-373.58867197,1070.85332517)(-374.08285681,1070.8633699)
+\curveto(-374.77598343,1070.47684342)(-375.80926675,1070.07035793)(-376.51062078,1070.66769332)
+\lineto(-376.51062078,1070.73291885)
+\curveto(-375.50768451,1070.97294879)(-375.02428973,1071.88884566)(-374.65607886,1072.72229746)
+\lineto(-374.65607886,1073.37455274)
+\lineto(-374.52120309,1074.4181612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-374.52120309,1074.4181612)
+\lineto(-374.35260837,1074.18987185)
+\curveto(-373.7505229,1074.11662358)(-374.14665306,1073.5980154)(-374.08285681,1073.27671445)
+\curveto(-373.89983038,1072.94719508)(-373.66555116,1073.25967754)(-373.47591582,1073.34193998)
+\lineto(-373.40847793,1072.49400811)
+\lineto(-372.80153694,1072.29833153)
+\lineto(-372.90269377,1071.67868901)
+\curveto(-372.81270465,1071.0550025)(-373.58867197,1070.85332517)(-374.08285681,1070.8633699)
+\curveto(-374.77598343,1070.47684342)(-375.80926675,1070.07035793)(-376.51062078,1070.66769332)
+\lineto(-376.51062078,1070.73291885)
+\curveto(-375.50768451,1070.97294879)(-375.02428973,1071.88884566)(-374.65607886,1072.72229746)
+\lineto(-374.65607886,1073.37455274)
+\lineto(-374.52120309,1074.4181612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-361.4382528,1074.15725908)
+\lineto(-361.87659907,1072.49400811)
+\lineto(-361.94403696,1072.49400811)
+\lineto(-361.53940963,1074.12464632)
+\lineto(-361.4382528,1074.15725908)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.68627453 0.68627453 0.68627453}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-361.4382528,1074.15725908)
+\lineto(-361.87659907,1072.49400811)
+\lineto(-361.94403696,1072.49400811)
+\lineto(-361.53940963,1074.12464632)
+\lineto(-361.4382528,1074.15725908)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-453.0189048,1073.76590591)
+\lineto(-452.51312064,1073.66806762)
+\lineto(-453.0189048,1073.76590591)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-453.0189048,1073.76590591)
+\lineto(-452.51312064,1073.66806762)
+\lineto(-453.0189048,1073.76590591)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.21924643,1073.37455274)
+\lineto(-446.44371072,1073.34193998)
+\lineto(-446.44371072,1073.27671445)
+\lineto(-446.8146191,1073.24410169)
+\lineto(-448.8040368,1073.08103787)
+\lineto(-448.93891258,1072.88536128)
+\lineto(-448.56800419,1072.85274852)
+\lineto(-447.08437065,1072.98319957)
+\lineto(-446.94949488,1072.85274852)
+\lineto(-447.08437065,1072.72229746)
+\lineto(-451.23180077,1072.75491022)
+\lineto(-451.23180077,1072.82013575)
+\lineto(-449.51213462,1072.85274852)
+\lineto(-449.41097779,1072.88536128)
+\lineto(-449.47841568,1073.08103787)
+\lineto(-449.3435399,1073.21148892)
+\lineto(-449.14122624,1073.14626339)
+\lineto(-447.25296537,1073.27671445)
+\lineto(-447.21924643,1073.37455274)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.21924643,1073.37455274)
+\lineto(-446.44371072,1073.34193998)
+\lineto(-446.44371072,1073.27671445)
+\lineto(-446.8146191,1073.24410169)
+\lineto(-448.8040368,1073.08103787)
+\lineto(-448.93891258,1072.88536128)
+\lineto(-448.56800419,1072.85274852)
+\lineto(-447.08437065,1072.98319957)
+\lineto(-446.94949488,1072.85274852)
+\lineto(-447.08437065,1072.72229746)
+\lineto(-451.23180077,1072.75491022)
+\lineto(-451.23180077,1072.82013575)
+\lineto(-449.51213462,1072.85274852)
+\lineto(-449.41097779,1072.88536128)
+\lineto(-449.47841568,1073.08103787)
+\lineto(-449.3435399,1073.21148892)
+\lineto(-449.14122624,1073.14626339)
+\lineto(-447.25296537,1073.27671445)
+\lineto(-447.21924643,1073.37455274)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-365.88915341,1073.11365063)
+\lineto(-365.78799658,1072.88536128)
+\curveto(-366.04129329,1072.76893371)(-365.99772841,1072.99089619)(-365.88915341,1073.11365063)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-365.88915341,1073.11365063)
+\lineto(-365.78799658,1072.88536128)
+\curveto(-366.04129329,1072.76893371)(-365.99772841,1072.99089619)(-365.88915341,1073.11365063)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.67974332,1072.98319957)
+\lineto(-446.03908339,1072.88536128)
+\lineto(-446.67974332,1072.98319957)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.67974332,1072.98319957)
+\lineto(-446.03908339,1072.88536128)
+\lineto(-446.67974332,1072.98319957)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.93989859,1072.85274852)
+\lineto(-451.83874176,1072.62445917)
+\lineto(-454.90716567,1072.5918464)
+\lineto(-455.0083225,1072.6896847)
+\lineto(-452.07477437,1072.72229746)
+\lineto(-451.93989859,1072.85274852)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.93989859,1072.85274852)
+\lineto(-451.83874176,1072.62445917)
+\lineto(-454.90716567,1072.5918464)
+\lineto(-455.0083225,1072.6896847)
+\lineto(-452.07477437,1072.72229746)
+\lineto(-451.93989859,1072.85274852)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.67014704,1072.85274852)
+\lineto(-451.56899021,1072.62445917)
+\lineto(-451.67014704,1072.85274852)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.67014704,1072.85274852)
+\lineto(-451.56899021,1072.62445917)
+\lineto(-451.67014704,1072.85274852)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-383.96250742,1072.85274852)
+\lineto(-383.82763164,1072.72229746)
+\lineto(-383.69275586,1072.07004218)
+\lineto(-383.11953382,1068.97182958)
+\lineto(-382.91722015,1068.77615299)
+\curveto(-382.78987044,1067.92704707)(-382.2309722,1067.20291325)(-381.77077605,1066.4932595)
+\lineto(-380.89408351,1065.84100422)
+\lineto(-382.31027916,1066.10190633)
+\lineto(-382.6474686,1066.55848503)
+\lineto(-383.11953382,1067.01506373)
+\lineto(-383.32184748,1067.60209348)
+\lineto(-384.36713474,1070.76553161)
+\lineto(-384.36713474,1072.20049323)
+\lineto(-383.96250742,1072.85274852)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-383.96250742,1072.85274852)
+\lineto(-383.82763164,1072.72229746)
+\lineto(-383.69275586,1072.07004218)
+\lineto(-383.11953382,1068.97182958)
+\lineto(-382.91722015,1068.77615299)
+\curveto(-382.78987044,1067.92704707)(-382.2309722,1067.20291325)(-381.77077605,1066.4932595)
+\lineto(-380.89408351,1065.84100422)
+\lineto(-382.31027916,1066.10190633)
+\lineto(-382.6474686,1066.55848503)
+\lineto(-383.11953382,1067.01506373)
+\lineto(-383.32184748,1067.60209348)
+\lineto(-384.36713474,1070.76553161)
+\lineto(-384.36713474,1072.20049323)
+\lineto(-383.96250742,1072.85274852)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-455.8512961,1072.72229746)
+\lineto(-455.61526349,1072.49400811)
+\lineto(-455.8512961,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-455.8512961,1072.72229746)
+\lineto(-455.61526349,1072.49400811)
+\lineto(-455.8512961,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-455.44666877,1072.72229746)
+\lineto(-455.34551194,1072.49400811)
+\lineto(-455.44666877,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-455.44666877,1072.72229746)
+\lineto(-455.34551194,1072.49400811)
+\lineto(-455.44666877,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78039217 0.78039217 0.78039217}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-390.03191734,1072.72229746)
+\lineto(-389.25638163,1072.16788047)
+\lineto(-389.52613318,1071.71130177)
+\curveto(-389.77376511,1071.8160931)(-390.12673501,1071.78328466)(-390.06563629,1072.16788047)
+\lineto(-390.5377015,1072.29833153)
+\lineto(-390.03191734,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78039217 0.78039217 0.78039217}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-390.03191734,1072.72229746)
+\lineto(-389.25638163,1072.16788047)
+\lineto(-389.52613318,1071.71130177)
+\curveto(-389.77376511,1071.8160931)(-390.12673501,1071.78328466)(-390.06563629,1072.16788047)
+\lineto(-390.5377015,1072.29833153)
+\lineto(-390.03191734,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-385.31126518,1072.72229746)
+\lineto(-385.04151363,1072.5918464)
+\lineto(-385.1763894,1071.41778689)
+\lineto(-383.86135058,1067.47164243)
+\lineto(-383.86135058,1067.27596584)
+\curveto(-384.90555884,1068.18951459)(-385.49739375,1069.57190444)(-385.71589251,1070.89598267)
+\lineto(-385.85076828,1071.15688478)
+\lineto(-385.85076828,1072.07004218)
+\lineto(-385.81704934,1072.16788047)
+\curveto(-385.47837626,1072.13157594)(-385.32219012,1072.43791416)(-385.31126518,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-385.31126518,1072.72229746)
+\lineto(-385.04151363,1072.5918464)
+\lineto(-385.1763894,1071.41778689)
+\lineto(-383.86135058,1067.47164243)
+\lineto(-383.86135058,1067.27596584)
+\curveto(-384.90555884,1068.18951459)(-385.49739375,1069.57190444)(-385.71589251,1070.89598267)
+\lineto(-385.85076828,1071.15688478)
+\lineto(-385.85076828,1072.07004218)
+\lineto(-385.81704934,1072.16788047)
+\curveto(-385.47837626,1072.13157594)(-385.32219012,1072.43791416)(-385.31126518,1072.72229746)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-456.66055076,1072.5918464)
+\lineto(-456.01989082,1072.49400811)
+\lineto(-456.66055076,1072.5918464)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05490196 0.05490196 0.05490196}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-456.66055076,1072.5918464)
+\lineto(-456.01989082,1072.49400811)
+\lineto(-456.66055076,1072.5918464)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.8392157 0.8392157 0.8392157}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-378.56747637,1072.5918464)
+\lineto(-377.79194066,1072.29833153)
+\curveto(-377.60486796,1071.66681796)(-376.5779238,1071.89210694)(-376.24086923,1072.29833153)
+\lineto(-375.86996085,1072.46139535)
+\lineto(-375.63392824,1072.42878258)
+\lineto(-376.03855557,1071.71130177)
+\curveto(-376.15770483,1071.46566243)(-376.32813386,1071.18245319)(-376.6792155,1071.28733584)
+\curveto(-377.29182128,1070.93707475)(-378.37730153,1071.31615247)(-378.46631954,1072.03742941)
+\lineto(-378.56747637,1072.5918464)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.8392157 0.8392157 0.8392157}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-378.56747637,1072.5918464)
+\lineto(-377.79194066,1072.29833153)
+\curveto(-377.60486796,1071.66681796)(-376.5779238,1071.89210694)(-376.24086923,1072.29833153)
+\lineto(-375.86996085,1072.46139535)
+\lineto(-375.63392824,1072.42878258)
+\lineto(-376.03855557,1071.71130177)
+\curveto(-376.15770483,1071.46566243)(-376.32813386,1071.18245319)(-376.6792155,1071.28733584)
+\curveto(-377.29182128,1070.93707475)(-378.37730153,1071.31615247)(-378.46631954,1072.03742941)
+\lineto(-378.56747637,1072.5918464)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.48899798,1072.20049323)
+\lineto(-446.94949488,1072.20049323)
+\lineto(-446.71346227,1072.10265494)
+\lineto(-447.48899798,1071.93959112)
+\lineto(-448.12965792,1071.84175283)
+\lineto(-447.48899798,1072.20049323)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.48899798,1072.20049323)
+\lineto(-446.94949488,1072.20049323)
+\lineto(-446.71346227,1072.10265494)
+\lineto(-447.48899798,1071.93959112)
+\lineto(-448.12965792,1071.84175283)
+\lineto(-447.48899798,1072.20049323)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-414.71418438,1072.20049323)
+\lineto(-414.34327599,1071.45039966)
+\lineto(-414.5793086,1071.67868901)
+\lineto(-414.71418438,1072.20049323)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-414.71418438,1072.20049323)
+\lineto(-414.34327599,1071.45039966)
+\lineto(-414.5793086,1071.67868901)
+\lineto(-414.71418438,1072.20049323)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.65882355 0.65882355 0.65882355}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-371.14930868,1072.07004218)
+\lineto(-370.74468135,1071.93959112)
+\lineto(-370.91327607,1071.58085071)
+\curveto(-371.24318222,1071.43578914)(-371.1352816,1071.9004558)(-371.14930868,1072.07004218)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.65882355 0.65882355 0.65882355}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-371.14930868,1072.07004218)
+\lineto(-370.74468135,1071.93959112)
+\lineto(-370.91327607,1071.58085071)
+\curveto(-371.24318222,1071.43578914)(-371.1352816,1071.9004558)(-371.14930868,1072.07004218)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.37725885,1071.93959112)
+\lineto(-448.33197158,1071.90697836)
+\lineto(-448.33197158,1071.84175283)
+\lineto(-449.3435399,1071.84175283)
+\lineto(-449.37725885,1071.93959112)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.37725885,1071.93959112)
+\lineto(-448.33197158,1071.90697836)
+\lineto(-448.33197158,1071.84175283)
+\lineto(-449.3435399,1071.84175283)
+\lineto(-449.37725885,1071.93959112)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-332.5748367,1071.93959112)
+\lineto(-331.90045782,1071.80914006)
+\lineto(-330.85517056,1071.51562519)
+\lineto(-330.85517056,1071.45039966)
+\curveto(-331.0626095,1071.12988141)(-331.43999192,1071.36559343)(-331.66442521,1071.51562519)
+\lineto(-332.54111776,1071.84175283)
+\lineto(-332.5748367,1071.93959112)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-332.5748367,1071.93959112)
+\lineto(-331.90045782,1071.80914006)
+\lineto(-330.85517056,1071.51562519)
+\lineto(-330.85517056,1071.45039966)
+\curveto(-331.0626095,1071.12988141)(-331.43999192,1071.36559343)(-331.66442521,1071.51562519)
+\lineto(-332.54111776,1071.84175283)
+\lineto(-332.5748367,1071.93959112)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.80502282,1071.54823795)
+\lineto(-451.67014704,1071.67868901)
+\lineto(-450.59114083,1071.80914006)
+\lineto(-449.54585357,1071.7765273)
+\lineto(-449.6470104,1071.67868901)
+\lineto(-450.72601661,1071.54823795)
+\lineto(-451.80502282,1071.54823795)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.80502282,1071.54823795)
+\lineto(-451.67014704,1071.67868901)
+\lineto(-450.59114083,1071.80914006)
+\lineto(-449.54585357,1071.7765273)
+\lineto(-449.6470104,1071.67868901)
+\lineto(-450.72601661,1071.54823795)
+\lineto(-451.80502282,1071.54823795)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1071.80914006)
+\lineto(-445.49958028,1071.71130177)
+\lineto(-446.00536444,1071.80914006)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1071.80914006)
+\lineto(-445.49958028,1071.71130177)
+\lineto(-446.00536444,1071.80914006)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-447.48899798,1071.67868901)
+\lineto(-447.38784115,1071.45039966)
+\lineto(-448.43312841,1071.41778689)
+\lineto(-449.07378835,1071.3199486)
+\lineto(-449.07378835,1071.38517413)
+\lineto(-448.83775574,1071.41778689)
+\lineto(-447.52271693,1071.58085071)
+\lineto(-447.48899798,1071.67868901)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-447.48899798,1071.67868901)
+\lineto(-447.38784115,1071.45039966)
+\lineto(-448.43312841,1071.41778689)
+\lineto(-449.07378835,1071.3199486)
+\lineto(-449.07378835,1071.38517413)
+\lineto(-448.83775574,1071.41778689)
+\lineto(-447.52271693,1071.58085071)
+\lineto(-447.48899798,1071.67868901)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.8146191,1071.67868901)
+\lineto(-446.30883494,1071.58085071)
+\lineto(-446.8146191,1071.67868901)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.04705882 0.04705882 0.04705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.8146191,1071.67868901)
+\lineto(-446.30883494,1071.58085071)
+\lineto(-446.8146191,1071.67868901)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-418.89533344,1070.11327633)
+\lineto(-418.99649027,1070.14588909)
+\lineto(-419.46855549,1070.99382096)
+\lineto(-419.67086915,1071.64607624)
+\lineto(-419.60343126,1071.64607624)
+\lineto(-418.89533344,1070.11327633)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-418.89533344,1070.11327633)
+\lineto(-418.99649027,1070.14588909)
+\lineto(-419.46855549,1070.99382096)
+\lineto(-419.67086915,1071.64607624)
+\lineto(-419.60343126,1071.64607624)
+\lineto(-418.89533344,1070.11327633)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-398.52909124,1071.67868901)
+\curveto(-398.2748504,1071.69691302)(-398.54793339,1071.43278876)(-398.52909124,1071.67868901)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-398.52909124,1071.67868901)
+\curveto(-398.2748504,1071.69691302)(-398.54793339,1071.43278876)(-398.52909124,1071.67868901)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.80502282,1071.54823795)
+\lineto(-452.04105543,1071.45039966)
+\lineto(-451.80502282,1071.54823795)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.80502282,1071.54823795)
+\lineto(-452.04105543,1071.45039966)
+\lineto(-451.80502282,1071.54823795)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-449.37725885,1071.41778689)
+\lineto(-449.27610202,1071.38517413)
+\lineto(-450.22023245,1071.05904649)
+\lineto(-450.28767034,1071.05904649)
+\curveto(-450.43724757,1071.31081703)(-450.0734876,1071.30872981)(-449.91676195,1071.28733584)
+\lineto(-449.37725885,1071.41778689)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-449.37725885,1071.41778689)
+\lineto(-449.27610202,1071.38517413)
+\lineto(-450.22023245,1071.05904649)
+\lineto(-450.28767034,1071.05904649)
+\curveto(-450.43724757,1071.31081703)(-450.0734876,1071.30872981)(-449.91676195,1071.28733584)
+\lineto(-449.37725885,1071.41778689)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-455.98617188,1071.15688478)
+\lineto(-453.45725108,1071.12427202)
+\lineto(-453.55840791,1071.02643372)
+\lineto(-455.8512961,1071.02643372)
+\lineto(-455.98617188,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-455.98617188,1071.15688478)
+\lineto(-453.45725108,1071.12427202)
+\lineto(-453.55840791,1071.02643372)
+\lineto(-455.8512961,1071.02643372)
+\lineto(-455.98617188,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-452.88402903,1071.15688478)
+\lineto(-452.7828722,1070.92859543)
+\lineto(-452.88402903,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-452.88402903,1071.15688478)
+\lineto(-452.7828722,1070.92859543)
+\lineto(-452.88402903,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-452.61427748,1071.15688478)
+\lineto(-452.51312064,1070.92859543)
+\lineto(-452.61427748,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-452.61427748,1071.15688478)
+\lineto(-452.51312064,1070.92859543)
+\lineto(-452.61427748,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-452.20965015,1071.15688478)
+\curveto(-451.95540931,1071.17510879)(-452.22850578,1070.91098454)(-452.20965015,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07843138 0.07843138 0.07843138}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-452.20965015,1071.15688478)
+\curveto(-451.95540931,1071.17510879)(-452.22850578,1070.91098454)(-452.20965015,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-451.93989859,1071.15688478)
+\lineto(-450.75973555,1071.12427202)
+\lineto(-450.75973555,1071.05904649)
+\lineto(-451.90617965,1070.92859543)
+\lineto(-451.93989859,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05098039 0.05098039 0.05098039}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-451.93989859,1071.15688478)
+\lineto(-450.75973555,1071.12427202)
+\lineto(-450.75973555,1071.05904649)
+\lineto(-451.90617965,1070.92859543)
+\lineto(-451.93989859,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-366.69840807,1071.15688478)
+\lineto(-366.32749968,1071.12427202)
+\lineto(-366.29378074,1071.02643372)
+\curveto(-366.60817617,1070.26068602)(-367.29793089,1069.73783818)(-367.946009,1069.23273169)
+\lineto(-368.28319844,1069.16750616)
+\lineto(-368.55294999,1068.97182958)
+\lineto(-368.68782577,1069.42840828)
+\curveto(-367.91215518,1069.68187468)(-367.4426526,1070.42870698)(-366.93444068,1070.99382096)
+\lineto(-366.73212701,1071.05904649)
+\lineto(-366.69840807,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-366.69840807,1071.15688478)
+\lineto(-366.32749968,1071.12427202)
+\lineto(-366.29378074,1071.02643372)
+\curveto(-366.60817617,1070.26068602)(-367.29793089,1069.73783818)(-367.946009,1069.23273169)
+\lineto(-368.28319844,1069.16750616)
+\lineto(-368.55294999,1068.97182958)
+\lineto(-368.68782577,1069.42840828)
+\curveto(-367.91215518,1069.68187468)(-367.4426526,1070.42870698)(-366.93444068,1070.99382096)
+\lineto(-366.73212701,1071.05904649)
+\lineto(-366.69840807,1071.15688478)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-370.34005403,1070.63508055)
+\lineto(-370.23889719,1070.27634015)
+\curveto(-370.46589312,1070.28448551)(-370.46980452,1070.50710807)(-370.34005403,1070.63508055)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-370.34005403,1070.63508055)
+\lineto(-370.23889719,1070.27634015)
+\curveto(-370.46589312,1070.28448551)(-370.46980452,1070.50710807)(-370.34005403,1070.63508055)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-406.89138936,1070.37417844)
+\lineto(-406.79023253,1070.01543803)
+\lineto(-406.89138936,1070.37417844)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-406.89138936,1070.37417844)
+\lineto(-406.79023253,1070.01543803)
+\lineto(-406.89138936,1070.37417844)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-372.90269377,1070.37417844)
+\lineto(-372.53178539,1070.34156568)
+\lineto(-372.93641272,1069.23273169)
+\lineto(-373.40847793,1068.97182958)
+\lineto(-373.57707265,1069.20011893)
+\lineto(-374.08285681,1069.23273169)
+\curveto(-374.17330451,1069.48228456)(-373.82942523,1069.69831151)(-373.6107916,1069.75453592)
+\lineto(-372.90269377,1070.37417844)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-372.90269377,1070.37417844)
+\lineto(-372.53178539,1070.34156568)
+\lineto(-372.93641272,1069.23273169)
+\lineto(-373.40847793,1068.97182958)
+\lineto(-373.57707265,1069.20011893)
+\lineto(-374.08285681,1069.23273169)
+\curveto(-374.17330451,1069.48228456)(-373.82942523,1069.69831151)(-373.6107916,1069.75453592)
+\lineto(-372.90269377,1070.37417844)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-357.79660684,1070.37417844)
+\lineto(-357.69545001,1070.14588909)
+\lineto(-357.79660684,1070.37417844)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67058825 0.67058825 0.67058825}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-357.79660684,1070.37417844)
+\lineto(-357.69545001,1070.14588909)
+\lineto(-357.79660684,1070.37417844)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.914526,1070.24372738)
+\curveto(-408.56843476,1070.16878325)(-408.6138879,1069.7463175)(-408.6784934,1069.49363381)
+\lineto(-408.74593128,1069.49363381)
+\lineto(-408.914526,1070.24372738)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.914526,1070.24372738)
+\curveto(-408.56843476,1070.16878325)(-408.6138879,1069.7463175)(-408.6784934,1069.49363381)
+\lineto(-408.74593128,1069.49363381)
+\lineto(-408.914526,1070.24372738)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-418.76045766,1069.85237421)
+\lineto(-418.89533344,1070.11327633)
+\lineto(-418.76045766,1069.85237421)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-418.76045766,1069.85237421)
+\lineto(-418.89533344,1070.11327633)
+\lineto(-418.76045766,1069.85237421)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-413.77005394,1070.11327633)
+\lineto(-413.66889711,1070.08066356)
+\lineto(-413.39914556,1069.23273169)
+\lineto(-413.63517817,1069.5914721)
+\lineto(-413.77005394,1070.11327633)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-413.77005394,1070.11327633)
+\lineto(-413.66889711,1070.08066356)
+\lineto(-413.39914556,1069.23273169)
+\lineto(-413.63517817,1069.5914721)
+\lineto(-413.77005394,1070.11327633)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-412.55617196,1070.11327633)
+\curveto(-412.17096674,1070.17277505)(-411.65709004,1070.11637715)(-411.71319836,1069.62408486)
+\lineto(-411.10625737,1068.45002535)
+\curveto(-411.28415851,1068.34450349)(-411.56685814,1068.43910921)(-411.47716575,1068.6783147)
+\lineto(-411.64576047,1069.29795722)
+\lineto(-412.38757724,1069.36318275)
+\lineto(-412.55617196,1070.11327633)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-412.55617196,1070.11327633)
+\curveto(-412.17096674,1070.17277505)(-411.65709004,1070.11637715)(-411.71319836,1069.62408486)
+\lineto(-411.10625737,1068.45002535)
+\curveto(-411.28415851,1068.34450349)(-411.56685814,1068.43910921)(-411.47716575,1068.6783147)
+\lineto(-411.64576047,1069.29795722)
+\lineto(-412.38757724,1069.36318275)
+\lineto(-412.55617196,1070.11327633)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-418.76045766,1069.85237421)
+\lineto(-418.65930083,1069.62408486)
+\lineto(-418.76045766,1069.85237421)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-418.76045766,1069.85237421)
+\lineto(-418.65930083,1069.62408486)
+\lineto(-418.76045766,1069.85237421)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-354.42471244,1069.72192316)
+\lineto(-353.91892828,1069.29795722)
+\curveto(-352.98113701,1067.68819118)(-351.31852331,1066.51021814)(-350.00753077,1065.12352341)
+\curveto(-350.19905437,1063.55028366)(-350.43238947,1061.8518109)(-351.62604008,1060.62296195)
+\lineto(-351.82835375,1060.62296195)
+\lineto(-351.99694847,1060.8512513)
+\lineto(-351.76091586,1061.14476618)
+\lineto(-351.69347797,1061.60134487)
+\curveto(-350.93250884,1062.50837107)(-350.28267735,1063.58028741)(-350.24356338,1064.764783)
+\lineto(-350.37843916,1064.89523406)
+\lineto(-351.05281804,1064.37342983)
+\curveto(-350.9076917,1064.7703924)(-350.69849937,1065.61532389)(-351.42372642,1065.5801021)
+\lineto(-351.62604008,1066.16713186)
+\lineto(-352.67132735,1066.85199991)
+\lineto(-355.06537238,1064.66694471)
+\lineto(-352.97479785,1067.01506373)
+\lineto(-353.04223573,1067.14551479)
+\lineto(-353.98636617,1066.62371056)
+\lineto(-353.98636617,1066.9498382)
+\curveto(-353.54316437,1067.15803809)(-353.48422365,1068.13876913)(-354.12124194,1067.79777007)
+\curveto(-354.09890651,1068.07393496)(-353.80549775,1068.64335382)(-354.3909935,1068.58047641)
+\lineto(-354.42471244,1069.72192316)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78431374 0.78431374 0.78431374}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-354.42471244,1069.72192316)
+\lineto(-353.91892828,1069.29795722)
+\curveto(-352.98113701,1067.68819118)(-351.31852331,1066.51021814)(-350.00753077,1065.12352341)
+\curveto(-350.19905437,1063.55028366)(-350.43238947,1061.8518109)(-351.62604008,1060.62296195)
+\lineto(-351.82835375,1060.62296195)
+\lineto(-351.99694847,1060.8512513)
+\lineto(-351.76091586,1061.14476618)
+\lineto(-351.69347797,1061.60134487)
+\curveto(-350.93250884,1062.50837107)(-350.28267735,1063.58028741)(-350.24356338,1064.764783)
+\lineto(-350.37843916,1064.89523406)
+\lineto(-351.05281804,1064.37342983)
+\curveto(-350.9076917,1064.7703924)(-350.69849937,1065.61532389)(-351.42372642,1065.5801021)
+\lineto(-351.62604008,1066.16713186)
+\lineto(-352.67132735,1066.85199991)
+\lineto(-355.06537238,1064.66694471)
+\lineto(-352.97479785,1067.01506373)
+\lineto(-353.04223573,1067.14551479)
+\lineto(-353.98636617,1066.62371056)
+\lineto(-353.98636617,1066.9498382)
+\curveto(-353.54316437,1067.15803809)(-353.48422365,1068.13876913)(-354.12124194,1067.79777007)
+\curveto(-354.09890651,1068.07393496)(-353.80549775,1068.64335382)(-354.3909935,1068.58047641)
+\lineto(-354.42471244,1069.72192316)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-374.79095464,1069.5914721)
+\curveto(-374.48033573,1069.51524955)(-374.19601759,1069.03809872)(-374.65607886,1068.93921682)
+\lineto(-374.79095464,1069.5914721)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59607846 0.59607846 0.59607846}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-374.79095464,1069.5914721)
+\curveto(-374.48033573,1069.51524955)(-374.19601759,1069.03809872)(-374.65607886,1068.93921682)
+\lineto(-374.79095464,1069.5914721)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.86089239,1067.7651573)
+\curveto(-450.66464813,1068.07184774)(-450.18570425,1068.30548558)(-449.81560512,1068.25434877)
+\lineto(-450.86089239,1067.7651573)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.86089239,1067.7651573)
+\curveto(-450.66464813,1068.07184774)(-450.18570425,1068.30548558)(-449.81560512,1068.25434877)
+\lineto(-450.86089239,1067.7651573)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-409.18427756,1068.15651048)
+\curveto(-408.72327215,1068.2209533)(-409.00556715,1067.78185504)(-409.2179965,1067.66731901)
+\lineto(-409.18427756,1068.15651048)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-409.18427756,1068.15651048)
+\curveto(-408.72327215,1068.2209533)(-409.00556715,1067.78185504)(-409.2179965,1067.66731901)
+\lineto(-409.18427756,1068.15651048)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-450.86089239,1067.7651573)
+\lineto(-450.89461133,1067.66731901)
+\lineto(-452.1759312,1067.27596584)
+\lineto(-452.1759312,1067.34119137)
+\lineto(-450.86089239,1067.7651573)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-450.86089239,1067.7651573)
+\lineto(-450.89461133,1067.66731901)
+\lineto(-452.1759312,1067.27596584)
+\lineto(-452.1759312,1067.34119137)
+\lineto(-450.86089239,1067.7651573)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-421.72772474,1067.37380413)
+\lineto(-421.0870648,1066.55848503)
+\lineto(-421.0870648,1066.36280845)
+\curveto(-421.3782616,1066.24121502)(-421.48413909,1066.61770981)(-421.49169213,1066.81938714)
+\lineto(-421.72772474,1067.37380413)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-421.72772474,1067.37380413)
+\lineto(-421.0870648,1066.55848503)
+\lineto(-421.0870648,1066.36280845)
+\curveto(-421.3782616,1066.24121502)(-421.48413909,1066.61770981)(-421.49169213,1066.81938714)
+\lineto(-421.72772474,1067.37380413)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-411.47716575,1067.37380413)
+\curveto(-411.26797342,1067.42916756)(-410.92754696,1067.32945078)(-411.24113314,1067.14551479)
+\curveto(-411.34504144,1067.05580359)(-411.74125252,1067.11823747)(-411.51088469,1067.27596584)
+\lineto(-411.47716575,1067.37380413)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-411.47716575,1067.37380413)
+\curveto(-411.26797342,1067.42916756)(-410.92754696,1067.32945078)(-411.24113314,1067.14551479)
+\curveto(-411.34504144,1067.05580359)(-411.74125252,1067.11823747)(-411.51088469,1067.27596584)
+\lineto(-411.47716575,1067.37380413)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.72156864 0.72156864 0.72156864}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-374.92583041,1067.37380413)
+\lineto(-374.68979781,1067.34119137)
+\lineto(-375.8362419,1066.29758292)
+\curveto(-376.07200476,1066.05324809)(-376.42686293,1065.84935309)(-376.78037234,1065.97145528)
+\lineto(-376.78037234,1066.16713186)
+\lineto(-375.09442513,1067.14551479)
+\lineto(-374.92583041,1067.37380413)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.72156864 0.72156864 0.72156864}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-374.92583041,1067.37380413)
+\lineto(-374.68979781,1067.34119137)
+\lineto(-375.8362419,1066.29758292)
+\curveto(-376.07200476,1066.05324809)(-376.42686293,1065.84935309)(-376.78037234,1065.97145528)
+\lineto(-376.78037234,1066.16713186)
+\lineto(-375.09442513,1067.14551479)
+\lineto(-374.92583041,1067.37380413)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-412.42129618,1067.24335308)
+\lineto(-412.0503878,1067.01506373)
+\lineto(-412.52245302,1066.88461267)
+\lineto(-412.42129618,1067.24335308)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-412.42129618,1067.24335308)
+\lineto(-412.0503878,1067.01506373)
+\lineto(-412.52245302,1066.88461267)
+\lineto(-412.42129618,1067.24335308)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-424.42524026,1067.11290202)
+\lineto(-424.18920765,1066.75416162)
+\lineto(-424.42524026,1067.11290202)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-424.42524026,1067.11290202)
+\lineto(-424.18920765,1066.75416162)
+\lineto(-424.42524026,1067.11290202)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-377.62334594,1067.11290202)
+\lineto(-377.25243755,1067.08028926)
+\lineto(-377.75822171,1066.72154885)
+\lineto(-378.39888165,1066.62371056)
+\lineto(-377.99425432,1066.9498382)
+\lineto(-377.62334594,1067.11290202)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-377.62334594,1067.11290202)
+\lineto(-377.25243755,1067.08028926)
+\lineto(-377.75822171,1066.72154885)
+\lineto(-378.39888165,1066.62371056)
+\lineto(-377.99425432,1066.9498382)
+\lineto(-377.62334594,1067.11290202)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.72941178 0.72941178 0.72941178}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-426.04374957,1066.98245096)
+\lineto(-425.94259274,1066.9498382)
+\lineto(-425.26821386,1065.31919999)
+\lineto(-425.94259274,1066.29758292)
+\lineto(-426.27978218,1066.29758292)
+\curveto(-426.31996168,1066.12551797)(-426.29579194,1065.85209256)(-426.58325268,1065.93884251)
+\curveto(-426.77639479,1065.72346782)(-427.04857411,1065.95099664)(-426.98788001,1066.19974462)
+\lineto(-426.04374957,1066.98245096)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.72941178 0.72941178 0.72941178}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-426.04374957,1066.98245096)
+\lineto(-425.94259274,1066.9498382)
+\lineto(-425.26821386,1065.31919999)
+\lineto(-425.94259274,1066.29758292)
+\lineto(-426.27978218,1066.29758292)
+\curveto(-426.31996168,1066.12551797)(-426.29579194,1065.85209256)(-426.58325268,1065.93884251)
+\curveto(-426.77639479,1065.72346782)(-427.04857411,1065.95099664)(-426.98788001,1066.19974462)
+\lineto(-426.04374957,1066.98245096)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-416.60244524,1066.98245096)
+\curveto(-416.33134493,1066.87343302)(-416.14373273,1066.50473919)(-416.23153686,1066.23235739)
+\curveto(-416.76335204,1066.01554773)(-416.57344695,1066.70054623)(-416.60244524,1066.98245096)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-416.60244524,1066.98245096)
+\curveto(-416.33134493,1066.87343302)(-416.14373273,1066.50473919)(-416.23153686,1066.23235739)
+\curveto(-416.76335204,1066.01554773)(-416.57344695,1066.70054623)(-416.60244524,1066.98245096)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-414.17468127,1066.98245096)
+\lineto(-413.80377289,1066.75416162)
+\curveto(-413.9180936,1066.69114071)(-414.44928835,1066.67276016)(-414.20840022,1066.88461267)
+\lineto(-414.17468127,1066.98245096)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63921571 0.63921571 0.63921571}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-414.17468127,1066.98245096)
+\lineto(-413.80377289,1066.75416162)
+\curveto(-413.9180936,1066.69114071)(-414.44928835,1066.67276016)(-414.20840022,1066.88461267)
+\lineto(-414.17468127,1066.98245096)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-419.7045881,1066.33019568)
+\curveto(-419.43524117,1066.16987133)(-419.37279369,1065.75047118)(-419.46855549,1065.44965105)
+\lineto(-419.53599338,1065.44965105)
+\lineto(-419.7045881,1066.33019568)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-419.7045881,1066.33019568)
+\curveto(-419.43524117,1066.16987133)(-419.37279369,1065.75047118)(-419.46855549,1065.44965105)
+\lineto(-419.53599338,1065.44965105)
+\lineto(-419.7045881,1066.33019568)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.22745098 0.22745098 0.22745098}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-379.64648258,1066.19974462)
+\lineto(-379.14069842,1066.16713186)
+\curveto(-378.27614469,1065.46126119)(-377.73799035,1064.46083204)(-377.92681643,1063.36243414)
+\lineto(-378.16284904,1063.19937032)
+\lineto(-378.39888165,1063.36243414)
+\lineto(-378.73607109,1064.99307235)
+\lineto(-379.74763941,1065.84100422)
+\lineto(-379.64648258,1066.19974462)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.22745098 0.22745098 0.22745098}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-379.64648258,1066.19974462)
+\lineto(-379.14069842,1066.16713186)
+\curveto(-378.27614469,1065.46126119)(-377.73799035,1064.46083204)(-377.92681643,1063.36243414)
+\lineto(-378.16284904,1063.19937032)
+\lineto(-378.39888165,1063.36243414)
+\lineto(-378.73607109,1064.99307235)
+\lineto(-379.74763941,1065.84100422)
+\lineto(-379.64648258,1066.19974462)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1065.93884251)
+\curveto(-445.75112361,1065.95706652)(-446.02422008,1065.69294227)(-446.00536444,1065.93884251)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1065.93884251)
+\curveto(-445.75112361,1065.95706652)(-446.02422008,1065.69294227)(-446.00536444,1065.93884251)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-377.48847016,1065.93884251)
+\lineto(-377.18499966,1065.31919999)
+\curveto(-375.69327358,1065.17426887)(-375.28459998,1063.41331005)(-375.49905246,1062.18837463)
+\lineto(-375.97111768,1061.60134487)
+\lineto(-376.37574501,1061.14476618)
+\lineto(-376.37574501,1061.34044276)
+\lineto(-375.86996085,1062.80801715)
+\lineto(-376.03855557,1063.81901284)
+\lineto(-376.30830712,1064.60171918)
+\lineto(-376.64549656,1064.47126812)
+\lineto(-376.6792155,1064.24297877)
+\lineto(-376.54433973,1063.46027243)
+\curveto(-376.33784491,1063.12592637)(-376.33784491,1062.62055898)(-376.54433973,1062.28621292)
+\curveto(-376.5540292,1061.90464358)(-376.74233737,1061.44271639)(-377.08384283,1061.24260447)
+\lineto(-377.21871861,1061.50350658)
+\lineto(-377.08384283,1062.54711504)
+\lineto(-377.18499966,1063.75378731)
+\lineto(-377.62334594,1065.6779404)
+\lineto(-377.48847016,1065.93884251)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.78823531 0.78823531 0.78823531}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-377.48847016,1065.93884251)
+\lineto(-377.18499966,1065.31919999)
+\curveto(-375.69327358,1065.17426887)(-375.28459998,1063.41331005)(-375.49905246,1062.18837463)
+\lineto(-375.97111768,1061.60134487)
+\lineto(-376.37574501,1061.14476618)
+\lineto(-376.37574501,1061.34044276)
+\lineto(-375.86996085,1062.80801715)
+\lineto(-376.03855557,1063.81901284)
+\lineto(-376.30830712,1064.60171918)
+\lineto(-376.64549656,1064.47126812)
+\lineto(-376.6792155,1064.24297877)
+\lineto(-376.54433973,1063.46027243)
+\curveto(-376.33784491,1063.12592637)(-376.33784491,1062.62055898)(-376.54433973,1062.28621292)
+\curveto(-376.5540292,1061.90464358)(-376.74233737,1061.44271639)(-377.08384283,1061.24260447)
+\lineto(-377.21871861,1061.50350658)
+\lineto(-377.08384283,1062.54711504)
+\lineto(-377.18499966,1063.75378731)
+\lineto(-377.62334594,1065.6779404)
+\lineto(-377.48847016,1065.93884251)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-355.90834598,1065.93884251)
+\curveto(-355.56427787,1065.83766467)(-356.06264387,1065.32859247)(-356.27925436,1065.44965105)
+\lineto(-355.90834598,1065.93884251)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-355.90834598,1065.93884251)
+\curveto(-355.56427787,1065.83766467)(-356.06264387,1065.32859247)(-356.27925436,1065.44965105)
+\lineto(-355.90834598,1065.93884251)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-328.79831497,1065.54748934)
+\lineto(-329.43897491,1065.90622975)
+\curveto(-329.16032155,1066.04959546)(-328.89690916,1065.76677757)(-328.79831497,1065.54748934)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63529414 0.63529414 0.63529414}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-328.79831497,1065.54748934)
+\lineto(-329.43897491,1065.90622975)
+\curveto(-329.16032155,1066.04959546)(-328.89690916,1065.76677757)(-328.79831497,1065.54748934)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-427.52738311,1065.80839145)
+\curveto(-427.2562828,1065.69937351)(-427.0686706,1065.33067968)(-427.15647473,1065.05829788)
+\lineto(-427.52738311,1065.80839145)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-427.52738311,1065.80839145)
+\curveto(-427.2562828,1065.69937351)(-427.0686706,1065.33067968)(-427.15647473,1065.05829788)
+\lineto(-427.52738311,1065.80839145)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-420.51384275,1065.80839145)
+\lineto(-420.10921542,1064.63433194)
+\lineto(-420.14293437,1064.53649365)
+\lineto(-420.48012381,1064.40604259)
+\lineto(-420.61499958,1064.53649365)
+\lineto(-420.64871853,1065.54748934)
+\lineto(-420.51384275,1065.80839145)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-420.51384275,1065.80839145)
+\lineto(-420.10921542,1064.63433194)
+\lineto(-420.14293437,1064.53649365)
+\lineto(-420.48012381,1064.40604259)
+\lineto(-420.61499958,1064.53649365)
+\lineto(-420.64871853,1065.54748934)
+\lineto(-420.51384275,1065.80839145)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-421.72772474,1065.54748934)
+\lineto(-421.32309741,1064.764783)
+\curveto(-421.44244898,1064.43330687)(-421.73959381,1064.05265068)(-421.45797319,1063.72117455)
+\lineto(-421.49169213,1063.62333625)
+\lineto(-421.82888157,1063.4928852)
+\lineto(-421.72772474,1065.54748934)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64313728 0.64313728 0.64313728}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-421.72772474,1065.54748934)
+\lineto(-421.32309741,1064.764783)
+\curveto(-421.44244898,1064.43330687)(-421.73959381,1064.05265068)(-421.45797319,1063.72117455)
+\lineto(-421.49169213,1063.62333625)
+\lineto(-421.82888157,1063.4928852)
+\lineto(-421.72772474,1065.54748934)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-328.79831497,1065.54748934)
+\curveto(-327.64634097,1065.30263271)(-326.82103609,1064.33546857)(-325.86476684,1063.68856178)
+\lineto(-324.85319852,1062.31882569)
+\lineto(-324.24625753,1062.25360016)
+\lineto(-324.07766281,1061.89485975)
+\lineto(-325.02179324,1060.19899602)
+\lineto(-325.25782585,1060.36205984)
+\lineto(-327.85418454,1063.59072349)
+\lineto(-327.68558982,1063.81901284)
+\lineto(-327.48327615,1063.81901284)
+\lineto(-325.5275774,1061.40566829)
+\lineto(-325.05551218,1061.53611935)
+\lineto(-325.19038796,1061.86224699)
+\lineto(-325.72989106,1062.64495333)
+\lineto(-327.2135246,1064.34081707)
+\lineto(-327.41583827,1064.40604259)
+\curveto(-327.60412485,1064.90136526)(-328.18247218,1065.09860725)(-328.62972025,1065.31919999)
+\lineto(-328.79831497,1065.54748934)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81176472 0.81176472 0.81176472}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-328.79831497,1065.54748934)
+\curveto(-327.64634097,1065.30263271)(-326.82103609,1064.33546857)(-325.86476684,1063.68856178)
+\lineto(-324.85319852,1062.31882569)
+\lineto(-324.24625753,1062.25360016)
+\lineto(-324.07766281,1061.89485975)
+\lineto(-325.02179324,1060.19899602)
+\lineto(-325.25782585,1060.36205984)
+\lineto(-327.85418454,1063.59072349)
+\lineto(-327.68558982,1063.81901284)
+\lineto(-327.48327615,1063.81901284)
+\lineto(-325.5275774,1061.40566829)
+\lineto(-325.05551218,1061.53611935)
+\lineto(-325.19038796,1061.86224699)
+\lineto(-325.72989106,1062.64495333)
+\lineto(-327.2135246,1064.34081707)
+\lineto(-327.41583827,1064.40604259)
+\curveto(-327.60412485,1064.90136526)(-328.18247218,1065.09860725)(-328.62972025,1065.31919999)
+\lineto(-328.79831497,1065.54748934)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-428.20176199,1065.41703828)
+\lineto(-427.22391262,1064.01468942)
+\lineto(-426.58325268,1062.93846821)
+\lineto(-426.61697162,1062.71017886)
+\lineto(-426.81928529,1062.84062991)
+\lineto(-428.30291882,1065.18874893)
+\lineto(-428.20176199,1065.41703828)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67843139 0.67843139 0.67843139}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-428.20176199,1065.41703828)
+\lineto(-427.22391262,1064.01468942)
+\lineto(-426.58325268,1062.93846821)
+\lineto(-426.61697162,1062.71017886)
+\lineto(-426.81928529,1062.84062991)
+\lineto(-428.30291882,1065.18874893)
+\lineto(-428.20176199,1065.41703828)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-337.29548887,1064.89523406)
+\lineto(-337.05945626,1064.66694471)
+\lineto(-337.29548887,1064.89523406)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-337.29548887,1064.89523406)
+\lineto(-337.05945626,1064.66694471)
+\lineto(-337.29548887,1064.89523406)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1064.63433194)
+\curveto(-445.88208798,1064.64998607)(-446.94571836,1064.10639652)(-446.54486755,1064.63433194)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.54486755,1064.63433194)
+\curveto(-445.88208798,1064.64998607)(-446.94571836,1064.10639652)(-446.54486755,1064.63433194)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.80673095,1064.63433194)
+\curveto(-422.58917632,1064.59552275)(-422.45672831,1064.33585993)(-422.57069834,1064.14514048)
+\curveto(-422.77139349,1064.2023824)(-423.03183862,1064.4438734)(-422.80673095,1064.63433194)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.80673095,1064.63433194)
+\curveto(-422.58917632,1064.59552275)(-422.45672831,1064.33585993)(-422.57069834,1064.14514048)
+\curveto(-422.77139349,1064.2023824)(-423.03183862,1064.4438734)(-422.80673095,1064.63433194)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-328.52856342,1064.63433194)
+\lineto(-328.02277926,1064.27559154)
+\lineto(-328.52856342,1064.63433194)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-328.52856342,1064.63433194)
+\lineto(-328.02277926,1064.27559154)
+\lineto(-328.52856342,1064.63433194)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-349.29943295,1064.50388089)
+\lineto(-346.06241432,1063.8516256)
+\lineto(-345.28687861,1063.68856178)
+\lineto(-345.25315966,1063.19937032)
+\lineto(-344.57878078,1058.24223016)
+\lineto(-344.61249972,1057.7530387)
+\lineto(-344.98340811,1058.37268122)
+\lineto(-345.25315966,1058.11177911)
+\curveto(-345.13843433,1057.25393296)(-345.3221756,1056.29459589)(-345.79266277,1055.50275797)
+\lineto(-345.65778699,1054.98095375)
+\lineto(-346.97282581,1052.66544749)
+\lineto(-347.64720469,1053.90473253)
+\lineto(-346.90538792,1054.88311545)
+\curveto(-346.71858497,1055.52193428)(-346.39717599,1056.21371623)(-345.82638171,1056.57897919)
+\curveto(-345.39154221,1058.33485041)(-345.51562792,1060.26683056)(-345.55663016,1062.1231491)
+\lineto(-345.69150593,1062.25360016)
+\lineto(-346.50076059,1063.29720861)
+\lineto(-346.7367932,1063.32982138)
+\lineto(-348.05183202,1063.36243414)
+\lineto(-348.45645935,1063.9494639)
+\lineto(-348.62505407,1063.72117455)
+\curveto(-348.78204947,1061.91964545)(-349.29039627,1060.06202241)(-350.47959599,1058.6661961)
+\lineto(-350.91794226,1059.15538756)
+\lineto(-350.74934754,1059.77503008)
+\curveto(-349.71795248,1060.84172837)(-349.09846804,1062.18185208)(-348.89480562,1063.59072349)
+\lineto(-349.265714,1064.01468942)
+\lineto(-349.29943295,1064.50388089)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-349.29943295,1064.50388089)
+\lineto(-346.06241432,1063.8516256)
+\lineto(-345.28687861,1063.68856178)
+\lineto(-345.25315966,1063.19937032)
+\lineto(-344.57878078,1058.24223016)
+\lineto(-344.61249972,1057.7530387)
+\lineto(-344.98340811,1058.37268122)
+\lineto(-345.25315966,1058.11177911)
+\curveto(-345.13843433,1057.25393296)(-345.3221756,1056.29459589)(-345.79266277,1055.50275797)
+\lineto(-345.65778699,1054.98095375)
+\lineto(-346.97282581,1052.66544749)
+\lineto(-347.64720469,1053.90473253)
+\lineto(-346.90538792,1054.88311545)
+\curveto(-346.71858497,1055.52193428)(-346.39717599,1056.21371623)(-345.82638171,1056.57897919)
+\curveto(-345.39154221,1058.33485041)(-345.51562792,1060.26683056)(-345.55663016,1062.1231491)
+\lineto(-345.69150593,1062.25360016)
+\lineto(-346.50076059,1063.29720861)
+\lineto(-346.7367932,1063.32982138)
+\lineto(-348.05183202,1063.36243414)
+\lineto(-348.45645935,1063.9494639)
+\lineto(-348.62505407,1063.72117455)
+\curveto(-348.78204947,1061.91964545)(-349.29039627,1060.06202241)(-350.47959599,1058.6661961)
+\lineto(-350.91794226,1059.15538756)
+\lineto(-350.74934754,1059.77503008)
+\curveto(-349.71795248,1060.84172837)(-349.09846804,1062.18185208)(-348.89480562,1063.59072349)
+\lineto(-349.265714,1064.01468942)
+\lineto(-349.29943295,1064.50388089)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-429.82027131,1064.24297877)
+\curveto(-429.56886286,1064.28630157)(-429.05593028,1064.24303878)(-429.17961137,1063.88423837)
+\lineto(-429.65167659,1063.55811073)
+\curveto(-429.42063438,1062.94773023)(-428.88531243,1062.36865799)(-429.04473559,1061.6665704)
+\lineto(-429.68539553,1062.67756609)
+\lineto(-429.95514708,1062.15576187)
+\lineto(-429.5842387,1060.49251089)
+\curveto(-429.81541578,1060.85255581)(-430.35694202,1062.68930669)(-430.52836913,1061.40566829)
+\lineto(-430.79812068,1061.47089382)
+\curveto(-431.13719838,1061.44066831)(-431.20301776,1061.18103157)(-431.20274801,1060.88386406)
+\lineto(-431.53993745,1061.07954065)
+\lineto(-431.20274801,1057.88348976)
+\lineto(-431.70853217,1059.80764284)
+\curveto(-431.94038363,1060.17199265)(-431.76058073,1061.11737145)(-432.48406789,1060.94908959)
+\curveto(-432.19894049,1059.66218992)(-432.00148236,1058.24744821)(-432.14687844,1056.8398813)
+\lineto(-432.38291105,1057.19862171)
+\curveto(-432.57214177,1058.4004673)(-432.54813388,1059.81286089)(-433.46191726,1060.72080024)
+\lineto(-433.83282565,1060.55773642)
+\lineto(-433.19216571,1059.0249365)
+\lineto(-432.65266261,1055.1114048)
+\lineto(-432.61894366,1054.36131123)
+\curveto(-432.51593903,1054.18559365)(-432.41878801,1053.94595506)(-432.14687844,1054.10040911)
+\lineto(-432.21431633,1055.99194944)
+\curveto(-431.54627661,1056.26863613)(-431.71635497,1055.49427865)(-431.70853217,1055.1114048)
+\curveto(-431.68781525,1054.71457269)(-431.81819967,1054.17006998)(-431.43878062,1053.93734529)
+\lineto(-431.00043435,1056.51375366)
+\lineto(-430.39349335,1053.57860489)
+\curveto(-430.9360986,1052.56095619)(-430.87553938,1051.11307991)(-432.07944056,1050.51300505)
+\lineto(-433.49563621,1043.40342246)
+\curveto(-436.87966943,1043.55618065)(-440.21784489,1043.7719467)(-443.1392542,1045.36018831)
+\lineto(-440.17198713,1050.64345611)
+\curveto(-439.90048219,1050.99619577)(-439.70059629,1051.4012463)(-440.20570607,1051.58922627)
+\curveto(-440.31336391,1052.14703499)(-440.03832523,1052.71814972)(-439.56504613,1052.99157513)
+\lineto(-439.66620297,1051.98057944)
+\lineto(-438.48603992,1053.44815383)
+\lineto(-437.67678527,1054.68743887)
+\curveto(-438.086403,1051.41833539)(-439.64327408,1048.41274304)(-441.38586911,1045.5558649)
+\lineto(-441.38586911,1045.0992862)
+\lineto(-440.07083029,1046.89298823)
+\lineto(-438.72207253,1049.37155831)
+\lineto(-437.91281788,1051.32832416)
+\lineto(-437.4744716,1052.73067302)
+\curveto(-437.38108362,1050.48300131)(-438.50748517,1048.15444995)(-439.26157564,1045.97983083)
+\lineto(-439.09298092,1045.62109043)
+\lineto(-438.3174452,1046.50163506)
+\lineto(-438.35116415,1046.14289465)
+\lineto(-438.68835359,1044.44703092)
+\lineto(-438.21628837,1044.57748197)
+\lineto(-437.37331477,1048.58885197)
+\curveto(-437.24129836,1049.47239697)(-437.15292775,1050.40212166)(-436.66521695,1051.16526034)
+\lineto(-436.32802751,1051.10003481)
+\lineto(-436.05827595,1051.36093692)
+\lineto(-435.75480546,1053.80689424)
+\lineto(-435.38389707,1056.64420472)
+\lineto(-434.9455508,1051.1978731)
+\lineto(-434.43976664,1051.16526034)
+\lineto(-434.00142037,1049.50200936)
+\curveto(-434.0432993,1049.23314974)(-434.34225145,1048.73365264)(-433.90026353,1048.62146473)
+\lineto(-433.63051198,1048.88236684)
+\curveto(-432.78214335,1052.18799662)(-433.07563304,1055.77018264)(-433.46191726,1059.15538756)
+\lineto(-434.23745298,1060.75341301)
+\curveto(-435.23040844,1061.0985865)(-434.15408626,1059.26887998)(-435.04670763,1059.1227748)
+\lineto(-435.11414552,1058.79664716)
+\lineto(-435.58621074,1058.92709821)
+\curveto(-435.33345353,1060.00997243)(-437.16695483,1059.84390824)(-436.69893589,1058.76403439)
+\lineto(-436.73265483,1056.8398813)
+\lineto(-436.96868744,1059.80764284)
+\lineto(-437.4744716,1060.10115772)
+\curveto(-437.33946095,1060.82163891)(-438.06104635,1061.18768457)(-438.3174452,1061.63395764)
+\lineto(-438.82322936,1061.40566829)
+\lineto(-438.75579148,1061.79702146)
+\lineto(-438.82322936,1062.25360016)
+\curveto(-435.85461353,1060.5186011)(-432.30872938,1062.34006312)(-429.82027131,1064.24297877)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90980393 0.90980393 0.90980393}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-429.82027131,1064.24297877)
+\curveto(-429.56886286,1064.28630157)(-429.05593028,1064.24303878)(-429.17961137,1063.88423837)
+\lineto(-429.65167659,1063.55811073)
+\curveto(-429.42063438,1062.94773023)(-428.88531243,1062.36865799)(-429.04473559,1061.6665704)
+\lineto(-429.68539553,1062.67756609)
+\lineto(-429.95514708,1062.15576187)
+\lineto(-429.5842387,1060.49251089)
+\curveto(-429.81541578,1060.85255581)(-430.35694202,1062.68930669)(-430.52836913,1061.40566829)
+\lineto(-430.79812068,1061.47089382)
+\curveto(-431.13719838,1061.44066831)(-431.20301776,1061.18103157)(-431.20274801,1060.88386406)
+\lineto(-431.53993745,1061.07954065)
+\lineto(-431.20274801,1057.88348976)
+\lineto(-431.70853217,1059.80764284)
+\curveto(-431.94038363,1060.17199265)(-431.76058073,1061.11737145)(-432.48406789,1060.94908959)
+\curveto(-432.19894049,1059.66218992)(-432.00148236,1058.24744821)(-432.14687844,1056.8398813)
+\lineto(-432.38291105,1057.19862171)
+\curveto(-432.57214177,1058.4004673)(-432.54813388,1059.81286089)(-433.46191726,1060.72080024)
+\lineto(-433.83282565,1060.55773642)
+\lineto(-433.19216571,1059.0249365)
+\lineto(-432.65266261,1055.1114048)
+\lineto(-432.61894366,1054.36131123)
+\curveto(-432.51593903,1054.18559365)(-432.41878801,1053.94595506)(-432.14687844,1054.10040911)
+\lineto(-432.21431633,1055.99194944)
+\curveto(-431.54627661,1056.26863613)(-431.71635497,1055.49427865)(-431.70853217,1055.1114048)
+\curveto(-431.68781525,1054.71457269)(-431.81819967,1054.17006998)(-431.43878062,1053.93734529)
+\lineto(-431.00043435,1056.51375366)
+\lineto(-430.39349335,1053.57860489)
+\curveto(-430.9360986,1052.56095619)(-430.87553938,1051.11307991)(-432.07944056,1050.51300505)
+\lineto(-433.49563621,1043.40342246)
+\curveto(-436.87966943,1043.55618065)(-440.21784489,1043.7719467)(-443.1392542,1045.36018831)
+\lineto(-440.17198713,1050.64345611)
+\curveto(-439.90048219,1050.99619577)(-439.70059629,1051.4012463)(-440.20570607,1051.58922627)
+\curveto(-440.31336391,1052.14703499)(-440.03832523,1052.71814972)(-439.56504613,1052.99157513)
+\lineto(-439.66620297,1051.98057944)
+\lineto(-438.48603992,1053.44815383)
+\lineto(-437.67678527,1054.68743887)
+\curveto(-438.086403,1051.41833539)(-439.64327408,1048.41274304)(-441.38586911,1045.5558649)
+\lineto(-441.38586911,1045.0992862)
+\lineto(-440.07083029,1046.89298823)
+\lineto(-438.72207253,1049.37155831)
+\lineto(-437.91281788,1051.32832416)
+\lineto(-437.4744716,1052.73067302)
+\curveto(-437.38108362,1050.48300131)(-438.50748517,1048.15444995)(-439.26157564,1045.97983083)
+\lineto(-439.09298092,1045.62109043)
+\lineto(-438.3174452,1046.50163506)
+\lineto(-438.35116415,1046.14289465)
+\lineto(-438.68835359,1044.44703092)
+\lineto(-438.21628837,1044.57748197)
+\lineto(-437.37331477,1048.58885197)
+\curveto(-437.24129836,1049.47239697)(-437.15292775,1050.40212166)(-436.66521695,1051.16526034)
+\lineto(-436.32802751,1051.10003481)
+\lineto(-436.05827595,1051.36093692)
+\lineto(-435.75480546,1053.80689424)
+\lineto(-435.38389707,1056.64420472)
+\lineto(-434.9455508,1051.1978731)
+\lineto(-434.43976664,1051.16526034)
+\lineto(-434.00142037,1049.50200936)
+\curveto(-434.0432993,1049.23314974)(-434.34225145,1048.73365264)(-433.90026353,1048.62146473)
+\lineto(-433.63051198,1048.88236684)
+\curveto(-432.78214335,1052.18799662)(-433.07563304,1055.77018264)(-433.46191726,1059.15538756)
+\lineto(-434.23745298,1060.75341301)
+\curveto(-435.23040844,1061.0985865)(-434.15408626,1059.26887998)(-435.04670763,1059.1227748)
+\lineto(-435.11414552,1058.79664716)
+\lineto(-435.58621074,1058.92709821)
+\curveto(-435.33345353,1060.00997243)(-437.16695483,1059.84390824)(-436.69893589,1058.76403439)
+\lineto(-436.73265483,1056.8398813)
+\lineto(-436.96868744,1059.80764284)
+\lineto(-437.4744716,1060.10115772)
+\curveto(-437.33946095,1060.82163891)(-438.06104635,1061.18768457)(-438.3174452,1061.63395764)
+\lineto(-438.82322936,1061.40566829)
+\lineto(-438.75579148,1061.79702146)
+\lineto(-438.82322936,1062.25360016)
+\curveto(-435.85461353,1060.5186011)(-432.30872938,1062.34006312)(-429.82027131,1064.24297877)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.86274511 0.86274511 0.86274511}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1061.37305553)
+\lineto(-330.72029478,1057.81826423)
+\lineto(-329.97847801,1054.88311545)
+\lineto(-329.7424454,1055.1114048)
+\lineto(-330.41682429,1057.98132805)
+\lineto(-330.45054323,1058.60097057)
+\lineto(-329.97847801,1057.49213659)
+\lineto(-329.70872646,1056.57897919)
+\lineto(-329.37153702,1056.44852813)
+\lineto(-330.24822957,1059.25322585)
+\curveto(-329.93545264,1059.33482299)(-329.70508481,1058.92853317)(-329.70872646,1058.6661961)
+\lineto(-329.23666124,1057.94871529)
+\lineto(-328.62972025,1056.70943025)
+\curveto(-328.13310764,1056.50775291)(-328.28174075,1057.0366015)(-328.49484448,1057.23123447)
+\lineto(-330.24822957,1060.55773642)
+\curveto(-329.1417087,1059.7336771)(-328.28848454,1058.59966606)(-327.82046559,1057.36168553)
+\lineto(-327.48327615,1057.23123447)
+\lineto(-327.34840038,1057.42691106)
+\curveto(-327.75788323,1058.97406059)(-328.93049323,1060.17551482)(-330.11335379,1061.14476618)
+\lineto(-332.54111776,1064.21036601)
+\lineto(-330.58541901,1063.16675756)
+\lineto(-330.68657584,1062.80801715)
+\lineto(-328.3599687,1060.49251089)
+\lineto(-326.80889727,1057.49213659)
+\lineto(-328.49484448,1055.86149838)
+\lineto(-331.66442521,1053.05680066)
+\lineto(-332.00161465,1053.05680066)
+\lineto(-331.90045782,1055.24185586)
+\lineto(-332.13649043,1055.66582179)
+\lineto(-332.97946403,1057.45952382)
+\lineto(-333.35037242,1058.34006846)
+\lineto(-330.92260845,1054.49176228)
+\lineto(-330.58541901,1054.49176228)
+\curveto(-330.80850354,1055.82366757)(-331.88993751,1056.94293764)(-332.54111776,1058.14439187)
+\lineto(-332.54111776,1058.34006846)
+\lineto(-332.3388041,1058.40529399)
+\lineto(-333.62012397,1060.62296195)
+\curveto(-333.2741676,1060.75308688)(-333.44127869,1061.08162786)(-333.51896714,1061.37305553)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.86274511 0.86274511 0.86274511}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1061.37305553)
+\lineto(-330.72029478,1057.81826423)
+\lineto(-329.97847801,1054.88311545)
+\lineto(-329.7424454,1055.1114048)
+\lineto(-330.41682429,1057.98132805)
+\lineto(-330.45054323,1058.60097057)
+\lineto(-329.97847801,1057.49213659)
+\lineto(-329.70872646,1056.57897919)
+\lineto(-329.37153702,1056.44852813)
+\lineto(-330.24822957,1059.25322585)
+\curveto(-329.93545264,1059.33482299)(-329.70508481,1058.92853317)(-329.70872646,1058.6661961)
+\lineto(-329.23666124,1057.94871529)
+\lineto(-328.62972025,1056.70943025)
+\curveto(-328.13310764,1056.50775291)(-328.28174075,1057.0366015)(-328.49484448,1057.23123447)
+\lineto(-330.24822957,1060.55773642)
+\curveto(-329.1417087,1059.7336771)(-328.28848454,1058.59966606)(-327.82046559,1057.36168553)
+\lineto(-327.48327615,1057.23123447)
+\lineto(-327.34840038,1057.42691106)
+\curveto(-327.75788323,1058.97406059)(-328.93049323,1060.17551482)(-330.11335379,1061.14476618)
+\lineto(-332.54111776,1064.21036601)
+\lineto(-330.58541901,1063.16675756)
+\lineto(-330.68657584,1062.80801715)
+\lineto(-328.3599687,1060.49251089)
+\lineto(-326.80889727,1057.49213659)
+\lineto(-328.49484448,1055.86149838)
+\lineto(-331.66442521,1053.05680066)
+\lineto(-332.00161465,1053.05680066)
+\lineto(-331.90045782,1055.24185586)
+\lineto(-332.13649043,1055.66582179)
+\lineto(-332.97946403,1057.45952382)
+\lineto(-333.35037242,1058.34006846)
+\lineto(-330.92260845,1054.49176228)
+\lineto(-330.58541901,1054.49176228)
+\curveto(-330.80850354,1055.82366757)(-331.88993751,1056.94293764)(-332.54111776,1058.14439187)
+\lineto(-332.54111776,1058.34006846)
+\lineto(-332.3388041,1058.40529399)
+\lineto(-333.62012397,1060.62296195)
+\curveto(-333.2741676,1060.75308688)(-333.44127869,1061.08162786)(-333.51896714,1061.37305553)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1064.11252772)
+\lineto(-446.03908339,1063.62333625)
+\curveto(-446.2244027,1063.5209974)(-446.73976305,1063.59579804)(-446.37627283,1063.81901284)
+\lineto(-446.00536444,1064.11252772)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.67450982 0.67450982 0.67450982}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-446.00536444,1064.11252772)
+\lineto(-446.03908339,1063.62333625)
+\curveto(-446.2244027,1063.5209974)(-446.73976305,1063.59579804)(-446.37627283,1063.81901284)
+\lineto(-446.00536444,1064.11252772)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-341.61151371,1064.11252772)
+\curveto(-341.35727287,1064.13075173)(-341.63035585,1063.86662747)(-341.61151371,1064.11252772)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-341.61151371,1064.11252772)
+\curveto(-341.35727287,1064.13075173)(-341.63035585,1063.86662747)(-341.61151371,1064.11252772)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-342.15101681,1063.98207666)
+\lineto(-341.9149842,1063.62333625)
+\lineto(-342.15101681,1063.98207666)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-342.15101681,1063.98207666)
+\lineto(-341.9149842,1063.62333625)
+\lineto(-342.15101681,1063.98207666)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-330.82145161,1063.98207666)
+\curveto(-330.56721078,1064.00030067)(-330.84030725,1063.73617642)(-330.82145161,1063.98207666)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-330.82145161,1063.98207666)
+\curveto(-330.56721078,1064.00030067)(-330.84030725,1063.73617642)(-330.82145161,1063.98207666)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-330.55170006,1063.8516256)
+\curveto(-330.29745922,1063.86984962)(-330.57055569,1063.60572536)(-330.55170006,1063.8516256)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-330.55170006,1063.8516256)
+\curveto(-330.29745922,1063.86984962)(-330.57055569,1063.60572536)(-330.55170006,1063.8516256)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-388.0087807,1063.72117455)
+\lineto(-387.4692776,1063.46027243)
+\lineto(-387.63787232,1063.23198308)
+\lineto(-389.45869529,1062.97108097)
+\lineto(-389.32381952,1063.29720861)
+\lineto(-388.68315958,1063.46027243)
+\lineto(-388.0087807,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-388.0087807,1063.72117455)
+\lineto(-387.4692776,1063.46027243)
+\lineto(-387.63787232,1063.23198308)
+\lineto(-389.45869529,1062.97108097)
+\lineto(-389.32381952,1063.29720861)
+\lineto(-388.68315958,1063.46027243)
+\lineto(-388.0087807,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-385.71589251,1063.72117455)
+\lineto(-385.34498412,1063.68856178)
+\lineto(-385.34498412,1063.36243414)
+\lineto(-387.60415337,1062.41666398)
+\lineto(-387.97506176,1062.44927674)
+\curveto(-388.0715384,1062.85680584)(-387.46118505,1062.84402164)(-387.19952604,1062.93846821)
+\lineto(-385.71589251,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-385.71589251,1063.72117455)
+\lineto(-385.34498412,1063.68856178)
+\lineto(-385.34498412,1063.36243414)
+\lineto(-387.60415337,1062.41666398)
+\lineto(-387.97506176,1062.44927674)
+\curveto(-388.0715384,1062.85680584)(-387.46118505,1062.84402164)(-387.19952604,1062.93846821)
+\lineto(-385.71589251,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-344.84853233,1063.72117455)
+\lineto(-344.61249972,1062.97108097)
+\lineto(-344.84853233,1063.32982138)
+\lineto(-344.84853233,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-344.84853233,1063.72117455)
+\lineto(-344.61249972,1062.97108097)
+\lineto(-344.84853233,1063.32982138)
+\lineto(-344.84853233,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-343.63465035,1063.72117455)
+\lineto(-342.45448731,1063.68856178)
+\lineto(-342.31961153,1063.36243414)
+\lineto(-342.52192519,1063.29720861)
+\lineto(-342.92655252,1062.97108097)
+\lineto(-343.39861774,1062.84062991)
+\lineto(-343.6009314,1062.84062991)
+\lineto(-343.63465035,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-343.63465035,1063.72117455)
+\lineto(-342.45448731,1063.68856178)
+\lineto(-342.31961153,1063.36243414)
+\lineto(-342.52192519,1063.29720861)
+\lineto(-342.92655252,1062.97108097)
+\lineto(-343.39861774,1062.84062991)
+\lineto(-343.6009314,1062.84062991)
+\lineto(-343.63465035,1063.72117455)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-422.53697939,1063.32982138)
+\lineto(-422.30094679,1063.10153203)
+\lineto(-422.53697939,1063.32982138)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-422.53697939,1063.32982138)
+\lineto(-422.30094679,1063.10153203)
+\lineto(-422.53697939,1063.32982138)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.80107874,1063.19937032)
+\curveto(-439.50111502,1063.27543633)(-439.23109371,1063.05926588)(-439.12669986,1062.80801715)
+\lineto(-439.56504613,1062.18837463)
+\lineto(-440.64405234,1061.01431512)
+\lineto(-442.5997511,1058.92709821)
+\lineto(-442.5997511,1059.64457902)
+\lineto(-442.46487532,1059.90548114)
+\curveto(-441.59290343,1060.68388259)(-440.8531098,1061.54133739)(-440.3068629,1062.51450227)
+\lineto(-439.83479769,1062.97108097)
+\lineto(-439.80107874,1063.19937032)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.80107874,1063.19937032)
+\curveto(-439.50111502,1063.27543633)(-439.23109371,1063.05926588)(-439.12669986,1062.80801715)
+\lineto(-439.56504613,1062.18837463)
+\lineto(-440.64405234,1061.01431512)
+\lineto(-442.5997511,1058.92709821)
+\lineto(-442.5997511,1059.64457902)
+\lineto(-442.46487532,1059.90548114)
+\curveto(-441.59290343,1060.68388259)(-440.8531098,1061.54133739)(-440.3068629,1062.51450227)
+\lineto(-439.83479769,1062.97108097)
+\lineto(-439.80107874,1063.19937032)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-329.47269385,1063.19937032)
+\lineto(-328.12393609,1062.41666398)
+\lineto(-327.85418454,1062.54711504)
+\lineto(-327.61815193,1062.51450227)
+\lineto(-325.5275774,1059.84025561)
+\lineto(-325.32526374,1059.64457902)
+\lineto(-325.46013951,1059.44890244)
+\curveto(-326.59107289,1060.58774016)(-327.64917336,1062.09444987)(-329.16922336,1062.84062991)
+\lineto(-329.47269385,1063.19937032)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74117649 0.74117649 0.74117649}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.47269385,1063.19937032)
+\lineto(-328.12393609,1062.41666398)
+\lineto(-327.85418454,1062.54711504)
+\lineto(-327.61815193,1062.51450227)
+\lineto(-325.5275774,1059.84025561)
+\lineto(-325.32526374,1059.64457902)
+\lineto(-325.46013951,1059.44890244)
+\curveto(-326.59107289,1060.58774016)(-327.64917336,1062.09444987)(-329.16922336,1062.84062991)
+\lineto(-329.47269385,1063.19937032)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1063.06891926)
+\curveto(-444.90342935,1062.98117788)(-445.07000094,1062.41653353)(-445.33098556,1062.28621292)
+\lineto(-445.33098556,1063.06891926)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.33098556,1063.06891926)
+\curveto(-444.90342935,1062.98117788)(-445.07000094,1062.41653353)(-445.33098556,1062.28621292)
+\lineto(-445.33098556,1063.06891926)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.73725492 0.73725492 0.73725492}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-346.87166898,1062.67756609)
+\lineto(-346.77051214,1062.64495333)
+\curveto(-346.23006491,1061.62691328)(-346.32596159,1060.44946204)(-346.33216587,1059.28583862)
+\lineto(-346.7367932,1057.98132805)
+\lineto(-346.60191742,1057.45952382)
+\lineto(-347.84951835,1054.88311545)
+\lineto(-348.05183202,1054.7526644)
+\lineto(-348.18670779,1055.2092431)
+\lineto(-347.84951835,1055.53537074)
+\curveto(-346.93775811,1057.26384724)(-346.62525093,1059.14234246)(-346.60191742,1061.11215341)
+\lineto(-346.87166898,1061.63395764)
+\lineto(-346.87166898,1062.67756609)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.73725492 0.73725492 0.73725492}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-346.87166898,1062.67756609)
+\lineto(-346.77051214,1062.64495333)
+\curveto(-346.23006491,1061.62691328)(-346.32596159,1060.44946204)(-346.33216587,1059.28583862)
+\lineto(-346.7367932,1057.98132805)
+\lineto(-346.60191742,1057.45952382)
+\lineto(-347.84951835,1054.88311545)
+\lineto(-348.05183202,1054.7526644)
+\lineto(-348.18670779,1055.2092431)
+\lineto(-347.84951835,1055.53537074)
+\curveto(-346.93775811,1057.26384724)(-346.62525093,1059.14234246)(-346.60191742,1061.11215341)
+\lineto(-346.87166898,1061.63395764)
+\lineto(-346.87166898,1062.67756609)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-334.46309757,1062.54711504)
+\curveto(-334.71733841,1062.52889102)(-334.44424194,1062.79301528)(-334.46309757,1062.54711504)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.46309757,1062.54711504)
+\curveto(-334.71733841,1062.52889102)(-334.44424194,1062.79301528)(-334.46309757,1062.54711504)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-329.87732118,1062.67756609)
+\curveto(-328.25746311,1061.96425971)(-327.16631808,1060.52903719)(-325.99964262,1059.25322585)
+\lineto(-325.8310479,1058.76403439)
+\lineto(-326.74145939,1057.7530387)
+\curveto(-326.8593543,1058.82586819)(-327.50175414,1059.75415791)(-328.02277926,1060.68818748)
+\lineto(-329.84360224,1062.44927674)
+\lineto(-329.87732118,1062.67756609)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-329.87732118,1062.67756609)
+\curveto(-328.25746311,1061.96425971)(-327.16631808,1060.52903719)(-325.99964262,1059.25322585)
+\lineto(-325.8310479,1058.76403439)
+\lineto(-326.74145939,1057.7530387)
+\curveto(-326.8593543,1058.82586819)(-327.50175414,1059.75415791)(-328.02277926,1060.68818748)
+\lineto(-329.84360224,1062.44927674)
+\lineto(-329.87732118,1062.67756609)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-334.46309757,1062.54711504)
+\lineto(-334.09218919,1062.05792357)
+\lineto(-334.46309757,1062.54711504)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.46309757,1062.54711504)
+\lineto(-334.09218919,1062.05792357)
+\lineto(-334.46309757,1062.54711504)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-386.12051983,1062.41666398)
+\curveto(-385.86911139,1062.45998678)(-385.35617881,1062.41672399)(-385.4798599,1062.05792357)
+\lineto(-386.08680089,1061.79702146)
+\lineto(-385.34498412,1061.60134487)
+\lineto(-386.12051983,1061.37305553)
+\curveto(-386.28452878,1061.16668195)(-386.6095794,1061.36834233)(-386.49142822,1061.60134487)
+\lineto(-386.28911455,1061.6665704)
+\lineto(-386.39027139,1061.7644087)
+\lineto(-387.30068288,1061.6665704)
+\lineto(-387.03093132,1062.25360016)
+\lineto(-386.25539561,1062.28621292)
+\lineto(-386.12051983,1062.41666398)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-386.12051983,1062.41666398)
+\curveto(-385.86911139,1062.45998678)(-385.35617881,1062.41672399)(-385.4798599,1062.05792357)
+\lineto(-386.08680089,1061.79702146)
+\lineto(-385.34498412,1061.60134487)
+\lineto(-386.12051983,1061.37305553)
+\curveto(-386.28452878,1061.16668195)(-386.6095794,1061.36834233)(-386.49142822,1061.60134487)
+\lineto(-386.28911455,1061.6665704)
+\lineto(-386.39027139,1061.7644087)
+\lineto(-387.30068288,1061.6665704)
+\lineto(-387.03093132,1062.25360016)
+\lineto(-386.25539561,1062.28621292)
+\lineto(-386.12051983,1062.41666398)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-350.1086876,1062.15576187)
+\lineto(-349.83893605,1062.02531081)
+\lineto(-351.22141276,1059.97070667)
+\lineto(-351.42372642,1059.97070667)
+\lineto(-351.42372642,1060.16638325)
+\curveto(-350.90067816,1060.77324157)(-350.31005714,1061.3877965)(-350.1086876,1062.15576187)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-350.1086876,1062.15576187)
+\lineto(-349.83893605,1062.02531081)
+\lineto(-351.22141276,1059.97070667)
+\lineto(-351.42372642,1059.97070667)
+\lineto(-351.42372642,1060.16638325)
+\curveto(-350.90067816,1060.77324157)(-350.31005714,1061.3877965)(-350.1086876,1062.15576187)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.89086154,1061.50350658)
+\curveto(-337.14510238,1061.48528257)(-336.87201939,1061.74940682)(-336.89086154,1061.50350658)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.89086154,1061.50350658)
+\curveto(-337.14510238,1061.48528257)(-336.87201939,1061.74940682)(-336.89086154,1061.50350658)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-425.36937069,1061.50350658)
+\lineto(-425.26821386,1061.47089382)
+\lineto(-424.99846231,1060.88386406)
+\curveto(-425.46580687,1060.67031568)(-425.37557498,1061.23751688)(-425.36937069,1061.50350658)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-425.36937069,1061.50350658)
+\lineto(-425.26821386,1061.47089382)
+\lineto(-424.99846231,1060.88386406)
+\curveto(-425.46580687,1060.67031568)(-425.37557498,1061.23751688)(-425.36937069,1061.50350658)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.62110999,1061.11215341)
+\lineto(-336.89086154,1061.50350658)
+\lineto(-336.62110999,1061.11215341)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.62110999,1061.11215341)
+\lineto(-336.89086154,1061.50350658)
+\lineto(-336.62110999,1061.11215341)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1061.37305553)
+\curveto(-333.77320797,1061.35483151)(-333.5001115,1061.61895577)(-333.51896714,1061.37305553)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.51896714,1061.37305553)
+\curveto(-333.77320797,1061.35483151)(-333.5001115,1061.61895577)(-333.51896714,1061.37305553)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.27058825 0.27058825 0.27058825}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-384.50201052,1061.11215341)
+\curveto(-384.30185487,1061.0860632)(-384.16387695,1060.85307761)(-384.40085369,1060.75341301)
+\curveto(-384.62784962,1060.76155837)(-384.63176102,1060.98418093)(-384.50201052,1061.11215341)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.27058825 0.27058825 0.27058825}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.50201052,1061.11215341)
+\curveto(-384.30185487,1061.0860632)(-384.16387695,1060.85307761)(-384.40085369,1060.75341301)
+\curveto(-384.62784962,1060.76155837)(-384.63176102,1060.98418093)(-384.50201052,1061.11215341)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.62110999,1061.11215341)
+\curveto(-336.36686915,1061.13037742)(-336.63995213,1060.86625317)(-336.62110999,1061.11215341)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.62110999,1061.11215341)
+\curveto(-336.36686915,1061.13037742)(-336.63995213,1060.86625317)(-336.62110999,1061.11215341)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.53132719,1060.98170236)
+\lineto(-439.29529458,1060.94908959)
+\curveto(-439.13506216,1060.51273081)(-439.32519654,1060.00371078)(-439.7673598,1059.84025561)
+\lineto(-439.53132719,1060.98170236)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.53132719,1060.98170236)
+\lineto(-439.29529458,1060.94908959)
+\curveto(-439.13506216,1060.51273081)(-439.32519654,1060.00371078)(-439.7673598,1059.84025561)
+\lineto(-439.53132719,1060.98170236)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-383.42300431,1060.19899602)
+\lineto(-383.01837698,1060.19899602)
+\lineto(-382.91722015,1059.97070667)
+\lineto(-383.92878847,1059.84025561)
+\lineto(-383.92878847,1060.03593219)
+\lineto(-383.69275586,1060.06854496)
+\lineto(-383.42300431,1060.19899602)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-383.42300431,1060.19899602)
+\lineto(-383.01837698,1060.19899602)
+\lineto(-382.91722015,1059.97070667)
+\lineto(-383.92878847,1059.84025561)
+\lineto(-383.92878847,1060.03593219)
+\lineto(-383.69275586,1060.06854496)
+\lineto(-383.42300431,1060.19899602)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-349.02968139,1060.06854496)
+\lineto(-348.52389723,1060.03593219)
+\lineto(-348.99596245,1058.01394082)
+\lineto(-348.79364879,1057.94871529)
+\lineto(-348.75992984,1057.72042594)
+\curveto(-348.96979655,1057.47517795)(-349.13866102,1057.1791845)(-348.99596245,1056.8398813)
+\lineto(-348.7262109,1056.44852813)
+\lineto(-347.71464258,1058.07916634)
+\lineto(-348.38902146,1055.79627285)
+\lineto(-348.52389723,1055.66582179)
+\lineto(-349.67034133,1057.10078342)
+\lineto(-350.1086876,1057.98132805)
+\lineto(-349.02968139,1060.06854496)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-349.02968139,1060.06854496)
+\lineto(-348.52389723,1060.03593219)
+\lineto(-348.99596245,1058.01394082)
+\lineto(-348.79364879,1057.94871529)
+\lineto(-348.75992984,1057.72042594)
+\curveto(-348.96979655,1057.47517795)(-349.13866102,1057.1791845)(-348.99596245,1056.8398813)
+\lineto(-348.7262109,1056.44852813)
+\lineto(-347.71464258,1058.07916634)
+\lineto(-348.38902146,1055.79627285)
+\lineto(-348.52389723,1055.66582179)
+\lineto(-349.67034133,1057.10078342)
+\lineto(-350.1086876,1057.98132805)
+\lineto(-349.02968139,1060.06854496)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-438.18256943,1059.9380939)
+\lineto(-438.0814126,1059.90548114)
+\lineto(-438.48603992,1058.92709821)
+\lineto(-438.55347781,1058.92709821)
+\lineto(-438.18256943,1059.9380939)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-438.18256943,1059.9380939)
+\lineto(-438.0814126,1059.90548114)
+\lineto(-438.48603992,1058.92709821)
+\lineto(-438.55347781,1058.92709821)
+\lineto(-438.18256943,1059.9380939)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-334.46309757,1059.9380939)
+\curveto(-334.20885673,1059.95631791)(-334.4819532,1059.69219366)(-334.46309757,1059.9380939)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-334.46309757,1059.9380939)
+\curveto(-334.20885673,1059.95631791)(-334.4819532,1059.69219366)(-334.46309757,1059.9380939)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1059.67719179)
+\curveto(-445.61959275,1059.92309203)(-445.34649628,1059.65896778)(-445.60073712,1059.67719179)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1059.67719179)
+\curveto(-445.61959275,1059.92309203)(-445.34649628,1059.65896778)(-445.60073712,1059.67719179)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-440.47545762,1059.80764284)
+\curveto(-440.16699672,1059.63740422)(-440.39103887,1059.17404206)(-440.50917657,1058.92709821)
+\lineto(-440.57661445,1058.92709821)
+\lineto(-440.47545762,1059.80764284)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-440.47545762,1059.80764284)
+\curveto(-440.16699672,1059.63740422)(-440.39103887,1059.17404206)(-440.50917657,1058.92709821)
+\lineto(-440.57661445,1058.92709821)
+\lineto(-440.47545762,1059.80764284)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1059.67719179)
+\lineto(-445.83676972,1059.44890244)
+\lineto(-445.60073712,1059.67719179)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-445.60073712,1059.67719179)
+\lineto(-445.83676972,1059.44890244)
+\lineto(-445.60073712,1059.67719179)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-407.97039557,1059.54674073)
+\curveto(-407.98923772,1059.79264097)(-407.71615473,1059.52851672)(-407.97039557,1059.54674073)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-407.97039557,1059.54674073)
+\curveto(-407.98923772,1059.79264097)(-407.71615473,1059.52851672)(-407.97039557,1059.54674073)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-407.97039557,1059.54674073)
+\lineto(-408.10527135,1059.41628967)
+\lineto(-407.97039557,1059.54674073)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-407.97039557,1059.54674073)
+\lineto(-408.10527135,1059.41628967)
+\lineto(-407.97039557,1059.54674073)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.10527135,1059.41628967)
+\lineto(-408.24014712,1059.28583862)
+\lineto(-408.10527135,1059.41628967)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66666669 0.66666669 0.66666669}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.10527135,1059.41628967)
+\lineto(-408.24014712,1059.28583862)
+\lineto(-408.10527135,1059.41628967)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-342.01614103,1059.41628967)
+\curveto(-341.72831613,1059.36249166)(-341.68825802,1059.01789215)(-341.78010843,1058.79664716)
+\lineto(-341.84754631,1058.79664716)
+\lineto(-342.01614103,1059.41628967)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.66274512 0.66274512 0.66274512}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-342.01614103,1059.41628967)
+\curveto(-341.72831613,1059.36249166)(-341.68825802,1059.01789215)(-341.78010843,1058.79664716)
+\lineto(-341.84754631,1058.79664716)
+\lineto(-342.01614103,1059.41628967)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.78871869,1057.72042594)
+\lineto(-332.5748367,1055.50275797)
+\lineto(-332.70971248,1055.24185586)
+\lineto(-332.3388041,1052.66544749)
+\lineto(-332.81086931,1052.40454538)
+\lineto(-332.97946403,1053.15463895)
+\lineto(-333.11433981,1054.06779635)
+\curveto(-333.00162412,1054.94560151)(-333.53137571,1055.6540812)(-334.0247513,1056.31807708)
+\lineto(-335.64326061,1059.38367691)
+\curveto(-334.97589527,1059.64053504)(-334.91789869,1058.81634526)(-334.63169229,1058.47051951)
+\lineto(-333.88987552,1056.97033236)
+\lineto(-333.68756186,1056.97033236)
+\lineto(-333.78871869,1057.72042594)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.83529413 0.83529413 0.83529413}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.78871869,1057.72042594)
+\lineto(-332.5748367,1055.50275797)
+\lineto(-332.70971248,1055.24185586)
+\lineto(-332.3388041,1052.66544749)
+\lineto(-332.81086931,1052.40454538)
+\lineto(-332.97946403,1053.15463895)
+\lineto(-333.11433981,1054.06779635)
+\curveto(-333.00162412,1054.94560151)(-333.53137571,1055.6540812)(-334.0247513,1056.31807708)
+\lineto(-335.64326061,1059.38367691)
+\curveto(-334.97589527,1059.64053504)(-334.91789869,1058.81634526)(-334.63169229,1058.47051951)
+\lineto(-333.88987552,1056.97033236)
+\lineto(-333.68756186,1056.97033236)
+\lineto(-333.78871869,1057.72042594)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-343.23002302,1059.28583862)
+\lineto(-342.99399041,1059.25322585)
+\lineto(-342.82539569,1058.63358333)
+\lineto(-342.82539569,1058.37268122)
+\lineto(-342.96027147,1056.41591537)
+\lineto(-343.09514724,1056.28546431)
+\lineto(-343.19630408,1056.31807708)
+\lineto(-343.09514724,1057.32907277)
+\lineto(-343.23002302,1058.89448545)
+\lineto(-343.23002302,1059.28583862)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-343.23002302,1059.28583862)
+\lineto(-342.99399041,1059.25322585)
+\lineto(-342.82539569,1058.63358333)
+\lineto(-342.82539569,1058.37268122)
+\lineto(-342.96027147,1056.41591537)
+\lineto(-343.09514724,1056.28546431)
+\lineto(-343.19630408,1056.31807708)
+\lineto(-343.09514724,1057.32907277)
+\lineto(-343.23002302,1058.89448545)
+\lineto(-343.23002302,1059.28583862)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-344.03927768,1059.15538756)
+\lineto(-343.87068296,1058.53574504)
+\lineto(-343.53349352,1058.47051951)
+\lineto(-343.53349352,1056.97033236)
+\lineto(-343.6009314,1056.97033236)
+\lineto(-343.66836929,1058.07916634)
+\lineto(-343.80324507,1058.2096174)
+\curveto(-344.30053205,1057.98028444)(-344.25899032,1058.90818281)(-344.03927768,1059.15538756)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-344.03927768,1059.15538756)
+\lineto(-343.87068296,1058.53574504)
+\lineto(-343.53349352,1058.47051951)
+\lineto(-343.53349352,1056.97033236)
+\lineto(-343.6009314,1056.97033236)
+\lineto(-343.66836929,1058.07916634)
+\lineto(-343.80324507,1058.2096174)
+\curveto(-344.30053205,1057.98028444)(-344.25899032,1058.90818281)(-344.03927768,1059.15538756)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-336.35135844,1059.15538756)
+\lineto(-333.95731341,1054.94834098)
+\lineto(-333.01318298,1052.14364326)
+\lineto(-333.95731341,1051.49138798)
+\curveto(-336.21108763,1050.61853996)(-338.46216433,1049.67029123)(-340.90341588,1049.53462213)
+\curveto(-340.59266209,1050.76868912)(-340.1471674,1052.21800036)(-340.5325075,1053.54599212)
+\lineto(-340.39763172,1056.28546431)
+\lineto(-340.63366433,1057.81826423)
+\lineto(-340.39763172,1057.19862171)
+\lineto(-340.229037,1056.8398813)
+\lineto(-339.89184756,1057.68781317)
+\lineto(-339.0825929,1055.86149838)
+\lineto(-339.18374973,1054.45914952)
+\lineto(-339.31862551,1052.63283473)
+\lineto(-339.82440967,1051.10003481)
+\lineto(-339.62209601,1050.96958375)
+\curveto(-338.71694467,1052.16229776)(-338.73677141,1053.73775518)(-338.77912241,1055.24185586)
+\lineto(-338.50937085,1055.50275797)
+\lineto(-338.61052769,1056.77465578)
+\lineto(-337.73383514,1056.77465578)
+\lineto(-337.56524042,1056.0245622)
+\lineto(-337.32920781,1055.92672391)
+\lineto(-337.3966457,1057.81826423)
+\lineto(-337.19433204,1057.94871529)
+\lineto(-337.05945626,1057.29646)
+\lineto(-336.89086154,1056.54636643)
+\lineto(-336.62110999,1056.80726854)
+\curveto(-337.16587325,1057.23932244)(-336.24156955,1058.36615867)(-336.18276372,1057.36168553)
+\lineto(-335.13747645,1053.15463895)
+\lineto(-335.27235223,1052.1110305)
+\lineto(-335.00260067,1051.32832416)
+\lineto(-334.73284912,1051.85012838)
+\curveto(-334.73640984,1054.43436382)(-335.61965735,1056.77335127)(-336.35135844,1059.15538756)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.87058824 0.87058824 0.87058824}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-336.35135844,1059.15538756)
+\lineto(-333.95731341,1054.94834098)
+\lineto(-333.01318298,1052.14364326)
+\lineto(-333.95731341,1051.49138798)
+\curveto(-336.21108763,1050.61853996)(-338.46216433,1049.67029123)(-340.90341588,1049.53462213)
+\curveto(-340.59266209,1050.76868912)(-340.1471674,1052.21800036)(-340.5325075,1053.54599212)
+\lineto(-340.39763172,1056.28546431)
+\lineto(-340.63366433,1057.81826423)
+\lineto(-340.39763172,1057.19862171)
+\lineto(-340.229037,1056.8398813)
+\lineto(-339.89184756,1057.68781317)
+\lineto(-339.0825929,1055.86149838)
+\lineto(-339.18374973,1054.45914952)
+\lineto(-339.31862551,1052.63283473)
+\lineto(-339.82440967,1051.10003481)
+\lineto(-339.62209601,1050.96958375)
+\curveto(-338.71694467,1052.16229776)(-338.73677141,1053.73775518)(-338.77912241,1055.24185586)
+\lineto(-338.50937085,1055.50275797)
+\lineto(-338.61052769,1056.77465578)
+\lineto(-337.73383514,1056.77465578)
+\lineto(-337.56524042,1056.0245622)
+\lineto(-337.32920781,1055.92672391)
+\lineto(-337.3966457,1057.81826423)
+\lineto(-337.19433204,1057.94871529)
+\lineto(-337.05945626,1057.29646)
+\lineto(-336.89086154,1056.54636643)
+\lineto(-336.62110999,1056.80726854)
+\curveto(-337.16587325,1057.23932244)(-336.24156955,1058.36615867)(-336.18276372,1057.36168553)
+\lineto(-335.13747645,1053.15463895)
+\lineto(-335.27235223,1052.1110305)
+\lineto(-335.00260067,1051.32832416)
+\lineto(-334.73284912,1051.85012838)
+\curveto(-334.73640984,1054.43436382)(-335.61965735,1056.77335127)(-336.35135844,1059.15538756)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81960785 0.81960785 0.81960785}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1056.41591537)
+\lineto(-442.63347004,1057.45952382)
+\lineto(-442.66718898,1057.55736212)
+\curveto(-443.1782333,1057.83991911)(-442.31732122,1058.75372876)(-441.92537222,1058.40529399)
+\lineto(-441.72305855,1058.40529399)
+\lineto(-441.18355545,1058.73142163)
+\curveto(-441.2739357,1058.24236062)(-441.45613939,1057.74834246)(-441.92537222,1057.42691106)
+\lineto(-442.76834582,1056.54636643)
+\lineto(-443.17297314,1056.67681748)
+\lineto(-443.71247625,1056.41591537)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.81960785 0.81960785 0.81960785}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1056.41591537)
+\lineto(-442.63347004,1057.45952382)
+\lineto(-442.66718898,1057.55736212)
+\curveto(-443.1782333,1057.83991911)(-442.31732122,1058.75372876)(-441.92537222,1058.40529399)
+\lineto(-441.72305855,1058.40529399)
+\lineto(-441.18355545,1058.73142163)
+\curveto(-441.2739357,1058.24236062)(-441.45613939,1057.74834246)(-441.92537222,1057.42691106)
+\lineto(-442.76834582,1056.54636643)
+\lineto(-443.17297314,1056.67681748)
+\lineto(-443.71247625,1056.41591537)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-383.01837698,1058.76403439)
+\lineto(-382.37771705,1058.73142163)
+\lineto(-382.51259282,1058.53574504)
+\lineto(-384.06366425,1058.27484293)
+\lineto(-383.92878847,1058.47051951)
+\lineto(-383.55788009,1058.50313228)
+\lineto(-383.01837698,1058.76403439)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21176471 0.21176471 0.21176471}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-383.01837698,1058.76403439)
+\lineto(-382.37771705,1058.73142163)
+\lineto(-382.51259282,1058.53574504)
+\lineto(-384.06366425,1058.27484293)
+\lineto(-383.92878847,1058.47051951)
+\lineto(-383.55788009,1058.50313228)
+\lineto(-383.01837698,1058.76403439)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1058.50313228)
+\lineto(-439.29529458,1058.47051951)
+\lineto(-439.26157564,1058.24223016)
+\curveto(-439.46807045,1057.94427995)(-439.56626001,1057.3148536)(-440.03711135,1057.36168553)
+\lineto(-439.96967346,1057.49213659)
+\lineto(-439.39645141,1058.50313228)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.69803923 0.69803923 0.69803923}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.39645141,1058.50313228)
+\lineto(-439.29529458,1058.47051951)
+\lineto(-439.26157564,1058.24223016)
+\curveto(-439.46807045,1057.94427995)(-439.56626001,1057.3148536)(-440.03711135,1057.36168553)
+\lineto(-439.96967346,1057.49213659)
+\lineto(-439.39645141,1058.50313228)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.14117648 0.14117648 0.14117648}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-390.30166889,1058.37268122)
+\curveto(-389.60719352,1058.41385157)(-389.40150796,1057.58501774)(-389.89704157,1057.19862171)
+\lineto(-388.95291113,1056.54636643)
+\lineto(-388.54828381,1056.0245622)
+\lineto(-388.41340803,1055.37230692)
+\curveto(-388.34347494,1055.02100222)(-389.05137045,1054.67008888)(-389.22266269,1054.98095375)
+\lineto(-389.12150585,1055.60059627)
+\lineto(-390.67257728,1056.31807708)
+\lineto(-390.94232883,1057.16600895)
+\lineto(-390.47026362,1057.68781317)
+\lineto(-390.70629622,1057.85087699)
+\curveto(-393.67086578,1057.77186279)(-396.59497261,1057.17827135)(-398.96743751,1055.40491968)
+\lineto(-399.16975118,1055.53537074)
+\lineto(-398.4953723,1056.12240049)
+\lineto(-395.42694839,1057.45952382)
+\lineto(-394.2130664,1057.72042594)
+\curveto(-393.07984013,1058.31528276)(-391.754281,1058.26740722)(-390.43654467,1058.24223016)
+\lineto(-390.30166889,1058.37268122)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.14117648 0.14117648 0.14117648}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-390.30166889,1058.37268122)
+\curveto(-389.60719352,1058.41385157)(-389.40150796,1057.58501774)(-389.89704157,1057.19862171)
+\lineto(-388.95291113,1056.54636643)
+\lineto(-388.54828381,1056.0245622)
+\lineto(-388.41340803,1055.37230692)
+\curveto(-388.34347494,1055.02100222)(-389.05137045,1054.67008888)(-389.22266269,1054.98095375)
+\lineto(-389.12150585,1055.60059627)
+\lineto(-390.67257728,1056.31807708)
+\lineto(-390.94232883,1057.16600895)
+\lineto(-390.47026362,1057.68781317)
+\lineto(-390.70629622,1057.85087699)
+\curveto(-393.67086578,1057.77186279)(-396.59497261,1057.17827135)(-398.96743751,1055.40491968)
+\lineto(-399.16975118,1055.53537074)
+\lineto(-398.4953723,1056.12240049)
+\lineto(-395.42694839,1057.45952382)
+\lineto(-394.2130664,1057.72042594)
+\curveto(-393.07984013,1058.31528276)(-391.754281,1058.26740722)(-390.43654467,1058.24223016)
+\lineto(-390.30166889,1058.37268122)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-333.78871869,1057.72042594)
+\lineto(-334.0247513,1058.2096174)
+\lineto(-333.78871869,1057.72042594)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57647061 0.57647061 0.57647061}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-333.78871869,1057.72042594)
+\lineto(-334.0247513,1058.2096174)
+\lineto(-333.78871869,1057.72042594)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1058.11177911)
+\curveto(-444.35488957,1058.23412915)(-445.07971199,1057.48509223)(-445.16239084,1057.81826423)
+\lineto(-445.09495296,1057.88348976)
+\lineto(-444.92635823,1058.11177911)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-444.92635823,1058.11177911)
+\curveto(-444.35488957,1058.23412915)(-445.07971199,1057.48509223)(-445.16239084,1057.81826423)
+\lineto(-445.09495296,1057.88348976)
+\lineto(-444.92635823,1058.11177911)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1057.98132805)
+\curveto(-408.79849237,1058.22722829)(-408.52540939,1057.96310404)(-408.77965023,1057.98132805)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1057.98132805)
+\curveto(-408.79849237,1058.22722829)(-408.52540939,1057.96310404)(-408.77965023,1057.98132805)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1057.98132805)
+\lineto(-408.914526,1057.85087699)
+\lineto(-408.77965023,1057.98132805)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.77965023,1057.98132805)
+\lineto(-408.914526,1057.85087699)
+\lineto(-408.77965023,1057.98132805)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.24313726 0.24313726 0.24313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-382.20912233,1057.72042594)
+\curveto(-381.86478447,1057.59271435)(-382.37488465,1057.12869994)(-382.61374965,1057.19862171)
+\lineto(-382.98465804,1057.23123447)
+\lineto(-382.20912233,1057.72042594)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.24313726 0.24313726 0.24313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-382.20912233,1057.72042594)
+\curveto(-381.86478447,1057.59271435)(-382.37488465,1057.12869994)(-382.61374965,1057.19862171)
+\lineto(-382.98465804,1057.23123447)
+\lineto(-382.20912233,1057.72042594)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23529412 0.23529412 0.23529412}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-381.804495,1057.32907277)
+\lineto(-381.43358661,1057.29646)
+\lineto(-381.43358661,1057.10078342)
+\lineto(-381.56846239,1056.97033236)
+\lineto(-383.11953382,1056.44852813)
+\lineto(-382.88350121,1056.67681748)
+\lineto(-382.44515493,1056.90510683)
+\lineto(-381.804495,1057.32907277)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23529412 0.23529412 0.23529412}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.804495,1057.32907277)
+\lineto(-381.43358661,1057.29646)
+\lineto(-381.43358661,1057.10078342)
+\lineto(-381.56846239,1056.97033236)
+\lineto(-383.11953382,1056.44852813)
+\lineto(-382.88350121,1056.67681748)
+\lineto(-382.44515493,1056.90510683)
+\lineto(-381.804495,1057.32907277)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.86666667 0.86666667 0.86666667}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1056.41591537)
+\lineto(-447.21924643,1053.67644318)
+\lineto(-449.41097779,1052.40454538)
+\lineto(-450.59114083,1051.85012838)
+\curveto(-450.68648452,1051.50025865)(-450.26083006,1051.59770559)(-450.05163773,1051.58922627)
+\curveto(-447.66433649,1052.64770615)(-445.40786476,1054.11736775)(-443.54388153,1055.86149838)
+\lineto(-443.07181631,1055.99194944)
+\lineto(-444.42057407,1054.7526644)
+\lineto(-448.66916102,1051.42616245)
+\lineto(-448.66916102,1051.23048587)
+\curveto(-447.54780382,1051.31727495)(-446.66220947,1052.27579018)(-445.76933184,1052.9263496)
+\lineto(-445.09495296,1053.3829283)
+\lineto(-447.89362531,1050.54561782)
+\lineto(-447.72503059,1050.18687741)
+\lineto(-447.1180896,1050.57823058)
+\lineto(-446.30883494,1051.23048587)
+\lineto(-445.4321424,1052.07841773)
+\lineto(-443.07181631,1054.62221334)
+\curveto(-442.57776634,1055.0988815)(-441.87182653,1055.5743756)(-442.22884271,1056.28546431)
+\lineto(-441.9928101,1056.51375366)
+\curveto(-441.96491779,1056.01073439)(-441.40111007,1055.88054423)(-441.1498365,1056.28546431)
+\lineto(-440.64405234,1056.90510683)
+\lineto(-440.77892812,1056.31807708)
+\curveto(-442.50533805,1053.839507)(-444.70516196,1051.43920756)(-447.18552749,1049.59984766)
+\lineto(-447.18552749,1049.40417107)
+\lineto(-446.8146191,1049.24110725)
+\lineto(-444.55544985,1051.23048587)
+\lineto(-443.61131942,1052.14364326)
+\lineto(-443.07181631,1052.66544749)
+\lineto(-440.91380389,1054.81788993)
+\curveto(-441.01229019,1053.74219051)(-442.02018989,1052.96418041)(-442.5997511,1052.07841773)
+\lineto(-444.2856983,1050.18687741)
+\lineto(-445.9716455,1048.0996605)
+\lineto(-445.63445606,1048.0996605)
+\curveto(-443.87028091,1049.84379113)(-442.30302439,1051.57096312)(-440.84636601,1053.51337936)
+\lineto(-440.37430079,1053.12202619)
+\lineto(-441.85793433,1051.36093692)
+\lineto(-444.08338463,1048.68669026)
+\lineto(-444.89263929,1047.18650311)
+\curveto(-444.57810898,1047.03922386)(-444.28583317,1047.37852706)(-444.21826041,1047.64308181)
+\lineto(-441.25099333,1051.29571139)
+\lineto(-441.04867967,1051.29571139)
+\curveto(-441.69311613,1049.36503575)(-443.00437842,1047.5804653)(-444.42057407,1046.0124436)
+\curveto(-446.30209115,1047.17893695)(-448.14044798,1048.47666406)(-449.81560512,1049.99120083)
+\lineto(-451.40039549,1051.85012838)
+\curveto(-448.84584829,1053.29422158)(-446.07145357,1054.64830355)(-443.71247625,1056.41591537)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.86666667 0.86666667 0.86666667}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-443.71247625,1056.41591537)
+\lineto(-447.21924643,1053.67644318)
+\lineto(-449.41097779,1052.40454538)
+\lineto(-450.59114083,1051.85012838)
+\curveto(-450.68648452,1051.50025865)(-450.26083006,1051.59770559)(-450.05163773,1051.58922627)
+\curveto(-447.66433649,1052.64770615)(-445.40786476,1054.11736775)(-443.54388153,1055.86149838)
+\lineto(-443.07181631,1055.99194944)
+\lineto(-444.42057407,1054.7526644)
+\lineto(-448.66916102,1051.42616245)
+\lineto(-448.66916102,1051.23048587)
+\curveto(-447.54780382,1051.31727495)(-446.66220947,1052.27579018)(-445.76933184,1052.9263496)
+\lineto(-445.09495296,1053.3829283)
+\lineto(-447.89362531,1050.54561782)
+\lineto(-447.72503059,1050.18687741)
+\lineto(-447.1180896,1050.57823058)
+\lineto(-446.30883494,1051.23048587)
+\lineto(-445.4321424,1052.07841773)
+\lineto(-443.07181631,1054.62221334)
+\curveto(-442.57776634,1055.0988815)(-441.87182653,1055.5743756)(-442.22884271,1056.28546431)
+\lineto(-441.9928101,1056.51375366)
+\curveto(-441.96491779,1056.01073439)(-441.40111007,1055.88054423)(-441.1498365,1056.28546431)
+\lineto(-440.64405234,1056.90510683)
+\lineto(-440.77892812,1056.31807708)
+\curveto(-442.50533805,1053.839507)(-444.70516196,1051.43920756)(-447.18552749,1049.59984766)
+\lineto(-447.18552749,1049.40417107)
+\lineto(-446.8146191,1049.24110725)
+\lineto(-444.55544985,1051.23048587)
+\lineto(-443.61131942,1052.14364326)
+\lineto(-443.07181631,1052.66544749)
+\lineto(-440.91380389,1054.81788993)
+\curveto(-441.01229019,1053.74219051)(-442.02018989,1052.96418041)(-442.5997511,1052.07841773)
+\lineto(-444.2856983,1050.18687741)
+\lineto(-445.9716455,1048.0996605)
+\lineto(-445.63445606,1048.0996605)
+\curveto(-443.87028091,1049.84379113)(-442.30302439,1051.57096312)(-440.84636601,1053.51337936)
+\lineto(-440.37430079,1053.12202619)
+\lineto(-441.85793433,1051.36093692)
+\lineto(-444.08338463,1048.68669026)
+\lineto(-444.89263929,1047.18650311)
+\curveto(-444.57810898,1047.03922386)(-444.28583317,1047.37852706)(-444.21826041,1047.64308181)
+\lineto(-441.25099333,1051.29571139)
+\lineto(-441.04867967,1051.29571139)
+\curveto(-441.69311613,1049.36503575)(-443.00437842,1047.5804653)(-444.42057407,1046.0124436)
+\curveto(-446.30209115,1047.17893695)(-448.14044798,1048.47666406)(-449.81560512,1049.99120083)
+\lineto(-451.40039549,1051.85012838)
+\curveto(-448.84584829,1053.29422158)(-446.07145357,1054.64830355)(-443.71247625,1056.41591537)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-339.18374973,1056.67681748)
+\curveto(-338.96619511,1056.63800829)(-338.8337471,1056.37834547)(-338.94771713,1056.18762602)
+\lineto(-339.18374973,1056.67681748)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-339.18374973,1056.67681748)
+\curveto(-338.96619511,1056.63800829)(-338.8337471,1056.37834547)(-338.94771713,1056.18762602)
+\lineto(-339.18374973,1056.67681748)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-430.35977441,1056.28546431)
+\curveto(-430.04632311,1056.09474487)(-430.0452441,1055.61338047)(-430.1237418,1055.27446862)
+\curveto(-430.54347522,1055.39570984)(-430.29152727,1055.96703328)(-430.35977441,1056.28546431)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58431375 0.58431375 0.58431375}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-430.35977441,1056.28546431)
+\curveto(-430.04632311,1056.09474487)(-430.0452441,1055.61338047)(-430.1237418,1055.27446862)
+\curveto(-430.54347522,1055.39570984)(-430.29152727,1055.96703328)(-430.35977441,1056.28546431)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-381.804495,1056.28546431)
+\curveto(-381.50223838,1056.37954562)(-381.34740099,1056.1626316)(-381.29871084,1055.92672391)
+\lineto(-382.71490649,1055.40491968)
+\lineto(-382.84978226,1055.60059627)
+\lineto(-382.6474686,1055.79627285)
+\lineto(-381.804495,1056.28546431)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.804495,1056.28546431)
+\curveto(-381.50223838,1056.37954562)(-381.34740099,1056.1626316)(-381.29871084,1055.92672391)
+\lineto(-382.71490649,1055.40491968)
+\lineto(-382.84978226,1055.60059627)
+\lineto(-382.6474686,1055.79627285)
+\lineto(-381.804495,1056.28546431)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.50819055,1056.0245622)
+\lineto(-437.40703371,1055.66582179)
+\lineto(-437.50819055,1056.0245622)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.50819055,1056.0245622)
+\lineto(-437.40703371,1055.66582179)
+\lineto(-437.50819055,1056.0245622)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.11372549 0.11372549 0.11372549}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-337.16061309,1055.76366009)
+\curveto(-336.59062806,1055.18732732)(-336.13919884,1054.3704428)(-336.08160688,1053.54599212)
+\lineto(-335.84557428,1051.75229009)
+\lineto(-335.94673111,1051.85012838)
+\lineto(-335.94673111,1052.37193261)
+\lineto(-336.8571426,1054.94834098)
+\lineto(-336.89086154,1053.28509001)
+\lineto(-337.19433204,1051.62183904)
+\lineto(-337.3966457,1051.49138798)
+\lineto(-337.29548887,1052.50238367)
+\lineto(-337.16061309,1052.76328578)
+\lineto(-337.16061309,1055.76366009)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.11372549 0.11372549 0.11372549}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-337.16061309,1055.76366009)
+\curveto(-336.59062806,1055.18732732)(-336.13919884,1054.3704428)(-336.08160688,1053.54599212)
+\lineto(-335.84557428,1051.75229009)
+\lineto(-335.94673111,1051.85012838)
+\lineto(-335.94673111,1052.37193261)
+\lineto(-336.8571426,1054.94834098)
+\lineto(-336.89086154,1053.28509001)
+\lineto(-337.19433204,1051.62183904)
+\lineto(-337.3966457,1051.49138798)
+\lineto(-337.29548887,1052.50238367)
+\lineto(-337.16061309,1052.76328578)
+\lineto(-337.16061309,1055.76366009)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-437.37331477,1055.50275797)
+\curveto(-437.10653049,1055.48718212)(-437.30077858,1055.11766645)(-437.4744716,1055.14401757)
+\lineto(-437.37331477,1055.50275797)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-437.37331477,1055.50275797)
+\curveto(-437.10653049,1055.48718212)(-437.30077858,1055.11766645)(-437.4744716,1055.14401757)
+\lineto(-437.37331477,1055.50275797)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-434.67579925,1055.50275797)
+\lineto(-434.43976664,1055.47014521)
+\lineto(-434.43976664,1054.10040911)
+\lineto(-434.50720453,1054.10040911)
+\lineto(-434.67579925,1055.50275797)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-434.67579925,1055.50275797)
+\lineto(-434.43976664,1055.47014521)
+\lineto(-434.43976664,1054.10040911)
+\lineto(-434.50720453,1054.10040911)
+\lineto(-434.67579925,1055.50275797)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-345.38803544,1051.98057944)
+\lineto(-345.75894382,1051.23048587)
+\lineto(-345.42175438,1051.23048587)
+\curveto(-344.40007038,1052.39906643)(-343.79515252,1053.78732658)(-343.33117985,1055.2092431)
+\lineto(-343.12886619,1054.94834098)
+\lineto(-342.82539569,1055.1114048)
+\lineto(-342.58936308,1055.47014521)
+\lineto(-343.9044019,1051.85012838)
+\lineto(-343.49977457,1051.58922627)
+\lineto(-343.73580718,1050.8391327)
+\lineto(-343.3648988,1051.06742204)
+\lineto(-341.98242209,1054.42653676)
+\lineto(-341.71267054,1054.10040911)
+\lineto(-341.24060532,1054.16563464)
+\lineto(-341.51035687,1052.14364326)
+\curveto(-341.98377085,1051.57852928)(-341.02385995,1051.42107486)(-341.20688638,1052.1110305)
+\lineto(-341.0720106,1052.37193261)
+\lineto(-340.83597799,1053.12202619)
+\curveto(-340.69489793,1051.82038554)(-340.92285148,1050.57170803)(-341.3754811,1049.40417107)
+\lineto(-345.21944072,1049.40417107)
+\lineto(-346.4333227,1051.23048587)
+\curveto(-346.55975526,1051.48721355)(-346.75729432,1051.86526071)(-346.4333227,1052.07841773)
+\lineto(-346.16357115,1052.33931985)
+\lineto(-345.82638171,1052.4697709)
+\lineto(-346.33216587,1051.85012838)
+\curveto(-346.39225303,1051.44090342)(-345.97528457,1051.43320681)(-345.82638171,1051.75229009)
+\lineto(-345.38803544,1051.98057944)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-345.38803544,1051.98057944)
+\lineto(-345.75894382,1051.23048587)
+\lineto(-345.42175438,1051.23048587)
+\curveto(-344.40007038,1052.39906643)(-343.79515252,1053.78732658)(-343.33117985,1055.2092431)
+\lineto(-343.12886619,1054.94834098)
+\lineto(-342.82539569,1055.1114048)
+\lineto(-342.58936308,1055.47014521)
+\lineto(-343.9044019,1051.85012838)
+\lineto(-343.49977457,1051.58922627)
+\lineto(-343.73580718,1050.8391327)
+\lineto(-343.3648988,1051.06742204)
+\lineto(-341.98242209,1054.42653676)
+\lineto(-341.71267054,1054.10040911)
+\lineto(-341.24060532,1054.16563464)
+\lineto(-341.51035687,1052.14364326)
+\curveto(-341.98377085,1051.57852928)(-341.02385995,1051.42107486)(-341.20688638,1052.1110305)
+\lineto(-341.0720106,1052.37193261)
+\lineto(-340.83597799,1053.12202619)
+\curveto(-340.69489793,1051.82038554)(-340.92285148,1050.57170803)(-341.3754811,1049.40417107)
+\lineto(-345.21944072,1049.40417107)
+\lineto(-346.4333227,1051.23048587)
+\curveto(-346.55975526,1051.48721355)(-346.75729432,1051.86526071)(-346.4333227,1052.07841773)
+\lineto(-346.16357115,1052.33931985)
+\lineto(-345.82638171,1052.4697709)
+\lineto(-346.33216587,1051.85012838)
+\curveto(-346.39225303,1051.44090342)(-345.97528457,1051.43320681)(-345.82638171,1051.75229009)
+\lineto(-345.38803544,1051.98057944)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-381.39986767,1055.1114048)
+\lineto(-381.02895928,1055.07879204)
+\lineto(-381.16383506,1054.7526644)
+\lineto(-382.31027916,1054.49176228)
+\lineto(-381.83821394,1054.88311545)
+\lineto(-381.39986767,1055.1114048)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.39986767,1055.1114048)
+\lineto(-381.02895928,1055.07879204)
+\lineto(-381.16383506,1054.7526644)
+\lineto(-382.31027916,1054.49176228)
+\lineto(-381.83821394,1054.88311545)
+\lineto(-381.39986767,1055.1114048)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.10196079 0.10196079 0.10196079}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-338.2396193,1055.1114048)
+\lineto(-338.10474353,1054.98095375)
+\lineto(-338.00358669,1054.16563464)
+\lineto(-338.10474353,1053.93734529)
+\lineto(-338.00358669,1053.51337936)
+\lineto(-338.10474353,1053.28509001)
+\lineto(-338.5430898,1050.70868164)
+\lineto(-338.61052769,1050.70868164)
+\lineto(-338.64424663,1051.1978731)
+\lineto(-338.37449508,1052.63283473)
+\lineto(-338.2396193,1052.89373684)
+\lineto(-338.2396193,1055.1114048)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.10196079 0.10196079 0.10196079}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-338.2396193,1055.1114048)
+\lineto(-338.10474353,1054.98095375)
+\lineto(-338.00358669,1054.16563464)
+\lineto(-338.10474353,1053.93734529)
+\lineto(-338.00358669,1053.51337936)
+\lineto(-338.10474353,1053.28509001)
+\lineto(-338.5430898,1050.70868164)
+\lineto(-338.61052769,1050.70868164)
+\lineto(-338.64424663,1051.1978731)
+\lineto(-338.37449508,1052.63283473)
+\lineto(-338.2396193,1052.89373684)
+\lineto(-338.2396193,1055.1114048)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1054.98095375)
+\curveto(-439.59296542,1054.86073005)(-439.94037575,1054.39640256)(-440.17198713,1054.36131123)
+\lineto(-439.93595452,1054.98095375)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.64705884 0.64705884 0.64705884}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-439.93595452,1054.98095375)
+\curveto(-439.59296542,1054.86073005)(-439.94037575,1054.39640256)(-440.17198713,1054.36131123)
+\lineto(-439.93595452,1054.98095375)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-433.86654459,1054.98095375)
+\lineto(-433.76538776,1054.94834098)
+\curveto(-433.41835239,1054.36065897)(-433.64695334,1053.6606586)(-433.76538776,1053.05680066)
+\lineto(-433.83282565,1053.05680066)
+\lineto(-434.00142037,1054.19824741)
+\lineto(-433.86654459,1054.98095375)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6901961 0.6901961 0.6901961}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-433.86654459,1054.98095375)
+\lineto(-433.76538776,1054.94834098)
+\curveto(-433.41835239,1054.36065897)(-433.64695334,1053.6606586)(-433.76538776,1053.05680066)
+\lineto(-433.83282565,1053.05680066)
+\lineto(-434.00142037,1054.19824741)
+\lineto(-433.86654459,1054.98095375)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-344.98340811,1054.98095375)
+\lineto(-344.88225128,1054.7526644)
+\lineto(-344.98340811,1054.98095375)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-344.98340811,1054.98095375)
+\lineto(-344.88225128,1054.7526644)
+\lineto(-344.98340811,1054.98095375)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.25490198 0.25490198 0.25490198}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-380.86036456,1054.58960058)
+\curveto(-380.70363891,1054.61105977)(-380.33987894,1054.6131209)(-380.48945618,1054.36131123)
+\lineto(-381.63590028,1054.10040911)
+\lineto(-381.5010245,1054.2960857)
+\lineto(-380.86036456,1054.58960058)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.25490198 0.25490198 0.25490198}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-380.86036456,1054.58960058)
+\curveto(-380.70363891,1054.61105977)(-380.33987894,1054.6131209)(-380.48945618,1054.36131123)
+\lineto(-381.63590028,1054.10040911)
+\lineto(-381.5010245,1054.2960857)
+\lineto(-380.86036456,1054.58960058)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-398.79884279,1054.19824741)
+\lineto(-397.95586919,1052.79589855)
+\curveto(-397.64970118,1052.84399585)(-397.34353317,1052.98113905)(-397.18033348,1052.63283473)
+\lineto(-394.88744528,1053.28509001)
+\curveto(-393.88005811,1053.70683828)(-392.65929746,1053.96434866)(-391.65042666,1053.67644318)
+\lineto(-391.24579933,1053.80689424)
+\lineto(-390.97604778,1053.67644318)
+\lineto(-388.58200275,1054.03518358)
+\lineto(-387.06465027,1051.32832416)
+\lineto(-387.43555865,1051.23048587)
+\lineto(-387.7053102,1051.49138798)
+\curveto(-388.05463846,1052.39437019)(-389.34135337,1052.0675903)(-389.9981984,1052.20886879)
+\lineto(-390.13307417,1052.01319221)
+\curveto(-387.82400089,1050.10077971)(-390.82714492,1046.8890747)(-393.26893597,1047.41479246)
+\curveto(-394.09046432,1047.71130771)(-394.98050957,1048.1108793)(-395.29207261,1048.98020514)
+\curveto(-395.38671494,1049.93484597)(-394.92035497,1050.78303874)(-394.24678535,1051.42616245)
+\lineto(-394.88744528,1051.32832416)
+\curveto(-396.35759124,1050.99776118)(-397.54449807,1050.05342598)(-398.76512385,1049.20849449)
+\lineto(-398.66396702,1048.58885197)
+\curveto(-398.05109149,1047.7531825)(-397.24507385,1046.97256337)(-396.26992199,1046.59947335)
+\lineto(-396.00017044,1046.27334571)
+\lineto(-396.23620305,1046.11028189)
+\curveto(-397.67667633,1046.49954784)(-398.74219497,1047.61438257)(-399.50694062,1048.81714132)
+\lineto(-399.97900583,1048.88236684)
+\curveto(-400.02556495,1049.28154708)(-400.25374779,1049.59084653)(-399.877849,1049.89336253)
+\lineto(-398.93371857,1051.71967733)
+\lineto(-399.97900583,1051.62183904)
+\lineto(-398.79884279,1054.19824741)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.05882353 0.05882353 0.05882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-398.79884279,1054.19824741)
+\lineto(-397.95586919,1052.79589855)
+\curveto(-397.64970118,1052.84399585)(-397.34353317,1052.98113905)(-397.18033348,1052.63283473)
+\lineto(-394.88744528,1053.28509001)
+\curveto(-393.88005811,1053.70683828)(-392.65929746,1053.96434866)(-391.65042666,1053.67644318)
+\lineto(-391.24579933,1053.80689424)
+\lineto(-390.97604778,1053.67644318)
+\lineto(-388.58200275,1054.03518358)
+\lineto(-387.06465027,1051.32832416)
+\lineto(-387.43555865,1051.23048587)
+\lineto(-387.7053102,1051.49138798)
+\curveto(-388.05463846,1052.39437019)(-389.34135337,1052.0675903)(-389.9981984,1052.20886879)
+\lineto(-390.13307417,1052.01319221)
+\curveto(-387.82400089,1050.10077971)(-390.82714492,1046.8890747)(-393.26893597,1047.41479246)
+\curveto(-394.09046432,1047.71130771)(-394.98050957,1048.1108793)(-395.29207261,1048.98020514)
+\curveto(-395.38671494,1049.93484597)(-394.92035497,1050.78303874)(-394.24678535,1051.42616245)
+\lineto(-394.88744528,1051.32832416)
+\curveto(-396.35759124,1050.99776118)(-397.54449807,1050.05342598)(-398.76512385,1049.20849449)
+\lineto(-398.66396702,1048.58885197)
+\curveto(-398.05109149,1047.7531825)(-397.24507385,1046.97256337)(-396.26992199,1046.59947335)
+\lineto(-396.00017044,1046.27334571)
+\lineto(-396.23620305,1046.11028189)
+\curveto(-397.67667633,1046.49954784)(-398.74219497,1047.61438257)(-399.50694062,1048.81714132)
+\lineto(-399.97900583,1048.88236684)
+\curveto(-400.02556495,1049.28154708)(-400.25374779,1049.59084653)(-399.877849,1049.89336253)
+\lineto(-398.93371857,1051.71967733)
+\lineto(-399.97900583,1051.62183904)
+\lineto(-398.79884279,1054.19824741)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-342.69051991,1054.06779635)
+\lineto(-342.58936308,1053.839507)
+\lineto(-342.69051991,1054.06779635)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.59215689 0.59215689 0.59215689}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-342.69051991,1054.06779635)
+\lineto(-342.58936308,1053.839507)
+\lineto(-342.69051991,1054.06779635)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-380.32086146,1053.54599212)
+\curveto(-380.16413581,1053.56745132)(-379.80037584,1053.56951245)(-379.94995308,1053.31770277)
+\curveto(-380.18207429,1053.2098067)(-380.7571846,1053.08902207)(-380.45573724,1052.76328578)
+\lineto(-380.48945618,1052.66544749)
+\lineto(-380.62433196,1052.40454538)
+\curveto(-380.99105919,1052.52671279)(-381.19323798,1053.27321896)(-380.62433196,1053.31770277)
+\lineto(-380.3545804,1053.44815383)
+\lineto(-380.32086146,1053.54599212)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-380.32086146,1053.54599212)
+\curveto(-380.16413581,1053.56745132)(-379.80037584,1053.56951245)(-379.94995308,1053.31770277)
+\curveto(-380.18207429,1053.2098067)(-380.7571846,1053.08902207)(-380.45573724,1052.76328578)
+\lineto(-380.48945618,1052.66544749)
+\lineto(-380.62433196,1052.40454538)
+\curveto(-380.99105919,1052.52671279)(-381.19323798,1053.27321896)(-380.62433196,1053.31770277)
+\lineto(-380.3545804,1053.44815383)
+\lineto(-380.32086146,1053.54599212)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-342.96027147,1053.28509001)
+\lineto(-342.85911463,1053.05680066)
+\lineto(-342.96027147,1053.28509001)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61960787 0.61960787 0.61960787}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-342.96027147,1053.28509001)
+\lineto(-342.85911463,1053.05680066)
+\lineto(-342.96027147,1053.28509001)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-369.9354267,1052.63283473)
+\lineto(-368.04716583,1052.37193261)
+\lineto(-368.08088477,1052.27409432)
+\curveto(-368.47121527,1052.14406071)(-368.89378108,1051.89904753)(-369.02501521,1051.49138798)
+\lineto(-369.69939409,1050.44777953)
+\curveto(-370.24011107,1050.82843571)(-370.78096294,1051.35937151)(-371.01443291,1051.98057944)
+\lineto(-369.96914564,1052.53499643)
+\lineto(-369.9354267,1052.63283473)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-369.9354267,1052.63283473)
+\lineto(-368.04716583,1052.37193261)
+\lineto(-368.08088477,1052.27409432)
+\curveto(-368.47121527,1052.14406071)(-368.89378108,1051.89904753)(-369.02501521,1051.49138798)
+\lineto(-369.69939409,1050.44777953)
+\curveto(-370.24011107,1050.82843571)(-370.78096294,1051.35937151)(-371.01443291,1051.98057944)
+\lineto(-369.96914564,1052.53499643)
+\lineto(-369.9354267,1052.63283473)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-343.23002302,1052.63283473)
+\lineto(-343.12886619,1052.40454538)
+\lineto(-343.23002302,1052.63283473)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.57254905 0.57254905 0.57254905}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-343.23002302,1052.63283473)
+\lineto(-343.12886619,1052.40454538)
+\lineto(-343.23002302,1052.63283473)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-345.38803544,1051.98057944)
+\curveto(-345.40689107,1052.22647968)(-345.1337946,1051.96235543)(-345.38803544,1051.98057944)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60392159 0.60392159 0.60392159}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-345.38803544,1051.98057944)
+\curveto(-345.40689107,1052.22647968)(-345.1337946,1051.96235543)(-345.38803544,1051.98057944)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-380.32086146,1051.58922627)
+\curveto(-379.96856593,1051.64466797)(-379.62247469,1051.0742055)(-380.01739096,1050.90435822)
+\curveto(-380.02166383,1050.4819577)(-380.45937888,1050.16900562)(-380.82664562,1050.05642635)
+\lineto(-380.82664562,1050.382554)
+\lineto(-380.45573724,1050.80651993)
+\lineto(-380.32086146,1051.58922627)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20392157 0.20392157 0.20392157}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-380.32086146,1051.58922627)
+\curveto(-379.96856593,1051.64466797)(-379.62247469,1051.0742055)(-380.01739096,1050.90435822)
+\curveto(-380.02166383,1050.4819577)(-380.45937888,1050.16900562)(-380.82664562,1050.05642635)
+\lineto(-380.82664562,1050.382554)
+\lineto(-380.45573724,1050.80651993)
+\lineto(-380.32086146,1051.58922627)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-366.96815962,1051.1978731)
+\lineto(-366.46237546,1051.16526034)
+\lineto(-366.46237546,1050.44777953)
+\lineto(-367.06931645,1050.44777953)
+\lineto(-366.96815962,1051.1978731)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.89411765 0.89411765 0.89411765}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-366.96815962,1051.1978731)
+\lineto(-366.46237546,1051.16526034)
+\lineto(-366.46237546,1050.44777953)
+\lineto(-367.06931645,1050.44777953)
+\lineto(-366.96815962,1051.1978731)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.98431373 0.98431373 0.98431373}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-392.32480554,1051.06742204)
+\lineto(-391.54926982,1051.03480928)
+\curveto(-391.44981243,1050.68350458)(-391.23446976,1050.29293412)(-391.6841456,1050.05642635)
+\lineto(-392.42596237,1050.18687741)
+\lineto(-392.32480554,1051.06742204)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.98431373 0.98431373 0.98431373}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-392.32480554,1051.06742204)
+\lineto(-391.54926982,1051.03480928)
+\curveto(-391.44981243,1050.68350458)(-391.23446976,1050.29293412)(-391.6841456,1050.05642635)
+\lineto(-392.42596237,1050.18687741)
+\lineto(-392.32480554,1051.06742204)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23921569 0.23921569 0.23921569}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-388.0087807,1049.76291148)
+\lineto(-387.63787232,1049.73029871)
+\lineto(-387.60415337,1048.98020514)
+\lineto(-387.4692776,1048.71930302)
+\curveto(-387.37062945,1047.70191523)(-387.60995303,1046.5185937)(-388.68315958,1046.11028189)
+\lineto(-388.78431641,1046.14289465)
+\lineto(-388.78431641,1046.4690223)
+\curveto(-388.38859089,1046.69678984)(-387.94080331,1047.03348402)(-388.0087807,1047.54524351)
+\curveto(-387.79203533,1048.03834851)(-387.79203533,1048.74800226)(-388.0087807,1049.24110725)
+\lineto(-388.0087807,1049.76291148)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23921569 0.23921569 0.23921569}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-388.0087807,1049.76291148)
+\lineto(-387.63787232,1049.73029871)
+\lineto(-387.60415337,1048.98020514)
+\lineto(-387.4692776,1048.71930302)
+\curveto(-387.37062945,1047.70191523)(-387.60995303,1046.5185937)(-388.68315958,1046.11028189)
+\lineto(-388.78431641,1046.14289465)
+\lineto(-388.78431641,1046.4690223)
+\curveto(-388.38859089,1046.69678984)(-387.94080331,1047.03348402)(-388.0087807,1047.54524351)
+\curveto(-387.79203533,1048.03834851)(-387.79203533,1048.74800226)(-388.0087807,1049.24110725)
+\lineto(-388.0087807,1049.76291148)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.14509805 0.14509805 0.14509805}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.29430856,1049.11065619)
+\lineto(-435.92340018,1048.94759237)
+\lineto(-435.88968123,1045.84937978)
+\lineto(-436.15943279,1045.45802661)
+\lineto(-436.42918434,1045.84937978)
+\lineto(-436.29430856,1046.11028189)
+\lineto(-436.29430856,1049.11065619)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.14509805 0.14509805 0.14509805}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.29430856,1049.11065619)
+\lineto(-435.92340018,1048.94759237)
+\lineto(-435.88968123,1045.84937978)
+\lineto(-436.15943279,1045.45802661)
+\lineto(-436.42918434,1045.84937978)
+\lineto(-436.29430856,1046.11028189)
+\lineto(-436.29430856,1049.11065619)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-397.31520925,1048.71930302)
+\lineto(-397.07917665,1048.5562392)
+\lineto(-397.01173876,1048.23011156)
+\curveto(-396.16363988,1047.21376738)(-394.94813938,1046.72601088)(-393.6735633,1046.63208612)
+\lineto(-393.40381175,1046.50163506)
+\lineto(-390.30166889,1046.371184)
+\lineto(-389.89704157,1046.50163506)
+\lineto(-389.66100896,1046.33857124)
+\lineto(-390.06563629,1045.88199254)
+\lineto(-390.841172,1045.84937978)
+\lineto(-395.12347789,1046.27334571)
+\lineto(-395.32579156,1046.59947335)
+\curveto(-396.15500783,1046.91946979)(-396.95374217,1047.46514656)(-397.41636609,1048.23011156)
+\lineto(-397.31520925,1048.71930302)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-397.31520925,1048.71930302)
+\lineto(-397.07917665,1048.5562392)
+\lineto(-397.01173876,1048.23011156)
+\curveto(-396.16363988,1047.21376738)(-394.94813938,1046.72601088)(-393.6735633,1046.63208612)
+\lineto(-393.40381175,1046.50163506)
+\lineto(-390.30166889,1046.371184)
+\lineto(-389.89704157,1046.50163506)
+\lineto(-389.66100896,1046.33857124)
+\lineto(-390.06563629,1045.88199254)
+\lineto(-390.841172,1045.84937978)
+\lineto(-395.12347789,1046.27334571)
+\lineto(-395.32579156,1046.59947335)
+\curveto(-396.15500783,1046.91946979)(-396.95374217,1047.46514656)(-397.41636609,1048.23011156)
+\lineto(-397.31520925,1048.71930302)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1047.02343929)
+\lineto(-442.76834582,1046.89298823)
+\lineto(-443.61131942,1045.62109043)
+\lineto(-443.67875731,1045.62109043)
+\lineto(-443.84735203,1045.84937978)
+\lineto(-442.90322159,1047.02343929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.63137257 0.63137257 0.63137257}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-442.90322159,1047.02343929)
+\lineto(-442.76834582,1046.89298823)
+\lineto(-443.61131942,1045.62109043)
+\lineto(-443.67875731,1045.62109043)
+\lineto(-443.84735203,1045.84937978)
+\lineto(-442.90322159,1047.02343929)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.24705882 0.24705882 0.24705882}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-385.71589251,1046.63208612)
+\lineto(-385.34498412,1046.59947335)
+\lineto(-385.34498412,1046.40379677)
+\curveto(-385.93479589,1045.5313401)(-386.41967431,1044.52921508)(-387.33440182,1043.89261392)
+\lineto(-387.57043443,1044.05567775)
+\lineto(-385.74961145,1046.40379677)
+\lineto(-385.71589251,1046.63208612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.24705882 0.24705882 0.24705882}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-385.71589251,1046.63208612)
+\lineto(-385.34498412,1046.59947335)
+\lineto(-385.34498412,1046.40379677)
+\curveto(-385.93479589,1045.5313401)(-386.41967431,1044.52921508)(-387.33440182,1043.89261392)
+\lineto(-387.57043443,1044.05567775)
+\lineto(-385.74961145,1046.40379677)
+\lineto(-385.71589251,1046.63208612)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-367.1030354,1046.371184)
+\lineto(-365.61940186,1045.58847766)
+\lineto(-363.49510839,1045.81676701)
+\lineto(-361.84288013,1039.84863117)
+\lineto(-361.4382528,1039.19637588)
+\lineto(-361.33709597,1035.31545695)
+\lineto(-361.53940963,1035.445908)
+\lineto(-362.61841584,1037.79402702)
+\lineto(-365.78799658,1044.25135433)
+\lineto(-366.52981335,1045.0992862)
+\lineto(-367.1030354,1046.371184)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-367.1030354,1046.371184)
+\lineto(-365.61940186,1045.58847766)
+\lineto(-363.49510839,1045.81676701)
+\lineto(-361.84288013,1039.84863117)
+\lineto(-361.4382528,1039.19637588)
+\lineto(-361.33709597,1035.31545695)
+\lineto(-361.53940963,1035.445908)
+\lineto(-362.61841584,1037.79402702)
+\lineto(-365.78799658,1044.25135433)
+\lineto(-366.52981335,1045.0992862)
+\lineto(-367.1030354,1046.371184)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.12941177 0.12941177 0.12941177}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-408.3750229,1044.02306498)
+\lineto(-408.10527135,1043.76216287)
+\lineto(-408.64477445,1042.58810336)
+\lineto(-408.10527135,1041.5444949)
+\curveto(-408.16855506,1041.04617187)(-408.7742552,1040.53336876)(-408.24014712,1040.10953328)
+\lineto(-408.24014712,1039.84863117)
+\lineto(-408.00411451,1036.88086963)
+\lineto(-408.10527135,1036.84825686)
+\lineto(-408.20642818,1036.88086963)
+\curveto(-408.30161001,1037.5752606)(-408.39201725,1038.284523)(-408.914526,1038.80502271)
+\lineto(-409.15055861,1039.62034182)
+\lineto(-409.45402911,1040.63133751)
+\lineto(-409.35287228,1040.85962686)
+\lineto(-409.85865644,1040.76178856)
+\lineto(-408.3750229,1044.02306498)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.12941177 0.12941177 0.12941177}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-408.3750229,1044.02306498)
+\lineto(-408.10527135,1043.76216287)
+\lineto(-408.64477445,1042.58810336)
+\lineto(-408.10527135,1041.5444949)
+\curveto(-408.16855506,1041.04617187)(-408.7742552,1040.53336876)(-408.24014712,1040.10953328)
+\lineto(-408.24014712,1039.84863117)
+\lineto(-408.00411451,1036.88086963)
+\lineto(-408.10527135,1036.84825686)
+\lineto(-408.20642818,1036.88086963)
+\curveto(-408.30161001,1037.5752606)(-408.39201725,1038.284523)(-408.914526,1038.80502271)
+\lineto(-409.15055861,1039.62034182)
+\lineto(-409.45402911,1040.63133751)
+\lineto(-409.35287228,1040.85962686)
+\lineto(-409.85865644,1040.76178856)
+\lineto(-408.3750229,1044.02306498)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.17647059 0.17647059 0.17647059}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-407.29601669,1037.50051215)
+\lineto(-407.19485986,1037.46789938)
+\lineto(-407.16114091,1037.10915898)
+\lineto(-407.16114091,1036.45690369)
+\curveto(-407.18892532,1036.05198361)(-407.57237715,1035.49704482)(-408.0715524,1035.70681012)
+\lineto(-407.29601669,1037.50051215)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.17647059 0.17647059 0.17647059}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-407.29601669,1037.50051215)
+\lineto(-407.19485986,1037.46789938)
+\lineto(-407.16114091,1037.10915898)
+\lineto(-407.16114091,1036.45690369)
+\curveto(-407.18892532,1036.05198361)(-407.57237715,1035.49704482)(-408.0715524,1035.70681012)
+\lineto(-407.29601669,1037.50051215)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.10588235 0.10588235 0.10588235}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-381.26499189,1036.84825686)
+\lineto(-379.24185525,1036.84825686)
+\lineto(-378.70235215,1036.58735475)
+\curveto(-376.41620774,1036.18256512)(-374.31214563,1034.92019024)(-372.4643475,1033.48914215)
+\curveto(-371.29578377,1032.86141167)(-369.92193912,1032.75744217)(-369.0924531,1031.5323763)
+\lineto(-368.62038788,1031.59760183)
+\lineto(-367.40650589,1030.81489549)
+\lineto(-365.45080714,1029.05380622)
+\curveto(-364.91508056,1028.93856576)(-364.31636699,1028.3470224)(-364.16948727,1027.87974671)
+\lineto(-365.72055869,1028.27109988)
+\lineto(-367.40650589,1029.90173809)
+\lineto(-368.21576055,1029.70606151)
+\lineto(-368.89013943,1030.1626402)
+\lineto(-369.12617204,1030.06480191)
+\lineto(-370.1714593,1030.88012102)
+\curveto(-370.3958926,1031.25803773)(-370.6319252,1031.14050133)(-370.98071396,1031.14102313)
+\curveto(-372.72465775,1033.35477756)(-375.23739346,1034.88888199)(-377.89309749,1035.80464841)
+\curveto(-379.7287568,1035.9645814)(-381.80314624,1036.16273656)(-383.52416114,1035.51113353)
+\curveto(-386.25000058,1034.14791999)(-388.23132573,1030.35831679)(-386.15423878,1027.81452118)
+\lineto(-385.68217356,1026.83613826)
+\curveto(-385.49874251,1026.73543004)(-385.28671779,1026.36351408)(-385.58101673,1026.28172127)
+\curveto(-386.25512586,1026.87162095)(-386.66568772,1027.77147234)(-386.96349344,1028.59722752)
+\lineto(-387.73902915,1030.06480191)
+\curveto(-387.85260804,1032.9516838)(-385.51627636,1035.71855071)(-382.6474686,1036.3590654)
+\lineto(-381.26499189,1036.84825686)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.10588235 0.10588235 0.10588235}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-381.26499189,1036.84825686)
+\lineto(-379.24185525,1036.84825686)
+\lineto(-378.70235215,1036.58735475)
+\curveto(-376.41620774,1036.18256512)(-374.31214563,1034.92019024)(-372.4643475,1033.48914215)
+\curveto(-371.29578377,1032.86141167)(-369.92193912,1032.75744217)(-369.0924531,1031.5323763)
+\lineto(-368.62038788,1031.59760183)
+\lineto(-367.40650589,1030.81489549)
+\lineto(-365.45080714,1029.05380622)
+\curveto(-364.91508056,1028.93856576)(-364.31636699,1028.3470224)(-364.16948727,1027.87974671)
+\lineto(-365.72055869,1028.27109988)
+\lineto(-367.40650589,1029.90173809)
+\lineto(-368.21576055,1029.70606151)
+\lineto(-368.89013943,1030.1626402)
+\lineto(-369.12617204,1030.06480191)
+\lineto(-370.1714593,1030.88012102)
+\curveto(-370.3958926,1031.25803773)(-370.6319252,1031.14050133)(-370.98071396,1031.14102313)
+\curveto(-372.72465775,1033.35477756)(-375.23739346,1034.88888199)(-377.89309749,1035.80464841)
+\curveto(-379.7287568,1035.9645814)(-381.80314624,1036.16273656)(-383.52416114,1035.51113353)
+\curveto(-386.25000058,1034.14791999)(-388.23132573,1030.35831679)(-386.15423878,1027.81452118)
+\lineto(-385.68217356,1026.83613826)
+\curveto(-385.49874251,1026.73543004)(-385.28671779,1026.36351408)(-385.58101673,1026.28172127)
+\curveto(-386.25512586,1026.87162095)(-386.66568772,1027.77147234)(-386.96349344,1028.59722752)
+\lineto(-387.73902915,1030.06480191)
+\curveto(-387.85260804,1032.9516838)(-385.51627636,1035.71855071)(-382.6474686,1036.3590654)
+\lineto(-381.26499189,1036.84825686)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-406.0821347,1035.93509946)
+\lineto(-405.8461021,1035.77203564)
+\lineto(-406.11585365,1035.05455483)
+\lineto(-406.79023253,1034.14139743)
+\lineto(-406.99254619,1034.14139743)
+\lineto(-407.02626514,1034.23923573)
+\lineto(-406.3856052,1035.18500589)
+\lineto(-406.0821347,1035.93509946)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-406.0821347,1035.93509946)
+\lineto(-405.8461021,1035.77203564)
+\lineto(-406.11585365,1035.05455483)
+\lineto(-406.79023253,1034.14139743)
+\lineto(-406.99254619,1034.14139743)
+\lineto(-407.02626514,1034.23923573)
+\lineto(-406.3856052,1035.18500589)
+\lineto(-406.0821347,1035.93509946)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-416.73732102,1034.36968678)
+\lineto(-416.63616419,1034.01094638)
+\lineto(-417.17566729,1033.61959321)
+\curveto(-417.42559211,1033.61222794)(-417.69156714,1033.50989691)(-417.7151704,1033.22824004)
+\lineto(-418.72673872,1032.51075923)
+\lineto(-418.89533344,1032.41292093)
+\lineto(-419.13136605,1032.57598475)
+\lineto(-417.78260829,1033.81526979)
+\curveto(-417.35518695,1033.50636169)(-416.95838242,1034.05947417)(-416.73732102,1034.36968678)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84313726 0.84313726 0.84313726}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-416.73732102,1034.36968678)
+\lineto(-416.63616419,1034.01094638)
+\lineto(-417.17566729,1033.61959321)
+\curveto(-417.42559211,1033.61222794)(-417.69156714,1033.50989691)(-417.7151704,1033.22824004)
+\lineto(-418.72673872,1032.51075923)
+\lineto(-418.89533344,1032.41292093)
+\lineto(-419.13136605,1032.57598475)
+\lineto(-417.78260829,1033.81526979)
+\curveto(-417.35518695,1033.50636169)(-416.95838242,1034.05947417)(-416.73732102,1034.36968678)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-382.88350121,1033.06517622)
+\curveto(-381.78170099,1033.16418857)(-380.74572015,1032.81392748)(-379.94995308,1032.11940606)
+\lineto(-379.88251519,1031.79327841)
+\lineto(-379.64648258,1031.49976354)
+\lineto(-379.8150773,1031.27147419)
+\lineto(-380.28714252,1031.40192524)
+\curveto(-380.68071003,1032.51636862)(-382.20642481,1032.40809424)(-383.11953382,1031.988955)
+\lineto(-384.46829158,1029.24948281)
+\lineto(-384.77176207,1028.36893817)
+\lineto(-385.14267046,1028.40155094)
+\lineto(-385.58101673,1029.67344874)
+\lineto(-385.58101673,1030.58660614)
+\curveto(-385.4590081,1031.82732614)(-384.28904167,1032.83166883)(-383.01837698,1032.93472516)
+\lineto(-382.88350121,1033.06517622)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.0627451 0.0627451 0.0627451}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-382.88350121,1033.06517622)
+\curveto(-381.78170099,1033.16418857)(-380.74572015,1032.81392748)(-379.94995308,1032.11940606)
+\lineto(-379.88251519,1031.79327841)
+\lineto(-379.64648258,1031.49976354)
+\lineto(-379.8150773,1031.27147419)
+\lineto(-380.28714252,1031.40192524)
+\curveto(-380.68071003,1032.51636862)(-382.20642481,1032.40809424)(-383.11953382,1031.988955)
+\lineto(-384.46829158,1029.24948281)
+\lineto(-384.77176207,1028.36893817)
+\lineto(-385.14267046,1028.40155094)
+\lineto(-385.58101673,1029.67344874)
+\lineto(-385.58101673,1030.58660614)
+\curveto(-385.4590081,1031.82732614)(-384.28904167,1032.83166883)(-383.01837698,1032.93472516)
+\lineto(-382.88350121,1033.06517622)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-421.18822163,1032.41292093)
+\curveto(-421.01288312,1032.39938011)(-420.53245561,1032.50376705)(-420.68243747,1032.18463158)
+\lineto(-421.32309741,1031.76066565)
+\curveto(-421.68645275,1031.90364001)(-421.28020691,1032.23028945)(-421.18822163,1032.41292093)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.18431373 0.18431373 0.18431373}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-421.18822163,1032.41292093)
+\curveto(-421.01288312,1032.39938011)(-420.53245561,1032.50376705)(-420.68243747,1032.18463158)
+\lineto(-421.32309741,1031.76066565)
+\curveto(-421.68645275,1031.90364001)(-421.28020691,1032.23028945)(-421.18822163,1032.41292093)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-420.10921542,1031.76066565)
+\curveto(-420.12805757,1032.00656589)(-419.85497459,1031.74244164)(-420.10921542,1031.76066565)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58823532 0.58823532 0.58823532}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-420.10921542,1031.76066565)
+\curveto(-420.12805757,1032.00656589)(-419.85497459,1031.74244164)(-420.10921542,1031.76066565)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-420.10921542,1031.76066565)
+\lineto(-420.2440912,1031.63021459)
+\lineto(-420.10921542,1031.76066565)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.6156863 0.6156863 0.6156863}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-420.10921542,1031.76066565)
+\lineto(-420.2440912,1031.63021459)
+\lineto(-420.10921542,1031.76066565)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.65098041 0.65098041 0.65098041}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-420.2440912,1031.63021459)
+\lineto(-420.37896698,1031.49976354)
+\lineto(-420.2440912,1031.63021459)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.65098041 0.65098041 0.65098041}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-420.2440912,1031.63021459)
+\lineto(-420.37896698,1031.49976354)
+\lineto(-420.2440912,1031.63021459)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-420.37896698,1031.49976354)
+\curveto(-420.36012483,1031.25386329)(-420.63320781,1031.51798755)(-420.37896698,1031.49976354)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-420.37896698,1031.49976354)
+\curveto(-420.36012483,1031.25386329)(-420.63320781,1031.51798755)(-420.37896698,1031.49976354)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-421.32309741,1030.7170572)
+\curveto(-421.34193955,1030.96295744)(-421.06885657,1030.69882014)(-421.32309741,1030.7170572)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.61176473 0.61176473 0.61176473}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-421.32309741,1030.7170572)
+\curveto(-421.34193955,1030.96295744)(-421.06885657,1030.69882014)(-421.32309741,1030.7170572)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-378.70235215,1029.8038998)
+\curveto(-376.48364563,1029.9704858)(-375.67843724,1027.61232205)(-375.06070619,1026.02081915)
+\lineto(-374.92583041,1023.80315119)
+\lineto(-375.56649035,1022.13990022)
+\lineto(-375.46533352,1022.88999379)
+\lineto(-375.19558197,1023.54224908)
+\lineto(-375.33045774,1025.36856387)
+\lineto(-376.78037234,1028.27109988)
+\lineto(-376.84781022,1028.59722752)
+\lineto(-377.5221891,1029.11903175)
+\lineto(-378.6686332,1029.11903175)
+\curveto(-378.72197657,1028.81090636)(-378.79413511,1028.39959417)(-378.46631954,1028.20587435)
+\lineto(-376.81409128,1026.80352549)
+\curveto(-376.98012336,1025.86493014)(-378.33144376,1026.11526572)(-379.00582264,1026.2491085)
+\curveto(-379.99810373,1026.46852718)(-381.23801674,1027.11034638)(-381.26499189,1028.23848712)
+\curveto(-381.00683966,1029.25587491)(-379.86767885,1029.78302763)(-378.83722792,1029.67344874)
+\lineto(-378.70235215,1029.8038998)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.07450981 0.07450981 0.07450981}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-378.70235215,1029.8038998)
+\curveto(-376.48364563,1029.9704858)(-375.67843724,1027.61232205)(-375.06070619,1026.02081915)
+\lineto(-374.92583041,1023.80315119)
+\lineto(-375.56649035,1022.13990022)
+\lineto(-375.46533352,1022.88999379)
+\lineto(-375.19558197,1023.54224908)
+\lineto(-375.33045774,1025.36856387)
+\lineto(-376.78037234,1028.27109988)
+\lineto(-376.84781022,1028.59722752)
+\lineto(-377.5221891,1029.11903175)
+\lineto(-378.6686332,1029.11903175)
+\curveto(-378.72197657,1028.81090636)(-378.79413511,1028.39959417)(-378.46631954,1028.20587435)
+\lineto(-376.81409128,1026.80352549)
+\curveto(-376.98012336,1025.86493014)(-378.33144376,1026.11526572)(-379.00582264,1026.2491085)
+\curveto(-379.99810373,1026.46852718)(-381.23801674,1027.11034638)(-381.26499189,1028.23848712)
+\curveto(-381.00683966,1029.25587491)(-379.86767885,1029.78302763)(-378.83722792,1029.67344874)
+\lineto(-378.70235215,1029.8038998)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-427.39250734,1029.41254663)
+\lineto(-426.7518474,1029.24948281)
+\lineto(-426.88672318,1029.05380622)
+\lineto(-427.8982915,1028.33632541)
+\lineto(-429.31448715,1026.7056872)
+\lineto(-429.82027131,1026.67307444)
+\lineto(-430.39349335,1027.1622659)
+\lineto(-430.7306828,1027.94497224)
+\lineto(-429.31448715,1028.79290411)
+\curveto(-428.80573572,1029.18164826)(-428.20432463,1029.36271433)(-427.52738311,1029.28209557)
+\lineto(-427.39250734,1029.41254663)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93725491 0.93725491 0.93725491}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-427.39250734,1029.41254663)
+\lineto(-426.7518474,1029.24948281)
+\lineto(-426.88672318,1029.05380622)
+\lineto(-427.8982915,1028.33632541)
+\lineto(-429.31448715,1026.7056872)
+\lineto(-429.82027131,1026.67307444)
+\lineto(-430.39349335,1027.1622659)
+\lineto(-430.7306828,1027.94497224)
+\lineto(-429.31448715,1028.79290411)
+\curveto(-428.80573572,1029.18164826)(-428.20432463,1029.36271433)(-427.52738311,1029.28209557)
+\lineto(-427.39250734,1029.41254663)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-375.19558197,1028.23848712)
+\curveto(-374.42989219,1028.00667559)(-374.00786588,1027.14074148)(-373.81310526,1026.44478509)
+\lineto(-373.34104004,1026.51001062)
+\lineto(-373.17244532,1026.15127021)
+\lineto(-373.17244532,1025.75991704)
+\lineto(-371.82368756,1022.49864062)
+\lineto(-371.82368756,1022.10728745)
+\lineto(-371.55393601,1020.93322794)
+\lineto(-371.72253073,1020.70493859)
+\lineto(-371.92484439,1020.83538965)
+\lineto(-372.09343911,1021.45503217)
+\lineto(-372.93641272,1024.42279371)
+\lineto(-373.03756955,1024.45540647)
+\lineto(-373.67822948,1023.83576395)
+\lineto(-374.75723569,1027.22749143)
+\lineto(-375.16186302,1027.87974671)
+\lineto(-375.19558197,1028.23848712)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16862746 0.16862746 0.16862746}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-375.19558197,1028.23848712)
+\curveto(-374.42989219,1028.00667559)(-374.00786588,1027.14074148)(-373.81310526,1026.44478509)
+\lineto(-373.34104004,1026.51001062)
+\lineto(-373.17244532,1026.15127021)
+\lineto(-373.17244532,1025.75991704)
+\lineto(-371.82368756,1022.49864062)
+\lineto(-371.82368756,1022.10728745)
+\lineto(-371.55393601,1020.93322794)
+\lineto(-371.72253073,1020.70493859)
+\lineto(-371.92484439,1020.83538965)
+\lineto(-372.09343911,1021.45503217)
+\lineto(-372.93641272,1024.42279371)
+\lineto(-373.03756955,1024.45540647)
+\lineto(-373.67822948,1023.83576395)
+\lineto(-374.75723569,1027.22749143)
+\lineto(-375.16186302,1027.87974671)
+\lineto(-375.19558197,1028.23848712)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-432.51778683,1027.45578078)
+\lineto(-432.14687844,1027.42316801)
+\curveto(-432.12095532,1026.69525112)(-433.07212627,1026.61189289)(-433.59679304,1026.41217232)
+\lineto(-433.83282565,1026.44478509)
+\lineto(-433.29332254,1027.03181484)
+\lineto(-432.55150577,1027.35794249)
+\lineto(-432.51778683,1027.45578078)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-432.51778683,1027.45578078)
+\lineto(-432.14687844,1027.42316801)
+\curveto(-432.12095532,1026.69525112)(-433.07212627,1026.61189289)(-433.59679304,1026.41217232)
+\lineto(-433.83282565,1026.44478509)
+\lineto(-433.29332254,1027.03181484)
+\lineto(-432.55150577,1027.35794249)
+\lineto(-432.51778683,1027.45578078)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-397.45008503,1026.93397655)
+\lineto(-396.00017044,1026.90136379)
+\lineto(-396.00017044,1026.7056872)
+\curveto(-397.17817547,1026.81461383)(-397.96261298,1025.88958539)(-398.79884279,1025.23811281)
+\lineto(-399.06859434,1025.75991704)
+\lineto(-398.69768596,1026.18388297)
+\lineto(-397.45008503,1026.93397655)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1254902 0.1254902 0.1254902}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-397.45008503,1026.93397655)
+\lineto(-396.00017044,1026.90136379)
+\lineto(-396.00017044,1026.7056872)
+\curveto(-397.17817547,1026.81461383)(-397.96261298,1025.88958539)(-398.79884279,1025.23811281)
+\lineto(-399.06859434,1025.75991704)
+\lineto(-398.69768596,1026.18388297)
+\lineto(-397.45008503,1026.93397655)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-436.15943279,1025.75991704)
+\lineto(-434.67579925,1025.75991704)
+\lineto(-433.90026353,1025.59685322)
+\lineto(-435.61992968,1024.45540647)
+\lineto(-436.02455701,1024.45540647)
+\lineto(-436.19315173,1024.35756818)
+\lineto(-436.39546539,1024.42279371)
+\lineto(-436.56406011,1024.32495542)
+\lineto(-436.83381167,1024.45540647)
+\lineto(-437.33959583,1024.48801924)
+\lineto(-437.33959583,1024.68369582)
+\lineto(-436.19315173,1025.66207875)
+\lineto(-436.15943279,1025.75991704)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.91764706 0.91764706 0.91764706}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-436.15943279,1025.75991704)
+\lineto(-434.67579925,1025.75991704)
+\lineto(-433.90026353,1025.59685322)
+\lineto(-435.61992968,1024.45540647)
+\lineto(-436.02455701,1024.45540647)
+\lineto(-436.19315173,1024.35756818)
+\lineto(-436.39546539,1024.42279371)
+\lineto(-436.56406011,1024.32495542)
+\lineto(-436.83381167,1024.45540647)
+\lineto(-437.33959583,1024.48801924)
+\lineto(-437.33959583,1024.68369582)
+\lineto(-436.19315173,1025.66207875)
+\lineto(-436.15943279,1025.75991704)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-417.68145145,1024.19450436)
+\lineto(-417.58029462,1024.1618916)
+\lineto(-417.68145145,1023.15089591)
+\curveto(-417.60350674,1022.53908045)(-417.89455518,1021.79811845)(-417.4116999,1021.32458111)
+\lineto(-417.31054307,1020.83538965)
+\curveto(-417.87648183,1020.89208368)(-418.36230437,1021.359542)(-418.62558189,1021.84638534)
+\curveto(-418.71689279,1022.61422026)(-418.35421182,1023.28526049)(-417.85004617,1023.83576395)
+\lineto(-417.68145145,1024.19450436)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-417.68145145,1024.19450436)
+\lineto(-417.58029462,1024.1618916)
+\lineto(-417.68145145,1023.15089591)
+\curveto(-417.60350674,1022.53908045)(-417.89455518,1021.79811845)(-417.4116999,1021.32458111)
+\lineto(-417.31054307,1020.83538965)
+\curveto(-417.87648183,1020.89208368)(-418.36230437,1021.359542)(-418.62558189,1021.84638534)
+\curveto(-418.71689279,1022.61422026)(-418.35421182,1023.28526049)(-417.85004617,1023.83576395)
+\lineto(-417.68145145,1024.19450436)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-354.28983666,1022.36818957)
+\curveto(-354.3086923,1022.61408981)(-354.03559583,1022.34996555)(-354.28983666,1022.36818957)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-354.28983666,1022.36818957)
+\curveto(-354.3086923,1022.61408981)(-354.03559583,1022.34996555)(-354.28983666,1022.36818957)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-354.28983666,1022.36818957)
+\lineto(-354.55958822,1022.23773851)
+\lineto(-354.28983666,1022.36818957)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.71764708 0.71764708 0.71764708}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-354.28983666,1022.36818957)
+\lineto(-354.55958822,1022.23773851)
+\lineto(-354.28983666,1022.36818957)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-354.55958822,1022.23773851)
+\curveto(-354.54073258,1021.99183827)(-354.81382905,1022.25596252)(-354.55958822,1022.23773851)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-354.55958822,1022.23773851)
+\curveto(-354.54073258,1021.99183827)(-354.81382905,1022.25596252)(-354.55958822,1022.23773851)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-355.63859442,1021.58548323)
+\curveto(-355.38435359,1021.60372028)(-355.65743657,1021.33958298)(-355.63859442,1021.58548323)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60000002 0.60000002 0.60000002}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-355.63859442,1021.58548323)
+\curveto(-355.38435359,1021.60372028)(-355.65743657,1021.33958298)(-355.63859442,1021.58548323)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-356.17809753,1021.19413006)
+\lineto(-356.0769407,1020.83538965)
+\lineto(-357.08850902,1020.44403648)
+\lineto(-356.17809753,1021.19413006)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.80392158 0.80392158 0.80392158}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-356.17809753,1021.19413006)
+\lineto(-356.0769407,1020.83538965)
+\lineto(-357.08850902,1020.44403648)
+\lineto(-356.17809753,1021.19413006)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.94509804 0.94509804 0.94509804}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-414.84906015,1018.45465786)
+\lineto(-414.5793086,1018.19375575)
+\lineto(-414.84906015,1017.1501473)
+\lineto(-414.20840022,1015.81302397)
+\curveto(-413.9412113,1015.30778702)(-413.55209469,1014.75910988)(-412.99451823,1014.5085134)
+\lineto(-412.99451823,1014.31283681)
+\lineto(-413.77005394,1014.28022405)
+\lineto(-414.0398055,1014.14977299)
+\lineto(-414.44443283,1014.28022405)
+\curveto(-415.32328338,1014.33410034)(-415.97257537,1015.23538669)(-416.19781792,1015.97608779)
+\lineto(-415.28740643,1017.70456429)
+\lineto(-415.01765487,1017.9654664)
+\lineto(-414.84906015,1018.45465786)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.94509804 0.94509804 0.94509804}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-414.84906015,1018.45465786)
+\lineto(-414.5793086,1018.19375575)
+\lineto(-414.84906015,1017.1501473)
+\lineto(-414.20840022,1015.81302397)
+\curveto(-413.9412113,1015.30778702)(-413.55209469,1014.75910988)(-412.99451823,1014.5085134)
+\lineto(-412.99451823,1014.31283681)
+\lineto(-413.77005394,1014.28022405)
+\lineto(-414.0398055,1014.14977299)
+\lineto(-414.44443283,1014.28022405)
+\curveto(-415.32328338,1014.33410034)(-415.97257537,1015.23538669)(-416.19781792,1015.97608779)
+\lineto(-415.28740643,1017.70456429)
+\lineto(-415.01765487,1017.9654664)
+\lineto(-414.84906015,1018.45465786)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-361.84288013,1018.32420681)
+\curveto(-361.86172227,1018.57010705)(-361.58863929,1018.30596975)(-361.84288013,1018.32420681)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.56862748 0.56862748 0.56862748}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-361.84288013,1018.32420681)
+\curveto(-361.86172227,1018.57010705)(-361.58863929,1018.30596975)(-361.84288013,1018.32420681)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-361.84288013,1018.32420681)
+\lineto(-361.9777559,1018.19375575)
+\lineto(-361.84288013,1018.32420681)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.62352943 0.62352943 0.62352943}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-361.84288013,1018.32420681)
+\lineto(-361.9777559,1018.19375575)
+\lineto(-361.84288013,1018.32420681)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.95686275 0.95686275 0.95686275}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-411.34228997,1013.2366156)
+\lineto(-410.56675426,1013.07355177)
+\lineto(-410.49931637,1012.87787519)
+\lineto(-409.42031016,1011.83426674)
+\lineto(-409.2179965,1011.76904121)
+\lineto(-408.61105551,1011.0515604)
+\lineto(-407.80180085,1010.66020722)
+\curveto(-407.32353135,1010.63805664)(-407.00927079,1010.16762403)(-406.79023253,1009.81227536)
+\curveto(-406.6066666,1008.7926699)(-407.75257119,1008.44906181)(-408.3750229,1007.88812227)
+\lineto(-408.47617973,1007.98596056)
+\curveto(-407.59962206,1009.40918159)(-409.43555113,1010.78804926)(-410.80278687,1010.75804552)
+\lineto(-411.7469173,1010.88849657)
+\lineto(-412.11782569,1011.0515604)
+\curveto(-412.83023954,1011.78039045)(-411.95030997,1012.77612336)(-411.34228997,1013.2366156)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.95686275 0.95686275 0.95686275}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-411.34228997,1013.2366156)
+\lineto(-410.56675426,1013.07355177)
+\lineto(-410.49931637,1012.87787519)
+\lineto(-409.42031016,1011.83426674)
+\lineto(-409.2179965,1011.76904121)
+\lineto(-408.61105551,1011.0515604)
+\lineto(-407.80180085,1010.66020722)
+\curveto(-407.32353135,1010.63805664)(-407.00927079,1010.16762403)(-406.79023253,1009.81227536)
+\curveto(-406.6066666,1008.7926699)(-407.75257119,1008.44906181)(-408.3750229,1007.88812227)
+\lineto(-408.47617973,1007.98596056)
+\curveto(-407.59962206,1009.40918159)(-409.43555113,1010.78804926)(-410.80278687,1010.75804552)
+\lineto(-411.7469173,1010.88849657)
+\lineto(-412.11782569,1011.0515604)
+\curveto(-412.83023954,1011.78039045)(-411.95030997,1012.77612336)(-411.34228997,1013.2366156)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.19215687 0.19215687 0.19215687}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-387.06465027,1002.53962894)
+\lineto(-387.23324499,1001.78953537)
+\lineto(-387.33440182,1001.7569226)
+\curveto(-387.7531911,1001.98208113)(-387.15434266,1002.29881629)(-387.06465027,1002.53962894)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.19215687 0.19215687 0.19215687}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-387.06465027,1002.53962894)
+\lineto(-387.23324499,1001.78953537)
+\lineto(-387.33440182,1001.7569226)
+\curveto(-387.7531911,1001.98208113)(-387.15434266,1002.29881629)(-387.06465027,1002.53962894)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-374.11657576,1002.27872683)
+\lineto(-373.6107916,1002.24611407)
+\lineto(-373.88054315,1001.91998642)
+\lineto(-374.21773259,1001.8547609)
+\lineto(-374.65607886,1001.62647155)
+\lineto(-377.48847016,1001.62647155)
+\lineto(-377.72450277,1001.8547609)
+\curveto(-377.57519528,1002.10327016)(-377.27280379,1002.02291231)(-377.08384283,1001.88737366)
+\lineto(-376.00483662,1001.88737366)
+\curveto(-375.35244249,1001.89132241)(-374.55357327,1001.77496398)(-374.11657576,1002.27872683)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.21568628 0.21568628 0.21568628}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-374.11657576,1002.27872683)
+\lineto(-373.6107916,1002.24611407)
+\lineto(-373.88054315,1001.91998642)
+\lineto(-374.21773259,1001.8547609)
+\lineto(-374.65607886,1001.62647155)
+\lineto(-377.48847016,1001.62647155)
+\lineto(-377.72450277,1001.8547609)
+\curveto(-377.57519528,1002.10327016)(-377.27280379,1002.02291231)(-377.08384283,1001.88737366)
+\lineto(-376.00483662,1001.88737366)
+\curveto(-375.35244249,1001.89132241)(-374.55357327,1001.77496398)(-374.11657576,1002.27872683)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1882353 0.1882353 0.1882353}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-384.6368863,1001.36556943)
+\lineto(-384.40085369,1001.33295667)
+\curveto(-383.98044589,1000.91590464)(-383.50892018,1000.52089884)(-382.91722015,1000.41979927)
+\lineto(-382.88350121,1000.32196098)
+\lineto(-383.15325276,1000.06105887)
+\lineto(-384.46829158,999.89799505)
+\lineto(-385.27754623,999.18051423)
+\lineto(-385.31126518,999.40880358)
+\curveto(-384.97340136,999.87347025)(-384.4937831,1000.37596772)(-383.86135058,1000.35457374)
+\lineto(-383.86135058,1000.55025033)
+\curveto(-384.19044748,1000.69009386)(-384.60478586,1001.00017602)(-384.6368863,1001.36556943)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.1882353 0.1882353 0.1882353}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-384.6368863,1001.36556943)
+\lineto(-384.40085369,1001.33295667)
+\curveto(-383.98044589,1000.91590464)(-383.50892018,1000.52089884)(-382.91722015,1000.41979927)
+\lineto(-382.88350121,1000.32196098)
+\lineto(-383.15325276,1000.06105887)
+\lineto(-384.46829158,999.89799505)
+\lineto(-385.27754623,999.18051423)
+\lineto(-385.31126518,999.40880358)
+\curveto(-384.97340136,999.87347025)(-384.4937831,1000.37596772)(-383.86135058,1000.35457374)
+\lineto(-383.86135058,1000.55025033)
+\curveto(-384.19044748,1000.69009386)(-384.60478586,1001.00017602)(-384.6368863,1001.36556943)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-374.25145153,998.7565483)
+\lineto(-374.01541893,998.52825895)
+\lineto(-374.42004625,998.52825895)
+\lineto(-374.25145153,998.7565483)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.70980394 0.70980394 0.70980394}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-374.25145153,998.7565483)
+\lineto(-374.01541893,998.52825895)
+\lineto(-374.42004625,998.52825895)
+\lineto(-374.25145153,998.7565483)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-369.39592359,997.8433909)
+\lineto(-369.26104782,997.71293985)
+\curveto(-369.65704309,997.08416575)(-369.82186129,996.40060221)(-369.83426986,995.6583357)
+\lineto(-370.03658353,995.78878676)
+\curveto(-370.32427356,996.33759435)(-370.63354371,996.89814254)(-370.44121086,997.54987602)
+\lineto(-369.96914564,997.22374838)
+\lineto(-369.39592359,997.8433909)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.85882354 0.85882354 0.85882354}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-369.39592359,997.8433909)
+\lineto(-369.26104782,997.71293985)
+\curveto(-369.65704309,997.08416575)(-369.82186129,996.40060221)(-369.83426986,995.6583357)
+\lineto(-370.03658353,995.78878676)
+\curveto(-370.32427356,996.33759435)(-370.63354371,996.89814254)(-370.44121086,997.54987602)
+\lineto(-369.96914564,997.22374838)
+\lineto(-369.39592359,997.8433909)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-393.80843907,997.58248879)
+\lineto(-393.57240647,997.35419944)
+\curveto(-395.43504094,995.43656891)(-395.91250118,992.15311581)(-393.97703379,990.17939132)
+\curveto(-393.74504746,991.7200183)(-393.95954041,993.65069394)(-392.45968131,994.71256554)
+\lineto(-392.35852448,994.48427619)
+\curveto(-393.6295938,993.32013096)(-393.52088392,991.57652214)(-393.6735633,990.0163275)
+\lineto(-389.12150585,983.78728954)
+\curveto(-389.07451513,984.94791259)(-389.65453492,986.04670184)(-390.33538784,986.98334043)
+\lineto(-391.07720461,988.15739994)
+\lineto(-390.87489094,988.15739994)
+\lineto(-389.39125741,986.07018303)
+\curveto(-388.97084961,985.02605277)(-388.54760943,983.84860154)(-388.78431641,982.74368109)
+\lineto(-388.44712697,982.61323003)
+\lineto(-390.26794995,980.98259182)
+\lineto(-391.07720461,980.26511101)
+\lineto(-390.40282573,981.24349393)
+\lineto(-389.25638163,982.35232792)
+\lineto(-389.39125741,983.59161296)
+\curveto(-391.34290989,986.36500242)(-393.6384956,989.0040273)(-396.06760833,991.35345083)
+\lineto(-396.47223565,992.13615717)
+\curveto(-396.94443575,993.60242705)(-396.4133354,995.11565931)(-396.06760833,996.50626757)
+\lineto(-395.86529466,996.63671863)
+\lineto(-395.83157572,996.01707611)
+\curveto(-396.33061609,994.97581577)(-396.04171218,993.67678415)(-396.06760833,992.52751034)
+\lineto(-395.59554311,991.744804)
+\curveto(-396.02957336,993.76549087)(-395.53345979,996.11360989)(-393.80843907,997.58248879)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.16470589 0.16470589 0.16470589}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-393.80843907,997.58248879)
+\lineto(-393.57240647,997.35419944)
+\curveto(-395.43504094,995.43656891)(-395.91250118,992.15311581)(-393.97703379,990.17939132)
+\curveto(-393.74504746,991.7200183)(-393.95954041,993.65069394)(-392.45968131,994.71256554)
+\lineto(-392.35852448,994.48427619)
+\curveto(-393.6295938,993.32013096)(-393.52088392,991.57652214)(-393.6735633,990.0163275)
+\lineto(-389.12150585,983.78728954)
+\curveto(-389.07451513,984.94791259)(-389.65453492,986.04670184)(-390.33538784,986.98334043)
+\lineto(-391.07720461,988.15739994)
+\lineto(-390.87489094,988.15739994)
+\lineto(-389.39125741,986.07018303)
+\curveto(-388.97084961,985.02605277)(-388.54760943,983.84860154)(-388.78431641,982.74368109)
+\lineto(-388.44712697,982.61323003)
+\lineto(-390.26794995,980.98259182)
+\lineto(-391.07720461,980.26511101)
+\lineto(-390.40282573,981.24349393)
+\lineto(-389.25638163,982.35232792)
+\lineto(-389.39125741,983.59161296)
+\curveto(-391.34290989,986.36500242)(-393.6384956,989.0040273)(-396.06760833,991.35345083)
+\lineto(-396.47223565,992.13615717)
+\curveto(-396.94443575,993.60242705)(-396.4133354,995.11565931)(-396.06760833,996.50626757)
+\lineto(-395.86529466,996.63671863)
+\lineto(-395.83157572,996.01707611)
+\curveto(-396.33061609,994.97581577)(-396.04171218,993.67678415)(-396.06760833,992.52751034)
+\lineto(-395.59554311,991.744804)
+\curveto(-396.02957336,993.76549087)(-395.53345979,996.11360989)(-393.80843907,997.58248879)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90588236 0.90588236 0.90588236}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-375.19558197,996.9302335)
+\curveto(-374.85839253,996.70390092)(-374.44890967,996.56431829)(-374.1502947,996.89762074)
+\lineto(-374.1502947,996.70194416)
+\lineto(-374.42004625,996.18013993)
+\curveto(-375.0879511,995.41817531)(-375.19679585,994.42035517)(-375.22930091,993.44066774)
+\curveto(-375.65173184,993.69256873)(-376.06944212,994.37861084)(-375.73508507,994.8430166)
+\lineto(-375.73508507,994.97346765)
+\curveto(-375.79931292,995.69407929)(-375.49743395,996.3118955)(-375.19558197,996.9302335)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.90588236 0.90588236 0.90588236}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-375.19558197,996.9302335)
+\curveto(-374.85839253,996.70390092)(-374.44890967,996.56431829)(-374.1502947,996.89762074)
+\lineto(-374.1502947,996.70194416)
+\lineto(-374.42004625,996.18013993)
+\curveto(-375.0879511,995.41817531)(-375.19679585,994.42035517)(-375.22930091,993.44066774)
+\curveto(-375.65173184,993.69256873)(-376.06944212,994.37861084)(-375.73508507,994.8430166)
+\lineto(-375.73508507,994.97346765)
+\curveto(-375.79931292,995.69407929)(-375.49743395,996.3118955)(-375.19558197,996.9302335)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-389.76216579,994.71256554)
+\curveto(-389.46557396,994.80745564)(-388.98528132,994.62765495)(-389.39125741,994.35382513)
+\curveto(-391.9012956,992.84450641)(-391.38607014,989.30276022)(-389.12150585,987.76604677)
+\curveto(-388.61005691,986.8128409)(-387.62033847,986.2136792)(-386.69374188,985.67882986)
+\lineto(-386.15423878,985.15702564)
+\lineto(-385.34498412,983.33071084)
+\lineto(-385.4798599,982.87413214)
+\curveto(-386.67013862,981.72329292)(-387.1563658,980.11900583)(-387.19952604,978.53663451)
+\curveto(-386.84426325,977.56516549)(-386.06090474,976.65683478)(-385.07523257,976.22112825)
+\curveto(-385.26459816,977.78523642)(-385.23924151,979.55806628)(-384.60316735,980.98259182)
+\lineto(-384.6368863,979.84114507)
+\lineto(-384.8729189,978.89537491)
+\curveto(-385.56024586,975.47886174)(-382.45999127,973.03942698)(-379.68020152,971.72056679)
+\lineto(-379.68020152,971.39443915)
+\curveto(-381.68580431,972.30655294)(-383.64150307,973.71255443)(-384.80548102,975.6340985)
+\curveto(-387.09971797,976.02740843)(-389.65291641,978.00308969)(-388.98663008,980.52601312)
+\lineto(-389.79588473,979.87375784)
+\curveto(-390.65302029,978.85310877)(-390.85317594,977.53868392)(-390.67257728,976.22112825)
+\curveto(-390.04513517,975.20347956)(-388.77487511,973.94997535)(-387.4692776,974.36220069)
+\lineto(-387.23324499,974.13391134)
+\curveto(-388.73441238,973.53253197)(-390.31245896,974.94675188)(-390.97604778,976.18851549)
+\curveto(-391.18497035,977.94960475)(-390.75336787,979.60372415)(-389.39125741,980.78691524)
+\lineto(-388.64944064,981.89574922)
+\curveto(-388.34974666,981.64789221)(-388.12261586,982.03233147)(-387.90762387,982.22187686)
+\curveto(-387.95990172,982.98292832)(-387.74536831,983.65162044)(-387.33440182,984.276481)
+\lineto(-387.77274809,985.54837881)
+\curveto(-389.42362759,987.01073515)(-391.08529715,988.6961628)(-391.78530243,990.79903384)
+\lineto(-391.65042666,991.32083807)
+\curveto(-391.77356824,992.7205779)(-390.59070768,993.70678789)(-389.76216579,994.71256554)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-389.76216579,994.71256554)
+\curveto(-389.46557396,994.80745564)(-388.98528132,994.62765495)(-389.39125741,994.35382513)
+\curveto(-391.9012956,992.84450641)(-391.38607014,989.30276022)(-389.12150585,987.76604677)
+\curveto(-388.61005691,986.8128409)(-387.62033847,986.2136792)(-386.69374188,985.67882986)
+\lineto(-386.15423878,985.15702564)
+\lineto(-385.34498412,983.33071084)
+\lineto(-385.4798599,982.87413214)
+\curveto(-386.67013862,981.72329292)(-387.1563658,980.11900583)(-387.19952604,978.53663451)
+\curveto(-386.84426325,977.56516549)(-386.06090474,976.65683478)(-385.07523257,976.22112825)
+\curveto(-385.26459816,977.78523642)(-385.23924151,979.55806628)(-384.60316735,980.98259182)
+\lineto(-384.6368863,979.84114507)
+\lineto(-384.8729189,978.89537491)
+\curveto(-385.56024586,975.47886174)(-382.45999127,973.03942698)(-379.68020152,971.72056679)
+\lineto(-379.68020152,971.39443915)
+\curveto(-381.68580431,972.30655294)(-383.64150307,973.71255443)(-384.80548102,975.6340985)
+\curveto(-387.09971797,976.02740843)(-389.65291641,978.00308969)(-388.98663008,980.52601312)
+\lineto(-389.79588473,979.87375784)
+\curveto(-390.65302029,978.85310877)(-390.85317594,977.53868392)(-390.67257728,976.22112825)
+\curveto(-390.04513517,975.20347956)(-388.77487511,973.94997535)(-387.4692776,974.36220069)
+\lineto(-387.23324499,974.13391134)
+\curveto(-388.73441238,973.53253197)(-390.31245896,974.94675188)(-390.97604778,976.18851549)
+\curveto(-391.18497035,977.94960475)(-390.75336787,979.60372415)(-389.39125741,980.78691524)
+\lineto(-388.64944064,981.89574922)
+\curveto(-388.34974666,981.64789221)(-388.12261586,982.03233147)(-387.90762387,982.22187686)
+\curveto(-387.95990172,982.98292832)(-387.74536831,983.65162044)(-387.33440182,984.276481)
+\lineto(-387.77274809,985.54837881)
+\curveto(-389.42362759,987.01073515)(-391.08529715,988.6961628)(-391.78530243,990.79903384)
+\lineto(-391.65042666,991.32083807)
+\curveto(-391.77356824,992.7205779)(-390.59070768,993.70678789)(-389.76216579,994.71256554)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-413.63517817,991.19038701)
+\lineto(-412.52245302,990.57074449)
+\curveto(-411.5593051,990.0968158)(-410.85808594,989.06273027)(-411.10625737,987.96172336)
+\lineto(-411.37600892,987.70082124)
+\lineto(-411.98294991,987.70082124)
+\lineto(-411.84807413,987.89649783)
+\lineto(-411.51088469,987.96172336)
+\curveto(-410.89922305,989.2449704)(-412.42021718,990.32680101)(-413.46658345,990.8316466)
+\lineto(-413.63517817,991.19038701)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.20784314 0.20784314 0.20784314}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-413.63517817,991.19038701)
+\lineto(-412.52245302,990.57074449)
+\curveto(-411.5593051,990.0968158)(-410.85808594,989.06273027)(-411.10625737,987.96172336)
+\lineto(-411.37600892,987.70082124)
+\lineto(-411.98294991,987.70082124)
+\lineto(-411.84807413,987.89649783)
+\lineto(-411.51088469,987.96172336)
+\curveto(-410.89922305,989.2449704)(-412.42021718,990.32680101)(-413.46658345,990.8316466)
+\lineto(-413.63517817,991.19038701)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-375.73508507,986.88550214)
+\lineto(-375.70136613,987.11379149)
+\lineto(-374.35260837,988.94010628)
+\lineto(-373.81310526,989.72281262)
+\lineto(-373.6107916,989.72281262)
+\curveto(-373.54187008,988.68533537)(-374.45012355,987.80518209)(-375.2967388,987.24424254)
+\lineto(-375.36417669,987.04856596)
+\lineto(-375.73508507,986.88550214)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.8509804 0.8509804 0.8509804}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-375.73508507,986.88550214)
+\lineto(-375.70136613,987.11379149)
+\lineto(-374.35260837,988.94010628)
+\lineto(-373.81310526,989.72281262)
+\lineto(-373.6107916,989.72281262)
+\curveto(-373.54187008,988.68533537)(-374.45012355,987.80518209)(-375.2967388,987.24424254)
+\lineto(-375.36417669,987.04856596)
+\lineto(-375.73508507,986.88550214)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-375.73508507,986.88550214)
+\lineto(-375.86996085,986.75505108)
+\lineto(-375.73508507,986.88550214)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.74509805 0.74509805 0.74509805}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-375.73508507,986.88550214)
+\lineto(-375.86996085,986.75505108)
+\lineto(-375.73508507,986.88550214)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-375.86996085,986.75505108)
+\curveto(-375.85110521,986.50915084)(-376.12420169,986.77327509)(-375.86996085,986.75505108)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.60784316 0.60784316 0.60784316}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-375.86996085,986.75505108)
+\curveto(-375.85110521,986.50915084)(-376.12420169,986.77327509)(-375.86996085,986.75505108)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-415.92806636,985.97234474)
+\lineto(-415.69203375,985.93973198)
+\curveto(-415.44642497,985.52881115)(-415.18624959,984.92847538)(-414.61302755,984.89612352)
+\lineto(-414.30955705,984.79828523)
+\lineto(-414.20840022,984.70044694)
+\lineto(-414.44443283,984.53738312)
+\curveto(-415.1433591,984.61385353)(-415.91592754,985.24442784)(-415.92806636,985.97234474)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.23137255 0.23137255 0.23137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-415.92806636,985.97234474)
+\lineto(-415.69203375,985.93973198)
+\curveto(-415.44642497,985.52881115)(-415.18624959,984.92847538)(-414.61302755,984.89612352)
+\lineto(-414.30955705,984.79828523)
+\lineto(-414.20840022,984.70044694)
+\lineto(-414.44443283,984.53738312)
+\curveto(-415.1433591,984.61385353)(-415.91592754,985.24442784)(-415.92806636,985.97234474)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84705883 0.84705883 0.84705883}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-387.33440182,985.58099157)
+\curveto(-387.58864266,985.56275451)(-387.31555967,985.82689181)(-387.33440182,985.58099157)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.84705883 0.84705883 0.84705883}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-387.33440182,985.58099157)
+\curveto(-387.58864266,985.56275451)(-387.31555967,985.82689181)(-387.33440182,985.58099157)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.95294118 0.95294118 0.95294118}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-387.33440182,985.58099157)
+\lineto(-386.55886611,985.15702564)
+\lineto(-386.25539561,984.53738312)
+\lineto(-386.39027139,984.01557889)
+\lineto(-386.62630399,983.4611619)
+\lineto(-387.43555865,982.74368109)
+\lineto(-387.4692776,983.23287255)
+\lineto(-387.06465027,984.40693206)
+\lineto(-386.96349344,984.63522141)
+\lineto(-387.30068288,985.35270222)
+\lineto(-387.33440182,985.58099157)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.95294118 0.95294118 0.95294118}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-387.33440182,985.58099157)
+\lineto(-386.55886611,985.15702564)
+\lineto(-386.25539561,984.53738312)
+\lineto(-386.39027139,984.01557889)
+\lineto(-386.62630399,983.4611619)
+\lineto(-387.43555865,982.74368109)
+\lineto(-387.4692776,983.23287255)
+\lineto(-387.06465027,984.40693206)
+\lineto(-386.96349344,984.63522141)
+\lineto(-387.30068288,985.35270222)
+\lineto(-387.33440182,985.58099157)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-378.29772482,985.32008946)
+\curveto(-377.78101572,985.35631572)(-378.337702,984.97778588)(-378.46631954,984.83089799)
+\lineto(-379.20813631,984.63522141)
+\curveto(-380.33906969,983.60309265)(-381.9353245,982.74237658)(-382.24284127,981.17826841)
+\lineto(-382.47887388,980.23249824)
+\curveto(-382.92490807,979.69060455)(-382.80648714,978.76753288)(-382.61374965,978.14528134)
+\lineto(-382.6474686,976.61248142)
+\lineto(-383.65903692,977.78654093)
+\curveto(-383.88306558,979.57763394)(-383.1257381,981.17044134)(-382.31027916,982.67845556)
+\curveto(-381.17772727,983.64835916)(-380.09427016,984.77610855)(-378.60119531,985.09180011)
+\lineto(-378.29772482,985.32008946)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.9137255 0.9137255 0.9137255}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-378.29772482,985.32008946)
+\curveto(-377.78101572,985.35631572)(-378.337702,984.97778588)(-378.46631954,984.83089799)
+\lineto(-379.20813631,984.63522141)
+\curveto(-380.33906969,983.60309265)(-381.9353245,982.74237658)(-382.24284127,981.17826841)
+\lineto(-382.47887388,980.23249824)
+\curveto(-382.92490807,979.69060455)(-382.80648714,978.76753288)(-382.61374965,978.14528134)
+\lineto(-382.6474686,976.61248142)
+\lineto(-383.65903692,977.78654093)
+\curveto(-383.88306558,979.57763394)(-383.1257381,981.17044134)(-382.31027916,982.67845556)
+\curveto(-381.17772727,983.64835916)(-380.09427016,984.77610855)(-378.60119531,985.09180011)
+\lineto(-378.29772482,985.32008946)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.65490198 0.65490198 0.65490198}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-379.10697947,984.14602995)
+\curveto(-379.12583511,984.39193019)(-378.85273864,984.12779289)(-379.10697947,984.14602995)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.65490198 0.65490198 0.65490198}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-379.10697947,984.14602995)
+\curveto(-379.12583511,984.39193019)(-378.85273864,984.12779289)(-379.10697947,984.14602995)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-379.10697947,984.14602995)
+\lineto(-379.24185525,984.01557889)
+\lineto(-379.10697947,984.14602995)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.58039218 0.58039218 0.58039218}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-379.10697947,984.14602995)
+\lineto(-379.24185525,984.01557889)
+\lineto(-379.10697947,984.14602995)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-379.24185525,984.01557889)
+\lineto(-379.68020152,983.26548531)
+\lineto(-380.82664562,981.50439605)
+\lineto(-380.86036456,981.01520458)
+\lineto(-381.13011612,980.49340036)
+\lineto(-381.39986767,978.01483028)
+\lineto(-380.75920773,975.37319638)
+\lineto(-380.75920773,975.1775198)
+\lineto(-381.5010245,975.69932402)
+\lineto(-382.31027916,976.74293248)
+\lineto(-382.44515493,979.5476302)
+\curveto(-382.11632779,981.04781735)(-381.43749801,982.65627888)(-379.94995308,983.52638743)
+\lineto(-379.47788786,983.98296613)
+\lineto(-379.24185525,984.01557889)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.93333334 0.93333334 0.93333334}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-379.24185525,984.01557889)
+\lineto(-379.68020152,983.26548531)
+\lineto(-380.82664562,981.50439605)
+\lineto(-380.86036456,981.01520458)
+\lineto(-381.13011612,980.49340036)
+\lineto(-381.39986767,978.01483028)
+\lineto(-380.75920773,975.37319638)
+\lineto(-380.75920773,975.1775198)
+\lineto(-381.5010245,975.69932402)
+\lineto(-382.31027916,976.74293248)
+\lineto(-382.44515493,979.5476302)
+\curveto(-382.11632779,981.04781735)(-381.43749801,982.65627888)(-379.94995308,983.52638743)
+\lineto(-379.47788786,983.98296613)
+\lineto(-379.24185525,984.01557889)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-386.12051983,983.49377466)
+\lineto(-385.98564406,983.23287255)
+\lineto(-386.15423878,982.74368109)
+\curveto(-386.80676778,981.93879807)(-387.07611471,980.94997906)(-387.36812076,980.0042089)
+\lineto(-387.43555865,980.0042089)
+\lineto(-387.43555865,982.15665133)
+\lineto(-386.55886611,982.74368109)
+\lineto(-386.12051983,983.49377466)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.96470588 0.96470588 0.96470588}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-386.12051983,983.49377466)
+\lineto(-385.98564406,983.23287255)
+\lineto(-386.15423878,982.74368109)
+\curveto(-386.80676778,981.93879807)(-387.07611471,980.94997906)(-387.36812076,980.0042089)
+\lineto(-387.43555865,980.0042089)
+\lineto(-387.43555865,982.15665133)
+\lineto(-386.55886611,982.74368109)
+\lineto(-386.12051983,983.49377466)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.97254902 0.97254902 0.97254902}
+\pscustom[linestyle=none,fillstyle=solid,fillcolor=curcolor]
+{
+\newpath
+\moveto(-388.0087807,981.66745987)
+\lineto(-387.87390492,981.53700881)
+\lineto(-387.87390492,979.18888979)
+\lineto(-386.82861766,977.06906012)
+\lineto(-386.82861766,976.87338353)
+\curveto(-387.86500312,977.14341722)(-388.29336859,978.22616099)(-388.68315958,979.05843873)
+\lineto(-388.51456486,981.24349393)
+\lineto(-388.0087807,981.66745987)
+\closepath
+}
+}
+{
+\newrgbcolor{curcolor}{0.97254902 0.97254902 0.97254902}
+\pscustom[linewidth=0.13264497,linecolor=curcolor]
+{
+\newpath
+\moveto(-388.0087807,981.66745987)
+\lineto(-387.87390492,981.53700881)
+\lineto(-387.87390492,979.18888979)
+\lineto(-386.82861766,977.06906012)
+\lineto(-386.82861766,976.87338353)
+\curveto(-387.86500312,977.14341722)(-388.29336859,978.22616099)(-388.68315958,979.05843873)
+\lineto(-388.51456486,981.24349393)
+\lineto(-388.0087807,981.66745987)
+\closepath
+}
+}
+\end{pspicture}
+
+
+}
+
+
+\newcommand{\card}[1]{
+ \begin{tikzpicture}[font=\tiny]
+% \draw[-,line width=1pt,MyBlack] (-5mm,0mm) to (-2mm,0mm);
+% \draw[-,line width=1pt,MyBlack] (0mm,5mm) to (0mm,2mm);
+
+% \draw[-,line width=1pt,MyBlack] [xshift=2mm](\width,0mm) to [xshift=3mm](\width,0mm);
+% \draw[-,line width=1pt,MyBlack] (\width,5mm) to (\width,2mm);
+
+% \draw[-,line width=1pt,MyBlack] (-5mm,-\height) to (-2mm,-\height);
+% \draw[-,line width=1pt,MyBlack] [yshift=-2mm](0mm,-\height) to [yshift=-3mm](0mm,-\height);
+
+% \draw[-,line width=1pt,MyBlack] [xshift=2mm](\width,-\height) to [xshift=3mm](\width,-\height);
+% \draw[-,line width=1pt,MyBlack] [yshift=-2mm](\width,-\height) to [yshift=-3mm](\width,-\height);
+
+
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-16mm) {\orga};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-18.5mm) {\ifthenelse{\equal{#1}{english}}{\departmenten}{\departmentde}};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-21.0mm) {\ifthenelse{\equal{#1}{english}}{\subdepartmenten}{\subdepartmentde}};
+
+ \ifthenelse{\equal{\gpglineone}{}\or\equal{#1}{german}}{
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-33.0mm) {Tel};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-35.5mm) {Fax};
+ \node[rectangle,draw=white,minimum height=7pt,text width=30mm,inner sep=0pt] at (65mm,-33.0mm) {\phone};
+ \node[rectangle,draw=white,minimum height=7pt,text width=30mm,inner sep=0pt] at (65mm,-35.5mm) {\fax};
+
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-38.5mm) {\email};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-41.0mm) {\homepage};
+
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-44.0mm) {GPG Fingerprint:};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-46.5mm) {\gpglineone};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-49.0mm) {\gpglinetwo};
+ }
+ {
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-35.0mm) {\email};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-37.5mm) {\homepage};
+
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-44.0mm) {GPG Fingerprint:};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-46.5mm) {\gpglineone};
+ \node[rectangle,draw=white,minimum height=7pt,text width=37.5mm,inner sep=0pt] at (64.25mm,-49.0mm) {\gpglinetwo};
+ }
+
+ \ifthenelse{\equal{\gns}{}\or\equal{#1}{english}}{
+ \node[rectangle,draw=white,minimum height=7pt,text width=120mm,inner sep=0pt] at (62mm,-2mm) {\gns};
+ \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-21.0mm) {\ifthenelse{\equal{\prefix}{}}{}{\tiny \prefix}};
+ \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-24.0mm) {\fontsize{8pt}{8pt}\selectfont \textbf{\name}\ifthenelse{\equal{\suffix}{}}{}{, \tiny \suffix}};
+ \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-29.0mm) {\ifthenelse{\equal{#1}{english}}{\textit{\jobtitleenglish}}{\textit{\jobtitlegerman}}};
+ }
+ {
+ \node at (78mm,-7mm) {\logo}; %\includegraphics[height=7mm]{../branding/logo/gnunet-logo.pdf}};
+ \node[rectangle,draw=white,line width=1pt,inner sep=0pt] at (17mm,-17mm) {\begin{pspicture}(15mm,15mm) \psbarcode{gnunet://gns/\gns}{eclevel=Q}{qrcode}\end{pspicture}};
+ \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-35.0mm) {\ifthenelse{\equal{\prefix}{}}{}{\tiny \prefix}};
+ \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-41.5mm) {\fontsize{8pt}{8pt}\selectfont \textbf{\name}\ifthenelse{\equal{\suffix}{}}{}{, \tiny \suffix}};
+ \node[rectangle,draw=white,minimum height=7pt,text width=41mm,inner sep=0pt] at (24.25mm,-47.0mm) {\ifthenelse{\equal{#1}{english}}{\textit{\jobtitleenglish}}{\textit{\jobtitlegerman}}};
+ }
+ \end{tikzpicture}
+}
+
+
+\begin{document}
+\addresslabel{\card{german}}
+%\addresslabel{\card{english}}
+\end{document}
+
+
+\begin{figure}
+ \begin{center}
+ \card{german}
+ \end{center}
+\end{figure}
+%\clearpage
+%\begin{figure}
+% \begin{center}
+% \card{english}
+% \end{center}
+%\end{figure}
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<?xml-stylesheet href="gns-form.xslt" type="text/xsl" ?>
+<form>
+ <group title="Name">
+ <field id="prefix">Academic Title (prefix)</field>
+ <field id="name">Name</field>
+ <field id="suffix">Academic Title (suffix)</field>
+ </group>
+ <group title="Legacy Contact">
+ <field id="phone">Phone</field>
+ <field id="fax">Fax</field>
+ <field id="email">E-mail</field>
+ <field id="homepage">Homepage</field>
+ </group>
+ <group title="Affiliation">
+ <field id="orga">Organization</field>
+ <field id="departmenti18n">Department</field>
+ <field id="subdepartmenti18n">Division</field>
+ </group>
+ <group title="Jobtitle">
+ <field id="jobtitlei18n">Jobtitle</field>
+ </group>
+ <group title="GNU ID">
+ <field id="gpgfingerprint">GPG Fingerprint</field>
+ <field id="gnskey">GNS Public Key</field>
+ <field id="gnsnick">GNS Nickname</field>
+ </group>
+</form>
--- /dev/null
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+ <xsl:output method="html" indent="yes" />
+
+ <xsl:template match="form">
+ <html>
+ <head>
+ <title>Create your GNU Name System Business Card</title>
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
+ <link href="bootstrap.min.css" rel="stylesheet" />
+ </head>
+ <body>
+ <!--<script src="js/jquery-2.0.3.min.js"></script>-->
+ <!--<script src="js/bootstrap.min.js"></script>-->
+ <div class="container">
+ <h1>GNU Name System Business Card</h1>
+ <p>
+ Please fill in the information below to generate your business card.
+ </p>
+ <form class="form-horizontal" name="gnsinput" action="submit.pdf" method="get" accept-charset="utf-8">
+ <xsl:apply-templates />
+ <div class="form-group">
+ <div class="col-sm-offset-2 col-sm-10">
+ <input class="btn btn-submit" type="submit" />
+ </div>
+ </div>
+ </form>
+ </div>
+ </body>
+ </html>
+ </xsl:template>
+
+ <xsl:template match="group">
+ <fieldset>
+ <legend><!--<xsl:value-of select="@title" />--></legend>
+ <xsl:apply-templates />
+ </fieldset>
+ </xsl:template>
+
+ <xsl:template match="field">
+ <div class="form-group">
+ <label class="col-sm-2 control-label" for="{@id}"><xsl:value-of select="." />:</label>
+ <div class="col-sm-10">
+ <input class="col-sm-10 form-control" id="{@id}" name="{@id}" type="text" />
+ </div>
+ </div>
+ </xsl:template>
+
+</xsl:transform>
+++ /dev/null
-#!@PYTHON@
-# This file is part of GNUnet.
-# (C) 2013, 2018 Christian Grothoff (and other contributing authors)
-#
-# GNUnet is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published
-# by the Free Software Foundation; either version 3, or (at your
-# option) any later version.
-#
-# GNUnet is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNUnet; see the file COPYING. If not, write to the
-# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-#
-# File: gnunet-chk.py
-# Brief: Computes GNUNET style Content Hash Key for a given file
-# Author: Sree Harsha Totakura
-
-from hashlib import sha512
-import logging
-import os
-import getopt
-import sys
-from Crypto.Cipher import AES
-from functools import reduce
-
-
-# Defaults
-DBLOCK_SIZE = (32 * 1024) # Data block size
-
-# Pick a multiple of 2 here to achive 8-byte alignment! We also
-# probably want DBlocks to have (roughly) the same size as IBlocks.
-# With SHA-512, the optimal value is 32768 byte / 128 byte = 256 (128
-# byte = 2 * 512 bits). DO NOT CHANGE!
-CHK_PER_INODE = 256
-
-CHK_HASH_SIZE = 64 # SHA-512 hash = 512 bits = 64 bytes
-
-CHK_QUERY_SIZE = CHK_HASH_SIZE # Again a SHA-512 hash
-
-GNUNET_FS_URI_PREFIX = "gnunet://fs/" # FS CHK URI prefix
-
-GNUNET_FS_URI_CHK_INFIX = "chk/" # FS CHK URI infix
-
-
-def encode_data_to_string(data):
- """Returns an ASCII encoding of the given data block like
- GNUNET_STRINGS_data_to_string() function.
-
- data: A bytearray representing the block of data which has to be encoded
- """
- echart = "0123456789ABCDEFGHIJKLMNOPQRSTUV"
- assert (None != data)
- assert (bytearray == type(data))
- size = len(data)
- assert (0 != size)
- vbit = 0
- wpos = 0
- rpos = 0
- bits = 0
- out = ""
- while (rpos < size) or (vbit > 0):
- if (rpos < size) and (vbit < 5):
- bits = (bits << 8) | data[rpos] # eat 8 more bits
- rpos += 1
- vbit += 8
- if (vbit < 5):
- bits <<= (5 - vbit) # zero-padding
- assert (vbit == ((size * 8) % 5))
- vbit = 5
- out += echart[(bits >> (vbit - 5)) & 31]
- wpos += 1
- vbit -= 5
- assert (0 == vbit)
- return out
-
-
-def sha512_hash(data):
- """ Returns the sha512 hash of the given data.
-
- data: string to hash
- """
- hash_obj = sha512()
- hash_obj.update(data)
- return hash_obj.digest()
-
-
-class AESKey:
- """Class for AES Keys. Contains the main key and the initialization
- vector. """
-
- key = None # The actual AES key
- iv = None # The initialization vector
- cipher = None # The cipher object
- KEY_SIZE = 32 # AES 256-bit key = 32 bytes
- IV_SIZE = AES.block_size # Initialization vector size (= AES block size)
-
- def __init__(self, passphrase):
- """Creates a new AES key.
-
- passphrase: string containing the passphrase to get the AES key and
- initialization vector
- """
- passphrase = bytearray(passphrase)
- self.key = bytearray(self.KEY_SIZE)
- self.iv = bytearray(self.IV_SIZE)
- if (len(passphrase) > self.KEY_SIZE):
- self.key = passphrase[:self.KEY_SIZE]
- passphrase = passphrase[self.KEY_SIZE:]
- if (len(passphrase) > self.IV_SIZE):
- self.iv = passphrase[:self.IV_SIZE]
- else:
- self.iv[0:len(passphrase)] = passphrase
- else:
- self.key[0:len(passphrase)] = passphrase
- self.key = str(self.key)
- self.iv = str(self.iv)
- assert (len(self.key) == self.KEY_SIZE)
- assert (len(self.iv) == self.IV_SIZE)
-
-
-def setup_aes_cipher_(aes_key):
- """Initializes the AES object with settings similar to those in GNUnet.
-
- aes_key: the AESKey object
- Returns the newly initialized AES object
- """
- return AES.new(aes_key.key, AES.MODE_CFB, aes_key.iv, segment_size=128)
-
-
-def aes_pad_(data):
- """Adds padding to the data such that the size of the data is a multiple of
- 16 bytes
-
- data: the data string
- Returns a tuple:(pad_len, data). pad_len denotes the number of bytes added
- as padding; data is the new data string with padded bytes at the end
- """
- pad_len = len(data) % 16
- if (0 != pad_len):
- pad_len = 16 - pad_len
- pad_bytes = bytearray(15)
- data += str(pad_bytes[:pad_len])
- return (pad_len, data)
-
-
-def aes_encrypt(aes_key, data):
- """Encrypts the given data using AES.
-
- aes_key: the AESKey object to use for AES encryption
- data: the data string to encrypt
- """
- (pad_len, data) = aes_pad_(data)
- cipher = setup_aes_cipher_(aes_key)
- enc_data = cipher.encrypt(data)
- if (0 != pad_len):
- enc_data = enc_data[:-pad_len]
- return enc_data
-
-
-def aes_decrypt(aes_key, data):
- """Decrypts the given data using AES
-
- aes_key: the AESKey object to use for AES decryption
- data: the data string to decrypt
- """
- (pad_len, data) = aes_pad_(data)
- cipher = setup_aes_cipher_(aes_key)
- ptext = cipher.decrypt(data)
- if (0 != pad_len):
- ptext = ptext[:-pad_len]
- return ptext
-
-
-class Chk:
- """Class for the content hash key."""
- key = None
- query = None
- fsize = None
-
- def __init__(self, key, query):
- assert (len(key) == CHK_HASH_SIZE)
- assert (len(query) == CHK_QUERY_SIZE)
- self.key = key
- self.query = query
-
- def setSize(self, size):
- self.fsize = size
-
- def uri(self):
- sizestr = repr(self.fsize)
- if isinstance(self.fsize, int):
- sizestr = sizestr[:-1]
- return GNUNET_FS_URI_PREFIX + GNUNET_FS_URI_CHK_INFIX + \
- encode_data_to_string(bytearray(self.key)) + "." + \
- encode_data_to_string(bytearray(self.query)) + "." + \
- sizestr
-
-
-def compute_depth_(size):
- """Computes the depth of the hash tree.
-
- size: the size of the file whose tree's depth has to be computed
- Returns the depth of the tree. Always > 0.
- """
- depth = 1
- fl = DBLOCK_SIZE
- while (fl < size):
- depth += 1
- if ((fl * CHK_PER_INODE) < fl):
- return depth
- fl = fl * CHK_PER_INODE
- return depth
-
-
-def compute_tree_size_(depth):
- """Calculate how many bytes of payload a block tree of the given depth MAY
- correspond to at most (this function ignores the fact that some blocks will
- only be present partially due to the total file size cutting some blocks
- off at the end).
-
- depth: depth of the block. depth==0 is a DBLOCK.
- Returns the number of bytes of payload a subtree of this depth may
- correspond to.
- """
- rsize = DBLOCK_SIZE
- for cnt in range(0, depth):
- rsize *= CHK_PER_INODE
- return rsize
-
-
-def compute_chk_offset_(depth, end_offset):
- """Compute the offset of the CHK for the current block in the IBlock
- above
-
- depth: depth of the IBlock in the tree (aka overall number of tree levels
- minus depth); 0 == DBLOCK
- end_offset: current offset in the overall file, at the *beginning* of the
- block for DBLOCK (depth == 0), otherwise at the *end* of the
- block (exclusive)
- Returns the offset in the list of CHKs in the above IBlock
- """
- bds = compute_tree_size_(depth)
- if (depth > 0):
- end_offset -= 1
- ret = end_offset / bds
- return ret % CHK_PER_INODE
-
-
-def compute_iblock_size_(depth, offset):
- """Compute the size of the current IBLOCK. The encoder is triggering the
- calculation of the size of an IBLOCK at the *end* (hence end_offset) of its
- construction. The IBLOCK maybe a full or a partial IBLOCK, and this
- function is to calculate how long it should be.
-
- depth: depth of the IBlock in the tree, 0 would be a DBLOCK, must be > 0
- (this function is for IBLOCKs only!)
- offset: current offset in the payload (!) of the overall file, must be > 0
- (since this function is called at the end of a block).
- Returns the number of elements to be in the corresponding IBlock
- """
- assert (depth > 0)
- assert (offset > 0)
- bds = compute_tree_size_(depth)
- mod = offset % bds
- if mod is 0:
- ret = CHK_PER_INODE
- else:
- bds /= CHK_PER_INODE
- ret = mod / bds
- if (mod % bds) is not 0:
- ret += 1
- return ret
-
-
-def compute_rootchk(readin, size):
- """Returns the content hash key after generating the hash tree for the given
- input stream.
-
- readin: the stream where to read data from
- size: the size of data to be read
- """
- depth = compute_depth_(size)
- current_depth = 0
- chks = [None] * (depth * CHK_PER_INODE) # list buffer
- read_offset = 0
- logging.debug("Begining to calculate tree hash with depth: " + repr(depth))
- while True:
- if (depth == current_depth):
- off = CHK_PER_INODE * (depth - 1)
- assert (chks[off] is not None)
- logging.debug("Encoding done, reading CHK `" + chks[off].query + \
- "' from " + repr(off) + "\n")
- uri_chk = chks[off]
- assert (size == read_offset)
- uri_chk.setSize(size)
- return uri_chk
- if (0 == current_depth):
- pt_size = min(DBLOCK_SIZE, size - read_offset)
- try:
- pt_block = readin.read(pt_size)
- except IOError:
- logging.warning("Error reading input file stream")
- return None
- else:
- pt_elements = compute_iblock_size_(current_depth, read_offset)
- pt_block = ""
- pt_block = \
- reduce((lambda ba, chk:
- ba + (chk.key + chk.query)),
- chks[(current_depth - 1) * CHK_PER_INODE:][:pt_elements],
- pt_block)
- pt_size = pt_elements * (CHK_HASH_SIZE + CHK_QUERY_SIZE)
- assert (len(pt_block) == pt_size)
- assert (pt_size <= DBLOCK_SIZE)
- off = compute_chk_offset_(current_depth, read_offset)
- logging.debug("Encoding data at offset " + repr(read_offset) + \
- " and depth " + repr(current_depth) + " with block " \
- "size " + repr(pt_size) + " and target CHK offset " + \
- repr(current_depth * CHK_PER_INODE))
- pt_hash = sha512_hash(pt_block)
- pt_aes_key = AESKey(pt_hash)
- pt_enc = aes_encrypt(pt_aes_key, pt_block)
- pt_enc_hash = sha512_hash(pt_enc)
- chk = Chk(pt_hash, pt_enc_hash)
- chks[(current_depth * CHK_PER_INODE) + off] = chk
- if (0 == current_depth):
- read_offset += pt_size
- if (read_offset == size) or \
- (0 == (read_offset % (CHK_PER_INODE * DBLOCK_SIZE))):
- current_depth += 1
- else:
- if (CHK_PER_INODE == off) or (read_offset == size):
- current_depth += 1
- else:
- current_depth = 0
-
-
-def chkuri_from_path(path):
- """Returns the CHK URI of the file at the given path.
-
- path: the path of the file whose CHK has to be calculated
- """
- size = os.path.getsize(path)
- readin = open(path, "rb")
- chk = compute_rootchk(readin, size)
- readin.close()
- return chk.uri()
-
-
-def usage():
- """Prints help about using this script."""
- print("""
-Usage: gnunet-chk.py [options] file
-Prints the Content Hash Key of given file in GNUNET-style URI.
-
-Options:
- -h, --help : prints this message
-""")
-
-
-if '__main__' == __name__:
- try:
- opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
- except getopt.GetoptError as err:
- print(err)
- print("Exception occured")
- usage()
- sys.exit(2)
- for option, value in opts:
- if option in("-h", "--help"):
- usage()
- sys.exit(0)
- if len(args) != 1:
- print("Incorrect number of arguments passed")
- usage()
- sys.exit(1)
- print(chkuri_from_path(args[0]))
+++ /dev/null
-#!/usr/bin/env perl
-# helper tool to make gnunet logs more readable
-# try 'gnunet-logread -h' for usage
-
-use strict;
-use warnings;
-my $DEFAULT_SOCKET = '/tmp/gnunet-logread-ipc.sock';
-
-print STDERR <<X if -t STDIN and $#ARGV == -1;
-*** For a usage message, try '$0 -h'.
-*** For documentation, try 'perldoc $0'.
-*** Listening for GNUNET_log events on STDIN. Type CTRL-D to terminate.
-
-X
-
-use Getopt::Std;
-my (%opts, $name, $ipc, $msg_level, $msg_regex);
-getopts ('i:x:n:s:L:m:fhq', \%opts);
-
-use Pod::Usage qw( pod2usage );
-die pod2usage if $opts{h};
-
-use POSIX qw(mkfifo);
-
-use Term::ANSIColor qw(:constants :pushpop);
-$Term::ANSIColor::AUTOLOCAL = 1;
-
-my %levels = ( NONE => 0, ERROR => 1, WARNING => 2, INFO => 4, DEBUG => 8 );
-
-# Message type numbers to names
-my %msgtypes;
-my $prefix = $ENV{GNUNET_PREFIX} || '/usr';
-my $filename = "$prefix/include/gnunet/gnunet_protocols.h";
-$ipc = $opts{s} || $DEFAULT_SOCKET;
-
-if (open HEADER, $filename)
-{
- while (<HEADER>)
- {
- $msgtypes{$2} = $1 if /^\s*#define\s+GNUNET_MESSAGE_TYPE_(\w+)\s+(\d+)/i;
- }
- close HEADER;
-} else {
- warn <<X;
-Could not read $filename for message codes:
- $!.
-Please provide a \$GNUNET_PREFIX environment variable to replace "/usr".
-Try also '$0 -h' for help.
-
-X
-}
-
-die "You can't read and write the socket at the same time"
- if exists $opts{f} and exists $opts{n};
-
-if ((exists $opts{n} or exists $opts{f}) and not -r $ipc) {
- undef $!;
- die "Could not mkfifo $ipc: $!" unless mkfifo $ipc, 0600;
- system('chgrp', 'gnunet', $ipc);
- die "Could not chgrp $ipc to 'gnunet': $!" if $!;
- chmod 0660, $ipc;
- die "Could not chmod $ipc to allow gnunet group writes: $!" if $!;
-}
-
-if (exists $opts{n}) {
- $name = $opts{n};
- $msg_level = $opts{L} && exists $levels{$opts{L}} ? $levels{$opts{L}} : 0;
- $msg_regex = $opts{m};
- print STDERR "RE: /$msg_regex/\n" if defined $msg_regex;
- open O, '>', $ipc or die "Cannot write to $ipc: $!";
-}
-
-if (exists $opts{f}) {
- open(I, $ipc) or die "Cannot read from $ipc: $!";
- &perform while <I>;
- close I;
-} else {
- &perform while <>;
-}
-fileno O and close O;
-exit;
-
-
-sub perform {
- if (fileno O) {
- my ($time, $type, $size, $from, $to, $level, $msg);
- if (($time, $type, $size, $from, $to) =
- /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)\ util-client-.*\b
- (?: Received | Transmitting )\ message \b.*?\b
- type \s+ (\d+) \b.*?\b
- size \s+ (\d+) \b.*?\b
- (?: from \s+ (\S+)
- | to \s+ (\S+) ) /x)
- {
- $from ||= $name;
- $to ||= $name;
- my ($time, $type, $size, $from, $to) = ($1, $2, $3,
- $4 || $name, $5 || $name);
- my $msg = exists $msgtypes{$type} ? $msgtypes{$type} : $type;
- my $ofh = select O;
- print O "$time\t$from -> $to\t$msg ($size)\n";
- $| = 1;
- select $ofh;
- }
- if (($time, $level, $msg) =
- /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)
- \s+\S+\s+(\S+)\s+(.+)/x
- and (exists $levels{$level}
- && $levels{$level} <= $msg_level
- && (!defined $msg_regex || $msg =~ /$msg_regex/i)))
- {
- print O "$time\t$name\t$level: $msg\n";
- }
- }
- return if $opts{x} and /$opts{x}/io;
- return if $opts{i} and not /$opts{i}/io;
-
- # Timestamp (e.g. Nov 01 19:36:11-384136)
- s/^([A-Z][a-z]{2} .[0-9] [0-9:]{8}(?:-[0-9]{6})?)/YELLOW $1/e;
-
- # Log levels
- s/\b(ERROR )\b/RED $1/ex;
- s/\b(WARNING)\b/YELLOW $1/ex;
- s/\b(INFO )\b/GREEN $1/ex;
- s/\b(DEBUG )\b/BRIGHT_BLACK $1/ex;
-
- # Service names
- # TODO: might read the list from $GNUNET_PREFIX/libexec/gnunet/
- s/\b(multicast|psyc|psycstore|social)\b/BLUE $1/gex;
-
- # Add message type names
- s/(\s+type\s+)(\d+)/
- $1 . BRIGHT_CYAN (exists $msgtypes{$2} ? $msgtypes{$2} : 'UNKNOWN') .
- CYAN " ($2)"/gei;
-
- # logread-ipc output
- s/(\s+)([A-Z_]+)( \(\d+\))$/$1 . BRIGHT_CYAN $2 . CYAN $3/e;
-
- print;
-}
-
-__END__
-
-=pod
-
-=head1 NAME
-
-gnunet-logread - a GNUnet log analyzer, colorizer and aggregator
-
-=head1 SYNOPSIS
-
- <gnunet-service> |& $0 [<options>]
- or
- $0 [<options>] [<logfile>]
-
- Options:
- -f Follow input from IPC FIFO socket.
-
- Regular screen output options:
- -i <regex> Include only messages that match <regex>.
- -x <regex> Exclude all messages that match <regex>.
- -q Quiet: Do not show usage advice to new users.
-
- Options to forward messages to the IPC FIFO socket:
- -n <component_name> Name of the component we are forwarding messages for.
- -s </path/to/ipc.sock> Default = $DEFAULT_SOCKET
- -L <LOGLEVEL> Minimum level of messages to forward:
- Log levels: NONE, ERROR, WARNING, INFO, DEBUG.
- -m <regex> Only forward messages matching a regular expression.
-
- See 'perldoc gnunet-logread' for a longer explanation.
-
-=head1 MOTIVATION
-
-GNUnet debug logs are a tedious read, but given a complex system that we
-cannot run all parts of in a debugger all the time, some gathering and
-structuring of events and message passing is useful.
-
-At first, this tool simply makes logs easier to read. Both if viewed in
-real-time or taken from disk. Then it also allows to extract all message
-passing events from it and forward them to a special process that aggregates
-all message passing events and therefore helps you make sense of all the
-inter-process communication (IPC) happening between the various pieces of
-the GNUnet system beast.
-
-That master process is simply an extra gnunet-logread that you run in a
-separate window and adorn it with the '-f' flag. The submitting processes
-instead need to be given a '-n' flag. That is because from the GNUnet logs
-it isn't clear which process events belong to. For example you may be
-having events taking place in the 'util' subsystem of gnunet-psyc-service
-just as much as in the 'util' subsystem of gnunet-multicast-service. In
-order to make sense of them it is necessary to manually add that info. This
-could be remedied by extending the semantics of the GNUNET_log facility
-instead, but that is still subject to further consideration.
-
-=head1 AUTHORS
-
-tg & lynX
+++ /dev/null
-#!/bin/sh
-#
-# Usage: gnunet-logread-ipc | gnunet-logread
-#
-# ... obsoleted by gnunet-logread's new -f option that does the same thing
-
-ipc=${1:-/tmp/gnunet-logread-ipc.sock}
-test -e "$ipc" || mkfifo "$ipc"
-cat "$ipc"
+++ /dev/null
-#!/usr/bin/env perl
-
-# 1. Start sdedit and enable 'RT diagram server' in 'Global preferences'.
-#
-# 2. Start this tool (see defaults below):
-# gnunet-logread-ipc-sdedit -n buffer-name -i /path/to/ipc.sock -h <sdedit-host> -p <sdedit-port>
-#
-# 3. Start a gnunet-logread instance for each component with the -n <component_name> option
-
-use strict;
-use warnings;
-
-use Getopt::Std;
-use IO::Socket::INET;
-use POSIX qw(mkfifo);
-
-my %opts;
-getopts ('i:n:h:p:', \%opts);
-
-my $ipc = $opts{i} || '/tmp/gnunet-logread-ipc.sock';
-my $name = $opts{n} || 'gnunet';
-my $host = $opts{h} || 'localhost';
-my $port = $opts{p} || 16001;
-my %svcs = map { $_ => 1 } @ARGV;
-
-my $sdedit = IO::Socket::INET->new(PeerAddr => $host,
- PeerPort => $port,
- Proto => 'tcp')
- or die "Cannot connect to $host:$port: $!\n";
-
-print $sdedit "$name\n";
-print $sdedit "_t:time[e]\n";
-print $sdedit "$_:$_\[ap\] \"$_\"\n" for @ARGV;
-print $sdedit "_e:ext[e]\n";
-print $sdedit "\n";
-
-mkfifo $ipc, 0600 or die "$ipc: $!\n" unless -e $ipc;
-open IPC, '<', $ipc or die "$ipc: $!\n";
-$| = 1;
-while (<IPC>)
-{
- print;
- my ($time, $from, $to, $msg, $svc);
- if (my ($time, $from, $to, $msg) =
- /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)\s+
- (\S+)\s+ -> \s+(\S+)\s+ (\S+\s+ \(\d+\))/x)
- {
- $from = '_e' unless exists $svcs{$from};
- $to = '_e' unless exists $svcs{$to};
- print $sdedit "*0 _t\n$time\n*0\n", "$from:$to.$msg\n"
- }
- elsif (($time, $svc, $msg) =
- /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)\s+
- (\S+)\s+(.+)/x)
- {
- print $sdedit "*0 _t\n$time\n*0\n", "*0 $svc\n$msg\n*0\n"
- }
-}
-
-close IPC;
+++ /dev/null
-#!/bin/sh
-#
-# "suidfix" is german and it means something like immediate suicide.
-
-# taken from dangole's lede config.. thx!
-suid_root_helpers="exit nat-server nat-client transport-bluetooth transport-wlan vpn"
-libexec="${GNUNET_PREFIX}/lib/gnunet/libexec"
-
-chmodown_execbin() {
- if [ -x $1 ]; then
- if [ "$3" ]; then
- chown $3 $1 2>/dev/null && chmod $2 $1
- else
- chmod $2 $1
- fi
- ls -l $1
- else
- echo "Missing: $1"
- fi
-}
-
-for helper in $suid_root_helpers; do
- chmodown_execbin ${libexec}/gnunet-helper-$helper u+s
-done
-chmodown_execbin ${libexec}/gnunet-helper-dns 4750 root:gnunetdns
-chmodown_execbin ${libexec}/gnunet-service-dns 2750 gnunet:gnunetdns
-
+++ /dev/null
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<profiles version="12">
-<profile kind="CodeFormatterProfile" name="GNUnet" version="12">
-<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_before_root_tags" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.disabling_tag" value="@formatter:off"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_annotation" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_parameters" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_type_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_arguments" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_anonymous_type_declaration" value="end_of_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_case" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_brace_in_array_initializer" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_closing_brace_in_array_initializer" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_annotation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_field" value="2"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_while" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.use_on_off_tags" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_annotation_type_member_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_else_in_if_statement" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_prefix_operator" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.keep_else_statement_on_same_line" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.insert_new_line_for_parameter" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_annotation_type_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_breaks_compare_to_cases" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_multiple_fields" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_expressions_in_array_initializer" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="80"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_for" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_binary_operator" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_wildcard" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_array_initializer" value="end_of_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_enum_constant" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_finally_in_try_statement" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_local_variable" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_catch_in_try_statement" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_while" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_package" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_type_parameters" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.continuation_indentation" value="2"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_postfix_operator" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="82"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_superinterfaces" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_new_chunk" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_binary_operator" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_package" value="0"/>
-<setting id="org.eclipse.jdt.core.compiler.source" value="1.7"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_constant_arguments" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_constructor_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.format_line_comments" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_arguments" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.join_wrapped_lines" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_block" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="82"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_invocation_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_member_type" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_enum_constant" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_for" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_method_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_selector_in_method_invocation" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_switch" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_unary_operator" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_case" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.indent_parameter_description" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_switch" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_parameters" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_block_comment" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_type_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.lineSplit" value="80"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_if" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_brackets_in_array_type_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_parenthesized_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_explicitconstructorcall_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_constructor_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_first_class_body_declaration" value="0"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_method" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indentation.size" value="4"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.enabling_tag" value="@formatter:on"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_enum_constant" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_superclass_in_type_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/>
-<setting id="org.eclipse.jdt.core.compiler.problem.assertIdentifier" value="error"/>
-<setting id="org.eclipse.jdt.core.formatter.tabulation.char" value="space"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_parameters" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_try_resources" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_prefix_operator" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_body" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_method" value="2"/>
-<setting id="org.eclipse.jdt.core.formatter.wrap_outer_expressions_when_nested" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.format_guardian_clause_on_one_line" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_for" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_cast" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_constructor_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_labeled_statement" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_annotation_type_declaration" value="end_of_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_method_body" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_method_declaration" value="0"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_method_invocation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_try" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_allocation_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_enum_constant" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_annotation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_at_in_annotation_type_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_throws" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_if" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_switch" value="next_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_throws" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_return" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_conditional" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_question_in_wildcard" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_try" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_allocation_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.preserve_white_space_between_code_and_line_comments" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_parenthesized_expression_in_throw" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_type_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.compiler.problem.enumIdentifier" value="error"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_switch" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_ellipsis" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block" value="next_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_inits" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_method_declaration" value="next_line"/>
-<setting id="org.eclipse.jdt.core.formatter.compact_else_if" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_array_initializer" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_increments" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.format_line_comment_starting_on_first_column" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_bracket_in_array_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_field" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.indent_root_tags" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_constant" value="next_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_declarations" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_union_type_in_multicatch" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_explicitconstructorcall_arguments" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_switch" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_method_declaration_parameters" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_superinterfaces" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.tabulation.size" value="2"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_type_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_opening_brace_in_array_initializer" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_constant" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_constructor_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_throws" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_if" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_constructor_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_assignment_operator" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_assignment_operator" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_empty_lines" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_synchronized" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_paren_in_cast" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_declaration_parameters" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_block_in_case" value="end_of_line"/>
-<setting id="org.eclipse.jdt.core.formatter.number_of_empty_lines_to_preserve" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_catch" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_constructor_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_method_invocation" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_bracket_in_array_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="82"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_and_in_type_parameter" value="insert"/>
-<setting id="org.eclipse.jdt.core.compiler.compliance" value="1.7"/>
-<setting id="org.eclipse.jdt.core.formatter.continuation_indentation_for_array_initializer" value="2"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_brackets_in_array_allocation_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="82"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_cast" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_unary_operator" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_anonymous_type_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.keep_empty_array_initializer_on_one_line" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_enum_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.keep_imple_if_on_one_line" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_constructor_declaration_parameters" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_angle_bracket_in_type_parameters" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_at_end_of_file_if_missing" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_for" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_labeled_statement" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_parameterized_type_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_type_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_enum_declaration" value="next_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_type" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_while" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode" value="enabled"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_try" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.put_empty_statement_on_new_line" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_label" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_parameter" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_type_parameters" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_method_invocation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_before_while_in_do_statement" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.format_javadoc_comments" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.line_length" value="80"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_after_annotation_on_package" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_import_groups" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_enum_constant_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_constructor_declaration" value="end_of_line"/>
-<setting id="org.eclipse.jdt.core.formatter.number_of_blank_lines_at_beginning_of_method_body" value="0"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_conditional" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_type_header" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_annotation_type_member_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.wrap_before_binary_operator" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_declaration_header" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_between_type_declarations" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_synchronized" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_statements_compare_to_block" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_superinterfaces_in_enum_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.join_lines_in_comments" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_question_in_conditional" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_field_declarations" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_for_inits" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_switchstatements_compare_to_cases" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_array_initializer" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_default" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_and_in_type_parameter" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_parens_in_constructor_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_before_imports" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_assert" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.format_html" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_throws_clause_in_method_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_angle_bracket_in_type_parameters" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_bracket_in_array_allocation_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_anonymous_type_declaration" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_colon_in_conditional" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_for" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_postfix_operator" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.format_source_code" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_synchronized" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_allocation_expression" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_constructor_declaration_throws" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_parameters_in_method_declaration" value="16"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_brace_in_array_initializer" value="insert"/>
-<setting id="org.eclipse.jdt.core.compiler.codegen.targetPlatform" value="1.7"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_resources_in_try" value="80"/>
-<setting id="org.eclipse.jdt.core.formatter.use_tabs_only_for_leading_indentations" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_annotation" value="0"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.format_header" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.format_block_comments" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_enum_constant" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.alignment_for_enum_constants" value="0"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_block" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_annotation_declaration_header" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_parenthesized_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_parenthesized_expression" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_catch" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_multiple_local_declarations" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_switch" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_for_increments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_invocation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_colon_in_assert" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.brace_position_for_type_declaration" value="end_of_line"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_brace_in_array_initializer" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_between_empty_braces_in_array_initializer" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_opening_paren_in_method_declaration" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_for" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_paren_in_catch" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_parameterized_type_reference" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_field_declarations" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_closing_paren_in_annotation" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_parameterized_type_reference" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_method_invocation_arguments" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_javadoc_boundaries" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.blank_lines_after_imports" value="1"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_multiple_local_declarations" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.indent_body_declarations_compare_to_enum_constant_header" value="true"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_after_semicolon_in_for" value="insert"/>
-<setting id="org.eclipse.jdt.core.formatter.never_indent_line_comments_on_first_column" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_semicolon_in_try_resources" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.insert_space_before_opening_angle_bracket_in_type_arguments" value="do not insert"/>
-<setting id="org.eclipse.jdt.core.formatter.never_indent_block_comments_on_first_column" value="false"/>
-<setting id="org.eclipse.jdt.core.formatter.keep_then_statement_on_same_line" value="false"/>
-</profile>
-</profiles>
+++ /dev/null
-#!@PYTHON@
-# This file is part of GNUnet.
-# (C) 2011 Christian Grothoff (and other contributing authors)
-#
-# GNUnet is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published
-# by the Free Software Foundation; either version 2, or (at your
-# option) any later version.
-#
-# GNUnet is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNUnet; see the file COPYING. If not, write to the
-# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-#
-# Finds any gnunet processes still running in the system and kills them
-#
-# gnunet janitor can be used by invoking `make' like this:
-# TESTS_ENVIRONMENT='${top_srcdir}/contrib/gnunet_janitor.py &&' make check
-
-from __future__ import print_function
-import os
-import re
-import subprocess
-import sys
-import shutil
-import time
-import signal
-import terminate
-
-if os.name == 'nt':
- from win32com.client import GetObject
- WMI = GetObject('winmgmts:')
-
-def get_process_list ():
- result = []
- if os.name == 'nt':
- processes = WMI.InstancesOf('Win32_Process')
- for p in processes:
- result.append ((p.Properties_('ProcessId').Value, re.sub (r'(.+)\.exe', r'\1', p.Properties_('Name').Value)))
- else:
- pids = [pid for pid in os.listdir('/proc') if pid.isdigit ()]
- for pid in pids:
- with open (os.path.join ('/proc', pid, 'cmdline'), 'rb') as p:
- cmdline = p.read ().split ('\x00')
- if len (cmdline) > 0:
- result.append ((pid, cmdline[0]))
- return result
-
-def main ():
- procs = get_process_list ()
- gnunet_procs = []
- for p in procs:
- if re.match (r'gnunet-.+', p[1]):
- gnunet_procs.append (p)
- for p in gnunet_procs:
- if re.match (r'gnunet-service-arm', p[1]):
- print ("killing arm process {0:5} {1}".format (p[0], p[1]))
- try:
- terminate.safe_terminate_process_by_pid (int (p[0]), 1)
- except OSError as e:
- print ("failed: {0}".format (e))
- pass
- for p in gnunet_procs:
- if not re.match (r'gnunet-service-arm', p[1]):
- print ("killing non-arm process {0:5} {1}".format (p[0], p[1]))
- try:
- terminate.safe_terminate_process_by_pid (int (p[0]), 1)
- except OSError as e:
- print ("failed: {0}".format (e))
- pass
-
-if __name__ == '__main__':
- sys.exit (main ())
+++ /dev/null
-#!@PYTHON@
-# This file is part of GNUnet.
-# (C) 2010 Christian Grothoff (and other contributing authors)
-#
-# GNUnet is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published
-# by the Free Software Foundation; either version 2, or (at your
-# option) any later version.
-#
-# GNUnet is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNUnet; see the file COPYING. If not, write to the
-# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-#
-# Testcase for gnunet-peerinfo
-from __future__ import print_function
-import os
-import re
-import subprocess
-import sys
-import shutil
-import time
-
-class pexpect (object):
- def __init__ (self):
- super (pexpect, self).__init__ ()
-
- def spawn (self, stdin, arglist, *pargs, **kwargs):
- env = kwargs.pop ('env', None)
- if env is None:
- env = os.environ.copy ()
- # This messes up some testcases, disable log redirection
- env.pop ('GNUNET_FORCE_LOGFILE', None)
- self.proc = subprocess.Popen (arglist, *pargs, env=env, **kwargs)
- if self.proc is None:
- print ("Failed to spawn a process {0}".format (arglist))
- sys.exit (1)
- if stdin is not None:
- self.stdo, self.stde = self.proc.communicate (stdin)
- else:
- self.stdo, self.stde = self.proc.communicate ()
- return self.proc
-
- def expect (self, s, r, flags=0):
- stream = self.stdo if s == 'stdout' else self.stde
- if isinstance (r, str):
- if r == "EOF":
- if len (stream) == 0:
- return True
- else:
- print ("Failed to find `{1}' in {0}, which is `{2}' ({3})".format (s, r, stream, len (stream)))
- sys.exit (2)
- raise ValueError ("Argument `r' should be an instance of re.RegexObject or a special string, but is `{0}'".format (r))
- m = r.search (stream.decode(), flags)
- if not m:
- print ("Failed to find `{1}' in {0}, which is is `{2}'".format (s, r.pattern, stream))
- sys.exit (2)
- stream = stream[m.end ():]
- if s == 'stdout':
- self.stdo = stream
- else:
- self.stde = stream
- return m
-
- def read (self, s, size=-1):
- stream = self.stdo if s == 'stdout' else self.stde
- result = ""
- if size < 0:
- result = stream
- new_stream = ""
- else:
- result = stream[0:size]
- new_stream = stream[size:]
- if s == 'stdout':
- self.stdo = new_stream
- else:
- self.stde = new_stream
- return result
+++ /dev/null
-<?php
-
-$path='log';
-$lines = array();
-$peers = array();
-$comps = array();
-$ajax = FALSE;
-$colors = array('#F00', '#F80', '#FF0',
- '#4F0', '#0A0',
- '#22F', '#ADF', '#0FF', '#F0F', '#508', '#FAA',
- '#FFF', '#AAA', '#666', '#222');
-
-function render_row ($d, $component, $pid, $level, $msg, $c)
-{
- global $ajax;
- global $peers;
- if (!$ajax && $level == "DEBUG")
- return;
-
- list($comp,$peer) = explode (',', preg_replace ('/(.*)-(\d*)/', '\1,\2', $component));
- $peer = array_key_exists ($peer, $peers) ? $peers[$peer] : $peer;
- $date = $d ? $d->format('Y-m-d'). $d->format('H:i:s') : "";
- echo "<tr class=\"$level P-$peer C-$comp\" id=\"$c\">";
- echo "<td class=\"date\"><small>$date</td>";
- echo '<td class="usec"><small>';
- echo $d ? $d->format('u') : "";
- echo '</small></td>';
- echo "<td class=\"comp\">$comp</td><td class=\"peer\">$peer</td>";
- echo "<td class=\"level\">$level</td><td><pre>$msg</pre></td>";
- if ($level != "DEBUG")
- {
- echo '<td><div class="btn-group"><button class="btn btn-xs btn-default btn-showup"><span class="glyphicon glyphicon-chevron-up"></span></button>';
- echo '<button class="btn btn-xs btn-default btn-showdown"><span class="glyphicon glyphicon-chevron-down"></span></button></div></td>';
- }
- else
- echo '<td></td>';
- echo '</tr>';
-}
-
-function render_rows ()
-{
- global $lines;
- foreach ($lines as $line) {
- render_row ($line[0], $line[1], $line[2], $line[3], $line[4], $line[5]);
- }
-}
-
-function process ($line, $c)
-{
- global $lines;
- global $peers;
- global $comps;
- $a = explode (' ', $line);
- if (count($a) < 6)
- return;
- $date = DateTime::createFromFormat ("M d H:i:s-u", implode (' ', array_slice ($a, 0, 3)));
- $component = $a[3];
- $level = $a[4];
- $msg = implode (' ', array_slice ($a, 5));
-
- if (FALSE !== strpos($line, "STARTING SERVICE")) {
- $id = preg_replace ("/.*\[(....)\].*\n/", '\1', $line);
- $pid = preg_replace ("/.*[a-z-]*-([0-9]*).*\n/", '\1', $line);
- $peers[$pid] = $id;
- }
-
- $lines[] = array ($date, $component, 0, $level, $msg, $c);
- $comp = preg_replace ('/(.*)-\d*/', '\1', $component);
- $comps[$comp] = 1;
-}
-
-if (array_key_exists ('a', $_GET)) {
- $start = (int)$_GET['a'];
- $ajax= TRUE;
-}
-else
-{
- $start = null;
-}
-if (array_key_exists ('z', $_GET)) {
- $stop = (int)$_GET['z'];
- $ajax= TRUE;
-}
-else
-{
- $stop = null;
-}
-$t0 = microtime(true);
-$handle = @fopen($path, 'r');
-if ($handle) {
- $c = 0;
- while (($line = fgets($handle)) !== false) {
- if (!$start || $c >= $start) {
- process ($line, $c);
- }
- $c++;
- if ($stop && $c > $stop)
- break;
- }
-} else {
- echo "<div class=\"alert alert-danger\">Error opening file $path.</div>";
-}
-
-$t1 = microtime(true);
-/* Ajax request: don't render container HTML, just table rows. */
-if ($start !== null || $stop !== null) {
- render_rows();
- die();
-}
-// echo $t1-$t0;
-ksort($peers);
-ksort($comps);
-?>
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
-
- <title>GNUnet log view</title>
-
- <!-- Latest compiled and minified Bootstrap CSS -->
- <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
- <!-- Optional theme -->
- <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css">
-
- <style>
- body {
- font-family: arial,sans-serif;
- }
- table {
- color:#000;
- margin-top: 40px;
- font-size:12px;
- border-collapse:collapse;
- }
- pre {
- padding: 0px;
- margin: 0px;
- border: 0px;
- background-color: transparent;
- }
- .alert {
- display: none;
- position: fixed;
- width: 75%;
- left: 50%;
- margin: 5% 0 0 -37.5%;
- }
- .btn-toolbar {
- position: fixed;
- top: 0px;
- }
- .btn-xs {
- font-size: 9px;
- padding: 0 5px;
- }
- .level {
- display: none;
- }
- .DEBUG {
- background-color:#CCC;
- }
- .WARNING {
- background-color:#EB9316;
- }
- .ERROR {
- background-color:#D2322D;
- }
- .btn-group {
- min-width: 48px;
- }
- table.table tbody tr td,
- table.table tbody th td {
- padding: 0px 0px 0px 2px;
- margin-bottom: 0px;
- }
-<?php
- $c = 0;
- foreach ($peers as $peer) {
- echo "table.table tbody tr.P-$peer td.peer {\n";
- echo ' background-color: ' . $colors[$c] . ";\n";
- echo "}\n";
- echo "#P-$peer { color: " . $colors[$c++] . "}\n";
- } ?>
- </style>
-</head>
-
-
-<body>
-<div class="btn-toolbar" role="toolbar">
- <div class="btn-group">
- <button id="ERROR" class="btn btn-danger btn-showlevel"><span class="glyphicon glyphicon-fire"></span> Error</button>
- <button id="WARNING" class="btn btn-warning btn-showlevel"><span class="glyphicon glyphicon-exclamation-sign"></span> Warning</button>
- <button id="INFO" class="btn btn-default btn-showlevel active"><span class="glyphicon glyphicon glyphicon-info-sign"></span> Info</button>
- <button id="DEBUG" class="btn btn-primary btn-showlevel"><span class="glyphicon glyphicon glyphicon-wrench"></span> Debug</button>
- </div>
- <div id="btn-showpeer" class="btn-group">
- <?php foreach($peers as $pid=>$id): ?>
- <button id="P-<?php echo $id ?>" class="btn btn-default btn-element active"><?php echo $id ?></button>
- <?php endforeach ?>
- <button class="btn btn-default btn-showall">All</button>
- <button class="btn btn-default btn-shownone">None</button>
- </div>
- <div id="btn-showcomp" class="btn-group">
- <?php foreach($comps as $c=>$one): ?>
- <button id="C-<?php echo $c ?>" class="btn btn-default btn-element active"><?php echo $c ?></button>
- <?php endforeach ?>
- <button class="btn btn-default btn-showall">All</button>
- <button class="btn btn-default btn-shownone">None</button>
- </div>
-</div>
-<div id="msg" class="alert alert-success"></div>
-<table class="table">
- <thead>
- <tr>
- <th>Date Time</th>
- <th>uSec</th>
- <th>Comp</th>
- <th>Peer</th>
- <th class="level">Level</th>
- <th>Message</th>
- <th></th>
- </tr>
- </thead>
- <tbody>
-<?php render_rows(); ?>
- </tbody>default
-</table>
-<p>Processed in <?php echo $t1-$t0; ?> seconds.</p>
-<p>Rendered in <?php echo microtime(true)-$t1; ?> seconds.</p>
- <!-- jQuery -->
- <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
- <!-- Latest compiled and minified Bootstrap JavaScript -->
- <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
-
- <script>
-
- var types = ["ERROR", "WARNING", "INFO", "DEBUG"];
- var peers = {<?php foreach($peers as $pid=>$id) echo "'$pid': '$id', "; ?>};
- var msg_timeout;
-
- function msg (content)
- {
- $("#msg").html(content);
- $("#msg").stop(true);
- $("#msg").fadeTo(100, 1).fadeTo(3000, 0.90).fadeOut(1000);
- }
-
- function showlevel (level)
- {
- $("tbody > tr").hide();
- $(".btn-showlevel").removeClass("active");
- $("#"+level).addClass("active");
- for (var index = 0; index < types.length; ++index) {
- $("#btn-showpeer > .btn-element.active").each(function(){
- var peer = this.id;
- $("#btn-showcomp > .btn-element.active").each(function(){
- $("."+types[index]+"."+peer+"."+this.id).show();
- });
- });
- if (types[index] == level)
- return;
- }
- }
-
- function shownone(btn)
- {
- $(btn).parents(".btn-group").children(".btn-element.active").each(function(){$(this).click()});
- }
-
- function showall(btn)
- {
- $(btn).parents(".btn-group").children(".btn-element:not(.active)").each(function(){$(this).click()});
- }
-
- function showpeer (peer)
- {
- $("#"+peer).toggleClass("active");
- if ($("#"+peer).hasClass("active")) {
- $("#btn-showcomp > .btn-element.active").each(function(){
- for (var index = 0; index < types.length; ++index) {
- var className = "." + types[index] + "." + peer + "." + this.id;
- $(className).show();
- if ($("#"+types[index]).hasClass("active"))
- return;
- }
- });
- } else {
- $("."+peer).hide();
- }
- }
-
- function showcomp (comp)
- {
- $("#"+comp).toggleClass("active");
- if ($("#"+comp).hasClass("active")) {
- $("#btn-showpeer > .btn-element.active").each(function(){
- for (var index = 0; index < types.length; ++index) {
- var className = "." + types[index] + "." + comp + "." + this.id;
- $(className).show();
- if ($("#"+types[index]).hasClass("active"))
- return;
- }
- });
- } else {
- $("."+comp).hide();
- }
- }
-
- function load_debug (btn, up)
- {
- var tr = $(btn).parents("tr");
- var level;
- var pos = parseInt(tr.attr("id"));
- var first = pos + 1;
- var last = pos - 1;
- for (var index = 0; index < types.length; ++index) {
- if (tr.hasClass(types[index]))
- {
- level = types[index];
- break;
- }
- }
- if (up) {
- if (parseInt(tr.prev().attr("id")) == last) {
- msg ("Already loaded");
- return;
- }
- first = parseInt(tr.prevAll("."+level).first().attr("id")) + 1;
- first = isNaN(first) ? 0 : first;
- } else {
- if (parseInt(tr.next().attr("id")) == first) {
- msg ("Already loaded");
- return;
- }
- last = parseInt(tr.nextAll("."+level).first().attr("id")) - 1;
- }
- if (first > last)
- return;
- $.ajax({
- url: document.location,
- data: { a: first, z: last }
- }).done(function ( resp ) {
- var loc = $("#"+(first-1));
- var trs = $(resp);
- for (var peer in peers) {
- trs.filter(".P-"+peer).removeClass('P-'+peer).addClass('P-'+peers[peer]).find("td.peer").html(peers[peer]);
- }
- if (loc.length > 0)
- loc.after(trs);
- else {
- $("#"+(last+1)).before(trs);
- }
- msg("Done loading " + (last-first+1) + " lines.");
- });
- //tr.nextUntil("."+tr.attr("class")).show();
-
- }
-
- function hide (btn)
- {
- var tr = $(btn).parents("tr");
- tr.nextUntil("."+tr.attr("class")).hide();
- }
-
- $(function() {
- $(".btn-showup").on ("click", function(){ load_debug(this, true) });
- $(".btn-showdown").on ("click", function(){ load_debug(this, false) });
- $(".btn-showlevel").on ("click", function(){ showlevel(this.id) });
- $("#btn-showpeer > .btn-element").on ("click", function(){ showpeer(this.id) });
- $("#btn-showcomp > .btn-element").on ("click", function(){ showcomp(this.id) });
- $(".btn-showall").on ("click", function(){ showall(this) });
- $(".btn-shownone").on ("click", function(){ shownone(this) });
- });
- </script>
-</body>
-</html>
+++ /dev/null
-diff -u indent-2.2.11/src/args.c indent-2.2.11.my/src/args.c
---- indent-2.2.11/src/args.c 2008-07-23 23:27:17 +0400
-+++ indent-2.2.11.my/src/args.c 2011-08-16 14:07:30 +0400
-@@ -151,6 +151,7 @@
- static int exp_cpp = 0;
- static int exp_cs = 0;
- static int exp_d = 0;
-+static int exp_ddd = 0;
- static int exp_bfda = 0;
- static int exp_bfde = 0;
- static int exp_di = 0;
-@@ -317,6 +318,8 @@
- {"fca", PRO_BOOL, true, ON, &settings.format_comments, &exp_fca},
- {"fc1", PRO_BOOL, true, ON, &settings.format_col1_comments, &exp_fc1},
- {"eei", PRO_BOOL, false, ON, &settings.extra_expression_indent, &exp_eei},
-+ {"ddd", PRO_BOOL, true, ON, &settings.diff_decls_and_defs, &exp_ddd},
-+ {"nddd", PRO_BOOL, true, OFF, &settings.diff_decls_and_defs, &exp_ddd},
- {"dj", PRO_BOOL, false, ON, &settings.ljust_decl, &exp_dj},
- {"di", PRO_INT, 16, ONOFF_NA, &settings.decl_indent, &exp_di},
- {"d", PRO_INT, 0, ONOFF_NA, &settings.unindent_displace, &exp_d},
-@@ -436,6 +439,8 @@
- {"fca", PRO_BOOL, false, ON, &settings.format_comments, &exp_fca},
- {"fc1", PRO_BOOL, false, ON, &settings.format_col1_comments, &exp_fc1},
- {"eei", PRO_BOOL, false, ON, &settings.extra_expression_indent, &exp_eei},
-+ {"ddd", PRO_BOOL, true, ON, &settings.diff_decls_and_defs, &exp_ddd},
-+ {"nddd", PRO_BOOL, true, OFF, &settings.diff_decls_and_defs, &exp_ddd},
- {"dj", PRO_BOOL, false, ON, &settings.ljust_decl, &exp_dj},
- {"di", PRO_INT, 2, ONOFF_NA, &settings.decl_indent, &exp_di},
- {"d", PRO_INT, 0, ONOFF_NA, &settings.unindent_displace, &exp_d},
-diff -u indent-2.2.11/src/handletoken.c indent-2.2.11.my/src/handletoken.c
---- indent-2.2.11/src/handletoken.c 2009-02-15 14:20:42 +0300
-+++ indent-2.2.11.my/src/handletoken.c 2011-08-16 14:18:28 +0400
-@@ -1642,6 +1642,11 @@
- {
- /* what ? */
- }
-+ if (parser_state_tos->in_parameter_declaration_prototype)
-+ {
-+ parser_state_tos->in_parameter_declaration_prototype = 0;
-+ parser_state_tos->in_parameter_declaration = 0;
-+ }
- }
-
- /**
-diff -u indent-2.2.11/src/indent.h indent-2.2.11.my/src/indent.h
---- indent-2.2.11/src/indent.h 2009-10-11 23:15:34 +0400
-+++ indent-2.2.11.my/src/indent.h 2011-08-16 14:19:37 +0400
-@@ -318,6 +318,11 @@
- int brace_indent; /*!< number of spaces to indent braces from the suround if, while, etc. in -bl
- * (bype_2 == 0) code */
- int expect_output_file; /*!< Means "-o" was specified. */
-+ int diff_decls_and_defs; /*!< Makes indent think that function prototypes are terminated by ';',
-+ * without this option indent will not be able to tell a difference between
-+ * int foo (); and int foo () {}
-+ * This is the default.
-+ */
- } user_options_ty;
-
- extern user_options_ty settings;
-@@ -430,6 +435,7 @@
- * slightly different */
- int in_stmt; /*!< set to 1 while in a stmt */
- int in_parameter_declaration;
-+ int in_parameter_declaration_prototype;
- int ind_level; /*!< the current indentation level in spaces */
- int ind_stmt; /*!< set to 1 if next line should have an extra
- * indentation level because we are in the
-diff -u indent-2.2.11/src/lexi.c indent-2.2.11.my/src/lexi.c
---- indent-2.2.11/src/lexi.c 2009-11-11 22:36:32 +0300
-+++ indent-2.2.11.my/src/lexi.c 2011-08-16 14:14:28 +0400
-@@ -616,8 +616,11 @@
- * I've added '=' to this list to keep from breaking
- * a non-valid C macro from libc. -jla */
-
-- if (*tp != ';' && *tp != ',' && *tp != '(' && *tp != '=')
-+ if ((*tp != ';' || !settings.diff_decls_and_defs) &&
-+ *tp != ',' && *tp != '(' && *tp != '=')
- {
-+ if (*tp == ';')
-+ parser_state_tos->in_parameter_declaration_prototype = 1;
- parser_state_tos->in_parameter_declaration = 1;
- }
- }
+++ /dev/null
-# Configuration to disable autostarting of
-# all services above the 'core' level.
-# (including resolver)
-
-[dns]
-AUTOSTART = NO
-
-[dht]
-AUTOSTART = NO
-
-[nse]
-AUTOSTART = NO
-
-[cadet]
-AUTOSTART = NO
-
-[datastore]
-AUTOSTART = NO
-
-[fs]
-AUTOSTART = NO
-
-[dv]
-AUTOSTART = NO
-
-[vpn]
-AUTOSTART = NO
-
-[consensus]
-AUTOSTART = NO
-
-[resolver]
-AUTOSTART = NO
-
-[namestore]
-AUTOSTART = NO
-
-[namecache]
-AUTOSTART = NO
-
-[identity]
-AUTOSTART = NO
-
-[revocation]
-AUTOSTART = NO
-
-[conversation]
-AUTOSTART = NO
-
-[peerstore]
-AUTOSTART = NO
-
-[psycstore]
-AUTOSTART = NO
-
-[gns]
-AUTOSTART = NO
-
-[regex]
-AUTOSTART = NO
-
-[set]
-AUTOSTART = NO
-
-[scalarproduct-bob]
-AUTOSTART = NO
-
-[scalarproduct-alice]
-AUTOSTART = NO
-
-[social]
-AUTOSTART = NO
-
-[psyc]
-AUTOSTART = NO
-
-[rps]
-AUTOSTART = NO
-
-[multicast]
-AUTOSTART = NO
-
-[sensordashboard]
-AUTOSTART = NO
-
-[sensor]
-AUTOSTART = NO
-
-[zonemaster-monitor]
-AUTOSTART = NO
+++ /dev/null
-# Configuration file that can be included to prevent ANY of the usual
-# FORCESTART = YES to be set. Also disables NSE POW calculation.
-#
-# This configuration is included from various configuration test files.
-# Whenever a new service is added that has FORCESTART = YES for
-# production should be disabled for (most) test suites, the option should
-# be added here instead of all over the place ;-).
-
-[core]
-FORCESTART = NO
-
-[fs]
-FORCESTART = NO
-
-[dht]
-FORCESTART = NO
-
-[cadet]
-FORCESTART = NO
-
-[nse]
-FORCESTART = NO
-WORKBITS = 0
-
-[revocation]
-FORCESTART = NO
-
-[topology]
-FORCESTART = NO
-
-[hostlist]
-FORCESTART = NO
-
-[gns]
-FORCESTART = NO
-
-[zonemaster]
-FORCESTART = NO
-
-[zonemaster-monitor]
-FORCESTART = NO
--- /dev/null
+[PATHS]
+SERVICEHOME = $GNUNET_TMP/nse-profiler/
+
+[testbed]
+AUTOSTART = NO
+PORT = 12113
+ACCEPT_FROM = 127.0.0.1;192.168.0.0/16;
+HOSTNAME = localhost
+MAX_PARALLEL_TOPOLOGY_CONFIG_OPERATIONS = 5
+OVERLAY_TOPOLOGY = RANDOM
+OVERLAY_RANDOM_LINKS = 1000
+OPERATION_TIMEOUT = 45 s
+
+[nse]
+PORT = 12114
+UNIXPATH = $GNUNET_TMP/test-nse-service-nse.unix
+BINARY = gnunet-service-nse
+#BINARY = /home/mrwiggles/documents/research/gnunet/gnunet-ng/src/nse/.libs/gnunet-service-nse
+#PREFIX = valgrind --leak-check=full --log-file=valgrind_nse.%p
+AUTOSTART = NO
+# Overriding network settings for faster testing (do NOT use
+# these values in production just because they are here)
+WORKDELAY = 60 s
+INTERVAL = 10 s
+WORKBITS = 0
+PROOFFILE = $SERVICEHOME/nse.proof
+
+[arm]
+UNIXPATH = $GNUNET_TMP/test-nse-service-arm.unix
+
+[statistics]
+AUTOSTART = YES
+PORT = 12115
+
+[fs]
+AUTOSTART = NO
+
+[datastore]
+AUTOSTART = NO
+
+[dht]
+AUTOSTART = NO
+
+[nat]
+DISABLEV6 = YES
+BINDTO = 127.0.0.1
+ENABLE_UPNP = NO
+BEHIND_NAT = NO
+ALLOW_NAT = NO
+INTERNAL_ADDRESS = 127.0.0.1
+EXTERNAL_ADDRESS = 127.0.0.1
+
+[transport]
+plugins = udp
+
+[transport-udp]
+PORT = 12116
+
+[core]
+AUTOSTART = YES
+
+[peerinfo]
+AUTOSTART = YES
+
+[dns]
+AUTOSTART = NO
+
+[topology]
+AUTOSTART = NO
+
+[dv]
+AUTOSTART = NO
+
+[resolver]
+AUTOSTART = YES
+
+[cadet]
+AUTOSTART = NO
+
+[chat]
+AUTOSTART = NO
+
+[gns]
+AUTOSTART = NO
+
+[vpn]
+AUTOSTART = NO
+
+[nse-profiler]
+OUTPUT_FILE = nse_output_2000_peers.dat
+TOPOLOGY_OUTPUT_FILE = nse_topo_2000_peers
+DATA_OUTPUT_FILE = nse_stats_2000_peers
+ROUND0 = 1000
+#ROUND1 = 2000
+ROUND2 = 2000
+ROUND3 = 2000
+ROUND4 = 2000
+ROUND5 = 2000
+ROUND6 = 2000
+ROUND7 = 2000
+ROUND8 = 2000
+ROUND9 = 2000
+ROUND10 = 2000
+ROUND11 = 1000
+ROUND12 = 1000
+ROUND13 = 1000
+ROUND14 = 1000
+ROUND15 = 1000
+ROUND16 = 1000
+ROUND17 = 1000
+ROUND18 = 1000
+ROUND19 = 1000
+ROUND20 = 1000
+ROUND21 = 2000
+ROUND22 = 2000
+ROUND23 = 2000
+ROUND24 = 2000
+ROUND25 = 2000
+ROUND26 = 2000
+ROUND27 = 2000
+ROUND28 = 2000
+ROUND29 = 2000
+ROUND30 = 2000
+WAIT_TIME = 1920 s
+CONNECTION_LIMIT = 10
+++ /dev/null
-# /etc/nsswitch.conf
-# Modified to support GNUnet's GNS (.gnu, .zkey etc)
-# Compare with your distributions' "nsswitch.conf" file.
-
-passwd: compat
-shadow: compat
-group: compat
-
-# passwd: db files nis
-# shadow: db files nis
-# group: db files nis
-
-hosts: files gns [NOTFOUND=return] dns
-networks: files dns
-
-services: db files
-protocols: db files
-rpc: db files
-ethers: db files
-netmasks: files
-netgroup: files
-bootparams: files
-
-automount: files
-aliases: files
\ No newline at end of file
+++ /dev/null
- GNU GENERAL PUBLIC LICENSE
- Version 2, June 1991
-
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
- Everyone is permitted to copy and distribute verbatim copies
- of this license document, but changing it is not allowed.
-
- Preamble
-
- The licenses for most software are designed to take away your
-freedom to share and change it. By contrast, the GNU General Public
-License is intended to guarantee your freedom to share and change free
-software--to make sure the software is free for all its users. This
-General Public License applies to most of the Free Software
-Foundation's software and to any other program whose authors commit to
-using it. (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.) You can apply it to
-your programs, too.
-
- When we speak of free software, we are referring to freedom, not
-price. Our General Public Licenses are designed to make sure that you
-have the freedom to distribute copies of free software (and charge for
-this service if you wish), that you receive source code or can get it
-if you want it, that you can change the software or use pieces of it
-in new free programs; and that you know you can do these things.
-
- To protect your rights, we need to make restrictions that forbid
-anyone to deny you these rights or to ask you to surrender the rights.
-These restrictions translate to certain responsibilities for you if you
-distribute copies of the software, or if you modify it.
-
- For example, if you distribute copies of such a program, whether
-gratis or for a fee, you must give the recipients all the rights that
-you have. You must make sure that they, too, receive or can get the
-source code. And you must show them these terms so they know their
-rights.
-
- We protect your rights with two steps: (1) copyright the software, and
-(2) offer you this license which gives you legal permission to copy,
-distribute and/or modify the software.
-
- Also, for each author's protection and ours, we want to make certain
-that everyone understands that there is no warranty for this free
-software. If the software is modified by someone else and passed on, we
-want its recipients to know that what they have is not the original, so
-that any problems introduced by others will not reflect on the original
-authors' reputations.
-
- Finally, any free program is threatened constantly by software
-patents. We wish to avoid the danger that redistributors of a free
-program will individually obtain patent licenses, in effect making the
-program proprietary. To prevent this, we have made it clear that any
-patent must be licensed for everyone's free use or not licensed at all.
-
- The precise terms and conditions for copying, distribution and
-modification follow.
-\f
- GNU GENERAL PUBLIC LICENSE
- TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
-
- 0. This License applies to any program or other work which contains
-a notice placed by the copyright holder saying it may be distributed
-under the terms of this General Public License. The "Program", below,
-refers to any such program or work, and a "work based on the Program"
-means either the Program or any derivative work under copyright law:
-that is to say, a work containing the Program or a portion of it,
-either verbatim or with modifications and/or translated into another
-language. (Hereinafter, translation is included without limitation in
-the term "modification".) Each licensee is addressed as "you".
-
-Activities other than copying, distribution and modification are not
-covered by this License; they are outside its scope. The act of
-running the Program is not restricted, and the output from the Program
-is covered only if its contents constitute a work based on the
-Program (independent of having been made by running the Program).
-Whether that is true depends on what the Program does.
-
- 1. You may copy and distribute verbatim copies of the Program's
-source code as you receive it, in any medium, provided that you
-conspicuously and appropriately publish on each copy an appropriate
-copyright notice and disclaimer of warranty; keep intact all the
-notices that refer to this License and to the absence of any warranty;
-and give any other recipients of the Program a copy of this License
-along with the Program.
-
-You may charge a fee for the physical act of transferring a copy, and
-you may at your option offer warranty protection in exchange for a fee.
-
- 2. You may modify your copy or copies of the Program or any portion
-of it, thus forming a work based on the Program, and copy and
-distribute such modifications or work under the terms of Section 1
-above, provided that you also meet all of these conditions:
-
- a) You must cause the modified files to carry prominent notices
- stating that you changed the files and the date of any change.
-
- b) You must cause any work that you distribute or publish, that in
- whole or in part contains or is derived from the Program or any
- part thereof, to be licensed as a whole at no charge to all third
- parties under the terms of this License.
-
- c) If the modified program normally reads commands interactively
- when run, you must cause it, when started running for such
- interactive use in the most ordinary way, to print or display an
- announcement including an appropriate copyright notice and a
- notice that there is no warranty (or else, saying that you provide
- a warranty) and that users may redistribute the program under
- these conditions, and telling the user how to view a copy of this
- License. (Exception: if the Program itself is interactive but
- does not normally print such an announcement, your work based on
- the Program is not required to print an announcement.)
-\f
-These requirements apply to the modified work as a whole. If
-identifiable sections of that work are not derived from the Program,
-and can be reasonably considered independent and separate works in
-themselves, then this License, and its terms, do not apply to those
-sections when you distribute them as separate works. But when you
-distribute the same sections as part of a whole which is a work based
-on the Program, the distribution of the whole must be on the terms of
-this License, whose permissions for other licensees extend to the
-entire whole, and thus to each and every part regardless of who wrote it.
-
-Thus, it is not the intent of this section to claim rights or contest
-your rights to work written entirely by you; rather, the intent is to
-exercise the right to control the distribution of derivative or
-collective works based on the Program.
-
-In addition, mere aggregation of another work not based on the Program
-with the Program (or with a work based on the Program) on a volume of
-a storage or distribution medium does not bring the other work under
-the scope of this License.
-
- 3. You may copy and distribute the Program (or a work based on it,
-under Section 2) in object code or executable form under the terms of
-Sections 1 and 2 above provided that you also do one of the following:
-
- a) Accompany it with the complete corresponding machine-readable
- source code, which must be distributed under the terms of Sections
- 1 and 2 above on a medium customarily used for software interchange; or,
-
- b) Accompany it with a written offer, valid for at least three
- years, to give any third party, for a charge no more than your
- cost of physically performing source distribution, a complete
- machine-readable copy of the corresponding source code, to be
- distributed under the terms of Sections 1 and 2 above on a medium
- customarily used for software interchange; or,
-
- c) Accompany it with the information you received as to the offer
- to distribute corresponding source code. (This alternative is
- allowed only for noncommercial distribution and only if you
- received the program in object code or executable form with such
- an offer, in accord with Subsection b above.)
-
-The source code for a work means the preferred form of the work for
-making modifications to it. For an executable work, complete source
-code means all the source code for all modules it contains, plus any
-associated interface definition files, plus the scripts used to
-control compilation and installation of the executable. However, as a
-special exception, the source code distributed need not include
-anything that is normally distributed (in either source or binary
-form) with the major components (compiler, kernel, and so on) of the
-operating system on which the executable runs, unless that component
-itself accompanies the executable.
-
-If distribution of executable or object code is made by offering
-access to copy from a designated place, then offering equivalent
-access to copy the source code from the same place counts as
-distribution of the source code, even though third parties are not
-compelled to copy the source along with the object code.
-\f
- 4. You may not copy, modify, sublicense, or distribute the Program
-except as expressly provided under this License. Any attempt
-otherwise to copy, modify, sublicense or distribute the Program is
-void, and will automatically terminate your rights under this License.
-However, parties who have received copies, or rights, from you under
-this License will not have their licenses terminated so long as such
-parties remain in full compliance.
-
- 5. You are not required to accept this License, since you have not
-signed it. However, nothing else grants you permission to modify or
-distribute the Program or its derivative works. These actions are
-prohibited by law if you do not accept this License. Therefore, by
-modifying or distributing the Program (or any work based on the
-Program), you indicate your acceptance of this License to do so, and
-all its terms and conditions for copying, distributing or modifying
-the Program or works based on it.
-
- 6. Each time you redistribute the Program (or any work based on the
-Program), the recipient automatically receives a license from the
-original licensor to copy, distribute or modify the Program subject to
-these terms and conditions. You may not impose any further
-restrictions on the recipients' exercise of the rights granted herein.
-You are not responsible for enforcing compliance by third parties to
-this License.
-
- 7. If, as a consequence of a court judgment or allegation of patent
-infringement or for any other reason (not limited to patent issues),
-conditions are imposed on you (whether by court order, agreement or
-otherwise) that contradict the conditions of this License, they do not
-excuse you from the conditions of this License. If you cannot
-distribute so as to satisfy simultaneously your obligations under this
-License and any other pertinent obligations, then as a consequence you
-may not distribute the Program at all. For example, if a patent
-license would not permit royalty-free redistribution of the Program by
-all those who receive copies directly or indirectly through you, then
-the only way you could satisfy both it and this License would be to
-refrain entirely from distribution of the Program.
-
-If any portion of this section is held invalid or unenforceable under
-any particular circumstance, the balance of the section is intended to
-apply and the section as a whole is intended to apply in other
-circumstances.
-
-It is not the purpose of this section to induce you to infringe any
-patents or other property right claims or to contest validity of any
-such claims; this section has the sole purpose of protecting the
-integrity of the free software distribution system, which is
-implemented by public license practices. Many people have made
-generous contributions to the wide range of software distributed
-through that system in reliance on consistent application of that
-system; it is up to the author/donor to decide if he or she is willing
-to distribute software through any other system and a licensee cannot
-impose that choice.
-
-This section is intended to make thoroughly clear what is believed to
-be a consequence of the rest of this License.
-\f
- 8. If the distribution and/or use of the Program is restricted in
-certain countries either by patents or by copyrighted interfaces, the
-original copyright holder who places the Program under this License
-may add an explicit geographical distribution limitation excluding
-those countries, so that distribution is permitted only in or among
-countries not thus excluded. In such case, this License incorporates
-the limitation as if written in the body of this License.
-
- 9. The Free Software Foundation may publish revised and/or new versions
-of the General Public License from time to time. Such new versions will
-be similar in spirit to the present version, but may differ in detail to
-address new problems or concerns.
-
-Each version is given a distinguishing version number. If the Program
-specifies a version number of this License which applies to it and "any
-later version", you have the option of following the terms and conditions
-either of that version or of any later version published by the Free
-Software Foundation. If the Program does not specify a version number of
-this License, you may choose any version ever published by the Free Software
-Foundation.
-
- 10. If you wish to incorporate parts of the Program into other free
-programs whose distribution conditions are different, write to the author
-to ask for permission. For software which is copyrighted by the Free
-Software Foundation, write to the Free Software Foundation; we sometimes
-make exceptions for this. Our decision will be guided by the two goals
-of preserving the free status of all derivatives of our free software and
-of promoting the sharing and reuse of software generally.
-
- NO WARRANTY
-
- 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
-FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
-OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
-PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
-OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
-MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
-TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
-PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
-REPAIR OR CORRECTION.
-
- 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
-WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
-REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
-INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
-OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
-TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
-YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
-PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
-POSSIBILITY OF SUCH DAMAGES.
-
- END OF TERMS AND CONDITIONS
-\f
- How to Apply These Terms to Your New Programs
-
- If you develop a new program, and you want it to be of the greatest
-possible use to the public, the best way to achieve this is to make it
-free software which everyone can redistribute and change under these terms.
-
- To do so, attach the following notices to the program. It is safest
-to attach them to the start of each source file to most effectively
-convey the exclusion of warranty; and each file should have at least
-the "copyright" line and a pointer to where the full notice is found.
-
- <one line to give the program's name and a brief idea of what it does.>
- Copyright (C) <year> <name of author>
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 2 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
-
-
-Also add information on how to contact you by electronic and paper mail.
-
-If the program is interactive, make it output a short notice like this
-when it starts in an interactive mode:
-
- Gnomovision version 69, Copyright (C) year name of author
- Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
- This is free software, and you are welcome to redistribute it
- under certain conditions; type `show c' for details.
-
-The hypothetical commands `show w' and `show c' should show the appropriate
-parts of the General Public License. Of course, the commands you use may
-be called something other than `show w' and `show c'; they could even be
-mouse-clicks or menu items--whatever suits your program.
-
-You should also get your employer (if you work as a programmer) or your
-school, if any, to sign a "copyright disclaimer" for the program, if
-necessary. Here is a sample; alter the names:
-
- Yoyodyne, Inc., hereby disclaims all copyright interest in the program
- `Gnomovision' (which makes passes at compilers) written by James Hacker.
-
- <signature of Ty Coon>, 1 April 1989
- Ty Coon, President of Vice
-
-This General Public License does not permit incorporating your program into
-proprietary programs. If your program is a subroutine library, you may
-consider it more useful to permit linking proprietary applications with the
-library. If this is what you want to do, use the GNU Library General
-Public License instead of this License.
+++ /dev/null
-You need devcon.exe or equivalent functionality to install the openvpn-signed driver included in tap-win32-signed.zip.\r
-This version of tap32 works with gnunet-vpn-helper-windows and can be loaded/installed by it. \r
-\r
-Additional information is included in OemWin2k.inf which is included in the driver archives.
\ No newline at end of file
+++ /dev/null
-; ****************************************************************************\r
-; * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. *\r
-; * This program is free software; you can redistribute it and/or modify *\r
-; * it under the terms of the GNU General Public License version 2 *\r
-; * as published by the Free Software Foundation. *\r
-; ****************************************************************************\r
-\r
-; SYNTAX CHECKER\r
-; cd \WINDDK\3790\tools\chkinf\r
-; chkinf c:\src\openvpn\tap-win32\i386\oemwin2k.inf\r
-; OUTPUT -> file:///c:/WINDDK/3790/tools/chkinf/htm/c%23+src+openvpn+tap-win32+i386+__OemWin2k.htm\r
-\r
-; INSTALL/REMOVE DRIVER\r
-; tapinstall install OemWin2k.inf TAP0901\r
-; tapinstall update OemWin2k.inf TAP0901\r
-; tapinstall remove TAP0901\r
-\r
-;*********************************************************\r
-; Note to Developers:\r
-;\r
-; If you are bundling the TAP-Windows driver with your app,\r
-; you should try to rename it in such a way that it will\r
-; not collide with other instances of TAP-Windows defined\r
-; by other apps. Multiple versions of the TAP-Windows\r
-; driver, each installed by different apps, can coexist\r
-; on the same machine if you follow these guidelines.\r
-; NOTE: these instructions assume you are editing the\r
-; generated OemWin2k.inf file, not the source\r
-; OemWin2k.inf.in file which is preprocessed by winconfig\r
-; and uses macro definitions from settings.in.\r
-;\r
-; (1) Rename all tapXXXX instances in this file to\r
-; something different (use at least 5 characters\r
-; for this name!)\r
-; (2) Change the "!define TAP" definition in openvpn.nsi\r
-; to match what you changed tapXXXX to.\r
-; (3) Change TARGETNAME in SOURCES to match what you\r
-; changed tapXXXX to.\r
-; (4) Change TAP_COMPONENT_ID in common.h to match what\r
-; you changed tapXXXX to.\r
-; (5) Change SZDEPENDENCIES in service.h to match what\r
-; you changed tapXXXX to.\r
-; (6) Change DeviceDescription and Provider strings.\r
-; (7) Change PRODUCT_TAP_WIN_DEVICE_DESCRIPTION in constants.h to what you\r
-; set DeviceDescription to.\r
-;\r
-;*********************************************************\r
-\r
-[Version]\r
- Signature = "$Windows NT$"\r
- CatalogFile = tap0901.cat\r
- ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}\r
- Provider = %Provider%\r
- Class = Net\r
-\r
-; This version number should match the version\r
-; number given in SOURCES.\r
- DriverVer=07/02/2012,9.00.00.9\r
-\r
-[Strings]\r
- DeviceDescription = "TAP-Windows Adapter V9"\r
- Provider = "TAP-Windows Provider V9"\r
-\r
-;----------------------------------------------------------------\r
-; Manufacturer + Product Section (Done)\r
-;----------------------------------------------------------------\r
-[Manufacturer]\r
- %Provider% = tap0901\r
-\r
-[tap0901]\r
- %DeviceDescription% = tap0901.ndi, tap0901\r
-\r
-;---------------------------------------------------------------\r
-; Driver Section (Done)\r
-;---------------------------------------------------------------\r
-\r
-;----------------- Characteristics ------------\r
-; NCF_PHYSICAL = 0x04\r
-; NCF_VIRTUAL = 0x01\r
-; NCF_SOFTWARE_ENUMERATED = 0x02\r
-; NCF_HIDDEN = 0x08\r
-; NCF_NO_SERVICE = 0x10\r
-; NCF_HAS_UI = 0x80\r
-;----------------- Characteristics ------------\r
-\r
-[tap0901.ndi]\r
- CopyFiles = tap0901.driver, tap0901.files\r
- AddReg = tap0901.reg\r
- AddReg = tap0901.params.reg\r
- Characteristics = 0x81\r
-\r
-[tap0901.ndi.Services]\r
- AddService = tap0901, 2, tap0901.service\r
-\r
-[tap0901.reg]\r
- HKR, Ndi, Service, 0, "tap0901"\r
- HKR, Ndi\Interfaces, UpperRange, 0, "ndis5"\r
- HKR, Ndi\Interfaces, LowerRange, 0, "ethernet"\r
- HKR, , Manufacturer, 0, "%Provider%"\r
- HKR, , ProductName, 0, "%DeviceDescription%"\r
-\r
-[tap0901.params.reg]\r
- HKR, Ndi\params\MTU, ParamDesc, 0, "MTU"\r
- HKR, Ndi\params\MTU, Type, 0, "int"\r
- HKR, Ndi\params\MTU, Default, 0, "1500"\r
- HKR, Ndi\params\MTU, Optional, 0, "0"\r
- HKR, Ndi\params\MTU, Min, 0, "100"\r
- HKR, Ndi\params\MTU, Max, 0, "1500"\r
- HKR, Ndi\params\MTU, Step, 0, "1"\r
- HKR, Ndi\params\MediaStatus, ParamDesc, 0, "Media Status"\r
- HKR, Ndi\params\MediaStatus, Type, 0, "enum"\r
- HKR, Ndi\params\MediaStatus, Default, 0, "0"\r
- HKR, Ndi\params\MediaStatus, Optional, 0, "0"\r
- HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"\r
- HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"\r
- HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"\r
- HKR, Ndi\params\MAC, Type, 0, "edit"\r
- HKR, Ndi\params\MAC, Optional, 0, "1"\r
- HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"\r
- HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"\r
- HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"\r
- HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"\r
- HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"\r
- HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"\r
-\r
-;----------------------------------------------------------------\r
-; Service Section\r
-;----------------------------------------------------------------\r
-\r
-;---------- Service Type -------------\r
-; SERVICE_KERNEL_DRIVER = 0x01\r
-; SERVICE_WIN32_OWN_PROCESS = 0x10\r
-;---------- Service Type -------------\r
-\r
-;---------- Start Mode ---------------\r
-; SERVICE_BOOT_START = 0x0\r
-; SERVICE_SYSTEM_START = 0x1\r
-; SERVICE_AUTO_START = 0x2\r
-; SERVICE_DEMAND_START = 0x3\r
-; SERVICE_DISABLED = 0x4\r
-;---------- Start Mode ---------------\r
-\r
-[tap0901.service]\r
- DisplayName = %DeviceDescription%\r
- ServiceType = 1\r
- StartType = 3\r
- ErrorControl = 1\r
- LoadOrderGroup = NDIS\r
- ServiceBinary = %12%\tap0901.sys\r
-\r
-;-----------------------------------------------------------------\r
-; File Installation\r
-;-----------------------------------------------------------------\r
-\r
-;----------------- Copy Flags ------------\r
-; COPYFLG_NOSKIP = 0x02\r
-; COPYFLG_NOVERSIONCHECK = 0x04\r
-;----------------- Copy Flags ------------\r
-\r
-; SourceDisksNames\r
-; diskid = description[, [tagfile] [, <unused>, subdir]]\r
-; 1 = "Intel Driver Disk 1",e100bex.sys,,\r
-\r
-[SourceDisksNames]\r
- 1 = %DeviceDescription%, tap0901.sys\r
-\r
-; SourceDisksFiles\r
-; filename_on_source = diskID[, [subdir][, size]]\r
-; e100bex.sys = 1,, ; on distribution disk 1\r
-\r
-[SourceDisksFiles]\r
-tap0901.sys = 1\r
-\r
-[DestinationDirs]\r
- tap0901.files = 11\r
- tap0901.driver = 12\r
-\r
-[tap0901.files]\r
-; TapPanel.cpl,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
-; cipsrvr.exe,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
-\r
-[tap0901.driver]\r
- tap0901.sys,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
-\r
-;---------------------------------------------------------------\r
-; End\r
-;---------------------------------------------------------------\r
+++ /dev/null
-; ****************************************************************************\r
-; * Copyright (C) 2002-2010 OpenVPN Technologies, Inc. *\r
-; * This program is free software; you can redistribute it and/or modify *\r
-; * it under the terms of the GNU General Public License version 2 *\r
-; * as published by the Free Software Foundation. *\r
-; ****************************************************************************\r
-\r
-; SYNTAX CHECKER\r
-; cd \WINDDK\3790\tools\chkinf\r
-; chkinf c:\src\openvpn\tap-win32\i386\oemwin2k.inf\r
-; OUTPUT -> file:///c:/WINDDK/3790/tools/chkinf/htm/c%23+src+openvpn+tap-win32+i386+__OemWin2k.htm\r
-\r
-; INSTALL/REMOVE DRIVER\r
-; tapinstall install OemWin2k.inf TAP0901\r
-; tapinstall update OemWin2k.inf TAP0901\r
-; tapinstall remove TAP0901\r
-\r
-;*********************************************************\r
-; Note to Developers:\r
-;\r
-; If you are bundling the TAP-Windows driver with your app,\r
-; you should try to rename it in such a way that it will\r
-; not collide with other instances of TAP-Windows defined\r
-; by other apps. Multiple versions of the TAP-Windows\r
-; driver, each installed by different apps, can coexist\r
-; on the same machine if you follow these guidelines.\r
-; NOTE: these instructions assume you are editing the\r
-; generated OemWin2k.inf file, not the source\r
-; OemWin2k.inf.in file which is preprocessed by winconfig\r
-; and uses macro definitions from settings.in.\r
-;\r
-; (1) Rename all tapXXXX instances in this file to\r
-; something different (use at least 5 characters\r
-; for this name!)\r
-; (2) Change the "!define TAP" definition in openvpn.nsi\r
-; to match what you changed tapXXXX to.\r
-; (3) Change TARGETNAME in SOURCES to match what you\r
-; changed tapXXXX to.\r
-; (4) Change TAP_COMPONENT_ID in common.h to match what\r
-; you changed tapXXXX to.\r
-; (5) Change SZDEPENDENCIES in service.h to match what\r
-; you changed tapXXXX to.\r
-; (6) Change DeviceDescription and Provider strings.\r
-; (7) Change PRODUCT_TAP_WIN_DEVICE_DESCRIPTION in constants.h to what you\r
-; set DeviceDescription to.\r
-;\r
-;*********************************************************\r
-\r
-[Version]\r
- Signature = "$Windows NT$"\r
- CatalogFile = tap0901.cat\r
- ClassGUID = {4d36e972-e325-11ce-bfc1-08002be10318}\r
- Provider = %Provider%\r
- Class = Net\r
-\r
-; This version number should match the version\r
-; number given in SOURCES.\r
- DriverVer=07/02/2012,9.00.00.9\r
-\r
-[Strings]\r
- DeviceDescription = "TAP-Windows Adapter V9"\r
- Provider = "TAP-Windows Provider V9"\r
-\r
-;----------------------------------------------------------------\r
-; Manufacturer + Product Section (Done)\r
-;----------------------------------------------------------------\r
-[Manufacturer]\r
- %Provider% = tap0901, NTamd64\r
-\r
-[tap0901.NTamd64]\r
- %DeviceDescription% = tap0901.ndi, tap0901\r
-\r
-;---------------------------------------------------------------\r
-; Driver Section (Done)\r
-;---------------------------------------------------------------\r
-\r
-;----------------- Characteristics ------------\r
-; NCF_PHYSICAL = 0x04\r
-; NCF_VIRTUAL = 0x01\r
-; NCF_SOFTWARE_ENUMERATED = 0x02\r
-; NCF_HIDDEN = 0x08\r
-; NCF_NO_SERVICE = 0x10\r
-; NCF_HAS_UI = 0x80\r
-;----------------- Characteristics ------------\r
-\r
-[tap0901.ndi]\r
- CopyFiles = tap0901.driver, tap0901.files\r
- AddReg = tap0901.reg\r
- AddReg = tap0901.params.reg\r
- Characteristics = 0x81\r
-\r
-[tap0901.ndi.Services]\r
- AddService = tap0901, 2, tap0901.service\r
-\r
-[tap0901.reg]\r
- HKR, Ndi, Service, 0, "tap0901"\r
- HKR, Ndi\Interfaces, UpperRange, 0, "ndis5"\r
- HKR, Ndi\Interfaces, LowerRange, 0, "ethernet"\r
- HKR, , Manufacturer, 0, "%Provider%"\r
- HKR, , ProductName, 0, "%DeviceDescription%"\r
-\r
-[tap0901.params.reg]\r
- HKR, Ndi\params\MTU, ParamDesc, 0, "MTU"\r
- HKR, Ndi\params\MTU, Type, 0, "int"\r
- HKR, Ndi\params\MTU, Default, 0, "1500"\r
- HKR, Ndi\params\MTU, Optional, 0, "0"\r
- HKR, Ndi\params\MTU, Min, 0, "100"\r
- HKR, Ndi\params\MTU, Max, 0, "1500"\r
- HKR, Ndi\params\MTU, Step, 0, "1"\r
- HKR, Ndi\params\MediaStatus, ParamDesc, 0, "Media Status"\r
- HKR, Ndi\params\MediaStatus, Type, 0, "enum"\r
- HKR, Ndi\params\MediaStatus, Default, 0, "0"\r
- HKR, Ndi\params\MediaStatus, Optional, 0, "0"\r
- HKR, Ndi\params\MediaStatus\enum, "0", 0, "Application Controlled"\r
- HKR, Ndi\params\MediaStatus\enum, "1", 0, "Always Connected"\r
- HKR, Ndi\params\MAC, ParamDesc, 0, "MAC Address"\r
- HKR, Ndi\params\MAC, Type, 0, "edit"\r
- HKR, Ndi\params\MAC, Optional, 0, "1"\r
- HKR, Ndi\params\AllowNonAdmin, ParamDesc, 0, "Non-Admin Access"\r
- HKR, Ndi\params\AllowNonAdmin, Type, 0, "enum"\r
- HKR, Ndi\params\AllowNonAdmin, Default, 0, "1"\r
- HKR, Ndi\params\AllowNonAdmin, Optional, 0, "0"\r
- HKR, Ndi\params\AllowNonAdmin\enum, "0", 0, "Not Allowed"\r
- HKR, Ndi\params\AllowNonAdmin\enum, "1", 0, "Allowed"\r
-\r
-;----------------------------------------------------------------\r
-; Service Section\r
-;----------------------------------------------------------------\r
-\r
-;---------- Service Type -------------\r
-; SERVICE_KERNEL_DRIVER = 0x01\r
-; SERVICE_WIN32_OWN_PROCESS = 0x10\r
-;---------- Service Type -------------\r
-\r
-;---------- Start Mode ---------------\r
-; SERVICE_BOOT_START = 0x0\r
-; SERVICE_SYSTEM_START = 0x1\r
-; SERVICE_AUTO_START = 0x2\r
-; SERVICE_DEMAND_START = 0x3\r
-; SERVICE_DISABLED = 0x4\r
-;---------- Start Mode ---------------\r
-\r
-[tap0901.service]\r
- DisplayName = %DeviceDescription%\r
- ServiceType = 1\r
- StartType = 3\r
- ErrorControl = 1\r
- LoadOrderGroup = NDIS\r
- ServiceBinary = %12%\tap0901.sys\r
-\r
-;-----------------------------------------------------------------\r
-; File Installation\r
-;-----------------------------------------------------------------\r
-\r
-;----------------- Copy Flags ------------\r
-; COPYFLG_NOSKIP = 0x02\r
-; COPYFLG_NOVERSIONCHECK = 0x04\r
-;----------------- Copy Flags ------------\r
-\r
-; SourceDisksNames\r
-; diskid = description[, [tagfile] [, <unused>, subdir]]\r
-; 1 = "Intel Driver Disk 1",e100bex.sys,,\r
-\r
-[SourceDisksNames]\r
- 1 = %DeviceDescription%, tap0901.sys\r
-\r
-; SourceDisksFiles\r
-; filename_on_source = diskID[, [subdir][, size]]\r
-; e100bex.sys = 1,, ; on distribution disk 1\r
-\r
-[SourceDisksFiles]\r
-tap0901.sys = 1\r
-\r
-[DestinationDirs]\r
- tap0901.files = 11\r
- tap0901.driver = 12\r
-\r
-[tap0901.files]\r
-; TapPanel.cpl,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
-; cipsrvr.exe,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
-\r
-[tap0901.driver]\r
- tap0901.sys,,,6 ; COPYFLG_NOSKIP | COPYFLG_NOVERSIONCHECK\r
-\r
-;---------------------------------------------------------------\r
-; End\r
-;---------------------------------------------------------------\r
--- /dev/null
+diff -u indent-2.2.11/src/args.c indent-2.2.11.my/src/args.c
+--- indent-2.2.11/src/args.c 2008-07-23 23:27:17 +0400
++++ indent-2.2.11.my/src/args.c 2011-08-16 14:07:30 +0400
+@@ -151,6 +151,7 @@
+ static int exp_cpp = 0;
+ static int exp_cs = 0;
+ static int exp_d = 0;
++static int exp_ddd = 0;
+ static int exp_bfda = 0;
+ static int exp_bfde = 0;
+ static int exp_di = 0;
+@@ -317,6 +318,8 @@
+ {"fca", PRO_BOOL, true, ON, &settings.format_comments, &exp_fca},
+ {"fc1", PRO_BOOL, true, ON, &settings.format_col1_comments, &exp_fc1},
+ {"eei", PRO_BOOL, false, ON, &settings.extra_expression_indent, &exp_eei},
++ {"ddd", PRO_BOOL, true, ON, &settings.diff_decls_and_defs, &exp_ddd},
++ {"nddd", PRO_BOOL, true, OFF, &settings.diff_decls_and_defs, &exp_ddd},
+ {"dj", PRO_BOOL, false, ON, &settings.ljust_decl, &exp_dj},
+ {"di", PRO_INT, 16, ONOFF_NA, &settings.decl_indent, &exp_di},
+ {"d", PRO_INT, 0, ONOFF_NA, &settings.unindent_displace, &exp_d},
+@@ -436,6 +439,8 @@
+ {"fca", PRO_BOOL, false, ON, &settings.format_comments, &exp_fca},
+ {"fc1", PRO_BOOL, false, ON, &settings.format_col1_comments, &exp_fc1},
+ {"eei", PRO_BOOL, false, ON, &settings.extra_expression_indent, &exp_eei},
++ {"ddd", PRO_BOOL, true, ON, &settings.diff_decls_and_defs, &exp_ddd},
++ {"nddd", PRO_BOOL, true, OFF, &settings.diff_decls_and_defs, &exp_ddd},
+ {"dj", PRO_BOOL, false, ON, &settings.ljust_decl, &exp_dj},
+ {"di", PRO_INT, 2, ONOFF_NA, &settings.decl_indent, &exp_di},
+ {"d", PRO_INT, 0, ONOFF_NA, &settings.unindent_displace, &exp_d},
+diff -u indent-2.2.11/src/handletoken.c indent-2.2.11.my/src/handletoken.c
+--- indent-2.2.11/src/handletoken.c 2009-02-15 14:20:42 +0300
++++ indent-2.2.11.my/src/handletoken.c 2011-08-16 14:18:28 +0400
+@@ -1642,6 +1642,11 @@
+ {
+ /* what ? */
+ }
++ if (parser_state_tos->in_parameter_declaration_prototype)
++ {
++ parser_state_tos->in_parameter_declaration_prototype = 0;
++ parser_state_tos->in_parameter_declaration = 0;
++ }
+ }
+
+ /**
+diff -u indent-2.2.11/src/indent.h indent-2.2.11.my/src/indent.h
+--- indent-2.2.11/src/indent.h 2009-10-11 23:15:34 +0400
++++ indent-2.2.11.my/src/indent.h 2011-08-16 14:19:37 +0400
+@@ -318,6 +318,11 @@
+ int brace_indent; /*!< number of spaces to indent braces from the suround if, while, etc. in -bl
+ * (bype_2 == 0) code */
+ int expect_output_file; /*!< Means "-o" was specified. */
++ int diff_decls_and_defs; /*!< Makes indent think that function prototypes are terminated by ';',
++ * without this option indent will not be able to tell a difference between
++ * int foo (); and int foo () {}
++ * This is the default.
++ */
+ } user_options_ty;
+
+ extern user_options_ty settings;
+@@ -430,6 +435,7 @@
+ * slightly different */
+ int in_stmt; /*!< set to 1 while in a stmt */
+ int in_parameter_declaration;
++ int in_parameter_declaration_prototype;
+ int ind_level; /*!< the current indentation level in spaces */
+ int ind_stmt; /*!< set to 1 if next line should have an extra
+ * indentation level because we are in the
+diff -u indent-2.2.11/src/lexi.c indent-2.2.11.my/src/lexi.c
+--- indent-2.2.11/src/lexi.c 2009-11-11 22:36:32 +0300
++++ indent-2.2.11.my/src/lexi.c 2011-08-16 14:14:28 +0400
+@@ -616,8 +616,11 @@
+ * I've added '=' to this list to keep from breaking
+ * a non-valid C macro from libc. -jla */
+
+- if (*tp != ';' && *tp != ',' && *tp != '(' && *tp != '=')
++ if ((*tp != ';' || !settings.diff_decls_and_defs) &&
++ *tp != ',' && *tp != '(' && *tp != '=')
+ {
++ if (*tp == ';')
++ parser_state_tos->in_parameter_declaration_prototype = 1;
+ parser_state_tos->in_parameter_declaration = 1;
+ }
+ }
--- /dev/null
+diff -ru indent-gnunet/doc/Makefile.am indent-texi2html5/doc/Makefile.am
+--- indent-gnunet/doc/Makefile.am 2008-04-14 20:31:19.000000000 +0200
++++ indent-texi2html5/doc/Makefile.am 2011-08-22 20:24:26.979782439 +0200
+@@ -34,14 +34,14 @@
+ html-split: @PACKAGE@_toc.html
+
+ @PACKAGE@.html: version.texi $(@PACKAGE@_TEXINFOS)
+- $(TEXI2HTML) -expandinfo -number -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
++ $(TEXI2HTML) -expandinfo -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
+
+ @PACKAGE@_toc.html: version.texi $(@PACKAGE@_TEXINFOS)
+ case "$(TEXI2HTML)" in \
+ *"/missing texi2html") \
+- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
++ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
+ *) $(RM) @PACKAGE@_*.html ; \
+- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
++ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
+ esac
+
+ install-html-monolithic: @PACKAGE@.html
+diff -ru indent-gnunet/doc/Makefile.in indent-texi2html5/doc/Makefile.in
+--- indent-gnunet/doc/Makefile.in 2010-01-31 17:25:21.000000000 +0100
++++ indent-texi2html5/doc/Makefile.in 2011-08-22 20:24:41.376449156 +0200
+@@ -663,14 +663,14 @@
+ html-split: @PACKAGE@_toc.html
+
+ @PACKAGE@.html: version.texi $(@PACKAGE@_TEXINFOS)
+- $(TEXI2HTML) -expandinfo -number -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
++ $(TEXI2HTML) -expandinfo -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
+
+ @PACKAGE@_toc.html: version.texi $(@PACKAGE@_TEXINFOS)
+ case "$(TEXI2HTML)" in \
+ *"/missing texi2html") \
+- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
++ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
+ *) $(RM) @PACKAGE@_*.html ; \
+- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
++ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
+ esac
+
+ install-html-monolithic: @PACKAGE@.html
--- /dev/null
+Index: src/ats/ats_api_scheduling.c
+===================================================================
+--- src/ats/ats_api_scheduling.c (revision 29617)
++++ src/ats/ats_api_scheduling.c (working copy)
+@@ -28,7 +28,7 @@
+ #include "ats.h"
+
+
+-#define INTERFACE_PROCESSING_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
++#define INTERFACE_PROCESSING_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 1)
+
+ #define NOT_FOUND 0
+
+Index: src/ats/gnunet-service-ats-solver_proportional.c
+===================================================================
+--- src/ats/gnunet-service-ats-solver_proportional.c (revision 29617)
++++ src/ats/gnunet-service-ats-solver_proportional.c (working copy)
+@@ -205,12 +205,12 @@
+ *
+ */
+
+-#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
++#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
+ #define PREF_AGING_FACTOR 0.95
+
+ #define DEFAULT_REL_PREFERENCE 1.0
+ #define DEFAULT_ABS_PREFERENCE 0.0
+-#define MIN_UPDATE_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
++#define MIN_UPDATE_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
+
+ /**
+ * A handle for the proportional solver
+Index: src/ats/gnunet-service-ats_normalization.h
+===================================================================
+--- src/ats/gnunet-service-ats_normalization.h (revision 29617)
++++ src/ats/gnunet-service-ats_normalization.h (working copy)
+@@ -27,7 +27,7 @@
+ #include "platform.h"
+ #include "gnunet_ats_service.h"
+
+-#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
++#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
+ #define PREF_AGING_FACTOR 0.95
+ #define PREF_EPSILON 0.1
+
+Index: src/include/gnunet_constants.h
+===================================================================
+--- src/include/gnunet_constants.h (revision 29617)
++++ src/include/gnunet_constants.h (working copy)
+@@ -49,7 +49,7 @@
+ * After how long do we consider a connection to a peer dead
+ * if we don't receive messages from the peer?
+ */
+-#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
++#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 5)
+
+ /**
+ * How long do we delay reading more from a peer after a quota violation?
+@@ -61,7 +61,7 @@
+ * even if we assume that the service commonly does not
+ * respond instantly (DNS, Database, etc.).
+ */
+-#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 10)
++#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
+
+ /**
+ * How long do we delay messages to get larger packet sizes (CORKing)?
+Index: src/transport/gnunet-service-transport_neighbours.c
+===================================================================
+--- src/transport/gnunet-service-transport_neighbours.c (revision 29617)
++++ src/transport/gnunet-service-transport_neighbours.c (working copy)
+@@ -65,7 +65,7 @@
+ * send 3 keepalives in each interval, so 3 messages would need to be
+ * lost in a row for a disconnect).
+ */
+-#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
++#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 100)
+
+ /**
+ * How long are we willing to wait for a response from ATS before timing out?
+Index: src/transport/gnunet-service-transport_validation.c
+===================================================================
+--- src/transport/gnunet-service-transport_validation.c (revision 29617)
++++ src/transport/gnunet-service-transport_validation.c (working copy)
+@@ -42,7 +42,7 @@
+ * OTOH, we don't want to spend too much time generating PONG signatures,
+ * so they must have some lifetime to reduce our CPU usage.
+ */
+-#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
++#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
+
+ /**
+ * After how long do we expire an address in a HELLO that we just
+@@ -57,7 +57,7 @@
+ * we cannot validate (because after this time we can destroy the
+ * validation record).
+ */
+-#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
++#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
+
+ /**
+ * How often do we PING an address that we have successfully validated
+@@ -64,17 +64,17 @@
+ * in the past but are not actively using? Should be (significantly)
+ * smaller than HELLO_ADDRESS_EXPIRATION.
+ */
+-#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
++#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
+
+ /**
+ * How often do we PING an address that we are currently using?
+ */
+-#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
++#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 2)
+
+ /**
+ * How much delay is acceptable for sending the PING or PONG?
+ */
+-#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
++#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
+
+ /**
+ * Size of the validation map hashmap.
+@@ -807,7 +807,7 @@
+ */
+
+ validation_next = GNUNET_TIME_absolute_get();
+- validation_delay.rel_value_us = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value_us) / (max_fds / 2);
++ validation_delay.rel_value_us = GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us;
+ validations_fast_start_threshold = (max_fds / 2);
+ validations_running = 0;
+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Validation uses a fast start threshold of %u connections and a delay between of %s\n ",
+++ /dev/null
-#!/bin/sh
-find src -name "*.c" | grep -v \# | grep -v /test_ | grep -v /perf_ | grep -v _old | grep -v chat | grep -v .libs/ | sort > po/POTFILES.in
-grep -l _\( `find src -name "*.h"` | grep -v "platform.h" | grep -v _old | grep -v chat | sort >> po/POTFILES.in
-
+++ /dev/null
-#!/bin/bash
-
-# Usage: service should print "STARTING SERVICE (srvc) for peer [PEER]" where:
-# - "srvc" is the service name (in lowercase, as in the log output).
-# It cannot contain parenthesis in its name.
-# - "PEER" is the peer ID. Should be 4 alfanumeric characters
-
-grep "STARTING SERVICE " log > __tmp_peers
-
-SED_EXPR=""
-while read -r line; do
- SRVC=`echo "$line" | sed -e 's/.*(\([^)]*\)).*/\1/'`
- PEER=`echo "$line" | sed -e 's/.*\[\(....\)\].*/\1/'`
- PID=`echo "$line" | sed -e "s/.*$SRVC-\([0-9]*\).*/\1/"`
- echo "$SRVC $PID => $PEER"
-
- SED_EXPR="${SED_EXPR}s/$SRVC-\([a-z2]*\)-$PID/$SRVC \1 $PEER/;"
- SED_EXPR="${SED_EXPR}s/$SRVC-$PID/$SRVC XXX $PEER/;"
- SED_EXPR="${SED_EXPR}s/$SRVC-api-[0-9]/$SRVC-api- /;"
-done < __tmp_peers
-rm __tmp_peers
-
-sed -e "$SED_EXPR" log > .log
-echo "$0 sed regex: $SED_EXPR" >> .log
-
-SIZE=`stat -c%s .log`
-
-if [[ "`ps aux | grep "kwrite .lo[g]"`" = "" && "$SIZE" < 10000000 ]]; then
- kwrite .log --geometry 960x1140-960 &
-fi
+++ /dev/null
-#!@PYTHON@
-import os
-import sys
-import difflib
-import filecmp
-
-
-def getdiff(old, new):
- diff = []
- with open(old) as a:
- with open(new) as b:
- for l in difflib.unified_diff(a.read().splitlines(), b.read().splitlines()):
- diff.append(l)
- return diff
-
-
-def dc_getdiff(dc, old, new):
- diff = []
- for f in dc.left_only:
- diff.append("Only in {}: {}".format(old, f))
- for f in dc.right_only:
- diff.append("Only in {}: {}".format(new, f))
- for f in dc.diff_files:
- r = getdiff(os.path.join(old, f), os.path.join(new, f))
- diff.extend(r)
- for dn, dc in dc.subdirs.items():
- r = dc_getdiff(dc, os.path.join(old, dn), os.path.join(new, dn))
- diff.extend(r)
- return diff
-
-
-def dcdiff(old, new):
- dc = filecmp.dircmp(old, new)
- diff = dc_getdiff(dc, old, new)
- return diff
-
-
-def main():
- for l in dcdiff(sys.argv[1], sys.argv[2]):
- print(l)
-
-
-if __name__ == '__main__':
- main()
+++ /dev/null
-#!/usr/bin/env python
-# coding=utf8
-
-# Copyright (C) 2010 Saúl ibarra Corretgé <saghul@gmail.com>
-#
-
-"""
-pydmesg: dmesg with human-readable timestamps
-"""
-
-from __future__ import with_statement
-
-import re
-import subprocess
-import sys
-
-from datetime import datetime, timedelta
-
-
-_datetime_format = "%Y-%m-%d %H:%M:%S"
-_dmesg_line_regex = re.compile("^\[(?P<time>\d+\.\d+)\](?P<line>.*)$")
-
-def exec_process(cmdline, silent, input=None, **kwargs):
- """Execute a subprocess and returns the returncode, stdout buffer and stderr buffer.
- Optionally prints stdout and stderr while running."""
- try:
- sub = subprocess.Popen(cmdline, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs)
- stdout, stderr = sub.communicate(input=input)
- returncode = sub.returncode
- if not silent:
- sys.stdout.write(stdout)
- sys.stderr.write(stderr)
- except OSError,e:
- if e.errno == 2:
- raise RuntimeError('"%s" is not present on this system' % cmdline[0])
- else:
- raise
- if returncode != 0:
- raise RuntimeError('Got return value %d while executing "%s", stderr output was:\n%s' % (returncode, " ".join(cmdline), stderr.rstrip("\n")))
- return stdout
-
-def human_dmesg():
- now = datetime.now()
- uptime_diff = None
- try:
- with open('/proc/uptime') as f:
- uptime_diff = f.read().strip().split()[0]
- except IndexError:
- return
- else:
- try:
- uptime = now - timedelta(seconds=int(uptime_diff.split('.')[0]), microseconds=int(uptime_diff.split('.')[1]))
- except IndexError:
- return
-
- dmesg_data = exec_process(['dmesg'], True)
- for line in dmesg_data.split('\n'):
- if not line:
- continue
- match = _dmesg_line_regex.match(line)
- if match:
- try:
- seconds = int(match.groupdict().get('time', '').split('.')[0])
- nanoseconds = int(match.groupdict().get('time', '').split('.')[1])
- microseconds = int(round(nanoseconds * 0.001))
- line = match.groupdict().get('line', '')
- t = uptime + timedelta(seconds=seconds, microseconds=microseconds)
- except IndexError:
- pass
- else:
- print "[%s]%s" % (t.strftime(_datetime_format), line)
-
-
-if __name__ == '__main__':
- human_dmesg()
+++ /dev/null
-#!/bin/sh
-cd
-cd gnunet
-svn up > /dev/null
-H=`hostname`
-echo "================START===================" >> regression.$H
-RUN=`date +%0y%0m%0d%0k%0M`
-uname -a >> regression.$H
-date >> regression.$H
-echo "Run $RUN" >> regression.$H
-svn up >> regression.$H
-export GNUNET_PREFIX=$HOME
-export PATH=$HOME/bin:$PATH
-./bootstrap >> regression.$H.$RUN 2>&1
-./configure --prefix=$HOME --with-extractor=$HOME --with-microhttpd=$HOME >> regression.$H.$RUN 2>&1
-if [ $? != 0 ]
-then
- echo configure failed >> regression.$H
- exit
-fi
-KEEP=0
-make clean >> regression.$H.$RUN 2>&1
-make install >> regression.$H.$RUN 2>&1
-cd src
-for n in `ls --hide "Makefile*"`
-do
- cd $n
- if [ -f Makefile ]
- then
- make check >> ../regression.$H.$RUN.$n 2>&1
- if [ $? != 0 ]
- then
- echo Tests for $n failed >> ../regression.$H
- echo "--------- Details for $n -----------" >> ../regression.$H
- cat regression.$H.$RUN.$n >> ../regression.$H
- echo "----- End of Details for $n --------" >> ../regression.$H
- KEEP=1
- else
- echo Tests for $n succeeded >> ../regression.$H
- fi
- fi
- cd ..
-done
-echo "================END====================" >> regression.$H
-
-if [ $KEEP == 0]
-then
- rm regression.$H.$RUN*
- rm regression.$H
-else
- svn add regression.$H > /dev/null
- svn commit -m "Regression in tests on $H" regression.$H
-fi
-
+++ /dev/null
-#!@PYTHON@
-
-import sys
-import re
-
-
-for fileName in sys.argv[1:]:
- f = open(fileName, 'r+')
- fileString = f.read()
-
- fileString = re.sub(r'[ ]+\n', r'\n', fileString)
- fileString = re.sub(r'\r', r'', fileString)
- f.seek(0)
- f.write(fileString)
- f.truncate(len(fileString))
+++ /dev/null
-while true; do rm -rf /tmp/test-gnunetd-*; make check || break; done
+++ /dev/null
-#!/bin/sh
-
-TEST=`type type|grep not`
-if test -n "$TEST"; then
- WHICH=which
-else
- WHICH=type
-fi
-
-echo "Please submit the following information with your bug report: "
-echo "--------------------------------------------------------------"
-OS=`uname -s 2>/dev/null`
-echo "OS : $OS"
-REL=`uname -r 2>/dev/null`
-echo "OS RELEASE : $REL"
-HW=`uname -m 2>/dev/null`
-echo "HARDWARE : $HW"
-
-TEST=`$WHICH gcc 2>/dev/null`
-if test -n "$TEST"; then
- VERS=`gcc --version 2>/dev/null | head -n 1`
- echo "gcc : $VERS"
-else
- echo "gcc : Not Found";
-fi
-
-TEST=`$WHICH gmake 2>/dev/null`
-if test -n "$TEST" ; then
- gmake --version 2>/dev/null |\
- awk -F, '{print $1}' |\
- awk '/GNU Make/{print "GNU gmake :",$NF}'
-else
- TEST=`make --version 2>/dev/null`
- if test -n "$TEST"; then
- make --version 2>/dev/null |\
- awk -F, '{print $1}' |\
- awk '/GNU Make/{print "make :",$NF}'
- else
- echo "make : Not Found"
- fi
-fi
-
-TEST=`$WHICH autoconf 2>/dev/null`
-if test -n "$TEST"; then
- autoconf --version |\
- head -n 1 |\
- awk '{\
- if (length($4) == 0) {\
- print "autoconf : "$3\
- } else {\
- print "autoconf : "$4\
- }}'
-else
- echo "autoconf : Not Found"
-fi
-
-TEST=`$WHICH automake 2>/dev/null`
-if test -n "$TEST"; then
- automake --version 2>/dev/null |\
- head -n 1 |\
- awk '{print "automake : "$4}'
-else
- echo "automake : Not Found"
-fi
-
-TEST=`$WHICH libtool 2>/dev/null`
-if test -n "$TEST"; then
- libtool --version 2>/dev/null |\
- head -n 1 |\
- awk '{print "libtool : "$4}'
-else
- echo "libtool : Not Found"
-fi
-
-TEST=`$WHICH extract 2>/dev/null`
-if test -n "$TEST"; then
- extract -v 2>/dev/null |\
- head -n 1 |\
- awk '{print "libextractor : "$2}'
-else
- echo "libextractor : Not Found"
-fi
-
-if test -x gnunetd; then
- gnunetd -v | sed -e "s/v//" 2>/dev/null |\
- awk '{print "GNUnet 0.8 : "$2 (may conflict!)}'
-else
- echo "GNUnet 0.8 : Not Found (good)"
-fi
-
-TEST=`$WHICH gnunet-arm 2>/dev/null`
-if test -n "$TEST"; then
- gnunet-arm -v | sed -e "s/v//" 2>/dev/null |\
- awk '{print "GNUnet 0.9 : "$2}'
-else
- echo "GNUnet 0.9 : Not Found"
-fi
-
-TEST=`$WHICH libgcrypt-config 2> /dev/null`
-if test -n "$TEST"; then
- libgcrypt-config --version 2> /dev/null | \
- awk '{print "libgcrypt : "$1}'
-else
- echo "libgcrypt : Not Found"
-fi
-
-TEST=`$WHICH mysql_config 2> /dev/null`
-if test -n "$TEST"; then
- mysql_config --version 2> /dev/null | \
- awk '{print "mysql : "$1}'
-else
- echo "mysql : Not Found"
-fi
-
-TEST=`$WHICH pkg-config 2> /dev/null`
-if test -n "$TEST"; then
- pkg-config --version 2> /dev/null | \
- awk '{print "pkg-config : "$1}'
-else
- echo "pkg-config : Not Found"
-fi
-
-TEST=`$WHICH pkg-config 2> /dev/null`
-if test -n "$TEST"; then
- pkg-config --modversion glib-2.0 2> /dev/null | \
- awk '{print "glib2 : "$1}'
-else
- echo "glib2 : Not Found"
-fi
-
-TEST=`$WHICH pkg-config 2> /dev/null`
-if test -n "$TEST"; then
- pkg-config --modversion gtk+-2.0 2> /dev/null | \
- awk '{print "gtk2+ : "$1}'
-else
- echo "gtk2+ : Not Found"
-fi
-
-TEST=`$WHICH dpkg 2> /dev/null`
-if test -n "$TEST"; then
- LINES=`dpkg -s libgmp-dev | grep Version | wc -l 2> /dev/null`
- if test "$LINES" = "1"
- then
- VERSION=`dpkg -s libgmp-dev | grep Version | awk '{print $2}'`
- echo "GMP : libgmp-dev-$VERSION.deb"
- else
- echo "GMP : dpkg: libgmp-dev not installed"
- fi
-else
- TEST=`$WHICH rpm 2> /dev/null`
- if test -n "$TEST"; then
- rpm -q gmp | sed -e "s/gmp-//" 2> /dev/null | \
- awk '{print "GMP : "$1.rpm}'
- else
- echo "GMP : Test not available"
- fi
-fi
-
-TEST=`$WHICH dpkg 2> /dev/null`
-if test -n "$TEST"; then
- LINES=`dpkg -s libunistring-dev | grep Version | wc -l`
- if test "$LINES" = "1"
- then
- VERSION=`dpkg -s libunistring-dev | grep Version | awk '{print $2}'`
- echo "libunistring : libunistring3-dev-$VERSION.deb"
- else
- echo "libunistring : dpkg: libunistring3-dev not installed"
- fi
-else
- TEST=`$WHICH rpm 2> /dev/null`
- if test -n "$TEST"; then
- rpm -q unistring | sed -e "s/unistring-//" 2> /dev/null | \
- awk '{print "libunistring : "$1.rpm}'
- else
- echo "libunistring : Test not available"
- fi
-fi
-
-TEST=`$WHICH gettext 2> /dev/null`
-if test -n "$TEST"; then
- gettext --version | head -n1 2> /dev/null | \
- awk '{print "GNU gettext : "$4}'
-else
- echo "GNU gettext : Not found"
-fi
-
-
-TEST=`$WHICH curl-config 2> /dev/null`
-if test -n "$TEST"; then
- curl-config --version | head -n1 2> /dev/null | \
- awk '{print "libcurl : "$2}'
-else
- echo "libcurl : Not found"
-fi
-
-TEST=`$WHICH gnurl-config 2> /dev/null`
-if test -n "$TEST"; then
- gnurl-config --version | head -n1 2> /dev/null | \
- awk '{print "libgnurl : "$2}'
-else
- echo "libgnurl : Not found"
-fi
-
-echo -n "libmicrohttpd : "
-TMPFILE=`mktemp /tmp/mhd-version-testXXXXXX`
-cat - >$TMPFILE.c <<EOF
-#include <microhttpd.h>
-#include <stdio.h>
-int main()
-{
- fprintf (stdout, "%X\n", MHD_VERSION);
- return 0;
-}
-EOF
-
-gcc -o $TMPFILE $TMPFILE.c 2> /dev/null && $TMPFILE || echo "Not found"
-rm -f $TMPFILE $TMPFILE.bin
-
-
-echo -n "GNU GLPK : "
-TMPFILE=`mktemp /tmp/glpk-version-testXXXXXX`
-cat - >$TMPFILE.c <<EOF
-#include <glpk.h>
-#include <stdio.h>
-int main()
-{
- fprintf (stdout, "%u.%u\n", GLP_MAJOR_VERSION, GLP_MINOR_VERSION);
- return 0;
-}
-EOF
-
-gcc -o $TMPFILE $TMPFILE.c 2> /dev/null && $TMPFILE || echo "Not found"
-rm -f $TMPFILE $TMPFILE.bin
-
-
-echo -n "GNUtls : "
-TMPFILE=`mktemp /tmp/gnutls-version-testXXXXXX`
-cat - >$TMPFILE.c <<EOF
-#include <gnutls/gnutls.h>
-#include <stdio.h>
-int main()
-{
- fprintf (stdout, "%s\n", GNUTLS_VERSION);
- return 0;
-}
-EOF
-
-gcc -o $TMPFILE $TMPFILE.c 2> /dev/null && $TMPFILE || echo "Not found"
-rm -f $TMPFILE $TMPFILE.bin
-
-
-echo "--------------------------------------------------------------"
+++ /dev/null
-#!/usr/local/bin/bash
-
-STARTREVISION=14033
-ENDREVISION=15268
-CURRENTREVISION=$STARTREVISION
-HOME_DIR='/home/gnunet/FreeBSD7-AMD64-wachs/freebsd7-amd64-wachs/build'
-
-
-CMD_UPDATE="svn up --force --accept theirs-full -r"
-CMD_CLEANUP="killall -s 31 -r gnunet-*; make distclean;"
-CMD_PREPARATION="./bootstrap; ./configure --prefix=/tmp/gnb --with-extractor=/usr/local"
-CMD_BUILD="make all"
-CMD_TEST="cd src/transport ; make test_transport_api_tcp; ./test_transport_api_tcp"
-
-#LOGGING=""
-LOGGING=" 1> /dev/null 2> errors.txt"
-LOGFILE="log.txt"
-
-function output ()
-{
- eval echo $1
- eval echo $1 >> $LOGFILE
-}
-
-
-while [ $CURRENTREVISION -le $ENDREVISION ]; do
- output 'Testing revision $CURRENTREVISION'
-# updating
- output ' -> updating '
- eval cd $HOME_DIR
- CMD="$CMD_UPDATE $CURRENTREVISION $LOGGING"
- eval $CMD
- result=$?
- if [ $result -eq 0 ]; then
- output " updating OK"
- else
- output " updating FAILED"
- (( CURRENTREVISION++ ))
- continue
- fi
-
-# clean up
- output " -> cleanup "
- CMD="$CMD_CLEANUP $LOGGING"
- eval $CMD
- result=$?
- if [ $result -eq 0 ]; then
- output " cleanup OK"
- else
- output " cleanup FAILED"
- (( CURRENTREVISION++ ))
- continue
- fi
-# preparing
- output " -> preparation "
- CMD="$CMD_PREPARATION $LOGGING"
- #echo $CMD
- eval $CMD
- result=$?
- if [ $result -eq 0 ]; then
- output " preparation OK"
- else
- output " preparation FAILED"
- (( CURRENTREVISION++ ))
- continue
- fi
-# building
- output " -> building "
- CMD="$CMD_BUILD $LOGGING"
- #echo $CMD
- eval $CMD
- result=$?
- if [ $result -eq 0 ]; then
- output " building OK"
- else
- output " building FAILED"
- (( CURRENTREVISION++ ))
- continue
- fi
-# testing
- output " -> testing "
- CMD="$CMD_TEST $LOGGING"
- #echo $CMD
- eval $CMD
- result=$?
- testresult=result
- if [ $result -eq 0 ]; then
- output " testing OK"
- else
- output " testing FAILED"
- output 'Revision $CURRENTREVISION FAILED'
- fi
- (( CURRENTREVISION++ ))
-done
-
-exit
-
-
--- /dev/null
+#!/bin/sh
+# make sure configure was run with coverage enabled...
+lcov --directory . --zerocounters
+make check
+rm `find * -name "test_*.gc??"` `find * -name "perf_*.gc??"`
+for n in `find * -name "*.gc??" | grep libs`
+do
+ cd `dirname $n`
+ mv `basename $n` ..
+ cd -
+done
+lcov --directory . --capture --output-file app.info
+mkdir -p doc/coverage
+genhtml -o doc/coverage app.info
--- /dev/null
+#!/bin/bash
+# /proc/sys/kernel/core_pattern should be core.%p.%E
+
+COREPID=$1
+
+COREFILES=`ls -1 *core.$COREPID* 2>/dev/null | wc -l`
+COREFILE=`ls -1 *core.$COREPID* 2>/dev/null | head -n 1`
+
+if [ $COREFILES -gt 1 ]; then
+ echo "Multiple files, using $COREFILE"
+fi
+
+
+if [ $COREFILES -eq 0 ]; then
+ SERVICENAME=$1
+ COREFILES=`ls -1 core.*.*$SERVICENAME 2>/dev/null | wc -l`
+ COREFILE=`ls -1 core.*.*$SERVICENAME 2>/dev/null | head -n 1`
+
+ if [ $COREFILES -gt 1 ]; then
+ echo "Multiple files, using $COREFILE"
+ fi
+fi
+
+if [ $COREFILES -eq 0 ]; then
+ echo "Core file for $1 not found"
+ exit 1
+fi
+
+echo "Using $COREFILE"
+
+EXECPATH=${COREFILE#*!}
+EXECPATH=`echo $EXECPATH | sed -e 's/!/\//g'`
+echo $EXECPATH
+echo ""
+echo ""
+
+gdb --core $COREFILE /$EXECPATH
--- /dev/null
+from __future__ import print_function
+import os
+import re
+import sys
+
+
+debug = False
+
+
+def get_td_from_function_signature(line, file, num):
+ left_paren = line.find('(')
+ if left_paren > 0:
+ left_paren += 1
+ li = line[left_paren:]
+ right_paren = line.find(')')
+ if right_paren > 0 and right_paren > left_paren and line[right_paren:].find('(') >= 0:
+ fname = line[:right_paren]
+ fname = fname.lstrip(' ').lstrip('*').lstrip(' ').rstrip(' ')
+ if len(fname) > 0:
+ if debug:
+ print("from {0}:{1}".format(file, num))
+ print("-T {0}".format(fname))
+
+
+def get_td_from_simple_type(line, file, num):
+ line = line.rstrip(' ').rstrip('\t').rstrip(' ').rstrip('\t')
+ right_space = line.rfind(' ')
+ right_tab = line.rfind('\t')
+ sep = right_tab if right_tab > right_space else right_space
+ sep += 1
+ tname = line[sep:]
+ tname = tname.lstrip('*')
+ if len(tname) > 0:
+ if debug:
+ print("from {0}:{1}".format(file, num))
+ print("-T {0}".format(tname))
+
+
+def find_typedefs(file):
+ with open(file, 'rb') as f:
+ td = False
+ td_struct = False
+ td_level = 0
+ td_line = []
+ data = f.read()
+ for i, l in enumerate(data.splitlines(False)):
+ # Don't try to be too smart: only count lines that begin with 'typedef '
+ l = l.rstrip(' ').rstrip('\t')
+ if len(l) == 0:
+ continue
+ if not td:
+ if l[:8] != 'typedef ':
+ continue
+ else:
+ td = True
+ if l[8:].lstrip(' ').lstrip('\t')[:6] == 'struct':
+ td_struct = True
+ if td_struct:
+ leftcbrace = l.find('{')
+ if leftcbrace >= 0:
+ if td_level == 0:
+ td_line.append(l[:leftcbrace])
+ l = l[leftcbrace + 1:]
+ td_level += 1
+ rightcbrace = l.rfind('}')
+ if rightcbrace >= 0:
+ td_level -= 1
+ if td_level == 0:
+ td_line.append(l[rightcbrace + 1:])
+ else:
+ td_line.append(l)
+ if len(l) > 0 and l[-1] == ';' and(not td_struct or td_level == 0):
+ td_line = ' '.join(td_line)
+ td_line = td_line[:-1]
+ if len(td_line) > 0:
+ if td_line[-1] == ')':
+ get_td_from_function_signature(td_line, file, i)
+ else:
+ get_td_from_simple_type(td_line, file, i)
+ td_line = []
+ td = False
+ td_struct = False
+ td_level = 0
+
+
+def scan_dir(d):
+ for dirpath, dirs, files in os.walk(d):
+ for f in files:
+ if re.match(r'(?!lt_).+\.(c|cc|h)$', f):
+ file = os.path.join(dirpath, f)
+ find_typedefs(file)
+
+
+if __name__ == '__main__':
+ if len(sys.argv[1:]) == 0:
+ arg = os.getcwd()
+ else:
+ arg = sys.argv[1]
+ scan_dir(arg)
--- /dev/null
+from gdb import *
+
+
+def search_dll(head, field, match, pfield):
+ """
+ Search in a DLL by iterates over it.
+
+ head: name of the symbol denoting the head of the DLL
+ field: the field that should be search for match
+ match: the mathing value for field
+ pfield: the field whose value is to be printed for matched elements; None to
+ print all fields of the matched elemented
+ """
+
+ (symbol, _) = lookup_symbol(head)
+ if symbol is None:
+ print("Can't find symbol: " + head)
+ return
+ symbol_val = symbol.value()
+ while symbol_val:
+ symbol_val_def = symbol_val.dereference()
+ field_val = symbol_val_def[field]
+ if field_val.type.code == gdb.TYPE_CODE_INT:
+ val = int(field_val)
+ res = (match == val)
+ elif (field_val.type.code == gdb.TYPE_CODE_STRING) or (field_val.type.code == gdb.TYPE_CODE_ARRAY):
+ val = str(field_val)
+ res = (match == val)
+ elif (field_val.type.code == gdb.TYPE_CODE_TYPEDEF):
+ val = str(field_val)
+ res = match in val
+ else:
+ continue
+
+ if res:
+ if pfield is None:
+ print(symbol_val_def)
+ else:
+ print(symbol_val_def[pfield])
+ symbol_val = symbol_val_def["next"]
--- /dev/null
+#!/bin/sh
+
+BASEPATH="$(dirname $0)"
+OLDDIR="${pwd}"
+GN_HOME="/usr/local/bin"
+
+export CC="cparser"
+export CFLAGS="-m32 --seaspider"
+
+cd $BASEPATH/.. && ./configure --prefix=$GN_HOME --with-extractor=$GN_HOME --with-microhttpd=$GN_HOME --with-libgcrypt=$GN_HOME && make && seaspider
+if test "$?" -ne 0
+then
+ echo "FAIL: building GNUnet"
+ exit 1
+fi
+
+cd $OLDDIR
--- /dev/null
+#!@PYTHON@
+# This file is part of GNUnet.
+# (C) 2013, 2018 Christian Grothoff (and other contributing authors)
+#
+# GNUnet is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published
+# by the Free Software Foundation; either version 3, or (at your
+# option) any later version.
+#
+# GNUnet is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNUnet; see the file COPYING. If not, write to the
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+#
+# File: gnunet-chk.py
+# Brief: Computes GNUNET style Content Hash Key for a given file
+# Author: Sree Harsha Totakura
+
+from hashlib import sha512
+import logging
+import os
+import getopt
+import sys
+from Crypto.Cipher import AES
+from functools import reduce
+
+
+# Defaults
+DBLOCK_SIZE = (32 * 1024) # Data block size
+
+# Pick a multiple of 2 here to achive 8-byte alignment! We also
+# probably want DBlocks to have (roughly) the same size as IBlocks.
+# With SHA-512, the optimal value is 32768 byte / 128 byte = 256 (128
+# byte = 2 * 512 bits). DO NOT CHANGE!
+CHK_PER_INODE = 256
+
+CHK_HASH_SIZE = 64 # SHA-512 hash = 512 bits = 64 bytes
+
+CHK_QUERY_SIZE = CHK_HASH_SIZE # Again a SHA-512 hash
+
+GNUNET_FS_URI_PREFIX = "gnunet://fs/" # FS CHK URI prefix
+
+GNUNET_FS_URI_CHK_INFIX = "chk/" # FS CHK URI infix
+
+
+def encode_data_to_string(data):
+ """Returns an ASCII encoding of the given data block like
+ GNUNET_STRINGS_data_to_string() function.
+
+ data: A bytearray representing the block of data which has to be encoded
+ """
+ echart = "0123456789ABCDEFGHIJKLMNOPQRSTUV"
+ assert (None != data)
+ assert (bytearray == type(data))
+ size = len(data)
+ assert (0 != size)
+ vbit = 0
+ wpos = 0
+ rpos = 0
+ bits = 0
+ out = ""
+ while (rpos < size) or (vbit > 0):
+ if (rpos < size) and (vbit < 5):
+ bits = (bits << 8) | data[rpos] # eat 8 more bits
+ rpos += 1
+ vbit += 8
+ if (vbit < 5):
+ bits <<= (5 - vbit) # zero-padding
+ assert (vbit == ((size * 8) % 5))
+ vbit = 5
+ out += echart[(bits >> (vbit - 5)) & 31]
+ wpos += 1
+ vbit -= 5
+ assert (0 == vbit)
+ return out
+
+
+def sha512_hash(data):
+ """ Returns the sha512 hash of the given data.
+
+ data: string to hash
+ """
+ hash_obj = sha512()
+ hash_obj.update(data)
+ return hash_obj.digest()
+
+
+class AESKey:
+ """Class for AES Keys. Contains the main key and the initialization
+ vector. """
+
+ key = None # The actual AES key
+ iv = None # The initialization vector
+ cipher = None # The cipher object
+ KEY_SIZE = 32 # AES 256-bit key = 32 bytes
+ IV_SIZE = AES.block_size # Initialization vector size (= AES block size)
+
+ def __init__(self, passphrase):
+ """Creates a new AES key.
+
+ passphrase: string containing the passphrase to get the AES key and
+ initialization vector
+ """
+ passphrase = bytearray(passphrase)
+ self.key = bytearray(self.KEY_SIZE)
+ self.iv = bytearray(self.IV_SIZE)
+ if (len(passphrase) > self.KEY_SIZE):
+ self.key = passphrase[:self.KEY_SIZE]
+ passphrase = passphrase[self.KEY_SIZE:]
+ if (len(passphrase) > self.IV_SIZE):
+ self.iv = passphrase[:self.IV_SIZE]
+ else:
+ self.iv[0:len(passphrase)] = passphrase
+ else:
+ self.key[0:len(passphrase)] = passphrase
+ self.key = str(self.key)
+ self.iv = str(self.iv)
+ assert (len(self.key) == self.KEY_SIZE)
+ assert (len(self.iv) == self.IV_SIZE)
+
+
+def setup_aes_cipher_(aes_key):
+ """Initializes the AES object with settings similar to those in GNUnet.
+
+ aes_key: the AESKey object
+ Returns the newly initialized AES object
+ """
+ return AES.new(aes_key.key, AES.MODE_CFB, aes_key.iv, segment_size=128)
+
+
+def aes_pad_(data):
+ """Adds padding to the data such that the size of the data is a multiple of
+ 16 bytes
+
+ data: the data string
+ Returns a tuple:(pad_len, data). pad_len denotes the number of bytes added
+ as padding; data is the new data string with padded bytes at the end
+ """
+ pad_len = len(data) % 16
+ if (0 != pad_len):
+ pad_len = 16 - pad_len
+ pad_bytes = bytearray(15)
+ data += str(pad_bytes[:pad_len])
+ return (pad_len, data)
+
+
+def aes_encrypt(aes_key, data):
+ """Encrypts the given data using AES.
+
+ aes_key: the AESKey object to use for AES encryption
+ data: the data string to encrypt
+ """
+ (pad_len, data) = aes_pad_(data)
+ cipher = setup_aes_cipher_(aes_key)
+ enc_data = cipher.encrypt(data)
+ if (0 != pad_len):
+ enc_data = enc_data[:-pad_len]
+ return enc_data
+
+
+def aes_decrypt(aes_key, data):
+ """Decrypts the given data using AES
+
+ aes_key: the AESKey object to use for AES decryption
+ data: the data string to decrypt
+ """
+ (pad_len, data) = aes_pad_(data)
+ cipher = setup_aes_cipher_(aes_key)
+ ptext = cipher.decrypt(data)
+ if (0 != pad_len):
+ ptext = ptext[:-pad_len]
+ return ptext
+
+
+class Chk:
+ """Class for the content hash key."""
+ key = None
+ query = None
+ fsize = None
+
+ def __init__(self, key, query):
+ assert (len(key) == CHK_HASH_SIZE)
+ assert (len(query) == CHK_QUERY_SIZE)
+ self.key = key
+ self.query = query
+
+ def setSize(self, size):
+ self.fsize = size
+
+ def uri(self):
+ sizestr = repr(self.fsize)
+ if isinstance(self.fsize, int):
+ sizestr = sizestr[:-1]
+ return GNUNET_FS_URI_PREFIX + GNUNET_FS_URI_CHK_INFIX + \
+ encode_data_to_string(bytearray(self.key)) + "." + \
+ encode_data_to_string(bytearray(self.query)) + "." + \
+ sizestr
+
+
+def compute_depth_(size):
+ """Computes the depth of the hash tree.
+
+ size: the size of the file whose tree's depth has to be computed
+ Returns the depth of the tree. Always > 0.
+ """
+ depth = 1
+ fl = DBLOCK_SIZE
+ while (fl < size):
+ depth += 1
+ if ((fl * CHK_PER_INODE) < fl):
+ return depth
+ fl = fl * CHK_PER_INODE
+ return depth
+
+
+def compute_tree_size_(depth):
+ """Calculate how many bytes of payload a block tree of the given depth MAY
+ correspond to at most (this function ignores the fact that some blocks will
+ only be present partially due to the total file size cutting some blocks
+ off at the end).
+
+ depth: depth of the block. depth==0 is a DBLOCK.
+ Returns the number of bytes of payload a subtree of this depth may
+ correspond to.
+ """
+ rsize = DBLOCK_SIZE
+ for cnt in range(0, depth):
+ rsize *= CHK_PER_INODE
+ return rsize
+
+
+def compute_chk_offset_(depth, end_offset):
+ """Compute the offset of the CHK for the current block in the IBlock
+ above
+
+ depth: depth of the IBlock in the tree (aka overall number of tree levels
+ minus depth); 0 == DBLOCK
+ end_offset: current offset in the overall file, at the *beginning* of the
+ block for DBLOCK (depth == 0), otherwise at the *end* of the
+ block (exclusive)
+ Returns the offset in the list of CHKs in the above IBlock
+ """
+ bds = compute_tree_size_(depth)
+ if (depth > 0):
+ end_offset -= 1
+ ret = end_offset / bds
+ return ret % CHK_PER_INODE
+
+
+def compute_iblock_size_(depth, offset):
+ """Compute the size of the current IBLOCK. The encoder is triggering the
+ calculation of the size of an IBLOCK at the *end* (hence end_offset) of its
+ construction. The IBLOCK maybe a full or a partial IBLOCK, and this
+ function is to calculate how long it should be.
+
+ depth: depth of the IBlock in the tree, 0 would be a DBLOCK, must be > 0
+ (this function is for IBLOCKs only!)
+ offset: current offset in the payload (!) of the overall file, must be > 0
+ (since this function is called at the end of a block).
+ Returns the number of elements to be in the corresponding IBlock
+ """
+ assert (depth > 0)
+ assert (offset > 0)
+ bds = compute_tree_size_(depth)
+ mod = offset % bds
+ if mod is 0:
+ ret = CHK_PER_INODE
+ else:
+ bds /= CHK_PER_INODE
+ ret = mod / bds
+ if (mod % bds) is not 0:
+ ret += 1
+ return ret
+
+
+def compute_rootchk(readin, size):
+ """Returns the content hash key after generating the hash tree for the given
+ input stream.
+
+ readin: the stream where to read data from
+ size: the size of data to be read
+ """
+ depth = compute_depth_(size)
+ current_depth = 0
+ chks = [None] * (depth * CHK_PER_INODE) # list buffer
+ read_offset = 0
+ logging.debug("Begining to calculate tree hash with depth: " + repr(depth))
+ while True:
+ if (depth == current_depth):
+ off = CHK_PER_INODE * (depth - 1)
+ assert (chks[off] is not None)
+ logging.debug("Encoding done, reading CHK `" + chks[off].query + \
+ "' from " + repr(off) + "\n")
+ uri_chk = chks[off]
+ assert (size == read_offset)
+ uri_chk.setSize(size)
+ return uri_chk
+ if (0 == current_depth):
+ pt_size = min(DBLOCK_SIZE, size - read_offset)
+ try:
+ pt_block = readin.read(pt_size)
+ except IOError:
+ logging.warning("Error reading input file stream")
+ return None
+ else:
+ pt_elements = compute_iblock_size_(current_depth, read_offset)
+ pt_block = ""
+ pt_block = \
+ reduce((lambda ba, chk:
+ ba + (chk.key + chk.query)),
+ chks[(current_depth - 1) * CHK_PER_INODE:][:pt_elements],
+ pt_block)
+ pt_size = pt_elements * (CHK_HASH_SIZE + CHK_QUERY_SIZE)
+ assert (len(pt_block) == pt_size)
+ assert (pt_size <= DBLOCK_SIZE)
+ off = compute_chk_offset_(current_depth, read_offset)
+ logging.debug("Encoding data at offset " + repr(read_offset) + \
+ " and depth " + repr(current_depth) + " with block " \
+ "size " + repr(pt_size) + " and target CHK offset " + \
+ repr(current_depth * CHK_PER_INODE))
+ pt_hash = sha512_hash(pt_block)
+ pt_aes_key = AESKey(pt_hash)
+ pt_enc = aes_encrypt(pt_aes_key, pt_block)
+ pt_enc_hash = sha512_hash(pt_enc)
+ chk = Chk(pt_hash, pt_enc_hash)
+ chks[(current_depth * CHK_PER_INODE) + off] = chk
+ if (0 == current_depth):
+ read_offset += pt_size
+ if (read_offset == size) or \
+ (0 == (read_offset % (CHK_PER_INODE * DBLOCK_SIZE))):
+ current_depth += 1
+ else:
+ if (CHK_PER_INODE == off) or (read_offset == size):
+ current_depth += 1
+ else:
+ current_depth = 0
+
+
+def chkuri_from_path(path):
+ """Returns the CHK URI of the file at the given path.
+
+ path: the path of the file whose CHK has to be calculated
+ """
+ size = os.path.getsize(path)
+ readin = open(path, "rb")
+ chk = compute_rootchk(readin, size)
+ readin.close()
+ return chk.uri()
+
+
+def usage():
+ """Prints help about using this script."""
+ print("""
+Usage: gnunet-chk.py [options] file
+Prints the Content Hash Key of given file in GNUNET-style URI.
+
+Options:
+ -h, --help : prints this message
+""")
+
+
+if '__main__' == __name__:
+ try:
+ opts, args = getopt.getopt(sys.argv[1:], "h", ["help"])
+ except getopt.GetoptError as err:
+ print(err)
+ print("Exception occured")
+ usage()
+ sys.exit(2)
+ for option, value in opts:
+ if option in("-h", "--help"):
+ usage()
+ sys.exit(0)
+ if len(args) != 1:
+ print("Incorrect number of arguments passed")
+ usage()
+ sys.exit(1)
+ print(chkuri_from_path(args[0]))
--- /dev/null
+#!@PERL@
+# helper tool to make gnunet logs more readable
+# try 'gnunet-logread -h' for usage
+
+use strict;
+use warnings;
+my $DEFAULT_SOCKET = '/tmp/gnunet-logread-ipc.sock';
+
+print STDERR <<X if -t STDIN and $#ARGV == -1;
+*** For a usage message, try '$0 -h'.
+*** For documentation, try 'perldoc $0'.
+*** Listening for GNUNET_log events on STDIN. Type CTRL-D to terminate.
+
+X
+
+use Getopt::Std;
+my (%opts, $name, $ipc, $msg_level, $msg_regex);
+getopts ('i:x:n:s:L:m:fhq', \%opts);
+
+use Pod::Usage qw( pod2usage );
+die pod2usage if $opts{h};
+
+use POSIX qw(mkfifo);
+
+use Term::ANSIColor qw(:constants :pushpop);
+$Term::ANSIColor::AUTOLOCAL = 1;
+
+my %levels = ( NONE => 0, ERROR => 1, WARNING => 2, INFO => 4, DEBUG => 8 );
+
+# Message type numbers to names
+my %msgtypes;
+my $prefix = $ENV{GNUNET_PREFIX} || '/usr';
+my $filename = "$prefix/include/gnunet/gnunet_protocols.h";
+$ipc = $opts{s} || $DEFAULT_SOCKET;
+
+if (open HEADER, $filename)
+{
+ while (<HEADER>)
+ {
+ $msgtypes{$2} = $1 if /^\s*#define\s+GNUNET_MESSAGE_TYPE_(\w+)\s+(\d+)/i;
+ }
+ close HEADER;
+} else {
+ warn <<X;
+Could not read $filename for message codes:
+ $!.
+Please provide a \$GNUNET_PREFIX environment variable to replace "/usr".
+Try also '$0 -h' for help.
+
+X
+}
+
+die "You can't read and write the socket at the same time"
+ if exists $opts{f} and exists $opts{n};
+
+if ((exists $opts{n} or exists $opts{f}) and not -r $ipc) {
+ undef $!;
+ die "Could not mkfifo $ipc: $!" unless mkfifo $ipc, 0600;
+ system('chgrp', 'gnunet', $ipc);
+ die "Could not chgrp $ipc to 'gnunet': $!" if $!;
+ chmod 0660, $ipc;
+ die "Could not chmod $ipc to allow gnunet group writes: $!" if $!;
+}
+
+if (exists $opts{n}) {
+ $name = $opts{n};
+ $msg_level = $opts{L} && exists $levels{$opts{L}} ? $levels{$opts{L}} : 0;
+ $msg_regex = $opts{m};
+ print STDERR "RE: /$msg_regex/\n" if defined $msg_regex;
+ open O, '>', $ipc or die "Cannot write to $ipc: $!";
+}
+
+if (exists $opts{f}) {
+ open(I, $ipc) or die "Cannot read from $ipc: $!";
+ &perform while <I>;
+ close I;
+} else {
+ &perform while <>;
+}
+fileno O and close O;
+exit;
+
+
+sub perform {
+ if (fileno O) {
+ my ($time, $type, $size, $from, $to, $level, $msg);
+ if (($time, $type, $size, $from, $to) =
+ /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)\ util-client-.*\b
+ (?: Received | Transmitting )\ message \b.*?\b
+ type \s+ (\d+) \b.*?\b
+ size \s+ (\d+) \b.*?\b
+ (?: from \s+ (\S+)
+ | to \s+ (\S+) ) /x)
+ {
+ $from ||= $name;
+ $to ||= $name;
+ my ($time, $type, $size, $from, $to) = ($1, $2, $3,
+ $4 || $name, $5 || $name);
+ my $msg = exists $msgtypes{$type} ? $msgtypes{$type} : $type;
+ my $ofh = select O;
+ print O "$time\t$from -> $to\t$msg ($size)\n";
+ $| = 1;
+ select $ofh;
+ }
+ if (($time, $level, $msg) =
+ /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)
+ \s+\S+\s+(\S+)\s+(.+)/x
+ and (exists $levels{$level}
+ && $levels{$level} <= $msg_level
+ && (!defined $msg_regex || $msg =~ /$msg_regex/i)))
+ {
+ print O "$time\t$name\t$level: $msg\n";
+ }
+ }
+ return if $opts{x} and /$opts{x}/io;
+ return if $opts{i} and not /$opts{i}/io;
+
+ # Timestamp (e.g. Nov 01 19:36:11-384136)
+ s/^([A-Z][a-z]{2} .[0-9] [0-9:]{8}(?:-[0-9]{6})?)/YELLOW $1/e;
+
+ # Log levels
+ s/\b(ERROR )\b/RED $1/ex;
+ s/\b(WARNING)\b/YELLOW $1/ex;
+ s/\b(INFO )\b/GREEN $1/ex;
+ s/\b(DEBUG )\b/BRIGHT_BLACK $1/ex;
+
+ # Service names
+ # TODO: might read the list from $GNUNET_PREFIX/libexec/gnunet/
+ s/\b(multicast|psyc|psycstore|social)\b/BLUE $1/gex;
+
+ # Add message type names
+ s/(\s+type\s+)(\d+)/
+ $1 . BRIGHT_CYAN (exists $msgtypes{$2} ? $msgtypes{$2} : 'UNKNOWN') .
+ CYAN " ($2)"/gei;
+
+ # logread-ipc output
+ s/(\s+)([A-Z_]+)( \(\d+\))$/$1 . BRIGHT_CYAN $2 . CYAN $3/e;
+
+ print;
+}
+
+__END__
+
+=pod
+
+=head1 NAME
+
+gnunet-logread - a GNUnet log analyzer, colorizer and aggregator
+
+=head1 SYNOPSIS
+
+ <gnunet-service> |& $0 [<options>]
+ or
+ $0 [<options>] [<logfile>]
+
+ Options:
+ -f Follow input from IPC FIFO socket.
+
+ Regular screen output options:
+ -i <regex> Include only messages that match <regex>.
+ -x <regex> Exclude all messages that match <regex>.
+ -q Quiet: Do not show usage advice to new users.
+
+ Options to forward messages to the IPC FIFO socket:
+ -n <component_name> Name of the component we are forwarding messages for.
+ -s </path/to/ipc.sock> Default = $DEFAULT_SOCKET
+ -L <LOGLEVEL> Minimum level of messages to forward:
+ Log levels: NONE, ERROR, WARNING, INFO, DEBUG.
+ -m <regex> Only forward messages matching a regular expression.
+
+ See 'perldoc gnunet-logread' for a longer explanation.
+
+=head1 MOTIVATION
+
+GNUnet debug logs are a tedious read, but given a complex system that we
+cannot run all parts of in a debugger all the time, some gathering and
+structuring of events and message passing is useful.
+
+At first, this tool simply makes logs easier to read. Both if viewed in
+real-time or taken from disk. Then it also allows to extract all message
+passing events from it and forward them to a special process that aggregates
+all message passing events and therefore helps you make sense of all the
+inter-process communication (IPC) happening between the various pieces of
+the GNUnet system beast.
+
+That master process is simply an extra gnunet-logread that you run in a
+separate window and adorn it with the '-f' flag. The submitting processes
+instead need to be given a '-n' flag. That is because from the GNUnet logs
+it isn't clear which process events belong to. For example you may be
+having events taking place in the 'util' subsystem of gnunet-psyc-service
+just as much as in the 'util' subsystem of gnunet-multicast-service. In
+order to make sense of them it is necessary to manually add that info. This
+could be remedied by extending the semantics of the GNUNET_log facility
+instead, but that is still subject to further consideration.
+
+=head1 AUTHORS
+
+tg & lynX
--- /dev/null
+#!/bin/sh
+#
+# Usage: gnunet-logread-ipc | gnunet-logread
+#
+# ... obsoleted by gnunet-logread's new -f option that does the same thing
+
+# FIXME: Replace /tmp with our use of $TMPDIR and similar.
+ipc=${1:-/tmp/gnunet-logread-ipc.sock}
+test -e "$ipc" || mkfifo "$ipc"
+cat "$ipc"
--- /dev/null
+#!@PERL@
+
+# 1. Start sdedit and enable 'RT diagram server' in 'Global preferences'.
+#
+# 2. Start this tool (see defaults below):
+# gnunet-logread-ipc-sdedit -n buffer-name -i /path/to/ipc.sock -h <sdedit-host> -p <sdedit-port>
+#
+# 3. Start a gnunet-logread instance for each component with the -n <component_name> option
+
+use strict;
+use warnings;
+
+use Getopt::Std;
+use IO::Socket::INET;
+use POSIX qw(mkfifo);
+
+my %opts;
+getopts ('i:n:h:p:', \%opts);
+
+my $ipc = $opts{i} || '/tmp/gnunet-logread-ipc.sock';
+my $name = $opts{n} || 'gnunet';
+my $host = $opts{h} || 'localhost';
+my $port = $opts{p} || 16001;
+my %svcs = map { $_ => 1 } @ARGV;
+
+my $sdedit = IO::Socket::INET->new(PeerAddr => $host,
+ PeerPort => $port,
+ Proto => 'tcp')
+ or die "Cannot connect to $host:$port: $!\n";
+
+print $sdedit "$name\n";
+print $sdedit "_t:time[e]\n";
+print $sdedit "$_:$_\[ap\] \"$_\"\n" for @ARGV;
+print $sdedit "_e:ext[e]\n";
+print $sdedit "\n";
+
+mkfifo $ipc, 0600 or die "$ipc: $!\n" unless -e $ipc;
+open IPC, '<', $ipc or die "$ipc: $!\n";
+$| = 1;
+while (<IPC>)
+{
+ print;
+ my ($time, $from, $to, $msg, $svc);
+ if (my ($time, $from, $to, $msg) =
+ /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)\s+
+ (\S+)\s+ -> \s+(\S+)\s+ (\S+\s+ \(\d+\))/x)
+ {
+ $from = '_e' unless exists $svcs{$from};
+ $to = '_e' unless exists $svcs{$to};
+ print $sdedit "*0 _t\n$time\n*0\n", "$from:$to.$msg\n"
+ }
+ elsif (($time, $svc, $msg) =
+ /^([A-Z][a-z]{2}\ .[0-9]\ [0-9:]{8}(?:-[0-9]{6})?)\s+
+ (\S+)\s+(.+)/x)
+ {
+ print $sdedit "*0 _t\n$time\n*0\n", "*0 $svc\n$msg\n*0\n"
+ }
+}
+
+close IPC;
--- /dev/null
+#!/bin/sh
+#
+# "suidfix" is german and it means something like immediate suicide.
+
+# taken from dangole's lede config.. thx!
+suid_root_helpers="exit nat-server nat-client transport-bluetooth transport-wlan vpn"
+libexec="${GNUNET_PREFIX}/lib/gnunet/libexec"
+
+chmodown_execbin() {
+ if [ -x $1 ]; then
+ if [ "$3" ]; then
+ chown $3 $1 2>/dev/null && chmod $2 $1
+ else
+ chmod $2 $1
+ fi
+ ls -l $1
+ else
+ echo "Missing: $1"
+ fi
+}
+
+for helper in $suid_root_helpers; do
+ chmodown_execbin ${libexec}/gnunet-helper-$helper u+s
+done
+chmodown_execbin ${libexec}/gnunet-helper-dns 4750 root:gnunetdns
+chmodown_execbin ${libexec}/gnunet-service-dns 2750 gnunet:gnunetdns
+
--- /dev/null
+#!@PYTHON@
+# This file is part of GNUnet.
+# (C) 2011 Christian Grothoff (and other contributing authors)
+#
+# GNUnet is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published
+# by the Free Software Foundation; either version 2, or (at your
+# option) any later version.
+#
+# GNUnet is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNUnet; see the file COPYING. If not, write to the
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+#
+# Finds any gnunet processes still running in the system and kills them
+#
+# gnunet janitor can be used by invoking `make' like this:
+# TESTS_ENVIRONMENT='${top_srcdir}/contrib/gnunet_janitor.py &&' make check
+
+from __future__ import print_function
+import os
+import re
+import subprocess
+import sys
+import shutil
+import time
+import signal
+import terminate
+
+if os.name == 'nt':
+ from win32com.client import GetObject
+ WMI = GetObject('winmgmts:')
+
+def get_process_list ():
+ result = []
+ if os.name == 'nt':
+ processes = WMI.InstancesOf('Win32_Process')
+ for p in processes:
+ result.append ((p.Properties_('ProcessId').Value, re.sub (r'(.+)\.exe', r'\1', p.Properties_('Name').Value)))
+ else:
+ pids = [pid for pid in os.listdir('/proc') if pid.isdigit ()]
+ for pid in pids:
+ with open (os.path.join ('/proc', pid, 'cmdline'), 'rb') as p:
+ cmdline = p.read ().split ('\x00')
+ if len (cmdline) > 0:
+ result.append ((pid, cmdline[0]))
+ return result
+
+def main ():
+ procs = get_process_list ()
+ gnunet_procs = []
+ for p in procs:
+ if re.match (r'gnunet-.+', p[1]):
+ gnunet_procs.append (p)
+ for p in gnunet_procs:
+ if re.match (r'gnunet-service-arm', p[1]):
+ print ("killing arm process {0:5} {1}".format (p[0], p[1]))
+ try:
+ terminate.safe_terminate_process_by_pid (int (p[0]), 1)
+ except OSError as e:
+ print ("failed: {0}".format (e))
+ pass
+ for p in gnunet_procs:
+ if not re.match (r'gnunet-service-arm', p[1]):
+ print ("killing non-arm process {0:5} {1}".format (p[0], p[1]))
+ try:
+ terminate.safe_terminate_process_by_pid (int (p[0]), 1)
+ except OSError as e:
+ print ("failed: {0}".format (e))
+ pass
+
+if __name__ == '__main__':
+ sys.exit (main ())
--- /dev/null
+#!@PYTHON@
+# This file is part of GNUnet.
+# (C) 2010 Christian Grothoff (and other contributing authors)
+#
+# GNUnet is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published
+# by the Free Software Foundation; either version 2, or (at your
+# option) any later version.
+#
+# GNUnet is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNUnet; see the file COPYING. If not, write to the
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+#
+# Testcase for gnunet-peerinfo
+from __future__ import print_function
+import os
+import re
+import subprocess
+import sys
+import shutil
+import time
+
+class pexpect (object):
+ def __init__ (self):
+ super (pexpect, self).__init__ ()
+
+ def spawn (self, stdin, arglist, *pargs, **kwargs):
+ env = kwargs.pop ('env', None)
+ if env is None:
+ env = os.environ.copy ()
+ # This messes up some testcases, disable log redirection
+ env.pop ('GNUNET_FORCE_LOGFILE', None)
+ self.proc = subprocess.Popen (arglist, *pargs, env=env, **kwargs)
+ if self.proc is None:
+ print ("Failed to spawn a process {0}".format (arglist))
+ sys.exit (1)
+ if stdin is not None:
+ self.stdo, self.stde = self.proc.communicate (stdin)
+ else:
+ self.stdo, self.stde = self.proc.communicate ()
+ return self.proc
+
+ def expect (self, s, r, flags=0):
+ stream = self.stdo if s == 'stdout' else self.stde
+ if isinstance (r, str):
+ if r == "EOF":
+ if len (stream) == 0:
+ return True
+ else:
+ print ("Failed to find `{1}' in {0}, which is `{2}' ({3})".format (s, r, stream, len (stream)))
+ sys.exit (2)
+ raise ValueError ("Argument `r' should be an instance of re.RegexObject or a special string, but is `{0}'".format (r))
+ m = r.search (stream.decode(), flags)
+ if not m:
+ print ("Failed to find `{1}' in {0}, which is is `{2}'".format (s, r.pattern, stream))
+ sys.exit (2)
+ stream = stream[m.end ():]
+ if s == 'stdout':
+ self.stdo = stream
+ else:
+ self.stde = stream
+ return m
+
+ def read (self, s, size=-1):
+ stream = self.stdo if s == 'stdout' else self.stde
+ result = ""
+ if size < 0:
+ result = stream
+ new_stream = ""
+ else:
+ result = stream[0:size]
+ new_stream = stream[size:]
+ if s == 'stdout':
+ self.stdo = new_stream
+ else:
+ self.stde = new_stream
+ return result
--- /dev/null
+#!/bin/bash
+
+# Usage: service should print "STARTING SERVICE (srvc) for peer [PEER]" where:
+# - "srvc" is the service name (in lowercase, as in the log output).
+# It cannot contain parenthesis in its name.
+# - "PEER" is the peer ID. Should be 4 alfanumeric characters
+
+grep "STARTING SERVICE " log > __tmp_peers
+
+SED_EXPR=""
+while read -r line; do
+ SRVC=`echo "$line" | sed -e 's/.*(\([^)]*\)).*/\1/'`
+ PEER=`echo "$line" | sed -e 's/.*\[\(....\)\].*/\1/'`
+ PID=`echo "$line" | sed -e "s/.*$SRVC-\([0-9]*\).*/\1/"`
+ echo "$SRVC $PID => $PEER"
+
+ SED_EXPR="${SED_EXPR}s/$SRVC-\([a-z2]*\)-$PID/$SRVC \1 $PEER/;"
+ SED_EXPR="${SED_EXPR}s/$SRVC-$PID/$SRVC XXX $PEER/;"
+ SED_EXPR="${SED_EXPR}s/$SRVC-api-[0-9]/$SRVC-api- /;"
+done < __tmp_peers
+rm __tmp_peers
+
+sed -e "$SED_EXPR" log > .log
+echo "$0 sed regex: $SED_EXPR" >> .log
+
+SIZE=`stat -c%s .log`
+
+if [[ "`ps aux | grep "kwrite .lo[g]"`" = "" && "$SIZE" < 10000000 ]]; then
+ kwrite .log --geometry 960x1140-960 &
+fi
--- /dev/null
+#!@PYTHON@
+import os
+import sys
+import difflib
+import filecmp
+
+
+def getdiff(old, new):
+ diff = []
+ with open(old) as a:
+ with open(new) as b:
+ for l in difflib.unified_diff(a.read().splitlines(), b.read().splitlines()):
+ diff.append(l)
+ return diff
+
+
+def dc_getdiff(dc, old, new):
+ diff = []
+ for f in dc.left_only:
+ diff.append("Only in {}: {}".format(old, f))
+ for f in dc.right_only:
+ diff.append("Only in {}: {}".format(new, f))
+ for f in dc.diff_files:
+ r = getdiff(os.path.join(old, f), os.path.join(new, f))
+ diff.extend(r)
+ for dn, dc in dc.subdirs.items():
+ r = dc_getdiff(dc, os.path.join(old, dn), os.path.join(new, dn))
+ diff.extend(r)
+ return diff
+
+
+def dcdiff(old, new):
+ dc = filecmp.dircmp(old, new)
+ diff = dc_getdiff(dc, old, new)
+ return diff
+
+
+def main():
+ for l in dcdiff(sys.argv[1], sys.argv[2]):
+ print(l)
+
+
+if __name__ == '__main__':
+ main()
--- /dev/null
+#!/usr/bin/env python
+# coding=utf8
+
+# Copyright (C) 2010 Saúl ibarra Corretgé <saghul@gmail.com>
+#
+
+"""
+pydmesg: dmesg with human-readable timestamps
+"""
+
+from __future__ import with_statement
+
+import re
+import subprocess
+import sys
+
+from datetime import datetime, timedelta
+
+
+_datetime_format = "%Y-%m-%d %H:%M:%S"
+_dmesg_line_regex = re.compile("^\[(?P<time>\d+\.\d+)\](?P<line>.*)$")
+
+def exec_process(cmdline, silent, input=None, **kwargs):
+ """Execute a subprocess and returns the returncode, stdout buffer and stderr buffer.
+ Optionally prints stdout and stderr while running."""
+ try:
+ sub = subprocess.Popen(cmdline, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, **kwargs)
+ stdout, stderr = sub.communicate(input=input)
+ returncode = sub.returncode
+ if not silent:
+ sys.stdout.write(stdout)
+ sys.stderr.write(stderr)
+ except OSError,e:
+ if e.errno == 2:
+ raise RuntimeError('"%s" is not present on this system' % cmdline[0])
+ else:
+ raise
+ if returncode != 0:
+ raise RuntimeError('Got return value %d while executing "%s", stderr output was:\n%s' % (returncode, " ".join(cmdline), stderr.rstrip("\n")))
+ return stdout
+
+def human_dmesg():
+ now = datetime.now()
+ uptime_diff = None
+ try:
+ with open('/proc/uptime') as f:
+ uptime_diff = f.read().strip().split()[0]
+ except IndexError:
+ return
+ else:
+ try:
+ uptime = now - timedelta(seconds=int(uptime_diff.split('.')[0]), microseconds=int(uptime_diff.split('.')[1]))
+ except IndexError:
+ return
+
+ dmesg_data = exec_process(['dmesg'], True)
+ for line in dmesg_data.split('\n'):
+ if not line:
+ continue
+ match = _dmesg_line_regex.match(line)
+ if match:
+ try:
+ seconds = int(match.groupdict().get('time', '').split('.')[0])
+ nanoseconds = int(match.groupdict().get('time', '').split('.')[1])
+ microseconds = int(round(nanoseconds * 0.001))
+ line = match.groupdict().get('line', '')
+ t = uptime + timedelta(seconds=seconds, microseconds=microseconds)
+ except IndexError:
+ pass
+ else:
+ print "[%s]%s" % (t.strftime(_datetime_format), line)
+
+
+if __name__ == '__main__':
+ human_dmesg()
--- /dev/null
+#!/bin/sh
+cd
+cd gnunet
+svn up > /dev/null
+H=`hostname`
+echo "================START===================" >> regression.$H
+RUN=`date +%0y%0m%0d%0k%0M`
+uname -a >> regression.$H
+date >> regression.$H
+echo "Run $RUN" >> regression.$H
+svn up >> regression.$H
+export GNUNET_PREFIX=$HOME
+export PATH=$HOME/bin:$PATH
+./bootstrap >> regression.$H.$RUN 2>&1
+./configure --prefix=$HOME --with-extractor=$HOME --with-microhttpd=$HOME >> regression.$H.$RUN 2>&1
+if [ $? != 0 ]
+then
+ echo configure failed >> regression.$H
+ exit
+fi
+KEEP=0
+make clean >> regression.$H.$RUN 2>&1
+make install >> regression.$H.$RUN 2>&1
+cd src
+for n in `ls --hide "Makefile*"`
+do
+ cd $n
+ if [ -f Makefile ]
+ then
+ make check >> ../regression.$H.$RUN.$n 2>&1
+ if [ $? != 0 ]
+ then
+ echo Tests for $n failed >> ../regression.$H
+ echo "--------- Details for $n -----------" >> ../regression.$H
+ cat regression.$H.$RUN.$n >> ../regression.$H
+ echo "----- End of Details for $n --------" >> ../regression.$H
+ KEEP=1
+ else
+ echo Tests for $n succeeded >> ../regression.$H
+ fi
+ fi
+ cd ..
+done
+echo "================END====================" >> regression.$H
+
+if [ $KEEP == 0]
+then
+ rm regression.$H.$RUN*
+ rm regression.$H
+else
+ svn add regression.$H > /dev/null
+ svn commit -m "Regression in tests on $H" regression.$H
+fi
+
--- /dev/null
+#!@PYTHON@
+
+import sys
+import re
+
+
+for fileName in sys.argv[1:]:
+ f = open(fileName, 'r+')
+ fileString = f.read()
+
+ fileString = re.sub(r'[ ]+\n', r'\n', fileString)
+ fileString = re.sub(r'\r', r'', fileString)
+ f.seek(0)
+ f.write(fileString)
+ f.truncate(len(fileString))
--- /dev/null
+#!/bin/sh
+
+TEST=`type type|grep not`
+if test -n "$TEST"; then
+ WHICH=which
+else
+ WHICH=type
+fi
+
+echo "Please submit the following information with your bug report: "
+echo "--------------------------------------------------------------"
+OS=`uname -s 2>/dev/null`
+echo "OS : $OS"
+REL=`uname -r 2>/dev/null`
+echo "OS RELEASE : $REL"
+HW=`uname -m 2>/dev/null`
+echo "HARDWARE : $HW"
+
+TEST=`$WHICH gcc 2>/dev/null`
+if test -n "$TEST"; then
+ VERS=`gcc --version 2>/dev/null | head -n 1`
+ echo "gcc : $VERS"
+else
+ echo "gcc : Not Found";
+fi
+
+TEST=`$WHICH gmake 2>/dev/null`
+if test -n "$TEST" ; then
+ gmake --version 2>/dev/null |\
+ awk -F, '{print $1}' |\
+ awk '/GNU Make/{print "GNU gmake :",$NF}'
+else
+ TEST=`make --version 2>/dev/null`
+ if test -n "$TEST"; then
+ make --version 2>/dev/null |\
+ awk -F, '{print $1}' |\
+ awk '/GNU Make/{print "make :",$NF}'
+ else
+ echo "make : Not Found"
+ fi
+fi
+
+TEST=`$WHICH autoconf 2>/dev/null`
+if test -n "$TEST"; then
+ autoconf --version |\
+ head -n 1 |\
+ awk '{\
+ if (length($4) == 0) {\
+ print "autoconf : "$3\
+ } else {\
+ print "autoconf : "$4\
+ }}'
+else
+ echo "autoconf : Not Found"
+fi
+
+TEST=`$WHICH automake 2>/dev/null`
+if test -n "$TEST"; then
+ automake --version 2>/dev/null |\
+ head -n 1 |\
+ awk '{print "automake : "$4}'
+else
+ echo "automake : Not Found"
+fi
+
+TEST=`$WHICH libtool 2>/dev/null`
+if test -n "$TEST"; then
+ libtool --version 2>/dev/null |\
+ head -n 1 |\
+ awk '{print "libtool : "$4}'
+else
+ echo "libtool : Not Found"
+fi
+
+TEST=`$WHICH extract 2>/dev/null`
+if test -n "$TEST"; then
+ extract -v 2>/dev/null |\
+ head -n 1 |\
+ awk '{print "libextractor : "$2}'
+else
+ echo "libextractor : Not Found"
+fi
+
+if test -x gnunetd; then
+ gnunetd -v | sed -e "s/v//" 2>/dev/null |\
+ awk '{print "GNUnet 0.8 : "$2 (may conflict!)}'
+else
+ echo "GNUnet 0.8 : Not Found (good)"
+fi
+
+TEST=`$WHICH gnunet-arm 2>/dev/null`
+if test -n "$TEST"; then
+ gnunet-arm -v | sed -e "s/v//" 2>/dev/null |\
+ awk '{print "GNUnet 0.9 : "$2}'
+else
+ echo "GNUnet 0.9 : Not Found"
+fi
+
+TEST=`$WHICH libgcrypt-config 2> /dev/null`
+if test -n "$TEST"; then
+ libgcrypt-config --version 2> /dev/null | \
+ awk '{print "libgcrypt : "$1}'
+else
+ echo "libgcrypt : Not Found"
+fi
+
+TEST=`$WHICH mysql_config 2> /dev/null`
+if test -n "$TEST"; then
+ mysql_config --version 2> /dev/null | \
+ awk '{print "mysql : "$1}'
+else
+ echo "mysql : Not Found"
+fi
+
+TEST=`$WHICH pkg-config 2> /dev/null`
+if test -n "$TEST"; then
+ pkg-config --version 2> /dev/null | \
+ awk '{print "pkg-config : "$1}'
+else
+ echo "pkg-config : Not Found"
+fi
+
+TEST=`$WHICH pkg-config 2> /dev/null`
+if test -n "$TEST"; then
+ pkg-config --modversion glib-2.0 2> /dev/null | \
+ awk '{print "glib2 : "$1}'
+else
+ echo "glib2 : Not Found"
+fi
+
+TEST=`$WHICH pkg-config 2> /dev/null`
+if test -n "$TEST"; then
+ pkg-config --modversion gtk+-2.0 2> /dev/null | \
+ awk '{print "gtk2+ : "$1}'
+else
+ echo "gtk2+ : Not Found"
+fi
+
+TEST=`$WHICH dpkg 2> /dev/null`
+if test -n "$TEST"; then
+ LINES=`dpkg -s libgmp-dev | grep Version | wc -l 2> /dev/null`
+ if test "$LINES" = "1"
+ then
+ VERSION=`dpkg -s libgmp-dev | grep Version | awk '{print $2}'`
+ echo "GMP : libgmp-dev-$VERSION.deb"
+ else
+ echo "GMP : dpkg: libgmp-dev not installed"
+ fi
+else
+ TEST=`$WHICH rpm 2> /dev/null`
+ if test -n "$TEST"; then
+ rpm -q gmp | sed -e "s/gmp-//" 2> /dev/null | \
+ awk '{print "GMP : "$1.rpm}'
+ else
+ echo "GMP : Test not available"
+ fi
+fi
+
+TEST=`$WHICH dpkg 2> /dev/null`
+if test -n "$TEST"; then
+ LINES=`dpkg -s libunistring-dev | grep Version | wc -l`
+ if test "$LINES" = "1"
+ then
+ VERSION=`dpkg -s libunistring-dev | grep Version | awk '{print $2}'`
+ echo "libunistring : libunistring3-dev-$VERSION.deb"
+ else
+ echo "libunistring : dpkg: libunistring3-dev not installed"
+ fi
+else
+ TEST=`$WHICH rpm 2> /dev/null`
+ if test -n "$TEST"; then
+ rpm -q unistring | sed -e "s/unistring-//" 2> /dev/null | \
+ awk '{print "libunistring : "$1.rpm}'
+ else
+ echo "libunistring : Test not available"
+ fi
+fi
+
+TEST=`$WHICH gettext 2> /dev/null`
+if test -n "$TEST"; then
+ gettext --version | head -n1 2> /dev/null | \
+ awk '{print "GNU gettext : "$4}'
+else
+ echo "GNU gettext : Not found"
+fi
+
+
+TEST=`$WHICH curl-config 2> /dev/null`
+if test -n "$TEST"; then
+ curl-config --version | head -n1 2> /dev/null | \
+ awk '{print "libcurl : "$2}'
+else
+ echo "libcurl : Not found"
+fi
+
+TEST=`$WHICH gnurl-config 2> /dev/null`
+if test -n "$TEST"; then
+ gnurl-config --version | head -n1 2> /dev/null | \
+ awk '{print "libgnurl : "$2}'
+else
+ echo "libgnurl : Not found"
+fi
+
+echo -n "libmicrohttpd : "
+TMPFILE=`mktemp /tmp/mhd-version-testXXXXXX`
+cat - >$TMPFILE.c <<EOF
+#include <microhttpd.h>
+#include <stdio.h>
+int main()
+{
+ fprintf (stdout, "%X\n", MHD_VERSION);
+ return 0;
+}
+EOF
+
+gcc -o $TMPFILE $TMPFILE.c 2> /dev/null && $TMPFILE || echo "Not found"
+rm -f $TMPFILE $TMPFILE.bin
+
+
+echo -n "GNU GLPK : "
+TMPFILE=`mktemp /tmp/glpk-version-testXXXXXX`
+cat - >$TMPFILE.c <<EOF
+#include <glpk.h>
+#include <stdio.h>
+int main()
+{
+ fprintf (stdout, "%u.%u\n", GLP_MAJOR_VERSION, GLP_MINOR_VERSION);
+ return 0;
+}
+EOF
+
+gcc -o $TMPFILE $TMPFILE.c 2> /dev/null && $TMPFILE || echo "Not found"
+rm -f $TMPFILE $TMPFILE.bin
+
+
+echo -n "GNUtls : "
+TMPFILE=`mktemp /tmp/gnutls-version-testXXXXXX`
+cat - >$TMPFILE.c <<EOF
+#include <gnutls/gnutls.h>
+#include <stdio.h>
+int main()
+{
+ fprintf (stdout, "%s\n", GNUTLS_VERSION);
+ return 0;
+}
+EOF
+
+gcc -o $TMPFILE $TMPFILE.c 2> /dev/null && $TMPFILE || echo "Not found"
+rm -f $TMPFILE $TMPFILE.bin
+
+
+echo "--------------------------------------------------------------"
--- /dev/null
+#!/usr/local/bin/bash
+
+STARTREVISION=14033
+ENDREVISION=15268
+CURRENTREVISION=$STARTREVISION
+HOME_DIR='/home/gnunet/FreeBSD7-AMD64-wachs/freebsd7-amd64-wachs/build'
+
+
+CMD_UPDATE="svn up --force --accept theirs-full -r"
+CMD_CLEANUP="killall -s 31 -r gnunet-*; make distclean;"
+CMD_PREPARATION="./bootstrap; ./configure --prefix=/tmp/gnb --with-extractor=/usr/local"
+CMD_BUILD="make all"
+CMD_TEST="cd src/transport ; make test_transport_api_tcp; ./test_transport_api_tcp"
+
+#LOGGING=""
+LOGGING=" 1> /dev/null 2> errors.txt"
+LOGFILE="log.txt"
+
+function output ()
+{
+ eval echo $1
+ eval echo $1 >> $LOGFILE
+}
+
+
+while [ $CURRENTREVISION -le $ENDREVISION ]; do
+ output 'Testing revision $CURRENTREVISION'
+# updating
+ output ' -> updating '
+ eval cd $HOME_DIR
+ CMD="$CMD_UPDATE $CURRENTREVISION $LOGGING"
+ eval $CMD
+ result=$?
+ if [ $result -eq 0 ]; then
+ output " updating OK"
+ else
+ output " updating FAILED"
+ (( CURRENTREVISION++ ))
+ continue
+ fi
+
+# clean up
+ output " -> cleanup "
+ CMD="$CMD_CLEANUP $LOGGING"
+ eval $CMD
+ result=$?
+ if [ $result -eq 0 ]; then
+ output " cleanup OK"
+ else
+ output " cleanup FAILED"
+ (( CURRENTREVISION++ ))
+ continue
+ fi
+# preparing
+ output " -> preparation "
+ CMD="$CMD_PREPARATION $LOGGING"
+ #echo $CMD
+ eval $CMD
+ result=$?
+ if [ $result -eq 0 ]; then
+ output " preparation OK"
+ else
+ output " preparation FAILED"
+ (( CURRENTREVISION++ ))
+ continue
+ fi
+# building
+ output " -> building "
+ CMD="$CMD_BUILD $LOGGING"
+ #echo $CMD
+ eval $CMD
+ result=$?
+ if [ $result -eq 0 ]; then
+ output " building OK"
+ else
+ output " building FAILED"
+ (( CURRENTREVISION++ ))
+ continue
+ fi
+# testing
+ output " -> testing "
+ CMD="$CMD_TEST $LOGGING"
+ #echo $CMD
+ eval $CMD
+ result=$?
+ testresult=result
+ if [ $result -eq 0 ]; then
+ output " testing OK"
+ else
+ output " testing FAILED"
+ output 'Revision $CURRENTREVISION FAILED'
+ fi
+ (( CURRENTREVISION++ ))
+done
+
+exit
+
+
--- /dev/null
+#!@PYTHON@
+# This file is part of GNUnet.
+# (C) 2011 Christian Grothoff (and other contributing authors)
+#
+# GNUnet is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published
+# by the Free Software Foundation; either version 2, or (at your
+# option) any later version.
+#
+# GNUnet is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with GNUnet; see the file COPYING. If not, write to the
+# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+# Boston, MA 02110-1301, USA.
+#
+# Utility module that implements safe process termination for W32.
+# For other platforms it's equivalent to Popen.kill ()
+# Requires pywin32 on W32.
+
+import sys
+import os
+import subprocess
+if os.name == 'nt':
+ import win32api
+ import win32process
+
+class dummyobj (object):
+ pass
+
+def safe_terminate_process_by_pid (pid, code):
+ if os.name == 'nt':
+ p = dummyobj ()
+ p._handle = win32api.OpenProcess (2 | 1024 | 8 | 32 | 16, 0, pid)
+ result = safe_terminate_process (p, code)
+ win32api.CloseHandle (p._handle)
+ return result
+ else:
+ return os.kill (int (pid), SIGKILL)
+
+def safe_terminate_process (proc, code):
+ if os.name == 'nt':
+ cp = win32api.GetCurrentProcess ()
+ result = False
+ dupproc = win32api.DuplicateHandle (cp, proc._handle, cp, 2 | 1024 | 8 | 32 | 16, 0, 0)
+ try:
+ exitcode = win32process.GetExitCodeProcess (dupproc)
+ if exitcode == 0x103:
+ kernel32 = win32api.GetModuleHandle ("kernel32")
+ exitprocess = win32api.GetProcAddress (kernel32, "ExitProcess")
+ th, tid = win32process.CreateRemoteThread (dupproc, None, 0, exitprocess, code, 0)
+ win32api.CloseHandle (th)
+ result = True
+ else:
+ result = True
+ # except failed to get exit code? failed to get module handle?
+ finally:
+ win32api.CloseHandle (dupproc)
+ return result
+ else:
+ return proc.kill ()
--- /dev/null
+#!/bin/bash
+
+###################################################################################
+# Script to clean a previous run of testbed which has crashed. This scripts kills #
+# the peers and cleans the temporary files created for those peers #
+# #
+# Author: Sree Harsha Totakura #
+###################################################################################
+
+for host in `cut -d : -f 1 < infiniband_cluster.hosts | cut -d @ -f 2`
+do
+ echo "ssh --> $host"
+ ssh $host 'pkill -SIGKILL gnunet; rm -rf /tmp/gnunet-pipe*; rm -rf /tmp/testbed*'
+done
--- /dev/null
+;;;; hacks.el --- a few functions to help me work on the manual
+;;;; Jim Blandy <jimb@red-bean.com> --- October 1998
+;;;; -- imported from https://git.savannah.gnu.org/cgit/guile.git/tree/doc/hacks.el
+;;;; This code should be covered by the same license as GNU Guile (GPL3).
+
+(defun jh-exemplify-region (start end)
+ (interactive "r")
+ (save-excursion
+ (save-restriction
+ (narrow-to-region start end)
+
+ ;; Texinfo doesn't handle tabs well.
+ (untabify (point-min) (point-max))
+
+ ;; Quote any characters special to texinfo.
+ (goto-char (point-min))
+ (while (re-search-forward "[{}@]" nil t)
+ (replace-match "@\\&")))))
--- /dev/null
+#!/bin/bash
+#
+# This script polls gnunet-stats repeatedly to create statistics plots.
+# Use 'collect' to collect statistics and 'plot' to plot whats been
+# collected. All plots will be written to $STATDIR as separate .png files.
+#
+# WARNING: calling 'collect' will delete all files in $STATDIR.
+#
+# Requires: gnuplot
+#
+# Note: gnuplot syntax has changed across versions. This
+# script perhaps will not produce color images with older gnuplots.
+# The script should work atleast with gnuplot 3.8k patchlevel 1.
+#
+
+SLEEP=120
+GNUNET=$HOME/
+STATDIR=$GNUNET/stats
+IMAGEVIEWER='display'
+TMP=/tmp/.gnuplot_error
+
+##########################################################################
+
+mkdir -p $STATDIR
+
+case "$1" in
+ collect)
+ rm -f $STATDIR/*
+
+ STARTTIME=`date +%s`
+ IFS=":"
+
+ while true; do
+ NOW=`date +%s`
+ RELAT=$[$NOW-$STARTTIME]
+ gnunet-statistics | while read KEY VALUE; do
+ KEY=`echo $KEY | tr / .`
+ # Collect stats of previous round
+ if [ -e "$STATDIR/$KEY.dat" ]; then
+ PREV=`tail --lines=1 "$STATDIR/$KEY.dat" | sed -e "s/.* //g"`
+ else
+ PREV=$VALUE
+ fi
+
+ # Write new stats
+ echo $RELAT $VALUE >>"$STATDIR/$KEY.dat"
+ echo $RELAT $PREV $VALUE >>"$STATDIR/$KEY.diff"
+
+ done
+ sleep $SLEEP
+ done
+ ;;
+ plot)
+ # Plot incremental
+ ls -1 $STATDIR/*.dat | while read FILENAME; do
+ BASENAME=`basename "$FILENAME" | sed -e "s/ *\..*//g"`
+ echo "set terminal png;set output '$FILENAME.png';set title '$BASENAME - incr';plot '$FILENAME' using (\$1/60):(\$2) title '' with lines;" | nice gnuplot 2> $TMP
+ EC=`cat $TMP | grep "empty" | grep "Warning" | wc -l`
+ if test $EC -ge 1
+ then
+ rm "$FILENAME.png"
+ fi
+ done
+
+ # Plot diff
+ ls -1 $STATDIR/*.diff | while read FILENAME; do
+ BASENAME=`basename "$FILENAME" | sed -e "s/ *\..*//g"`
+ echo "set terminal png;set output '$FILENAME.png';set title '$BASENAME - diff';plot '$FILENAME' using (\$1/60):(\$3-\$2) title '' with lines;" | nice gnuplot 2> $TMP
+ EC=`cat $TMP | grep "empty" | grep "Warning" | wc -l`
+ if test $EC -ge 1
+ then
+ rm "$FILENAME.png"
+ fi
+
+ done
+ ;;
+ view)
+ $IMAGEVIEWER $STATDIR/*.png
+ ;;
+ *)
+ echo $"Usage: $0 {collect|plot|view}"
+ exit 1
+
+esac
+
+
--- /dev/null
+#!/bin/sh
+# This script is in the public domain.
+# Converts the output of gnunet-zonewalk (DNS resolutions)
+# into a proper input for gnunet-gns-benchmark.
+
+NUM_CLIENTS=3
+# How many different groups of names should we
+# create? 1/N will be in the 'shared' group.
+
+# FILE ($1) contains results from DNS lookup; strip
+# everything but the hostnames, remove duplicates
+# and then randomize the order.
+cat $1 | awk '{print $1}' | sort | uniq | shuf > $1.tmp
+TOTAL=`cat $1.tmp | wc -l`
+GROUP_SIZE=`expr $TOTAL / \( $NUM_TYPES + 1 \)`
+
+# First group (0) is to be shared among all clients
+for i in `seq 1 $NUM_CLIENTS`
+do
+ cat $1.tmp | head -n $GROUP_SIZE | awk "{print 0 \" \" \$1}" > $1.$i.tmp
+done
+
+# Second group (1) is unique per client
+OFF=0
+for i in `seq 1 $NUM_CLIENTS`
+do
+ END=`expr $OFF + $GROUP_SIZE`
+ cat $1.tmp | head -n $END | tail -n $GROUP_SIZE | awk "{print 1 \" \" \$1}" >> $1.$i.tmp
+# Shuffle again, so we mix the different request categories in terms of
+# when we issue the queries.
+ cat $1.$i.tmp | shuf > $1.$i
+ OFF="$END"
+ rm $1.$i.tmp
+done
+rm $1.tmp
+++ /dev/null
-# ~/.ssh/config for buildbots
-
-Host *.buildbot.gnunet
- User root
-
-Host debian-amd64-grothoff.buildbot.gnunet
- Hostname gnunet.org
- Port 20004
-
-Host debian-i686-wachs.buildbot.gnunet
- Hostname gnunet.org
- Port 20000
-
-Host ubuntu-amd64-wachs.buildbot.gnunet
- Hostname gnunet.org
- Port 20003
-
-Host opensuse-amd64-wachs.buildbot.gnunet
- Hostname gnunet.org
- Port 20002
-
-Host freebsd-amd64-wachs.buildbot.gnunet
- Hostname gnunet.org
- Port 20006
-
-Host debian-powerpc-wachs.buildbot.gnunet
- Hostname powerpcbot.decentralise.rennes.inria.fr
-
-Host debian-armv7l-evans.buildbot.gnunet
- Hostname efikamxbot.decentralise.rennes.inria.fr
-
-Host debian-sparc64-wachs.buildbot.gnunet
- Hostname sparcbot.decentralise.rennes.inria.fr
+++ /dev/null
-ssh-dss AAAAB3NzaC1kc3MAAAIBAPmoUwxO5VkAR2j7AJh1/UfySsvtqPJWlzZ4i33LoNis6KpaHn7JO9dEL/psg10ZAqqqFahcTvqFDeXjS5DBzOHWA/u0TgXj58i1rOO2TgmxKF3UatYfD51omlPvw3IcnTPIX+Dsiq/cDkJAHxBdAYo9KjFGu9hM090UN7rY/ykBP/VwKbA/9fg0ASPgGrRF7JRylpMu424c8CbvM/iMZCew2BeE21g1u6WgewJjLgWcdGH2r4GO2FPvHSUlVJJ/wXdCDweboPsB+CuiEmBVruKcbG+DJddRWe4L7aUnIHTL6/i85bNwyjQ/toS2PFBx0jp04OcMyF7PxcIeEYI1+cimH//XIo3eOESGjRWpOKJR+yWlxcg2rKTFuHDO1tTTgqC+e2Kcvp7XrQPf4RuBWtD2YRGUMtEhQhvt2+Qd7KDQuuYR8TPXhHEh/sh7pQkCR/I9ijkxiPTCINjwkLD9X6tdYhT0XtG13dweog6EDrxXjtiIM1XY+jfTYvXVmDIn/lzvEfnhMkErTu/ZXt8bGVIRC5THDASFdQTnsCnVc1OU6AH3xVKa3F9CzOCwhrJ2EpQQMc8022ltmBYu9wFF0HPDoe56mqKdNnHDeaLp8CCuf9pLMeih9csYJlAQ3GsOzX9WR044+JqbS+b/++lOZjJdFlUlONZu0F+166rX4pipAAAAFQCA2XLNDkiQ93HpAFgZmBbavTVdxQAAAgA8cpggPUORDfTcgWgcdrJCQz4bIaGKdD/KhiLu15FqF02WkBYC8xsySK8DHkS41bHiqLB8vM5Yh2FiTjpwIzpQ9QH74JSdncUMxYncEcHrlHulASQZ7fuNMFK5vK7XVY2zAjrsjP+/H3vLrEOBoiI625gpGMTLB8QILBBbkGTpQ3Ks6LSJqEQfsCHmGYUhtkIQjgWIzDyzvvAOCjKMjNpkFyEKLkUYIWajt5y8AaFW5uNeXBqk5ejV4Y4pUg67zOJt92moqK5TQWIEjL0kKM7lFMXZDZow+DQQ47q9NYPLWVAwgWGbCdvvewWkJ5+xMTbxfTZgcUmvXz1zc/yGXoeSLoL+iJKyqQgEi6Jv8a+TnnTZivoxIgWYd/uByUvsxZrMXNlc1MUTKNI5CnEz3Dprb+qHw36SXKymnhSgC2948YRTWqU9emR8qNG8EKOoisHX9EPq+Ex5/IJQh2UlSScpnt2xANtoAZuEt/P5W6Djq6UtwMyI8E6yycEP+myKR/JKnydzjtxWEQV9ytfIQQkndPCr49N3RnrVA47aoBzhUQfiLyWbYFpc/oTZRhL5X86Sm9dXDhIyaPslSM8/C0DqzfhqOw53XxROj2IAAu3Aqsg4mkSEwuPzv2PTj0KjagGIuz3J/71CpUOz+6CUWh+tCzkYC3joLYXh0v/MUVZ5JgAAAgEA9IO/Nv4zdZtHSN2RN1lEyGGi+Oi5mFS5Wjo/tsw3VM53H7HiyxVCE8mcLWT/UOEcG4uitonxTUypZGhNra7sTkbje5tuLVKF99e3W4/wV6aWwLpryeZL5BOhlnmTJsZPgTuu3A7eNnh+C45L5SW7qmXLgS8jl3CKqGdzl3XO+eB5oN8EIjWGk+VbD0iPVYobDEUOo1TCj5ZGUENw4R6lRXKsPtHDqa+iMGSUa6hQXaM13oJTI+P4Dr9WcUjqbceHT3LPoYs8dCT9rrqHDX4HGIJr9A6aV/djPVoloPgONQVfqW+xci+yUVYLp8Xdj2zC8P0NCOWiFzke1v7fFvDzs2stotAfXtLvCHje2W4rbpz6InKfbysOEc/o2ybeb2Pu9F6oIamd9qiZhCGog422YyNh1+w1sAvUCBHuF38zPHxDB2YgF4tf2K4kU++PAuZOxnsYLErZly9Nxm2uGKvgKAEgaeMEYR1jK1llRmiGPIapJZIk3cav8tLEP6MNTrjDB52D56DeLdPrgL3cUfLtGcZOJhyBTcz5W07kyGQyT7VZiqlErsg6KQxRzEda6DWNYCAMc32yj8kgEY5hCt7ei1cfyL1Wox61rrdchjGgBDxikVeUL/Sw5H8Yuh8o7j6sT1RHfui5kW5M0ykCjKMniDiOE4sBtVSHFouERamDKA0= grothoff@gnunet.org
-ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAgEArczTGb2rBEUa6mamO6jx5CILCMcF3ZWYlDOk7J0OavsqFV0bnpwKQVypW1TEXwFXgzXJvg6dKenpmWW3EPPN6S6mxxyA6O8dlBwRKLtaFQ5L1KBK1sGt9/1jN5UlyciYxoyKCpkb8RPqcb0u+uzO1o8LIiBbJc/52iiNv2FdgLIOFntWytoV63uXQ3gC1sMJWX/AgbifZpSAijYJEOOU3d1s2944EKT0ZmyC8mKm2lAq8/OoJGM0er3pD7jmd+5CLoiEQWUiOlNaJ14a1Pqv9DoqqsIsnJSrvigAX1JIdgD21BmD6nqwbzzE5SQUatC2yErRFHX0MZAJRpt+T1x56Gqt/+VUvVEB9dW0q5ZCBf18knlROjR8kXHyzbibiXk46W44oP3Uf21/MeoIEzhiXxODXMKuJnqDcxJHWN7/bHbEBDPdfucpLSChlx2F9tKRhfJhLJ/YItC9qUb800PXcAVW25un6KfRALlFSQuEhFoOCq8K5Eje5U/9RMvC0eFV/6V0bmlnDzicjC1XgBfjKL3oCvIxjZizKgrKgU+WT4Y1eT8oP2D8+HYAyYsEGhPYkMUY4Aqan+UcGJppeKA/3xFDEP/fa0Usvi1r9cMKgL3zt/23FTGCDz52cNq50sZgrkIQEUIfk4qGZi36L5GvZtGVU/oIGr7hwBmpAt/PefE= grothoff@gnunet.org
-ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxpjDxPCAVHRmn/D4u7DtR+P6DUhSOiVXUMTC7VPcBpfBzdiEjsdlME1MBvlYJ5kXUENnB/zpPGNPVj6OCk0nQLEK6nX8diaJ+U4T13EiT7+HAQjBsvil+lWIsbKzZ6CyRulkcextFgi5kd/VM7QL+oRTdrP6Pleky/MvrcUEz2W7z4vLM7SZXnkMvIN19qhEW5HTkVzi8XhPQLplWYL4QdzvL/VGsPRmFY7/lRCRp2iHgJuxBSnGT/S9HjgbC4VlsSuO+I4ee6GgR7A0WcoCFXAkxXu43IcDnceRcWSY0e6vJlg59T4QardVBfRdxmp0g7YSft+ilrBdCD3y4T68Sw== mwachs TUM key
-ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAgB78mdEOXz5qMmxtNlsazJTvMkLc9GCO1Hnp6sNvQCecsXs85aEiGHDiJsJAVH808KLqfZ5cFN5as/6JZx5bAc3WhWJFXi8oGJT3iOiPXVtdu3yPjNAN34eW18fzYGs4QkDvj6Xf/BZZmAivK/hebhlgG/knNWaOPpSzQIexqcXbDT/hkD1Izr8W/ObGA8uben2ucOM7uuKEGPQAZn901RwRanKdFIiBE6TRbXbhaR23/ygjNMmG20kRpIGriWJ95wrw8E7ZnYnAnXzzg/4GWgzf5gSGeB2LopZ474Wz1OqZsmzSONIKrQ8AI7e2R0mfnfU9NG18m2GrS5l6zuplbQNECrZf2fTROpT8fAaKqlQ0iXfFI8tZuOPT/j8hB3RlZFPsa1mdyZwzCvON/hJ9nBtLNhIuXO/QWydQ+smJxgBBdtF+q3EdEn++0RV7lJ+RrGoexNyzLDVuOQX/1HPWjQR7GzxGmbIL4IhJ4QSvrOLMMrWGZ3JwAbDgxT58WfOFWGEzdeAESCaTo/OHS3zm6K3qmyY+doa1cVrdoyPV9+L32iP1cmRQF5j6P3it6TdtxStXDjvyMd0j9wsR0+DL5Hmxt/0mjXScTuv3slwGan1gs/MaViLXY3E4zSLnHS4YkNA2DpHND475VYOEECLgZrR16zIhsl4C6FpPp3m/mdKyQ== ndurner@web.de
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDWlt7hcFgIHyvCuCw/4S+iP6TFi7aHs1RCT7FzePK4KWoxqnrTYRNhtJsAOHFXCUw8U0V884P9e7SaglCuwrxEQ77CVDDJViI0CwJd3WqB4ehJEbzZYrQmexyaJ0rKSUvL0QW0pQpDuVJswmGK/sRAoEHyTZA9L9b76RdJO0NWqx4tAZau/2AMaxpsJQ3uePeZbabNIbEWdfX+35zCg8hDJfkk13vva68y88y4cPeuNxBti0K9LunhQAWZGzB0Is5pOMzWJ21rNF9ZVXn7kwdFX9gR1DZUEnTe7byj/GbGe2NLIfLxTARUcS6sJbAKrd5xqQH2FbZFiyUU5HDGZxFkRMIPbjypF2Q5fHT8UAc7UADy548nMWUuCXkL/Ji0vpVFZgFzjPQk28v2DAN4vh/L91Gwsd+LwHkW1EKTwq1wbzjeplNc2+vu6knFNf5zhdwlW8EMTvbg8+GnWD/PJEmmY5ci6b5f5WeR8a7YW7UKrDOS1yyUHyXSQ//gXxbelgCSwJnASTU2O/7uNcMh6/c7tpQ9n532hK3t9/zp40whqFJofkJcOYsaJHF8tY54efFPQcQKiwi6U2s2FJMis5yM2+LvOvDmfpiU4DkfR2F8dkhDLnUmZ+CfyoKmRTuDXSQiW7lQPnmPiexfy6XHlen19vFHF5cSxRgClFYJmxz0Rw== bart@ranger
-ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxcmXWIGT3szxGyBDHJhORmCsAmfFYGjt3eFDPLcVgAQ26ug35zwtYT7CAeYrEzroau+7t2655Rj3TUkyZcibbhYCsst/46/Qz0beOVsS+GNtRjJu55jbaFrIxbvdidNUV4IL/cBgd/+yXiqyAD9zl3UO4l6yeCL5yXimkgsiyq2/c6LXPcdZRrwSYuJnUwqgiFIz55vOyF+kJfIc3LrbqoEBJZmxMYqxd2ymoNVaMr47/qHnries0a+/p9YBYlxoBBMIQzn+eq5XXkOsAcEkDQGpTJ46hC7JgcyKmSou+KCmilj+bL1b2L8lJt3KGFqPjShGeNx6838kMMfiLG8xVw== totakura@in.tum.de
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDCwY5XSDyXVqobwR+UfQ0+lPJTVj8MchnOYAJWNC9xvks4s7ZapBkzbpxcnCi27hb31NBtXECgMCfbDI4HuaaphgbGZjOoIWQeMLn8yHCgo7WJT0KDm4o7nODl/6drgab9XmQKhobTtrzmM+MY+MPCSXNDGRk53rM8knT+8cuPsdafEUa67mTC0p/VQJOgX0JVUF45MfVUtl1914Uot22AMHChGGg+7EMPge9QV3z5ZlP9tzXLUkw28+dkeqkXhGgAtBu2alaAy+sxiRbVHVgedOQzYCmhfQZBly8wMBvlnnTNLK023jT9FAp6j2h9/mnfGaXncElzZqkqMTXTkLe1 dold@dold-ThinkPad-T400
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCw/lnVcAoYrMhfRpr6iXlpyVWoFpbJG7sxaNmNKR6qxASNg5tI3/+yPZ/UVL6H8AjEkPhGq/4+Km22ofolNsNtsANJn94B7va8eAyPrY097MV33srTNXpylaFRH6JUq4wxgLTFnG13FQ9eyzr2NPwlJqTtosdzvn2pRfhxG5phYt0ZXPE4jozUgPhxlrWMsORHzlDyhoyYjRMvXHo/U5dXPbq0t5SIdPJnj1poJqKzB9wZGk3vgDiYNKUuWW2h9lqDqUqZa445UZH4Rib2Bll45zJYsfLNj+iqU71djKVfUoUlj8lRQXjyiDhsUgFnBMCJrEYzkCKMYznZrHUp/9NV lrn
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC9oQC+WndedWTKdjLPJGiyiOrlSStLBaLOSNLWKso3xH24MCD4ga55Tf0ZkKFCwalC/LLoftD/z0nnyxbTgoIKrtDjSycet08HL+2p/+e1Xl0kbqLYy+e7PmUdkxgBuIPMXHpFexcn0O44oCDsP9VE28GUJcjWXL/l07wvS7tvIip8sxxz0nf5AJ/Ixa+pjFbTD2ivh06KfuRJNeyxrS1yBtL7nA3LOgZahcX13WReJM6zZapO/hyX24eU+cQJqN9Hgji1qBYRqtRhFrl3/7w5fpv0pV0Dzjh75PKhThAUV8Le8X0pCTGlooMD989ToXi/m3vj9BHXx30XedEp6NM5 harsha@nautophone.net.in.tum.de
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCyWni+1l6L4tMhdhlEe5+yVv9Hr03tvtKJkmjqOpJV37gLisdxxWhfGYGNycccpqn7lZhsU1eCqnfEuhhEHZWcWUKdY3Wx8xKzBt5E2wo0Kk/oyxasLxSv542fP9HlKY0/GVXJG8wf8XkiPdOAU9aMVeDi+qrQc61SF1Zyx2I5QyfuJR72lmOdzHFyUUTT0YL/ug3+HBoHFqk8NfgOEQe/O5/Ppj6n7iUc+LOJokq6eFeg7m7uszfYpy9IWrVelPG2YxH4t4TXpKpdnRkg1asNqHrWDS/COoCx+OlIknAEVr0P2I5YlUp9dDYU6qPVO9G2PQAuv36UEVOwahaXcru9 tarabai@devegypt.com
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCRm+/pobQVbTqfosN3eahouoKmOMCAxfNM/nQT7ELJWIGlKHYAgmwiCQcYzFZvUEqqfLhIOQ6WgeLvl0sqiCkzvz2LuFHhePqQ9QmmP1zple+9GEqP86RUOarrJZTkx5HPszfn+ak1lpYLD2XoBItKUkTPL6nRNLX9mSPX+N0w7UapuM42QrAeGWv8Lv+U0idJ9akpNb4kRgW8DTeG01EM7h+Tw0iSKA8J9QKe7Sz4X/jTD2zZuCmIzK4/PhvypCcyEfn/e0E84qcPMkH2YulxSDtnSD3UkLgyI/KeW2K0HzKoyRs51x62L9xuNbFwaqVkKgU0Lx+t1II1RU2MsyCQHMR7lqFGna2j0U6aYsn/fubxgh9yiuqHEaK3MbjKlHeMOGAptyDUJXzR8lTrQFW/dF22KhA6gvb+S2uI/MEMlvS/7xLCpoOHMPr72k+R/W4bVhNfFx+msUt0PB+F/WLpuHRmPETOijNempQsspKEIexC0zVIngMXeNtH4w/ZyUa4LAsKWnaJQGm5Z5148DMMJbk0P8wTncy5F+mSngupwBs3LzPzDfdGYqUT/W5QV5yFrHJq4qYT7rf0nzNU1KsUIrpJVpul5jW5bzgJH4uUAiUpzXiTp7pZZpwCzJWvNJT2ttvYTODHxAGBcvGlM5v0UUrKgqiGvOCnTGr9H/jgTQ== cfuchs
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDEKm10NKw0pdcJRBfO3o32KdhEiRVvu34cNyiobYFFVX7wBPyeqveFD5NxuRbIibPnZh62aw9areWwlZydot3jZHHD8XqgIJH32WdvOoIqYSwtL9iPePk+yzJ4mSAgzYe1v/FmI7yGTWj42SK5gpDME7qPClmP28vJyc3TB6KkvPZFnjRTeeaVIAhdIYZCxItxiCFQcJELvmeoAhHPtM6ug2OHEOdHR12Rc+phXPCD1F87vnHyWuDvqHgcpiIFncce0kPscFsjt8o9nWzG7lH6KuMT8wIio/ybKRYCC9kVmE8gjEIh56HCL2BlOoQo//h7thVLJZJTOSwyoloNzvuv oehlmann@in.tum.de
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCZfH/w+XKNgMasTaqs6BqX8IbzA10gD4on0jsYV35CqW/wwmHEwj/7EmThY/yLnzUeNMcHFs3B11p7ZTZvlZ2WZJ5FZr/0FMoWXp5uMN9i6ykVa4D5WoO+VyxGhZEtrHb8+lAl1ekXep+gTwViKNmSiu+ogJ2f49h+losbEsLFBV0FDTUPChFYpSB3OGTuAkTuUJ6qxDsK7NpY4nXTLG3Iyke7LjCw9uTkSP8a2q2xzheXrOG8o13F8CBL7hGFc6laZG3TfmM1WheJJQ+CkY11s0sRvddEhKlB7Ru8u23Crw5cJEkHiKUOyFln3+tvyLCb5ETlbMlHxhZVPblsYN8L martin@nietzsche
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCud/+43em7FFIm81c7POZ5TwheiO2w+ZNajKn0sDTBgCd2kf1bKn3bancbYC3kp574iFVmy91NaGJY9XZ5tLHrchFZjppM3x6KVwxY3BTm5ABSmvgNYWZIM2eIbLDWFinOV2QIJrxYY6XEdIOG6ZyQ/lqyITopmvRw2tqvdnz0PaSjAQpoLwY8HxfgNSNeCTbh2xQC+UYEiMOmANJ5FjNA27ZpLPZB+RYpAFu4H5EU1uVMUwjFP8GI9AD1DcnNsVn714IhqS3U9xjB8GzYvZg/KgeniUCliUYfHdrxyNcvgcWClDvVpdy7vuYdZObiBJjs2a5AXEXUoW5AEeu6/ODBGCTL45IpHSR6wB5s2pSU3IwAxbyH6fPB0mwbijYZmHLvNtD3Ka1+dessUrVyVBHSoteWyCuhmTr0r9QUsonS4BDr808SitJ6DXWheSupckdpCWo8c+UnMkvHTXEGCU6YZVaGyZAXEIF8iO6bYLV+IJU2BnoRgWi394NHRf/OIK99Tgxwqlclautm5A6q6gSshg8rgvLgt2tj7dmIqDFdjk/foyd7BEAXMBv4QjJGOJQu0w1i4igFNw3Kg9W5pDmhRgERttjkbXeqJA4C8t90TKigLeJ+gz198tCf4XI6+YtTld5cOTpyzI9h3G3mSCIrUG1Ik7gDcibAu8uKThyEbQ== tg
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCqlkUztOQ65gRvfxI6gwkP+095eEEc5DtHzZd1x9e7AWM4yF+vK/LkQPC8Mq9fwSlN17oFFM/07CeY8LV3RQ3wck1JgDECobk6kByUtxhFpuKlViVz3sTD5KqeQHzoQXwxb5fZWuWkXs2NmalpEMCaSNDnDQdyL/PRNiWF6FsNDCSVa8hhHcSzizrF/RL0bfhzQVCSMl5RxsOQ6VEqtUNeImEyQYQ0ijlk/NErcHKipjVkj9Sa4DMKKztcccj8AEFYoqPoJrZ3pEg6puUiJ2UlPllQf7ba6+Z+U91kN4i3m8PwcuuUh5ky3cnQe2D1njUdnYg0Vamug2xrAebNSHdT supritisingh08@gmail.com
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDQ2JbS5dNBxiSRGeNIE+VvvJBUStgndjduH2HmGyy7Z7VGNrykSDgjkcLj1+808zWzkniUZTUKvH5uT4rjSYrc8Au2l65e+J6gYypaOhn7oQKW9KQ3P7K8VpHSc407iQk0fM6bmpRKcd5GK0U6mlpi3nKvPhd9JttwfeNF6HWo4goCuYXdnLmWIimP6BBg6dZRBqO0y00bjSlMJmHnlQXI3YUBvceB3tBe6hOaEx5X3pCpE9CPaAUp6pAohHv97k6Dq7OcXeJulDaHKYvEGTCOq5v3V4zSYH4tJCrAO5OL83fsoAwn70l2qy+BkuThhiud2cff/jL1gB1+oU06s42N bart@voyager
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQC4/0jIkaaWtGolhWJPijpaPA1QHeQNlaZTc3wlCr/PGnFxY/TfXMKwEFX+JBvtYAuBsD+NXshKUssFtDSSQ5ljqbjGfA1SFv7ueRcuEVfg8MSTic7crHo23afjYWC9GND0LFDwy8IGrT6QtmbOV1cACTDk3GRcFT3wK2ZsTYAlsq7o+TTfD6A2OncqQGyIrgZl+eNx3je19xQ6OK+RTOXhvsNx77IdOluNkItAS8XEJpqnrYAqrqrtX5eyzHkwmPvu/gxrjO55YuXXXj4yramy5j++SkjH1y1XXMdAl1zNsDwT4U0/bNLm/0vvMQ8qgEVOak6vq+Qw0iyIyJP6RFI/J2S/mISCGyasAWULynhFP0DaCwFkFOnn3tv+A+caoxYKUU3nD+zD2q04FaIaOastTbDfeUSseHeKX08mSHxcPd/alYKcXA+Qm9SWsHGHJ8PAMPJNOcMwtkgGDKKzKJLW6CTUIEgl9BZXs0GXv1erAYu7zqNCRU/PWIKV2J509sk65dkykDRDkHMJ1esG+2Rg094hbNHsB4uoRZjlibS/9WYEOdn1eLt2xAvMXa1Vs8RpysMfv98zJabz8+mADf5u1prLGk9zSQA7akVoFe6OLqnQBVJr1E5simMZaCqZBYbYfgTveo8xtPZw7NDcH6/xrV2j0sN2xGHfkRFpuMpnCQ== burdges@gmail.com
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC4UL53uXZCis1C9VNWJjVXTtyRHVmzFmg3vajTXrRF6LBYpEtDRA3OCtzCsj88AlL2VEtIiBWBqZrntE0TKDia1Czru3sM1ieKCra1F1GlSj4Yk+7VaRSS1hGwMBUb0zyaiIHjizGH45+zL5TXeAiGbeiF/iiRJJG/qQ+txTXVg51QLuMv9W5wKs9Dz+o+vbbUwVaauJo/TmhVz1VFjqhQBOt9N/CtaTe84B1716/d/YTZLH1bmjxMja+a6aCyABaPM5JcMNYEZT2UMCP5fTyJRUpfNlimpdRkcxaA5/K8AKTW7R35cQpLrngnnOChUB+KT6683omDr2edXGqkWNsZ grothoff@firefly
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCvbeMnZGlujN9IsLxUSTuHBUESoN6ZTXmEFi/GkBKp9RQ7xZAS84JDcV0GFddiCfTHGQL04mkeYXkof5d9NkMWjtTvQ9QFtUgGOqI3PbGCGW83vSwJHsqVbfbv5uqFCODjpTx4/WiJNkEpN/HgE2eIYFcm+Dcpo1vTgC26LjdMfqUaAGv/OTmKWmaMqyOzc4MXuUiBQT83oTfn2zSWDEOJG67yULqg5jMzaXqzPbhsaokBIPehks0bJR/q7OWNwDQJyM1oTKeRIh0ZmC0qYwGu/vlc3rYW4cp//ErAXG5iPfCXXUySUc0DTFHazzkNzUStuUwugznxuUCgbvg2tu5WEnrh/PpzIMuvNaUk2ZSDq00hHDrpVJyKKCih2d1cGV+qs9XFjDoD6Ch2NiSdPnG7fSsTxVw1SB7/APuMqfXWrQDfT5ee5xOKGzKOxQckGihQi39kmqf4WjNESOw4tmhNFZOee9dpC7ESYSpG/3zK8WG6FDln1nU6rHGjVgaSK6HwZUOsneS2fntiQZR2olzEY9+ybL1vh1fk6pkhS78X/PiwS3cSiu4q7JWJ4tUiB0T/cHAFBaODDKHXmEaGefLrPBWLLFRdjbnepWo1d0k1z/NLVovXDCGlF4IOBKqcImIffods/jTpH0hjU/vBjIQHH3Ii0J6vtGJw9whcNAGQfw== t3sserakt@posteo.de
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDRzeeUMJKn/9lY8FJIuU6HuQpWZozerTtbgsoGUNW0n0P/RsPYMQjweURDlJyKQisSZt+xRzRorSr0j9P016L8N13wGR9wtJwoJOi8DpwqEMxleYwPAZOu1zsA1Qty3ftNu6c3xB2wnlSPC0oZ2RYBOlxvIGtSGoNcDY43MKmsJ+IPsNpKOOS3x1J+xE7jOnQ0LHvxt4b54Sdr0uruTbHupwBbzBIxMFzS9hzEN6gL5cYp2fggZM8Qt707UlzIUuNzsU50qM6A8UJ+0Kun1GhKhK2J7T4Dok7M6m8ZtaKGexMfZwCl4luXlP/r1Kn48kXx/EtoQ/OcR23ymxZ95X+X8TB0ZdYcj17M7B+kk7OFz/2SVdJqYDqnMIOmXtAEdUsmSAmI7YxWyYOutRnEIkzQvHfW0h3D2pSA6EApR5huLOi40N5Ga3XLSBJC1yC8+qdiNE/t+5nGGxdlLvJ7VuzkwTEKQs33LNUdS4qKVBcIppZ7yUMjqJ5VzFk6xwEqGPCYcEWzYpNmzBiE/EFvwVSNV15Rknyieq7RB/gY/DNKX7yuC7lRZdEgGG6xu7l34c1ZhtIFhUGCnEtYsx5kJQFGMMP7bi/LNVnm+M7YZGp+uKgsnmWzrYw+YORzLwqBncs6N1tvwOG9DRKJ00S3JqSEDJ5FH/VDIUlWWbIgNwtAIQ== lurchi
-ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC1WzIhCxeYQzjAHvwkSN7oQ3hhakwLzrTC6fXqnGUn71sQQKe4Rb2lmcUqVepnuKx2wEw3GLev89rVBSXwneiiVHwOEPNqFJXKHV5AsQbLYBvt9qlkK0Wff71Ptc9xB+M1qDVluA/4ieLDOemXYvkcK/6fqimyIdBMSlXSs2PKQkpjkAvE3qh0c41HKlagq7Y4rHV/chs1XPWCWX19ZO2EnZoVx6KeZHouc/FoE/lC7X1FudJxSKf5ZIcy3CIiYTQsL//hb6DT/mCgssCL+NtTDDXNsYiuIlj8Oi+nCpW/GkisIeyTZpbPiokDP+r0V3T8jcMbbGCVN6Um33lG2/LR amatus@atom
+++ /dev/null
-#!@PYTHON@
-# This file is part of GNUnet.
-# (C) 2011 Christian Grothoff (and other contributing authors)
-#
-# GNUnet is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published
-# by the Free Software Foundation; either version 2, or (at your
-# option) any later version.
-#
-# GNUnet is distributed in the hope that it will be useful, but
-# WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
-# General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with GNUnet; see the file COPYING. If not, write to the
-# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
-# Boston, MA 02110-1301, USA.
-#
-# Utility module that implements safe process termination for W32.
-# For other platforms it's equivalent to Popen.kill ()
-# Requires pywin32 on W32.
-
-import sys
-import os
-import subprocess
-if os.name == 'nt':
- import win32api
- import win32process
-
-class dummyobj (object):
- pass
-
-def safe_terminate_process_by_pid (pid, code):
- if os.name == 'nt':
- p = dummyobj ()
- p._handle = win32api.OpenProcess (2 | 1024 | 8 | 32 | 16, 0, pid)
- result = safe_terminate_process (p, code)
- win32api.CloseHandle (p._handle)
- return result
- else:
- return os.kill (int (pid), SIGKILL)
-
-def safe_terminate_process (proc, code):
- if os.name == 'nt':
- cp = win32api.GetCurrentProcess ()
- result = False
- dupproc = win32api.DuplicateHandle (cp, proc._handle, cp, 2 | 1024 | 8 | 32 | 16, 0, 0)
- try:
- exitcode = win32process.GetExitCodeProcess (dupproc)
- if exitcode == 0x103:
- kernel32 = win32api.GetModuleHandle ("kernel32")
- exitprocess = win32api.GetProcAddress (kernel32, "ExitProcess")
- th, tid = win32process.CreateRemoteThread (dupproc, None, 0, exitprocess, code, 0)
- win32api.CloseHandle (th)
- result = True
- else:
- result = True
- # except failed to get exit code? failed to get module handle?
- finally:
- win32api.CloseHandle (dupproc)
- return result
- else:
- return proc.kill ()
+++ /dev/null
-#!/bin/bash
-
-###################################################################################
-# Script to clean a previous run of testbed which has crashed. This scripts kills #
-# the peers and cleans the temporary files created for those peers #
-# #
-# Author: Sree Harsha Totakura #
-###################################################################################
-
-for host in `cut -d : -f 1 < infiniband_cluster.hosts | cut -d @ -f 2`
-do
- echo "ssh --> $host"
- ssh $host 'pkill -SIGKILL gnunet; rm -rf /tmp/gnunet-pipe*; rm -rf /tmp/testbed*'
-done
+++ /dev/null
-Index: src/include/gnunet_constants.h
-===================================================================
---- src/include/gnunet_constants.h (revision 26030)
-+++ src/include/gnunet_constants.h (working copy)
-@@ -49,7 +49,7 @@
- * After how long do we consider a connection to a peer dead
- * if we don't receive messages from the peer?
- */
--#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
-+#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 5)
-
- /**
- * How long do we delay reading more from a peer after a quota violation?
-@@ -61,7 +61,7 @@
- * even if we assume that the service commonly does not
- * respond instantly (DNS, Database, etc.).
- */
--#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 10)
-+#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
-
- /**
- * How long do we delay messages to get larger packet sizes (CORKing)?
-Index: src/transport/gnunet-service-transport_neighbours.c
-===================================================================
---- src/transport/gnunet-service-transport_neighbours.c (revision 26030)
-+++ src/transport/gnunet-service-transport_neighbours.c (working copy)
-@@ -65,7 +65,7 @@
- * send 3 keepalives in each interval, so 3 messages would need to be
- * lost in a row for a disconnect).
- */
--#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
-+#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 100)
-
- /**
- * How long are we willing to wait for a response from ATS before timing out?
-Index: src/transport/gnunet-service-transport_validation.c
-===================================================================
---- src/transport/gnunet-service-transport_validation.c (revision 26030)
-+++ src/transport/gnunet-service-transport_validation.c (working copy)
-@@ -43,7 +43,7 @@
- * OTOH, we don't want to spend too much time generating PONG signatures,
- * so they must have some lifetime to reduce our CPU usage.
- */
--#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
-+#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
-
- /**
- * After how long do we expire an address in a HELLO that we just
-@@ -58,24 +58,24 @@
- * we cannot validate (because after this time we can destroy the
- * validation record).
- */
--#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
-+#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
-
- /**
- * How often do we PING an address that we have successfully validated
- * in the past but are not actively using? Should be (significantly)
- * smaller than HELLO_ADDRESS_EXPIRATION.
- */
--#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
-+#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
-
- /**
- * How often do we PING an address that we are currently using?
- */
--#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
-+#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 2)
-
- /**
- * How much delay is acceptable for sending the PING or PONG?
- */
--#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
-+#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
-
- /**
- * Size of the validation map hashmap.
-@@ -745,9 +745,9 @@
- void
- GST_validation_start (unsigned int max_fds)
- {
-- validation_next = GNUNET_TIME_absolute_get();
-- validation_delay.rel_value = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value) / max_fds;
-- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Delay between validations: %u ms\n ", validation_delay.rel_value);
-+ validation_next = GNUNET_TIME_absolute_get();
-+ validation_delay.rel_value = GNUNET_TIME_UNIT_MILLISECONDS.rel_value;
-+ GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Delay between validations: %u ms\n ", validation_delay.rel_value);
- validation_map = GNUNET_CONTAINER_multihashmap_create (VALIDATION_MAP_SIZE,
- GNUNET_NO);
- pnc = GNUNET_PEERINFO_notify (GST_cfg, &process_peerinfo_hello, NULL);
+++ /dev/null
-#!/bin/sh
-
-svn up -r26032
-svn up -r26167 src/nse/
-svn up -r26079 src/include/gnunet_helper_lib.h src/util/helper.c
-svn up -r26219 src/include/gnunet_protocols.h
-svn up src/include/gnunet_testbed_service.h src/testbed/ src/regex/ src/dht/
-svn up contrib
-svn up configure.ac
+++ /dev/null
-diff -ru indent-gnunet/doc/Makefile.am indent-texi2html5/doc/Makefile.am
---- indent-gnunet/doc/Makefile.am 2008-04-14 20:31:19.000000000 +0200
-+++ indent-texi2html5/doc/Makefile.am 2011-08-22 20:24:26.979782439 +0200
-@@ -34,14 +34,14 @@
- html-split: @PACKAGE@_toc.html
-
- @PACKAGE@.html: version.texi $(@PACKAGE@_TEXINFOS)
-- $(TEXI2HTML) -expandinfo -number -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
-+ $(TEXI2HTML) -expandinfo -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
-
- @PACKAGE@_toc.html: version.texi $(@PACKAGE@_TEXINFOS)
- case "$(TEXI2HTML)" in \
- *"/missing texi2html") \
-- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
-+ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
- *) $(RM) @PACKAGE@_*.html ; \
-- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
-+ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
- esac
-
- install-html-monolithic: @PACKAGE@.html
-diff -ru indent-gnunet/doc/Makefile.in indent-texi2html5/doc/Makefile.in
---- indent-gnunet/doc/Makefile.in 2010-01-31 17:25:21.000000000 +0100
-+++ indent-texi2html5/doc/Makefile.in 2011-08-22 20:24:41.376449156 +0200
-@@ -663,14 +663,14 @@
- html-split: @PACKAGE@_toc.html
-
- @PACKAGE@.html: version.texi $(@PACKAGE@_TEXINFOS)
-- $(TEXI2HTML) -expandinfo -number -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
-+ $(TEXI2HTML) -expandinfo -monolithic `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi`
-
- @PACKAGE@_toc.html: version.texi $(@PACKAGE@_TEXINFOS)
- case "$(TEXI2HTML)" in \
- *"/missing texi2html") \
-- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
-+ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` || exit 0 ;; \
- *) $(RM) @PACKAGE@_*.html ; \
-- $(TEXI2HTML) -expand info -number -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
-+ $(TEXI2HTML) -expand info -nomenu -split section `if test -f @PACKAGE@.texinfo; then echo @PACKAGE@.texinfo; else echo $(srcdir)/@PACKAGE@.texinfo; fi` ;; \
- esac
-
- install-html-monolithic: @PACKAGE@.html
+++ /dev/null
-;;;; hacks.el --- a few functions to help me work on the manual
-;;;; Jim Blandy <jimb@red-bean.com> --- October 1998
-;;;; -- imported from https://git.savannah.gnu.org/cgit/guile.git/tree/doc/hacks.el
-;;;; This code should be covered by the same license as GNU Guile (GPL3).
-
-(defun jh-exemplify-region (start end)
- (interactive "r")
- (save-excursion
- (save-restriction
- (narrow-to-region start end)
-
- ;; Texinfo doesn't handle tabs well.
- (untabify (point-min) (point-max))
-
- ;; Quote any characters special to texinfo.
- (goto-char (point-min))
- (while (re-search-forward "[{}@]" nil t)
- (replace-match "@\\&")))))
+++ /dev/null
-Index: src/ats/ats_api_scheduling.c
-===================================================================
---- src/ats/ats_api_scheduling.c (revision 29617)
-+++ src/ats/ats_api_scheduling.c (working copy)
-@@ -28,7 +28,7 @@
- #include "ats.h"
-
-
--#define INTERFACE_PROCESSING_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
-+#define INTERFACE_PROCESSING_INTERVALL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 1)
-
- #define NOT_FOUND 0
-
-Index: src/ats/gnunet-service-ats-solver_proportional.c
-===================================================================
---- src/ats/gnunet-service-ats-solver_proportional.c (revision 29617)
-+++ src/ats/gnunet-service-ats-solver_proportional.c (working copy)
-@@ -205,12 +205,12 @@
- *
- */
-
--#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
-+#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
- #define PREF_AGING_FACTOR 0.95
-
- #define DEFAULT_REL_PREFERENCE 1.0
- #define DEFAULT_ABS_PREFERENCE 0.0
--#define MIN_UPDATE_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
-+#define MIN_UPDATE_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
-
- /**
- * A handle for the proportional solver
-Index: src/ats/gnunet-service-ats_normalization.h
-===================================================================
---- src/ats/gnunet-service-ats_normalization.h (revision 29617)
-+++ src/ats/gnunet-service-ats_normalization.h (working copy)
-@@ -27,7 +27,7 @@
- #include "platform.h"
- #include "gnunet_ats_service.h"
-
--#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 10)
-+#define PREF_AGING_INTERVAL GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
- #define PREF_AGING_FACTOR 0.95
- #define PREF_EPSILON 0.1
-
-Index: src/include/gnunet_constants.h
-===================================================================
---- src/include/gnunet_constants.h (revision 29617)
-+++ src/include/gnunet_constants.h (working copy)
-@@ -49,7 +49,7 @@
- * After how long do we consider a connection to a peer dead
- * if we don't receive messages from the peer?
- */
--#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
-+#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 5)
-
- /**
- * How long do we delay reading more from a peer after a quota violation?
-@@ -61,7 +61,7 @@
- * even if we assume that the service commonly does not
- * respond instantly (DNS, Database, etc.).
- */
--#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 10)
-+#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
-
- /**
- * How long do we delay messages to get larger packet sizes (CORKing)?
-Index: src/transport/gnunet-service-transport_neighbours.c
-===================================================================
---- src/transport/gnunet-service-transport_neighbours.c (revision 29617)
-+++ src/transport/gnunet-service-transport_neighbours.c (working copy)
-@@ -65,7 +65,7 @@
- * send 3 keepalives in each interval, so 3 messages would need to be
- * lost in a row for a disconnect).
- */
--#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
-+#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 100)
-
- /**
- * How long are we willing to wait for a response from ATS before timing out?
-Index: src/transport/gnunet-service-transport_validation.c
-===================================================================
---- src/transport/gnunet-service-transport_validation.c (revision 29617)
-+++ src/transport/gnunet-service-transport_validation.c (working copy)
-@@ -42,7 +42,7 @@
- * OTOH, we don't want to spend too much time generating PONG signatures,
- * so they must have some lifetime to reduce our CPU usage.
- */
--#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
-+#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
-
- /**
- * After how long do we expire an address in a HELLO that we just
-@@ -57,7 +57,7 @@
- * we cannot validate (because after this time we can destroy the
- * validation record).
- */
--#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
-+#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
-
- /**
- * How often do we PING an address that we have successfully validated
-@@ -64,17 +64,17 @@
- * in the past but are not actively using? Should be (significantly)
- * smaller than HELLO_ADDRESS_EXPIRATION.
- */
--#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
-+#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
-
- /**
- * How often do we PING an address that we are currently using?
- */
--#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
-+#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 2)
-
- /**
- * How much delay is acceptable for sending the PING or PONG?
- */
--#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
-+#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
-
- /**
- * Size of the validation map hashmap.
-@@ -807,7 +807,7 @@
- */
-
- validation_next = GNUNET_TIME_absolute_get();
-- validation_delay.rel_value_us = (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT.rel_value_us) / (max_fds / 2);
-+ validation_delay.rel_value_us = GNUNET_TIME_UNIT_MILLISECONDS.rel_value_us;
- validations_fast_start_threshold = (max_fds / 2);
- validations_running = 0;
- GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Validation uses a fast start threshold of %u connections and a delay between of %s\n ",
+++ /dev/null
-Index: src/transport/gnunet-service-transport_neighbours.c
-===================================================================
---- src/transport/gnunet-service-transport_neighbours.c (revision 27335)
-+++ src/transport/gnunet-service-transport_neighbours.c (working copy)
-@@ -65,7 +65,7 @@
- * send 3 keepalives in each interval, so 3 messages would need to be
- * lost in a row for a disconnect).
- */
--#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 100)
-+#define KEEPALIVE_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 100)
-
- /**
- * How long are we willing to wait for a response from ATS before timing out?
-Index: src/transport/gnunet-service-transport_validation.c
-===================================================================
---- src/transport/gnunet-service-transport_validation.c (revision 27335)
-+++ src/transport/gnunet-service-transport_validation.c (working copy)
-@@ -42,7 +42,7 @@
- * OTOH, we don't want to spend too much time generating PONG signatures,
- * so they must have some lifetime to reduce our CPU usage.
- */
--#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 1)
-+#define PONG_SIGNATURE_LIFETIME GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 12)
-
- /**
- * After how long do we expire an address in a HELLO that we just
-@@ -57,24 +57,24 @@
- * we cannot validate (because after this time we can destroy the
- * validation record).
- */
--#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
-+#define UNVALIDATED_PING_KEEPALIVE GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 4)
-
- /**
- * How often do we PING an address that we have successfully validated
- * in the past but are not actively using? Should be (significantly)
- * smaller than HELLO_ADDRESS_EXPIRATION.
- */
--#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 15)
-+#define VALIDATED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_HOURS, 6)
-
- /**
- * How often do we PING an address that we are currently using?
- */
--#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 2)
-+#define CONNECTED_PING_FREQUENCY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 2)
-
- /**
- * How much delay is acceptable for sending the PING or PONG?
- */
--#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_SECONDS, 1)
-+#define ACCEPTABLE_PING_DELAY GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 1)
-
- /**
- * Size of the validation map hashmap.
-Index: src/include/gnunet_constants.h
-===================================================================
---- src/include/gnunet_constants.h (revision 27335)
-+++ src/include/gnunet_constants.h (working copy)
-@@ -49,7 +49,7 @@
- * After how long do we consider a connection to a peer dead
- * if we don't receive messages from the peer?
- */
--#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 5)
-+#define GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 5)
-
- /**
- * How long do we delay reading more from a peer after a quota violation?
-@@ -61,7 +61,7 @@
- * even if we assume that the service commonly does not
- * respond instantly (DNS, Database, etc.).
- */
--#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_MINUTES, 10)
-+#define GNUNET_CONSTANTS_SERVICE_TIMEOUT GNUNET_TIME_relative_multiply (GNUNET_TIME_UNIT_YEARS, 10)
-
- /**
- * How long do we delay messages to get larger packet sizes (CORKing)?
+++ /dev/null
-#!/bin/bash
-#
-# This script polls gnunet-stats repeatedly to create statistics plots.
-# Use 'collect' to collect statistics and 'plot' to plot whats been
-# collected. All plots will be written to $STATDIR as separate .png files.
-#
-# WARNING: calling 'collect' will delete all files in $STATDIR.
-#
-# Requires: gnuplot
-#
-# Note: gnuplot syntax has changed across versions. This
-# script perhaps will not produce color images with older gnuplots.
-# The script should work atleast with gnuplot 3.8k patchlevel 1.
-#
-
-SLEEP=120
-GNUNET=$HOME/
-STATDIR=$GNUNET/stats
-IMAGEVIEWER='display'
-TMP=/tmp/.gnuplot_error
-
-##########################################################################
-
-mkdir -p $STATDIR
-
-case "$1" in
- collect)
- rm -f $STATDIR/*
-
- STARTTIME=`date +%s`
- IFS=":"
-
- while true; do
- NOW=`date +%s`
- RELAT=$[$NOW-$STARTTIME]
- gnunet-statistics | while read KEY VALUE; do
- KEY=`echo $KEY | tr / .`
- # Collect stats of previous round
- if [ -e "$STATDIR/$KEY.dat" ]; then
- PREV=`tail --lines=1 "$STATDIR/$KEY.dat" | sed -e "s/.* //g"`
- else
- PREV=$VALUE
- fi
-
- # Write new stats
- echo $RELAT $VALUE >>"$STATDIR/$KEY.dat"
- echo $RELAT $PREV $VALUE >>"$STATDIR/$KEY.diff"
-
- done
- sleep $SLEEP
- done
- ;;
- plot)
- # Plot incremental
- ls -1 $STATDIR/*.dat | while read FILENAME; do
- BASENAME=`basename "$FILENAME" | sed -e "s/ *\..*//g"`
- echo "set terminal png;set output '$FILENAME.png';set title '$BASENAME - incr';plot '$FILENAME' using (\$1/60):(\$2) title '' with lines;" | nice gnuplot 2> $TMP
- EC=`cat $TMP | grep "empty" | grep "Warning" | wc -l`
- if test $EC -ge 1
- then
- rm "$FILENAME.png"
- fi
- done
-
- # Plot diff
- ls -1 $STATDIR/*.diff | while read FILENAME; do
- BASENAME=`basename "$FILENAME" | sed -e "s/ *\..*//g"`
- echo "set terminal png;set output '$FILENAME.png';set title '$BASENAME - diff';plot '$FILENAME' using (\$1/60):(\$3-\$2) title '' with lines;" | nice gnuplot 2> $TMP
- EC=`cat $TMP | grep "empty" | grep "Warning" | wc -l`
- if test $EC -ge 1
- then
- rm "$FILENAME.png"
- fi
-
- done
- ;;
- view)
- $IMAGEVIEWER $STATDIR/*.png
- ;;
- *)
- echo $"Usage: $0 {collect|plot|view}"
- exit 1
-
-esac
-
-
--- /dev/null
+<?php
+
+$path='log';
+$lines = array();
+$peers = array();
+$comps = array();
+$ajax = FALSE;
+$colors = array('#F00', '#F80', '#FF0',
+ '#4F0', '#0A0',
+ '#22F', '#ADF', '#0FF', '#F0F', '#508', '#FAA',
+ '#FFF', '#AAA', '#666', '#222');
+
+function render_row ($d, $component, $pid, $level, $msg, $c)
+{
+ global $ajax;
+ global $peers;
+ if (!$ajax && $level == "DEBUG")
+ return;
+
+ list($comp,$peer) = explode (',', preg_replace ('/(.*)-(\d*)/', '\1,\2', $component));
+ $peer = array_key_exists ($peer, $peers) ? $peers[$peer] : $peer;
+ $date = $d ? $d->format('Y-m-d'). $d->format('H:i:s') : "";
+ echo "<tr class=\"$level P-$peer C-$comp\" id=\"$c\">";
+ echo "<td class=\"date\"><small>$date</td>";
+ echo '<td class="usec"><small>';
+ echo $d ? $d->format('u') : "";
+ echo '</small></td>';
+ echo "<td class=\"comp\">$comp</td><td class=\"peer\">$peer</td>";
+ echo "<td class=\"level\">$level</td><td><pre>$msg</pre></td>";
+ if ($level != "DEBUG")
+ {
+ echo '<td><div class="btn-group"><button class="btn btn-xs btn-default btn-showup"><span class="glyphicon glyphicon-chevron-up"></span></button>';
+ echo '<button class="btn btn-xs btn-default btn-showdown"><span class="glyphicon glyphicon-chevron-down"></span></button></div></td>';
+ }
+ else
+ echo '<td></td>';
+ echo '</tr>';
+}
+
+function render_rows ()
+{
+ global $lines;
+ foreach ($lines as $line) {
+ render_row ($line[0], $line[1], $line[2], $line[3], $line[4], $line[5]);
+ }
+}
+
+function process ($line, $c)
+{
+ global $lines;
+ global $peers;
+ global $comps;
+ $a = explode (' ', $line);
+ if (count($a) < 6)
+ return;
+ $date = DateTime::createFromFormat ("M d H:i:s-u", implode (' ', array_slice ($a, 0, 3)));
+ $component = $a[3];
+ $level = $a[4];
+ $msg = implode (' ', array_slice ($a, 5));
+
+ if (FALSE !== strpos($line, "STARTING SERVICE")) {
+ $id = preg_replace ("/.*\[(....)\].*\n/", '\1', $line);
+ $pid = preg_replace ("/.*[a-z-]*-([0-9]*).*\n/", '\1', $line);
+ $peers[$pid] = $id;
+ }
+
+ $lines[] = array ($date, $component, 0, $level, $msg, $c);
+ $comp = preg_replace ('/(.*)-\d*/', '\1', $component);
+ $comps[$comp] = 1;
+}
+
+if (array_key_exists ('a', $_GET)) {
+ $start = (int)$_GET['a'];
+ $ajax= TRUE;
+}
+else
+{
+ $start = null;
+}
+if (array_key_exists ('z', $_GET)) {
+ $stop = (int)$_GET['z'];
+ $ajax= TRUE;
+}
+else
+{
+ $stop = null;
+}
+$t0 = microtime(true);
+$handle = @fopen($path, 'r');
+if ($handle) {
+ $c = 0;
+ while (($line = fgets($handle)) !== false) {
+ if (!$start || $c >= $start) {
+ process ($line, $c);
+ }
+ $c++;
+ if ($stop && $c > $stop)
+ break;
+ }
+} else {
+ echo "<div class=\"alert alert-danger\">Error opening file $path.</div>";
+}
+
+$t1 = microtime(true);
+/* Ajax request: don't render container HTML, just table rows. */
+if ($start !== null || $stop !== null) {
+ render_rows();
+ die();
+}
+// echo $t1-$t0;
+ksort($peers);
+ksort($comps);
+?>
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+
+ <title>GNUnet log view</title>
+
+ <!-- Latest compiled and minified Bootstrap CSS -->
+ <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css">
+ <!-- Optional theme -->
+ <link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap-theme.min.css">
+
+ <style>
+ body {
+ font-family: arial,sans-serif;
+ }
+ table {
+ color:#000;
+ margin-top: 40px;
+ font-size:12px;
+ border-collapse:collapse;
+ }
+ pre {
+ padding: 0px;
+ margin: 0px;
+ border: 0px;
+ background-color: transparent;
+ }
+ .alert {
+ display: none;
+ position: fixed;
+ width: 75%;
+ left: 50%;
+ margin: 5% 0 0 -37.5%;
+ }
+ .btn-toolbar {
+ position: fixed;
+ top: 0px;
+ }
+ .btn-xs {
+ font-size: 9px;
+ padding: 0 5px;
+ }
+ .level {
+ display: none;
+ }
+ .DEBUG {
+ background-color:#CCC;
+ }
+ .WARNING {
+ background-color:#EB9316;
+ }
+ .ERROR {
+ background-color:#D2322D;
+ }
+ .btn-group {
+ min-width: 48px;
+ }
+ table.table tbody tr td,
+ table.table tbody th td {
+ padding: 0px 0px 0px 2px;
+ margin-bottom: 0px;
+ }
+<?php
+ $c = 0;
+ foreach ($peers as $peer) {
+ echo "table.table tbody tr.P-$peer td.peer {\n";
+ echo ' background-color: ' . $colors[$c] . ";\n";
+ echo "}\n";
+ echo "#P-$peer { color: " . $colors[$c++] . "}\n";
+ } ?>
+ </style>
+</head>
+
+
+<body>
+<div class="btn-toolbar" role="toolbar">
+ <div class="btn-group">
+ <button id="ERROR" class="btn btn-danger btn-showlevel"><span class="glyphicon glyphicon-fire"></span> Error</button>
+ <button id="WARNING" class="btn btn-warning btn-showlevel"><span class="glyphicon glyphicon-exclamation-sign"></span> Warning</button>
+ <button id="INFO" class="btn btn-default btn-showlevel active"><span class="glyphicon glyphicon glyphicon-info-sign"></span> Info</button>
+ <button id="DEBUG" class="btn btn-primary btn-showlevel"><span class="glyphicon glyphicon glyphicon-wrench"></span> Debug</button>
+ </div>
+ <div id="btn-showpeer" class="btn-group">
+ <?php foreach($peers as $pid=>$id): ?>
+ <button id="P-<?php echo $id ?>" class="btn btn-default btn-element active"><?php echo $id ?></button>
+ <?php endforeach ?>
+ <button class="btn btn-default btn-showall">All</button>
+ <button class="btn btn-default btn-shownone">None</button>
+ </div>
+ <div id="btn-showcomp" class="btn-group">
+ <?php foreach($comps as $c=>$one): ?>
+ <button id="C-<?php echo $c ?>" class="btn btn-default btn-element active"><?php echo $c ?></button>
+ <?php endforeach ?>
+ <button class="btn btn-default btn-showall">All</button>
+ <button class="btn btn-default btn-shownone">None</button>
+ </div>
+</div>
+<div id="msg" class="alert alert-success"></div>
+<table class="table">
+ <thead>
+ <tr>
+ <th>Date Time</th>
+ <th>uSec</th>
+ <th>Comp</th>
+ <th>Peer</th>
+ <th class="level">Level</th>
+ <th>Message</th>
+ <th></th>
+ </tr>
+ </thead>
+ <tbody>
+<?php render_rows(); ?>
+ </tbody>default
+</table>
+<p>Processed in <?php echo $t1-$t0; ?> seconds.</p>
+<p>Rendered in <?php echo microtime(true)-$t1; ?> seconds.</p>
+ <!-- jQuery -->
+ <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
+ <!-- Latest compiled and minified Bootstrap JavaScript -->
+ <script src="//netdna.bootstrapcdn.com/bootstrap/3.1.0/js/bootstrap.min.js"></script>
+
+ <script>
+
+ var types = ["ERROR", "WARNING", "INFO", "DEBUG"];
+ var peers = {<?php foreach($peers as $pid=>$id) echo "'$pid': '$id', "; ?>};
+ var msg_timeout;
+
+ function msg (content)
+ {
+ $("#msg").html(content);
+ $("#msg").stop(true);
+ $("#msg").fadeTo(100, 1).fadeTo(3000, 0.90).fadeOut(1000);
+ }
+
+ function showlevel (level)
+ {
+ $("tbody > tr").hide();
+ $(".btn-showlevel").removeClass("active");
+ $("#"+level).addClass("active");
+ for (var index = 0; index < types.length; ++index) {
+ $("#btn-showpeer > .btn-element.active").each(function(){
+ var peer = this.id;
+ $("#btn-showcomp > .btn-element.active").each(function(){
+ $("."+types[index]+"."+peer+"."+this.id).show();
+ });
+ });
+ if (types[index] == level)
+ return;
+ }
+ }
+
+ function shownone(btn)
+ {
+ $(btn).parents(".btn-group").children(".btn-element.active").each(function(){$(this).click()});
+ }
+
+ function showall(btn)
+ {
+ $(btn).parents(".btn-group").children(".btn-element:not(.active)").each(function(){$(this).click()});
+ }
+
+ function showpeer (peer)
+ {
+ $("#"+peer).toggleClass("active");
+ if ($("#"+peer).hasClass("active")) {
+ $("#btn-showcomp > .btn-element.active").each(function(){
+ for (var index = 0; index < types.length; ++index) {
+ var className = "." + types[index] + "." + peer + "." + this.id;
+ $(className).show();
+ if ($("#"+types[index]).hasClass("active"))
+ return;
+ }
+ });
+ } else {
+ $("."+peer).hide();
+ }
+ }
+
+ function showcomp (comp)
+ {
+ $("#"+comp).toggleClass("active");
+ if ($("#"+comp).hasClass("active")) {
+ $("#btn-showpeer > .btn-element.active").each(function(){
+ for (var index = 0; index < types.length; ++index) {
+ var className = "." + types[index] + "." + comp + "." + this.id;
+ $(className).show();
+ if ($("#"+types[index]).hasClass("active"))
+ return;
+ }
+ });
+ } else {
+ $("."+comp).hide();
+ }
+ }
+
+ function load_debug (btn, up)
+ {
+ var tr = $(btn).parents("tr");
+ var level;
+ var pos = parseInt(tr.attr("id"));
+ var first = pos + 1;
+ var last = pos - 1;
+ for (var index = 0; index < types.length; ++index) {
+ if (tr.hasClass(types[index]))
+ {
+ level = types[index];
+ break;
+ }
+ }
+ if (up) {
+ if (parseInt(tr.prev().attr("id")) == last) {
+ msg ("Already loaded");
+ return;
+ }
+ first = parseInt(tr.prevAll("."+level).first().attr("id")) + 1;
+ first = isNaN(first) ? 0 : first;
+ } else {
+ if (parseInt(tr.next().attr("id")) == first) {
+ msg ("Already loaded");
+ return;
+ }
+ last = parseInt(tr.nextAll("."+level).first().attr("id")) - 1;
+ }
+ if (first > last)
+ return;
+ $.ajax({
+ url: document.location,
+ data: { a: first, z: last }
+ }).done(function ( resp ) {
+ var loc = $("#"+(first-1));
+ var trs = $(resp);
+ for (var peer in peers) {
+ trs.filter(".P-"+peer).removeClass('P-'+peer).addClass('P-'+peers[peer]).find("td.peer").html(peers[peer]);
+ }
+ if (loc.length > 0)
+ loc.after(trs);
+ else {
+ $("#"+(last+1)).before(trs);
+ }
+ msg("Done loading " + (last-first+1) + " lines.");
+ });
+ //tr.nextUntil("."+tr.attr("class")).show();
+
+ }
+
+ function hide (btn)
+ {
+ var tr = $(btn).parents("tr");
+ tr.nextUntil("."+tr.attr("class")).hide();
+ }
+
+ $(function() {
+ $(".btn-showup").on ("click", function(){ load_debug(this, true) });
+ $(".btn-showdown").on ("click", function(){ load_debug(this, false) });
+ $(".btn-showlevel").on ("click", function(){ showlevel(this.id) });
+ $("#btn-showpeer > .btn-element").on ("click", function(){ showpeer(this.id) });
+ $("#btn-showcomp > .btn-element").on ("click", function(){ showcomp(this.id) });
+ $(".btn-showall").on ("click", function(){ showall(this) });
+ $(".btn-shownone").on ("click", function(){ shownone(this) });
+ });
+ </script>
+</body>
+</html>
+++ /dev/null
-#!/bin/sh
-# This script is in the public domain.
-# Converts the output of gnunet-zonewalk (DNS resolutions)
-# into a proper input for gnunet-gns-benchmark.
-
-NUM_CLIENTS=3
-# How many different groups of names should we
-# create? 1/N will be in the 'shared' group.
-
-# FILE ($1) contains results from DNS lookup; strip
-# everything but the hostnames, remove duplicates
-# and then randomize the order.
-cat $1 | awk '{print $1}' | sort | uniq | shuf > $1.tmp
-TOTAL=`cat $1.tmp | wc -l`
-GROUP_SIZE=`expr $TOTAL / \( $NUM_TYPES + 1 \)`
-
-# First group (0) is to be shared among all clients
-for i in `seq 1 $NUM_CLIENTS`
-do
- cat $1.tmp | head -n $GROUP_SIZE | awk "{print 0 \" \" \$1}" > $1.$i.tmp
-done
-
-# Second group (1) is unique per client
-OFF=0
-for i in `seq 1 $NUM_CLIENTS`
-do
- END=`expr $OFF + $GROUP_SIZE`
- cat $1.tmp | head -n $END | tail -n $GROUP_SIZE | awk "{print 1 \" \" \$1}" >> $1.$i.tmp
-# Shuffle again, so we mix the different request categories in terms of
-# when we issue the queries.
- cat $1.$i.tmp | shuf > $1.$i
- OFF="$END"
- rm $1.$i.tmp
-done
-rm $1.tmp
endif
EXTRA_DIST = \
- outdated-and-old-installation-instructions.txt
+ outdated-and-old-installation-instructions.txt
(modify-phases %standard-phases
(add-after 'unpack 'patch-bin-sh
(lambda _
- (substitute* "bootstrap"
- (("contrib/pogen.sh") "sh contrib/pogen.sh"))
(for-each (lambda (f) (chmod f #o755))
(find-files "po" ""))
#t))