catalog/INDEX010064400000000000000000000011760763417221600133350ustar00rootroot00000006360277distribution layout_version 0.8 data_model_revision 2.10 uuid af552b90-5598-11d7-a390-0060b07d54ff timestamp 1047590029 path_max 255 name_max 100 media_sequence_number 1 product tag NRPE data_model_revision 2.10 instance_id 1 control_directory NRPE revision 1.8 title "NRPE 1.8" timestamp 1047590029 directory / architecture HP-UX_10.20_700/800 machine_type 9000/[78]* os_name HP-UX os_release ?.10.* os_version ? all_filesets NRPE is_locatable false vendor tag Benny title "bennyvision.com" end fileset tag NRPE data_model_revision 2.10 instance_id 1 control_directory NRPE size 308829 title "NRPE" timestamp 1047590029 state available catalog/dfiles/INDEX010064400000000000000000000002520763417221500146020ustar00rootroot00000006337477distribution layout_version 0.8 data_model_revision 2.10 uuid af552b90-5598-11d7-a390-0060b07d54ff timestamp 1047590029 path_max 255 name_max 100 media_sequence_number 1 catalog/dfiles/INFO010064400000000000000000000002120763417221500144450ustar00rootroot00000006341523control_file path INDEX size 170 mode 0444 mtime 1047590029 tag INDEX control_file path INFO size 198 mode 0444 mtime 1047590029 tag INFO catalog/NRPE/pfiles/INDEX010044400000000000000000000005070763417221500154240ustar00rootroot000000010134256product tag NRPE data_model_revision 2.10 instance_id 1 control_directory NRPE revision 1.8 title "NRPE 1.8" timestamp 1047590029 directory / architecture HP-UX_10.20_700/800 machine_type 9000/[78]* os_name HP-UX os_release ?.10.* os_version ? all_filesets NRPE is_locatable false vendor tag Benny title "bennyvision.com" end catalog/NRPE/pfiles/INFO010044400000000000000000000002120763417221500153020ustar00rootroot000000010134257control_file path INDEX size 327 mode 0444 mtime 1047590029 tag INDEX control_file path INFO size 198 mode 0444 mtime 1047590029 tag INFO catalog/NRPE/NRPE/INDEX010044400000000000000000000002150763417221600147140ustar00rootroot000000012164656fileset tag NRPE data_model_revision 2.10 instance_id 1 control_directory NRPE size 308829 title "NRPE" timestamp 1047590029 state available catalog/NRPE/NRPE/INFO010044400000000000000000000010050763417221600145740ustar00rootroot000000012165617control_file path INDEX size 141 mode 0444 mtime 1047590030 tag INDEX control_file path INFO size 577 mode 0444 mtime 1047590030 tag INFO file path /opt/nrpe/README type f size 6443 cksum 3174797743 mode 0555 uid 0 gid 0 owner root group root mtime 1047590487 file path /opt/nrpe/bin/check_nrpe type f size 139336 cksum 2098773143 mode 0555 uid 0 gid 0 owner root group root mtime 1047590487 file path /opt/nrpe/bin/nrpe type f size 162332 cksum 621643485 mode 0555 uid 0 gid 0 owner root group root mtime 1047590487 NRPE/NRPE/opt/nrpe/README010055500000000000000000000144530763417312700150520ustar00rootroot00000000014107*********** NRPE README *********** Purpose ------- The purpose of this addon is to allow you to execute Nagios plugins on a remote host in as transparent a manner as possible. Contents -------- There are two pieces to this addon: 1) NRPE - This program runs as a background process on the remote host and processes command execution requests from the check_nrpe plugin on the Nagios host. Upon receiving a plugin request from an authorized host, it will execute the command line associated with the command name it received and send the program output and return code back to the check_nrpe plugin 2) check_nrpe - This is a plugin that is run on the Nagios host and is used to contact the NRPE process on remote hosts. The plugin requests that a plugin be executed on the remote host and wait for the NRPE process to execute the plugin and return the result. The plugin then uses the output and return code from the plugin execution on the remote host for its own output and return code. Compiling --------- The code is very basic and may not work on your particular system without some tweaking. I just haven't put a lot of effort into this addond. Most Linux users should be able to compile NRPE and the check_nrpe plugin with the following commands... ./configure make all The binaries will be located in the src/ directory after you run 'make all' and will have to be installed manually somewhere on your system. NOTE: Since the check_nrpe plugin and nrpe daemon run on different machines (the plugin runs on the Nagios host and the daemon runs on the remote host), you will have to compile the nrpe daemon on the target machine. Installing ---------- The check_nrpe plugin should be placed on the Nagios host along with your other plugins. In most cases, this will be in the /usr/local/nagios/libexec directory. The nrpe program and the configuration file (nrpe.cfg) should be placed somewhere on the remote host. Note that you will also have to install some plugins on the remote host if you want to make much use of this addon. Running Under INETD or XINETD ----------------------------- If you plan on running nrpe under inetd or xinetd and making use of TCP wrappers, you need to do the following things: 1) Add a line to your /etc/services file as follows (modify the port number as you see fit) nrpe 5666/tcp # NRPE 2) Add entries for the NRPE daemon to either your inetd or xinetd configuration files. Which one your use will depend on which superserver is installed on your system. Both methods are described below. NOTE: If you run nrpe under inetd or xinetd, the server_port and allowed_hosts variables in the nrpe configuration file are ignored. ***** INETD ***** If your system uses the inetd superserver, add an entry to /etc/inetd.conf as follows: nrpe stream tcp nowait /usr/sbin/tcpd -c --inetd - Replace with the name of the user that the nrpe server should run as. Example: nagios - Replace with the path to the nrpe binary on your system. Example: /usr/local/nagios/nrpe - Replace with the path to the nrpe config file on your system. Example: /usr/local/nagios/nrpe.cfg ***** XINETD ***** If your system uses xinetd instead of inetd, you'll probably want to create a file called 'nrpe' in your /etc/xinetd.d directory that contains the following entries: # default: on # description: NRPE service nrpe { flags = REUSE socket_type = stream wait = no user = server = server_args = -c --inetd log_on_failure += USERID disable = no only_from = ... } - Replace with the name of the user that the nrpe server should run as. - Replace with the path to the nrpe binary on your system. - Replace with the path to the nrpe config file on your system. - Replace the fields with the IP addresses of hosts which are allowed to connect to the NRPE daemon. This only works if xinetd was compiled with support for wrappers. 3) Restart inetd or xinetd will the following command (pick the on that is appropriate for your system: /etc/rc.d/init.d/inet restart /etc/rc.d/init.d/xinetd restart 4) Add entries to your /etc/hosts.allow and /etc/hosts.deny file to enable TCP wrapper protection for the nrpe service. This is optional, although highly recommended. Configuring Things On The Nagios Host --------------------------------------- Examples for configuring the nrpe daemon are found in the sample nrpe.cfg file included in this distribution. That config file resides on the remote host(s) along with the nrpe daemon. The check_nrpe plugin gets installed on the Nagios host. In order to use the check_nrpe plugin from within Nagios, you'll have to define a few things in the host config file. An example command definition for the check_nrpe plugin would look like this: define command{ command_name check_nrpe command_line /usr/local/nagios/libexec/check_nrpe -H $HOSTADDRESS$ -c $ARG1$ } In any service definitions that use the nrpe plugin/daemon to get their results, you would set the service check command portion of the definition to something like this (sample service definition is simplified for this example): define service{ host_name someremotehost service_description someremoteservice check_command check_nrpe!yourcommand ... etc ... } where "yourcommand" is a name of a command that you define in your nrpe.cfg file on the remote host (see the docs in the sample nrpe.cfg file for more information). Questions? ---------- If you have questions about this addon, or problems getting things working, first try searching the nagios-users mailing list archives. Details on searching the list archives can be found at http://www.nagios.org If all else fails, you can email me and I'll try and respond as soon as I get a chance. -- Ethan Galstad (nagios@nagios.org) NRPE/NRPE/opt/nrpe/bin/check_nrpe010055500000000000000000004201100763417312700167470ustar00rootroot00000000014110@6у€Œ H@ РРќ˜+lР'ЬЬ  HGe(B”0(@€6р€ € 92453-07B10.30>pєŒ€ 92453-07A10.441џІм@Рџџџџрџџџџш@@џџџџџџџџА`HџџџџџџџџX"0LX GP'PtX Lh H,h H„X!VАШ6АШX 8oxАOxАœX Hr(hR(hиX IrRьX XrR(>(€@`>(€@<>( €@P>(€ј@јh>(&…№@№ >('…№@№>((†@„>(R@Є>QQє>HTGєGєд>IиHHGєHРY 0B”? €(@ $PRIVATE$$DLT$$PLT$ $SHLIB_DATA$$TEXT$ $SHLIB_INFO$ $DATA_START$ $MILLICODE$$LIT$$CODE$$UNWIND_START$$UNWIND$MILLICODE$$UNWIND$ $UNWIND_END$$RECOVER_START$$RECOVER$MILLICODE$ $RECOVER$ $RECOVER_END$ $PFA_COUNTER$$PFA_COUNTER_END$$DATA$ $SHORTDATA$$GLOBAL$ $SHORTBSS$$BSS$ $GDB_DEBUG$ $GDB_SYMBOLS$ $GDB_STRINGS$$ANS$$CI$00$ 08@0T@0 d6у0p @0 | @0 ” d=G t7œ0 œ @0 А @0 Ф @  €7М Œ7ќ U˜9‡Uд(6Ш0 р80 ь8#0 8+0 8G0  Ox0 4R(0 DR0 XR0 l@0 |@ 0 Œ@0 „0Ќ @0 М @0 а @0 м @0№ @0 @ Ј @  PИ8O Ф,h Ь> и9@$ Aф9O №=“ 0  (o 0 0*“<@  ќ=Г =ѓ >3  >S ,=г0 `R”0 x@( 0 d,3 8>s D>UЬ€>Р0и @Ь0ь @Ф0 @Ш0 @а t-4U$ˆ?€00 @Ф0D @Р0T@( €- Œ2ф ˜-8 Є-P А-Œ М-œ Ш-  д-Д р-Р ь-а ј. .  .h .Д (2№ 4/ @2а L/P X/„ d/Œ p/м |00 ˆ0| ”0а  1  Ќ1p И2Ь Ф2Ш а2Ф м2Р ш2М є2и  @д  2И 2„ $1” 02€ <1Р H1№ T28U,Ш?hUdC8Up?U|`CP `BЌUˆp>и0A”Ch0QЌKH lB| xB” „C BєUȘ? 0QФE№0UиL0фEШ œE№Uј8>№UИ?P0A?˜0MUиА?80$Nи А>Ј Р?˜ РCh РEШ р3и 4а 4ј 45< €3  L5| t3$ д3Р Ш3˜ ˜3< М3| X5М d5ь Є3` |6p А3d p60 ь3ќ ј4D 4Œ 0Gј0AxHˆUŒXH( <LtU˜0KШ0UЄFˆUД@Hp АE№ œM 0РJаUЬxK0UиKрUф KјU№hFp HLp TLФUќPFXU HF@U F(U (РF `Gд `Gр lG№U < H@U LЈHX РE№ РFˆ РHˆ РJа РM РKH РL0 l @ш t @р X@ € @и0 € @№0 ”MИ0 ЌN8 АM U ФN  œO(0 а @ј0 шO@0 ќ @м РMИ РNи РN8 АO( œO( АO( œO( РO@ 0 ' 0 8' 0 H'+ 0 X'; 0 h'K 0 x'[ 'p ,(8 8(Œ 0 ˆ'‡ 0 ˜'Ÿ D'А 0 Ј'Ы 0 И'у P'ј 0 Ш( 0 и(+ \(H l(€ x(œ 0 ш(Ч ˆ(и 0 ј(ы 0 (џ ”) 0 ) 0 ()#  )< 0 8)W 0 H)s Ќ)Р И)t Р)„ Ь)Ќ д)И м)Ф ф)а є)ј ќ* 0 X* 0 h*+ *D 0 x*_ 0 ˆ*{ *„ 0 ˜* 0 ќ*“ Д*М Ф*Ќ а*є р*ф №,  ,@ 0 (,S0 @R”0 L@0 X@(0 l@dџџџ>Ј ФџџџM иџџџE№ џџџE№ <џџџE№дџџџ6р˜џџџE№јџџџ>ЈДџџџE№ џџџE№ќџџџE№ŒџџџE№|џџџ>Ј№џџџE№ˆџџџ>ЈЬџџџE№Ьџџџ>Ј$џџџ>Јpџџџ>ЈИџџџ>ЈфџџџE№ LџџџE№иџџџ>Јџџџ>Ј (џџџE№,џџџ>Ј0A?˜>Ј0 8D6Г0фEШEА0 шO@O(0 ”MИM main __text_start ___stack_zero __data_startcrt0.oPA-RISC 2.0 Assembler HP92453-03UX.10.20.02 (DAVIS)mapdld ccom options = -ESlit -DA1.0 -DS1.0 -Oq02,al,ag,cn,Lm,sz,Ic,vo,lc,Mf,Po,es,rs,sp,in,vc,Pi,fa,pe,Rr,Fl,pv,pa,nf,cp,lx! -AcHPC HP92453-01 A.10.31._is_89_0L$0002L$0004L$0001 __map_dld DS$mapdlderrorC$2writestrlenitoa__exitopenreadlseekmmapclose_utssyssyserror$global$$START$$ARGV_environ _fp_status _CPU_REVISION_CPU_KEYBITS_1 _FPU_MODEL_start_mcount_clear_counters _sr4export__d_trap $UNWIND_START $UNWIND_END$RECOVER_START $RECOVER_END __dld_flags __dld_hook __dld_list __SYSTEM_ID _SYSTEM_ID _FPU_REVISIONenviron __d_trap_fptr $PFA_C_START $PFA_C_ENDerrno $$divI_10$$remI __dld_loc_etext_end $$dyncallL$C0001L$C0000L$C0054L$C0002L$C0003L$C0004L$C0005L$C0006L$C0007L$C0008L$C0009L$C0010L$C0011L$C0012L$C0013L$C0055L$C0014L$C0052L$C0015L$C0016L$C0017L$C0018L$C0019L$C0020L$C0021L$C0022L$C0023L$C0051L$C0050L$C0049L$C0048L$C0047L$C0053L$C0024L$C0031L$C0030L$C0025L$C0029L$C0026L$C0027L$C0028L$0022L$0025L$0026L$0019L$0027L$text_end0000 L$text0000$CODE$printf show_licensesocket_timeout show_help show_versionstrcmp query_string server_port server_namestrncpyalarmatoiexitprocess_argumentssendallbzeromy_tcp_connectrecvall alarm_handlersignalstrcpydisplay_license__mainL$0011L$0092L$0101L$0102L$0021L$0023 my_inet_atonisdigittime my_connectisspacestripsendrecvsleepconnectsocketgetprotobynamememcpy gethostbynameisxdigitislowerinitialized___9 __CTOR_LIST__ __DTOR_LIST____do_global_dtors__do_global_ctorsatexit_exit_dummy_decl__gcc_plt_call_exit_dummy_ref div_const$neg3$pos$neg$neg5$neg6 $pos_for_17$neg10 $neg_for_17$neg12$neg15$neg17$neg7$7$pos7$1$2$8 $neg7_shift$3$4$neg9$neg14$$divide_by_constant$$divI_2$$divI_4$$divI_8 $$divI_16$$divI_3$$divU_3$$divI_5$$divU_5$$divI_6$$divU_6 $$divU_10 $$divI_12 $$divU_12 $$divI_15 $$divU_15 $$divI_17 $$divU_17$$divI_7$$divU_7$$divI_9$$divU_9 $$divI_14 $$divU_14remI neg_denomneg_num regular_seq neg_num_2finish$$remoIdyncallUnoshlibs$$dyncall_externaletextedataend_etext_edata_end __SYSTEM_ID _fp_statusLXt„0џ?E0џ?Dœ$4H1џІг1`‡XXt„0џ?X Xt„5Xю#5Xю# ЈXt„5Xю55Xю5 Xt„5XюL5XюLŒy№$O<Аfџџџџ№ џџџџpџџџџOŒ`nЭUnЭUnЭUnЭUnЭUhХЏ/‚}smT˜gy6uy Š4 ЉХ Ђ4LЁ ˆhhЅv Р д uV]‰ж˜mTЄ'6ц!xа'Š-š/˜а іPа!xМЮ!x‚y€ћх@В ЫЦПуY“6/Р5ЬzвћhХЏоn b8rP.њѕЈUџџџџџџ(6АUџџ (@аU џџџџџџ1EАUџџ 1@иU џџџџџџ?O(Uџџ ?@рU џџџџџџNM UџџN@шU џџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџџ`џџeџџmџџtџџyџџ€џџ‰џџџџ•џџœџџЄџџГџџКџџТџџЧџџЯџџдџџйџџрџџчџџэџџѓџџљџџџџџџџџџџ(џџ1џџ?џџNџџcheck_nrpe/usr/lib/libc.1errno__dld_loc_CPU_REVISION_FPU_MODEL_SYSTEM_ID_environ_endenvironstrncpyatexitrecvmemcpyisxdigit_starttimesignalisspacegetprotobynamesocketisdigitatoiconnectexitsendprintfstrcmpalarmbzerosleepislowerstrlenstrcpygethostbynameclosemain__d_trapalarm_handler__gcc_plt_call__do_global_dtorserrnoX€ЗZырРг]СX€ЗZырРг]ЂX€ЗZырРг]ƒX€ЗZырРг]d€@"ЗZг]> Zšш—Zг]> ZšшЗZг]9 Zšш8 =€@ЗY :Zш @ЗZг@ ZZшˆЗZг] ZZшА Й€@"гZСЗY :šш€—ZгZСг@= ZšшјгZСЗZг@= Zšш гZСЗY :Zг]yаa: =г]љас: =г] ља с:ырР =€@4гZСЏBu ZZ—ZгZС ZZг]yаa: =г]љас: =г] ља с: =ырР  €@4гZЂЏBХ Zš—ZгZЂшM ZšгZЂЗY :šш}€@4ЏBeг]yшѕ—ZЗZш5€@*ЗZг@yаa Aш—Zг@yаa Aш•ЗZг]yаa AшЕ Й€@’ЗZг@] Zкг]ЙаЁ: =г] yа a: =4гY(љЋЙгZшырРЋYнгY8ј—Zг@] Zкг]ЙаЁ: =г] yа a: =4гY(љЋЙгZшырР  ЋYегY8јЗZг]Y ZкшН Й€@*ЗZг@YаA Aш…—Zг@YаA AшэЗZг]YаA Aш Й€@ шхгZС—ZшmгZС7!?џ92З pш2‹@` :ырР—Z:—НырРЗ @шZ €9 J4=?џ Ё"ш2‹@` КырР—A Ё—НырРГ @V    @A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A Н !A НЫЁРF ! !V  ырР@ЧжРжРШ“Р–РЁ тРkТ?бФ“н–РЁ тРkТ?бcrt0: errno: ERROR couldn't open ERROR reading ERROR bad magic number/system id for ERROR bad hpux aux header for (text) (bss) (data)Incorrect command line arguments supplied NRPE Plugin for Nagios Copyright (c) 1999-2003 Ethan Galstad (nagios@nagios.org) Version: %s 1.8Last Modified: %s 01-16-2003License: GPL Usage: %s -H [-p port] [-c command] [-to to_sec] Options: = The IP address of the host running the NRPE daemon [port] = The port on which the daemon is running - default is %d [command] = The name of the command that the remote daemon should run [to_sec] = Number of seconds before connection attempt times out. Default timeout is %d seconds Note: This plugin requires that you have the NRPE daemon running on the remote host. You must also have configured the daemon to associate a specific plugin command with the [command] option you are specifying here. Upon receipt of the [command] argument, the NRPE daemon will run the appropriate plugin command and send the plugin output and return code back to *this* plugin. This allows you to execute plugins on remote hosts and 'fake' the results to make Nagios think the plugin is being run locally. CHECK_NRPE: Error sending query to host. CHECK_NRPE: Error receiving data from host. CHECK_NRPE: Received 0 bytes. Are we allowed to connect to the host? CHECK_NRPE: Receive underflow - only %d bytes received (%d expected). CHECK_NRPE: No output returned from NRPE daemon. %s -H-c-p-to-h--help--license--versionCHECK_NRPE: Socket timeout after %d seconds. tcpInvalid host name '%s' Cannot map "%s" to protocol number udpSocket creation failed Connection refused by host Timeout while attempting connection Network is unreachable Connection refused or timed out 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., 675 Mass Ave, Cambridge, MA 02139, USA. ш@@KТ?б@Ё р@Ku>!Ks>) Ё т kТ?б#`(7{ 07озР ƒ+џџh#а+џџh8'y  4Ѕy„ЄEe™'y7D7%76ч7Ш+С4>#с0чр*ˆ7т4š4Й4и4ї5ˆ r‹з jƒ€bр…+џџh%№ј…+џџh%ј €(4„ш…аІњ †@аІ› †D(№А43 H?(рЈƒѓ 43 `‹ѓ z7Ч+С4>7D7%77й4ї4z#с0чр#7т4š4Й4и4ўР™+џџH8#с чр-7т ш@Р@ш@Р@цР 7тKТ?б@Ё р@@ш@Р@kТ?й7оkк?#Akй? 7Yа4kи?ш@ 84 ш@@Kк?Kй?Xш@ 4Kп? ‡р *ш@Kк? Kй? Xш@ Ш4Kз?†р rKa?йH:ш@7й?#7р4ш@ p4ш@x7к?7й?Xш@ @4#!79№4ш@ 4Ka?йш@ H:KТ>йш@Р7о?@ \\ш@РB7†р?х@B?7œр?яB?ш@Р U7344ыџUZ7П`?ыџщZЎŸ_НUш@РkТ?йoУkФ= kХ=kЦ=+џџ4&kк=9Z4kй=AY4kи=I4$ш@аkз=Q‡Ÿ$Шkм=YKк=Y7й=™ш@ 44‹ќ$ЪGг=4‚г Gд=™4‹”$вXKй=бш@@Kк=YKк=Y7й>™ш@ 4`4`‹— Gй>‡( ""ЁX6К ˜ш_YKг>ЉKд>СKж>йkг=!+џџH"№kд=)„@ 0kж=1KТ>щдпа@пŸдџдПпдŸпKн>ЙKЦ=Ykн?‘ZWKй=!kЦ?™ш@X4 C4?џƒƒ#ЊKн=1‡  RkР?‘4?џZKй=1kС?™4ш@№W4?џƒ•#ˆDKй=)‡ zKк=1‡@$"Kй=)Kг=YKЦ>бkг?™—8 kЦ?‘дП_4ш@`W4?џƒ–#8EKк=Yш@0@kУ?)+`4 Kи=!Cж?aKе=1kд?!  ЄKе>сKд>Бh%+џџ48аkи?9 Ѓ+џџKУ=Akз?14:р+џџkк?Q4=ј( kн?Y48+џџkи?‘7й?!4?џH"№kп?™\ 4kУ?qжм џ( cж?a4=(+`kн?‰4& XKж=IKм=QKТ=9Kг?akж?Aж`  •kЦ?yWkм?Ikг?akТ?ыџ-BKТ<йKЦ=KХ=KФ= ш@РOУ=#Ё7КјYш_ 4ш Kк=Y#A7Z (Yш_е4шGг= !X4: Hш_Yш§X+џџ#с7љ и4:ш_]4шKн=1+џџ С4й ш4:ш_4шEKй=)+џџ"с6љ ј4:ш_н4ш•Kк=Y !49 ј+џџ4:ш_4шhKТ=)KС>бKм=YkС?‘Z4Kй=)kм?™ш@HW4?џƒ„?eEKТ=)шеEkТ?й7оYXш@(7к?!Cп?K4pƒї 4r‹ј Cп?M4\ ?8€Д\KТ>йш@Р7о? ф р4 Р"@шв@ш@Р@ ф р4 Р"@ш’@ш@Р@ ф р4 Р"@шR@ш@Р@ ф р4 Р"@ш@ш@Р@ ф р4 Р"@шв@ш@Р@ ф р4& Р"@ш’@ш@Р@ ф р4Ž Р"@шR@ш@Р@ ф р4r Р"@ш@ш@Р@Ka?й4! <€4?џш@Р@ш@а@KТ?б@Ё р@Ku>бKs>й Ё т kТ?бKu>БKs>Й Ё т kТ?бKu>AKs>I Ё т kТ?бKu>ёKs>љ Ё т kТ?бKu?Ks?  Ё т kТ?бKu?1Ks?9 Ё т kТ?бKu?AKs?I Ё т kТ?бKu?aKs?i Ё т kТ?бKu>сKs>щ Ё т kТ?бkТ?й7оkШ?qHkФ?‘DkЧ?ykЦ?kУ?™ш@(kХ?‰+џџZGш@ Y+џџF+џџШМ @CHѓ `†b Hг h†b Hs pŽb ъ„  #Aш_U7Z  4„ hш_5Z#Aш_7Z p#Aш_7Z  #A#!7Z ш_н79 8#A#!7Z @ш_Е79 h#Aш_7Z €ш_ZŒ  Hѓ `Žb!ШHг hI#Aш_M7Z   4„ hш_-Z#Aш_7Z (#Aш_§7Z @#A4,Dш_н7Z а#Aш_Х7Z h#Aш_­7Z#A4ш_7Z ш_}Z#Aш_e7Z#Aш_M7Z#Aш_57ZИ#A ш_7Z`#A ш_7Zј#A ш_э7Z #A ш_е7Z@#A ш_Н7Zрш_­ZHг hŽb ш@@Œ  0Hѓ `†b Hг h†b Hs pŽb "`(ш_m4+џџJy ЈFш_u4ш_•Hк X+џџ7и?QS+`JyPш@(4: ШМЂH7к/ш_m4 4 +џџ44$Xkг/Zш_]kг/Y7к/1ш_mkм/)Kк?Q7й/kУ?Yш@07и?YŸ 8Hз X#A ш_§7Z(ш_=Kк?Qш€47й71Kк?Q7и?aш@PkУ?aЫœР#A 7Z€ш_4B`€ Kй?a#A 7Zрш_]4B04ƒ3€H#A Xш_-7Zpш_mKк?Qш_4ш 47Ф7Q#! 79KХ7Aш_MZ€ #A #A 7Zш_4BYш_…7Zpш_ХKк?Qш_ѕ4\KТ.йKШ?qKЧ?yKЦ?KХ?‰KФ?‘KУ?™ш@Р7о/Ku=бKs=й Ё т kТ?бKu>‘Ks>™ Ё т kТ?бkТ?йoвkЦ?aFkХ?iEkб? kа?kЯ?kЮ?!kЭ?)kЬ?1kЫ?9kЪ?AkЩ?IkШ?QkЧ?YkФ?q„Ђ@kУ?yшP4?џ+`Hй4# 4ўZш_Н4€…C``ў+џџIS4+џџ"! R" !с !С !Ё ! !a !A 6hXФ ƒ69xш_ЅHz?љ€ B€…bX4?џ Ф ™ Z4ўш_е4„шa ўHz?љш_=6€€ B€…a№4?џ Ф ™Z4ўш_m4„ш˜aўHz?љш_е5љˆ€ :€…aˆ4?џ Ф šш_E4„+џџш8h<PHz?љш_u5й€ B€…a(4?џш_э Ф š+џџ€]Ѕh< Xша4„Hz?љш_ 5Й˜‡€ Hz?љш_э5™ € +џџSшpjg `Hz?љш_­5yА€ +џџSш0jg hHz?љш_m5YШ€ (4?џjG p4„ˆ…]…Ф ƒ4KТ>йKб? Kа?KЯ?KЮ?!KЭ?)KЬ?1KЫ?9KЪ?AKЩ?IKШ?QKЧ?YKЦ?aKХ?iKФ?qKУ?yш@РOв?ш@ @KТ?б@Ё р@+џџkТ?й#A 7о€H9 Xш_Н7Zрш_н4kТ?й"с 7о€ш@6ї@KТ?Yш@Р7о?Ku?QKs?Y Ё т kТ?бKu>Ks>  Ё т kТ?бKu>aKs>i Ё т kТ?бKu>qKs>y Ё т kТ?бKu>ЁKs>Љ Ё т kТ?бkТ?й7оkХ?AEkФ?I7к?DkЧ?14 GkЦ?9Fш_ХkУ?Q7У?4gФ?ZYш@Xgг?€ Zш_UZЫœ #A Yш`7ZHK“ ZK˜ш_5Jyш_UZШœ 8#! #A Y7Zxш_@ш4Zш_u79РH˜4“€04ш_ѕ4Z‡@`(hњ#A ш_•7ZШш47й?ш_Э4 ‡€`иKa?й4мH4‚“ `#A ‚“@4Ъ‚“ X#A шj4оŠ“ X#A #A 7Zјш_ н4BH7Z0ш_ Х4B0#A 7Z€ш_ Ѕ4Bш_ •7ZАш44KТ>йKЧ?1KЦ?9KХ?AKФ?IKУ?Qш@Р7о?Ku>Ks>‰ Ё т kТ?бKu>Ks> Ё т kТ?бKu?!Ks?) Ё т kТ?бKu>QKs>Y Ё т kТ?бkТ?й7оkа?1kЯ?9OkЮ?A4`kЭ?I4 №kЬ?Q4 АkЫ?Y4 \kЪ?a7Ъ?)kШ?q7Ш?kЦ?PFkУ?™kЩ?ikЧ?ykХ?‰kФ?‘@гвcјш_]Z‡€"Ј4ˆn @4 Т03вcј€m ˆl 4 Т034 вcј4 аdјŒ€`rш_еZ‡€ ZkХ?с'СkЧ?с'С Т04:јG'СVKе?с6Г?Ёs ш}вƒјˆщ jŒ€`bш_}Z‡€ Jд…„ш_Z€ 4s?S4s?“ dE Т03швcјˆk  Ё: Т03ш] Ј„` 0 Œ€ap4ш_-Z‡€ ш вsЂ6s†hш@@ш4ш№@ш жш0жш`4ў€Г€`Kг?ш˜жs €Г€@Kд?Kг?ж” жs  tTш` …EˆГ€Kг?шX4Kд?Kе?!жs ж”  “SжЕ  ГS eE‘р iх4KТ>йKа?1KЯ?9KЮ?AKЭ?IKЬ?QKЫ?YKЪ?aKЩ?iKШ?qKЧ?yKЦ?KХ?‰KФ?‘KУ?™ш@Р7о?kТ?йoУ€ш_ЕCш4@\€@X7œ?џ |вsј‚u T†z †t Žr KТ?Y ƒ ш•b`KТ?Yш@РOУ?Ku>СKs>Щ Ё т kТ?бkТ?йoЧGkЦ? FkХ?EkУ?!4kФ?шHЄ „HГ€s`0Zf Xш_54Ÿ?З ƒ hЃ“œ7џ4?џKТ>йKЦ? KХ?KФ?KУ?!ш@РOЧ?Ku>1Ks>9 Ё т kТ?бKu=ёKs=љ Ё т kТ?бKu?Ks? Ё т kТ?бkТ?й7оkЪ?!JkЩ?)IkШ?1kЧ?9GkЦ?AZFkХ?I4kУ?YkФ?QHФш_YKa?й7к?Hш_Е4BdHг€Г`˜ ZЇ Xш_Ѕ4CŒ PIŽv Bш_E7к?Kг?Kд? “‚i@ 4ш_m4B?a„`_Oe hХ\`P\KТ>йKЪ?!KЩ?)KШ?1KЧ?9KЦ?AKХ?IKФ?QKУ?Yш@Р7о?kТ?й#A 7о€ш_M7Zј#A ш_57Zˆ#A ш_7Z #A ш_7Z  #A ш_э7Z №#A ш_е7Z x#A ш_Н7Z ј#A ш_Ѕ7Z x#A ш_7Z и#A ш_u7Z `#A ш_]7Z рKТ?Yш@Р7о?ш@ @KТ?б@Ё р@kТ?й+џџ7о€H!АkФ?Dkг?СkУ?‰H4+џџH!И (0Д†€ 8CHvыўmBS h0ДŽ€?зHvKТ?YKУ?‰ш@РOФ?Ku=сKs=щ Ё т kТ?б+џџkТ?й7о€UkФ?Tkг?СkУ?‰JЕШJЕŽП @DJ–ШJ䆈 46жШ0ДŽ€?э6ЕШu P+џџ+џџH!Ш # –ыўBS4c?џŒ`?Х+џџ+џџH!Рш_НH:SKТ?YKУ?‰ш@РOФ?+џџkТ?й7о€TkФ?Ukг?СJ”аJ”Ž€ (DJЕа4ш_MjДSKТ?Yш@РOФ?ш@ @KТ?б@Ё р@kп?ёЧжРжРJгJжРЁ цРBKТ?ё@Ё р@'*ŒX*,(@,,,,X,0,L,P,d6р888888 8 8$8$8(8@8D8D8H8H8L9€99(€9,9H€9L9€€9„<0€0<4=@€0=D=Œ==Ќ=А=Ь=а=ь=№> >>,>0>L>P>l>p>Œ>>Є?˜C4ChEЌEШEшE№F FˆH HˆJЬJаK(KHKФLMMMœMИNN8NдNиO O@Op6А 6Ш >Ј >Р 6C8 EА F H( K0 KШ M  N O( @в$Revision: 92453-07 linker linker crt0.o B.10.19 960731 $/usr/lib/dld.slERROR: mmap failed for dld"_NRPE_CHECK @к@т@ј@ъC8N KрF(H@6ШKШ>№HpF@FXH(CPFp>иK0>Р?€?? KјHX?8?PF?h6АEАO(M @и@№@р@ш@@$Н&\F›С bb…(€р УР €‚ €@“ I €@bI€ ”>Р hP4check_nrpe.c/home/benny/temp/nrpe-1.8/src/check_nrpe.cint:t1=r1;0020000000000;0017777777777;char:t2=r2;0;127;long int:t3=r1;0020000000000;0017777777777;unsigned int:t4=r1;0000000000000;0037777777777;long unsigned int:t5=r1;0000000000000;0037777777777;long long int:t6=r1;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=r1;0000000000000;01777777777777777777777;short int:t8=r8;-32768;32767;short unsigned int:t9=r9;0;65535;signed char:t10=r10;-128;127;unsigned char:t11=r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;8;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=r16;4;0;complex double:t17=r17;8;0;complex long double:t18=r18;8;0;void:t19=19packet_struct:T20=s1040packet_type:1,0,32;packet_version:1,32,32;result_code:1,64,32;buffer_length:1,96,32;buffer:21=ar1;0;1023;2,128,8192;;packet:t22=20__gnuc_va_list:t23=24=*19int8_t:t25=2uint8_t:t26=11int16_t:t27=8uint16_t:t28=9int32_t:t29=1uint32_t:t30=4intfast_t:t31=1uintfast_t:t32=4int64_t:t33=6uint64_t:t34=7intmax_t:t35=33uintmax_t:t36=34intptr_t:t37=3uintptr_t:t38=5int_least8_t:t39=2uint_least8_t:t40=11int_fast8_t:t41=1uint_fast8_t:t42=4int_least16_t:t43=8uint_least16_t:t44=9int_fast16_t:t45=1uint_fast16_t:t46=4int_least32_t:t47=1uint_least32_t:t48=4int_fast32_t:t49=1uint_fast32_t:t50=4int_least64_t:t51=33int_fast64_t:t52=33uint_least64_t:t53=34uint_fast64_t:t54=34ptr32_t:t55=30dev_t:t56=29ino_t:t57=30mode_t:t58=28nlink_t:t59=28fpos32_t:t60=29fpos64_t:t61=33fpos_t:t62=29fsblkcnt32_t:t63=30fsblkcnt64_t:t64=34fsblkcnt_t:t65=30off32_t:t66=29off64_t:t67=33off_t:t68=29fsfilcnt32_t:t69=30fsfilcnt64_t:t70=34fsfilcnt_t:t71=30blkcnt32_t:t72=29blkcnt64_t:t73=33blkcnt_t:t74=29pid_t:t75=29lwpid_t:t76=29gid_t:t77=29uid_t:t78=29tid_t:t79=29ssize_t:t80=29__site_t:t81=28__cnode_t:t82=28time_t:t83=3size_t:t84=30clock_t:t85=30key_t:t86=29__ushort:t87=9__daddr_t:t88=29__caddr_t:t89=90=*2__swblk_t:t91=29caddr_t:t92=89id_t:t93=29useconds_t:t94=30rlim32_t:t95=30rlim64_t:t96=34rlim_t:t97=30site_t:t98=81u_char:t99=11u_short:t100=9u_int:t101=4u_long:t102=5uint:t103=4ushort:t104=9ubit8:t105=11ubit16:t106=9ubit32:t107=30sbit8:t108=2sbit16:t109=8sbit32:t110=29swblk_t:t111=91daddr_t:t112=88cnode_t:t113=82physaddr_t:t114=38paddr_t:t115=5page_t:t116=37ulong_t:t117=5cnt_t:t118=27space_t:t119=30prot_t:t120=30cdno_t:t121=30use_t:t122=28_physadr:T123=s4r:124=ar1;0;0;37,0,32;;physadr:t125=126=*123_quad:T127=s8val:128=ar1;0;1;3,0,64;;quad:t129=127spu_t:t130=1cpu_t:t131=8label_t:T132=s112lbl_rp:29,0,32;lbl_sp:29,32,32;lbl_s:133=ar1;0;16;29,64,544;lbl_ss:134=ar1;0;0;29,608,32;lbl_sf:135=ar1;0;3;13,640,256;;label_t:t136=132dm_message:t137=90aid_t:t138=29sid_t:t139=75fd_mask:t140=29fd_set:T141=s256fds_bits:142=ar1;0;63;140,0,2048;;fd_set:t143=141k_off_t:t144=33k_rlim_t:t145=34k_blkcnt_t:t146=33k_fsfilcnt_t:t147=30k_fsblkcnt_t:t148=30dir_off_t:t149=29FILE:t150=151=s16__cnt:1,0,32;__ptr:152=*11,32,32;__base:152,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t153=154=s44__cnt:1,0,32;__ptr:152,32,32;__base:152,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:152,128,32;__newbase:152,160,32;__smbuf:155=ar1;0;15;11,192,128;__unused:24,320,32;;__va_list:t156=157=*13__va_list__:t158=157div_t:t159=160=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t161=162=s8quot:3,0,32;rem:3,32,32;;wchar_t:t163=4sigval:T164=u4__sival_int:1,0,32;__sival_ptr:24,0,32;;sigval_t:t165=164sigevent:T166=s12__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:165,64,32;;sigevent_t:t167=166__sigev_types:T168=eSIGEV_NONE:1,SIGEV_SIGNAL:2,;tm:T169=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T170=s8tv_sec:83,0,32;tv_nsec:3,32,32;;timestruc_t:t171=170itimerspec:T172=s16it_interval:170,0,64;it_value:170,64,64;;__clockid_t:T173=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t174=173timer_t:t175=5timeval:T176=s8tv_sec:83,0,32;tv_usec:3,32,32;;itimerval:T177=s16it_interval:176,0,64;it_value:176,64,64;;timezone:T178=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T179=s8hi:5,0,32;lo:5,32,32;;cycles_t:t180=179__fd_mask:t181=3ki_timeval:T182=s8tv_sec:3,0,32;tv_nunit:3,32,32;;rlimit:T183=s8rlim_cur:97,0,32;rlim_max:97,32,32;;rusage:T184=s76ru_utime:176,0,64;ru_stime:176,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T185=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T186=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:165,96,32;__data:187=u8__proc:188=s8__pid:75,0,32;__pdata:189=u4__kill:190=s4__uid:78,0,32;;,0,32;__SIGCLD:191=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:192=s4__addr:24,0,32;;,0,32;__file:193=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,128,64;__pad:194=ar1;0;9;1,192,320;;siginfo_t:t195=186k_siginfo_t:t196=197=s16si_code:1,0,32;si_errno:1,32,32;__data:198=u8__proc:199=s8__pid:75,0,32;__pdata:200=u4__kill:201=s4__uid:78,0,32;;,0,32;__SIGCLD:202=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:203=s4__addr:204=*92,0,32;;,0,32;__file:205=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,64,64;;__sigset_t:T206=s32sigset:207=ar1;0;7;3,0,256;;sigset_t:t208=206__fp_dbl_block:T209=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t210=209__fp_int_block:T211=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t212=211__reg64:T213=s512ss_reserved:33,0,64;ss_gr1:33,64,64;ss_rp:33,128,64;ss_gr3:33,192,64;ss_gr4:33,256,64;ss_gr5:33,320,64;ss_gr6:33,384,64;ss_gr7:33,448,64;ss_gr8:33,512,64;ss_gr9:33,576,64;ss_gr10:33,640,64;ss_gr11:33,704,64;ss_gr12:33,768,64;ss_gr13:33,832,64;ss_gr14:33,896,64;ss_gr15:33,960,64;ss_gr16:33,1024,64;ss_gr17:33,1088,64;ss_gr18:33,1152,64;ss_gr19:33,1216,64;ss_gr20:33,1280,64;ss_gr21:33,1344,64;ss_gr22:33,1408,64;ss_arg3:33,1472,64;ss_arg2:33,1536,64;ss_arg1:33,1600,64;ss_arg0:33,1664,64;ss_dp:34,1728,64;ss_ret0:34,1792,64;ss_ret1:34,1856,64;ss_sp:34,1920,64;ss_gr31:34,1984,64;ss_cr11:34,2048,64;ss_pcoq_head:34,2112,64;ss_pcsq_head:34,2176,64;ss_pcoq_tail:34,2240,64;ss_pcsq_tail:34,2304,64;ss_cr15:34,2368,64;ss_cr19:34,2432,64;ss_cr20:34,2496,64;ss_cr21:34,2560,64;ss_cr22:34,2624,64;ss_cpustate:34,2688,64;ss_sr4:34,2752,64;ss_sr0:34,2816,64;ss_sr1:34,2880,64;ss_sr2:34,2944,64;ss_sr3:34,3008,64;ss_sr5:34,3072,64;ss_sr6:34,3136,64;ss_sr7:34,3200,64;ss_cr0:34,3264,64;ss_cr8:34,3328,64;ss_cr9:34,3392,64;ss_cr10:34,3456,64;ss_cr12:34,3520,64;ss_cr13:34,3584,64;ss_cr24:34,3648,64;ss_cr25:34,3712,64;ss_cr26:34,3776,64;ss_reserved2:214=ar1;0;2;34,3840,192;ss_oldcksum:30,4032,32;ss_newcksum:30,4064,32;;__reg64_t:t215=213__reg32:T216=s512ss_reserved:217=ar1;0;1;30,0,64;ss_gr1_hi:30,64,32;ss_gr1_lo:30,96,32;ss_rp_hi:30,128,32;ss_rp_lo:30,160,32;ss_gr3_hi:30,192,32;ss_gr3_lo:30,224,32;ss_gr4_hi:30,256,32;ss_gr4_lo:30,288,32;ss_gr5_hi:30,320,32;ss_gr5_lo:30,352,32;ss_gr6_hi:30,384,32;ss_gr6_lo:30,416,32;ss_gr7_hi:30,448,32;ss_gr7_lo:30,480,32;ss_gr8_hi:30,512,32;ss_gr8_lo:30,544,32;ss_gr9_hi:30,576,32;ss_gr9_lo:30,608,32;ss_gr10_hi:30,640,32;ss_gr10_lo:30,672,32;ss_gr11_hi:30,704,32;ss_gr11_lo:30,736,32;ss_gr12_hi:30,768,32;ss_gr12_lo:30,800,32;ss_gr13_hi:30,832,32;ss_gr13_lo:30,864,32;ss_gr14_hi:30,896,32;ss_gr14_lo:30,928,32;ss_gr15_hi:30,960,32;ss_gr15_lo:30,992,32;ss_gr16_hi:30,1024,32;ss_gr16_lo:30,1056,32;ss_gr17_hi:30,1088,32;ss_gr17_lo:30,1120,32;ss_gr18_hi:30,1152,32;ss_gr18_lo:30,1184,32;ss_gr19_hi:30,1216,32;ss_gr19_lo:30,1248,32;ss_gr20_hi:30,1280,32;ss_gr20_lo:30,1312,32;ss_gr21_hi:30,1344,32;ss_gr21_lo:30,1376,32;ss_gr22_hi:30,1408,32;ss_gr22_lo:30,1440,32;ss_arg3_hi:30,1472,32;ss_arg3_lo:30,1504,32;ss_arg2_hi:30,1536,32;ss_arg2_lo:30,1568,32;ss_arg1_hi:30,1600,32;ss_arg1_lo:30,1632,32;ss_arg0_hi:30,1664,32;ss_arg0_lo:30,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;\ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_reserved2:218=ar1;0;5;4,3840,192;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t219=216__ss_narrow:T220=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_mpsfu_high:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t221=220__save_state:T222=s1152ss_flags:1,0,32;ss_narrow:221,32,1984;ss_pad:1,2016,32;ss_fpblock:223=u256fpdbl:210,0,2048;fpint:212,0,2048;;,2048,2048;ss_xor:224=ar1;0;127;2,4096,1024;ss_wide:225=u512ss_64:215,0,4096;ss_32:219,0,4096;;,5120,4096;;save_state_t:t226=222stack_t:t227=228=s12ss_sp:24,0,32;ss_flags:1,32,32;ss_size:84,64,32;;mcontext_t:t229=226__sub_ctxt:T230=s48__uc_link:231=*232=xs__ucontext:,0,32;__uc_sigmask:208,32,256;__uc_stack:227,288,96;;__ucontext:T232=s1240uc_mcontext:229,0,9216;uc_spares:233=ar1;0;7;1,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:230,9504,384;;ucontext_t:t234=232sig_atomic_t:t235=4sigaction:T236=s40__handler:237=u4__sa_sigaction:238=*239=f19,0,32;__sa_handler:240=*241=f19,0,32;;,0,32;sa_mask:208,32,256;sa_flags:1,288,32;;sigstack:T242=s8ss_sp:24,0,32;ss_onstack:1,32,32;;sigvec:T243=s12sv_handler:240,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T244=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t245=244siglocal_misc:T246=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:1,128,32;sm_rval2:1,160,32;sm_arg:247=ar1;0;3;1,192,128;;siglocal:T248=s1192sl_misc:246,0,320;sl_ss:226,320,9216;;siglocalx:T249=s1344sl_misc:246,0,320;sl_uc:234,320,9920;sl_si:195,10240,512;;__xsi:T250=s116sc:230,0,384;__padding:1,384,32;si:195,416,512;;sigcontext:T251=s1392sc_ctxt:252=u1344sl:248,0,9536;sx:249,0,10752;;,0,10752;sc_args:247,10752,128;sc_sfm:244,10880,256;; :T253=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t254=253wait:T255=u4w_status:1,0,32;w_T:256=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:257=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T258=s40arena:1,0,32;ordblks:1,32,32;smblks:1,64,32;hblks:1,96,32;hblkhd:1,128,32;usmblks:1,160,32;fsmblks:1,192,32;uordblks:1,224,32;fordblks:1,256,32;keepcost:1,288,32;;long_double:t259=260=s16word1:4,0,32;word2:4,32,32;word3:4,64,32;word4:4,96,32;;passwd:T261=s44pw_name:90,0,32;pw_passwd:90,32,32;pw_uid:78,64,32;pw_gid:77,96,32;pw_age:90,128,32;pw_comment:90,160,32;pw_gecos:90,192,32;pw_dir:90,224,32;pw_shell:90,256,32;pw_audid:29,288,32;pw_audflg:1,320,32;;s_passwd:T262=s20pw_name:90,0,32;pw_passwd:90,32,32;pw_age:90,64,32;pw_audid:29,96,32;pw_audflg:1,128,32;;utimbuf:T263=s8actime:83,0,32;modtime:83,32,32;;stat:T264=s104st_dev:56,0,32;st_ino:57,32,32;st_mode:58,64,16;st_nlink:59,80,16;st_reserved1:9,96,16;st_reserved2:9,112,16;st_rdev:56,128,32;st_size:68,160,32;st_atime:83,192,32;st_spare1:1,224,32;st_mtime:83,256,32;st_spare2:1,288,32;st_ctime:83,320,32;st_spare3:1,352,32;st_blksize:3,384,32;st_blocks:74,416,32;st_pad:4,448,30;st_acl:4,478,1;st_remote:4,479,1;st_netdev:56,480,32;st_netino:57,512,32;st_cnode:82,544,16;st_rcnode:82,560,16;st_netsite:81,576,16;st_fstype:8,592,16;st_realdev:56,608,32;st_basemode:9,640,16;st_spareshort:9,656,16;st_uid:78,672,32;st_gid:77,704,32;st_spare4:265=ar1;0;2;29,736,96;;flock:T266=s16l_type:8,0,16;l_whence:8,16,16;l_start:68,32,32;l_len:68,64,32;l_pid:75,96,32;;iovec:T267=s8iov_base:24,0,32;iov_len:84,32,32;;uio_rw:T268=eUIO_READ:1,UIO_WRITE:2,;linger:T269=s8l_onoff:1,0,32;l_linger:1,32,32;;sockaddr:T270=s16sa_family:9,0,16;sa_data:271=ar1;0;13;2,16,112;;sockproto:T272=s4sp_family:9,0,16;sp_protocol:9,16,16;;msghdr:T273=s24msg_name:92,0,32;msg_namelen:1,32,32;msg_iov:274=*267,64,32;msg_iovlen:1,96,32;msg_accrights:92,128,32;msg_accrightslen:1,160,32;;msghdr2:T275=s28msg_name:92,0,32;msg_namelen:101,32,32;msg_iov:274,64,32;msg_iovlen:101,96,32;msg_control:92,128,32;msg_controllen:101,160,32;msg_flags:1,192,32;;in_addr:T276=s4s_addr:102,0,32;;sockaddr_in:T277=s16sin_family:8,0,16;sin_port:100,16,16;sin_addr:276,32,32;sin_zero:278=ar1;0;7;2,64,64;;ip_mreq:T279=s8imr_multiaddr:276,0,32;imr_interface:276,32,32;;hostent:T280=s20h_name:90,0,32;h_aliases:281=*90,32,32;h_addrtype:1,64,32;h_length:1,96,32;h_addr_list:281,128,32;;netent:T282=s16n_name:90,0,32;n_aliases:281,32,32;n_addrtype:1,64,32;n_net:5,96,32;;servent:T283=s16s_name:90,0,32;s_aliases:281,32,32;s_port:1,64,32;s_proto:90,96,32;;protoent:T284=s12p_name:90,0,32;p_aliases:281,32,32;p_proto:1,64,32;;rpcent:T285=s12r_name:90,0,32;r_aliases:281,32,32;r_number:1,64,32;;group:T286=s16gr_name:90,0,32;gr_passwd:90,32,32;gr_gid:77,64,32;gr_mem:281,96,32;;server_port:G1query_string:G21socket_timeout:G1show_help:G1show_license:G1show_version:G1main:F1argc:P1argv:P281sd:1rc:r1result:r1send_packet:22receive_packet:22bytes_to_send:1bytes_to_recv:1process_arguments:F1argc:P1argv:P281x:r1alarm_handler:F19sig:P1server_name:G287=ar1;0;255;2utils.c/home/benny/temp/nrpe-1.8/src/utils.cint:t1=r1;0020000000000;0017777777777;char:t2=r2;0;127;long int:t3=r1;0020000000000;0017777777777;unsigned int:t4=r1;0000000000000;0037777777777;long unsigned int:t5=r1;0000000000000;0037777777777;long long int:t6=r1;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=r1;0000000000000;01777777777777777777777;short int:t8=r8;-32768;32767;short unsigned int:t9=r9;0;65535;signed char:t10=r10;-128;127;unsigned char:t11=r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;8;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=r16;4;0;complex double:t17=r17;8;0;complex long double:t18=r18;8;0;void:t19=19packet_struct:T20=s1040packet_type:1,0,32;packet_version:1,32,32;result_code:1,64,32;buffer_length:1,96,32;buffer:21=ar1;0;1023;2,128,8192;;packet:t22=20__gnuc_va_list:t23=24=*19int8_t:t25=2uint8_t:t26=11int16_t:t27=8uint16_t:t28=9int32_t:t29=1uint32_t:t30=4intfast_t:t31=1uintfast_t:t32=4int64_t:t33=6uint64_t:t34=7intmax_t:t35=33uintmax_t:t36=34intptr_t:t37=3uintptr_t:t38=5int_least8_t:t39=2uint_least8_t:t40=11int_fast8_t:t41=1uint_fast8_t:t42=4int_least16_t:t43=8uint_least16_t:t44=9int_fast16_t:t45=1uint_fast16_t:t46=4int_least32_t:t47=1uint_least32_t:t48=4int_fast32_t:t49=1uint_fast32_t:t50=4int_least64_t:t51=33int_fast64_t:t52=33uint_least64_t:t53=34uint_fast64_t:t54=34ptr32_t:t55=30dev_t:t56=29ino_t:t57=30mode_t:t58=28nlink_t:t59=28fpos32_t:t60=29fpos64_t:t61=33fpos_t:t62=29fsblkcnt32_t:t63=30fsblkcnt64_t:t64=34fsblkcnt_t:t65=30off32_t:t66=29off64_t:t67=33off_t:t68=29fsfilcnt32_t:t69=30fsfilcnt64_t:t70=34fsfilcnt_t:t71=30blkcnt32_t:t72=29blkcnt64_t:t73=33blkcnt_t:t74=29pid_t:t75=29lwpid_t:t76=29gid_t:t77=29uid_t:t78=29tid_t:t79=29ssize_t:t80=29__site_t:t81=28__cnode_t:t82=28time_t:t83=3size_t:t84=30clock_t:t85=30key_t:t86=29__ushort:t87=9__daddr_t:t88=29__caddr_t:t89=90=*2__swblk_t:t91=29caddr_t:t92=89id_t:t93=29useconds_t:t94=30rlim32_t:t95=30rlim64_t:t96=34rlim_t:t97=30site_t:t98=81u_char:t99=11u_short:t100=9u_int:t101=4u_long:t102=5uint:t103=4ushort:t104=9ubit8:t105=11ubit16:t106=9ubit32:t107=30sbit8:t108=2sbit16:t109=8sbit32:t110=29swblk_t:t111=91daddr_t:t112=88cnode_t:t113=82physaddr_t:t114=38paddr_t:t115=5page_t:t116=37ulong_t:t117=5cnt_t:t118=27space_t:t119=30prot_t:t120=30cdno_t:t121=30use_t:t122=28_physadr:T123=s4r:124=ar1;0;0;37,0,32;;physadr:t125=126=*123_quad:T127=s8val:128=ar1;0;1;3,0,64;;quad:t129=127spu_t:t130=1cpu_t:t131=8label_t:T132=s112lbl_rp:29,0,32;lbl_sp:29,32,32;lbl_s:133=ar1;0;16;29,64,544;lbl_ss:134=ar1;0;0;29,608,32;lbl_sf:135=ar1;0;3;13,640,256;;label_t:t136=132dm_message:t137=90aid_t:t138=29sid_t:t139=75fd_mask:t140=29fd_set:T141=s256fds_bits:142=ar1;0;63;140,0,2048;;fd_set:t143=141k_off_t:t144=33k_rlim_t:t145=34k_blkcnt_t:t146=33k_fsfilcnt_t:t147=30k_fsblkcnt_t:t148=30dir_off_t:t149=29FILE:t150=151=s16__cnt:1,0,32;__ptr:152=*11,32,32;__base:152,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t153=154=s44__cnt:1,0,32;__ptr:152,32,32;__base:152,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:152,128,32;__newbase:152,160,32;__smbuf:155=ar1;0;15;11,192,128;__unused:24,320,32;;__va_list:t156=157=*13__va_list__:t158=157div_t:t159=160=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t161=162=s8quot:3,0,32;rem:3,32,32;;wchar_t:t163=4sigval:T164=u4__sival_int:1,0,32;__sival_ptr:24,0,32;;sigval_t:t165=164sigevent:T166=s12__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:165,64,32;;sigevent_t:t167=166__sigev_types:T168=eSIGEV_NONE:1,SIGEV_SIGNAL:2,;tm:T169=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T170=s8tv_sec:83,0,32;tv_nsec:3,32,32;;timestruc_t:t171=170itimerspec:T172=s16it_interval:170,0,64;it_value:170,64,64;;__clockid_t:T173=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t174=173timer_t:t175=5timeval:T176=s8tv_sec:83,0,32;tv_usec:3,32,32;;itimerval:T177=s16it_interval:176,0,64;it_value:176,64,64;;timezone:T178=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T179=s8hi:5,0,32;lo:5,32,32;;cycles_t:t180=179__fd_mask:t181=3ki_timeval:T182=s8tv_sec:3,0,32;tv_nunit:3,32,32;;rlimit:T183=s8rlim_cur:97,0,32;rlim_max:97,32,32;;rusage:T184=s76ru_utime:176,0,64;ru_stime:176,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T185=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T186=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:165,96,32;__data:187=u8__proc:188=s8__pid:75,0,32;__pdata:189=u4__kill:190=s4__uid:78,0,32;;,0,32;__SIGCLD:191=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:192=s4__addr:24,0,32;;,0,32;__file:193=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,128,64;__pad:194=ar1;0;9;1,192,320;;siginfo_t:t195=186k_siginfo_t:t196=197=s16si_code:1,0,32;si_errno:1,32,32;__data:198=u8__proc:199=s8__pid:75,0,32;__pdata:200=u4__kill:201=s4__uid:78,0,32;;,0,32;__SIGCLD:202=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:203=s4__addr:204=*92,0,32;;,0,32;__file:205=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,64,64;;__sigset_t:T206=s32sigset:207=ar1;0;7;3,0,256;;sigset_t:t208=206__fp_dbl_block:T209=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t210=209__fp_int_block:T211=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t212=211__reg64:T213=s512ss_reserved:33,0,64;ss_gr1:33,64,64;ss_rp:33,128,64;ss_gr3:33,192,64;ss_gr4:33,256,64;ss_gr5:33,320,64;ss_gr6:33,384,64;ss_gr7:33,448,64;ss_gr8:33,512,64;ss_gr9:33,576,64;ss_gr10:33,640,64;ss_gr11:33,704,64;ss_gr12:33,768,64;ss_gr13:33,832,64;ss_gr14:33,896,64;ss_gr15:33,960,64;ss_gr16:33,1024,64;ss_gr17:33,1088,64;ss_gr18:33,1152,64;ss_gr19:33,1216,64;ss_gr20:33,1280,64;ss_gr21:33,1344,64;ss_gr22:33,1408,64;ss_arg3:33,1472,64;ss_arg2:33,1536,64;ss_arg1:33,1600,64;ss_arg0:33,1664,64;ss_dp:34,1728,64;ss_ret0:34,1792,64;ss_ret1:34,1856,64;ss_sp:34,1920,64;ss_gr31:34,1984,64;ss_cr11:34,2048,64;ss_pcoq_head:34,2112,64;ss_pcsq_head:34,2176,64;ss_pcoq_tail:34,2240,64;ss_pcsq_tail:34,2304,64;ss_cr15:34,2368,64;ss_cr19:34,2432,64;ss_cr20:34,2496,64;ss_cr21:34,2560,64;ss_cr22:34,2624,64;ss_cpustate:34,2688,64;ss_sr4:34,2752,64;ss_sr0:34,2816,64;ss_sr1:34,2880,64;ss_sr2:34,2944,64;ss_sr3:34,3008,64;ss_sr5:34,3072,64;ss_sr6:34,3136,64;ss_sr7:34,3200,64;ss_cr0:34,3264,64;ss_cr8:34,3328,64;ss_cr9:34,3392,64;ss_cr10:34,3456,64;ss_cr12:34,3520,64;ss_cr13:34,3584,64;ss_cr24:34,3648,64;ss_cr25:34,3712,64;ss_cr26:34,3776,64;ss_reserved2:214=ar1;0;2;34,3840,192;ss_oldcksum:30,4032,32;ss_newcksum:30,4064,32;;__reg64_t:t215=213__reg32:T216=s512ss_reserved:217=ar1;0;1;30,0,64;ss_gr1_hi:30,64,32;ss_gr1_lo:30,96,32;ss_rp_hi:30,128,32;ss_rp_lo:30,160,32;ss_gr3_hi:30,192,32;ss_gr3_lo:30,224,32;ss_gr4_hi:30,256,32;ss_gr4_lo:30,288,32;ss_gr5_hi:30,320,32;ss_gr5_lo:30,352,32;ss_gr6_hi:30,384,32;ss_gr6_lo:30,416,32;ss_gr7_hi:30,448,32;ss_gr7_lo:30,480,32;ss_gr8_hi:30,512,32;ss_gr8_lo:30,544,32;ss_gr9_hi:30,576,32;ss_gr9_lo:30,608,32;ss_gr10_hi:30,640,32;ss_gr10_lo:30,672,32;ss_gr11_hi:30,704,32;ss_gr11_lo:30,736,32;ss_gr12_hi:30,768,32;ss_gr12_lo:30,800,32;ss_gr13_hi:30,832,32;ss_gr13_lo:30,864,32;ss_gr14_hi:30,896,32;ss_gr14_lo:30,928,32;ss_gr15_hi:30,960,32;ss_gr15_lo:30,992,32;ss_gr16_hi:30,1024,32;ss_gr16_lo:30,1056,32;ss_gr17_hi:30,1088,32;ss_gr17_lo:30,1120,32;ss_gr18_hi:30,1152,32;ss_gr18_lo:30,1184,32;ss_gr19_hi:30,1216,32;ss_gr19_lo:30,1248,32;ss_gr20_hi:30,1280,32;ss_gr20_lo:30,1312,32;ss_gr21_hi:30,1344,32;ss_gr21_lo:30,1376,32;ss_gr22_hi:30,1408,32;ss_gr22_lo:30,1440,32;ss_arg3_hi:30,1472,32;ss_arg3_lo:30,1504,32;ss_arg2_hi:30,1536,32;ss_arg2_lo:30,1568,32;ss_arg1_hi:30,1600,32;ss_arg1_lo:30,1632,32;ss_arg0_hi:30,1664,32;ss_arg0_lo:30,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;\ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_reserved2:218=ar1;0;5;4,3840,192;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t219=216__ss_narrow:T220=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_mpsfu_high:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t221=220__save_state:T222=s1152ss_flags:1,0,32;ss_narrow:221,32,1984;ss_pad:1,2016,32;ss_fpblock:223=u256fpdbl:210,0,2048;fpint:212,0,2048;;,2048,2048;ss_xor:224=ar1;0;127;2,4096,1024;ss_wide:225=u512ss_64:215,0,4096;ss_32:219,0,4096;;,5120,4096;;save_state_t:t226=222stack_t:t227=228=s12ss_sp:24,0,32;ss_flags:1,32,32;ss_size:84,64,32;;mcontext_t:t229=226__sub_ctxt:T230=s48__uc_link:231=*232=xs__ucontext:,0,32;__uc_sigmask:208,32,256;__uc_stack:227,288,96;;__ucontext:T232=s1240uc_mcontext:229,0,9216;uc_spares:233=ar1;0;7;1,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:230,9504,384;;ucontext_t:t234=232sig_atomic_t:t235=4sigaction:T236=s40__handler:237=u4__sa_sigaction:238=*239=f19,0,32;__sa_handler:240=*241=f19,0,32;;,0,32;sa_mask:208,32,256;sa_flags:1,288,32;;sigstack:T242=s8ss_sp:24,0,32;ss_onstack:1,32,32;;sigvec:T243=s12sv_handler:240,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T244=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t245=244siglocal_misc:T246=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:1,128,32;sm_rval2:1,160,32;sm_arg:247=ar1;0;3;1,192,128;;siglocal:T248=s1192sl_misc:246,0,320;sl_ss:226,320,9216;;siglocalx:T249=s1344sl_misc:246,0,320;sl_uc:234,320,9920;sl_si:195,10240,512;;__xsi:T250=s116sc:230,0,384;__padding:1,384,32;si:195,416,512;;sigcontext:T251=s1392sc_ctxt:252=u1344sl:248,0,9536;sx:249,0,10752;;,0,10752;sc_args:247,10752,128;sc_sfm:244,10880,256;; :T253=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t254=253wait:T255=u4w_status:1,0,32;w_T:256=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:257=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T258=s40arena:1,0,32;ordblks:1,32,32;smblks:1,64,32;hblks:1,96,32;hblkhd:1,128,32;usmblks:1,160,32;fsmblks:1,192,32;uordblks:1,224,32;fordblks:1,256,32;keepcost:1,288,32;;long_double:t259=260=s16word1:4,0,32;word2:4,32,32;word3:4,64,32;word4:4,96,32;;passwd:T261=s44pw_name:90,0,32;pw_passwd:90,32,32;pw_uid:78,64,32;pw_gid:77,96,32;pw_age:90,128,32;pw_comment:90,160,32;pw_gecos:90,192,32;pw_dir:90,224,32;pw_shell:90,256,32;pw_audid:29,288,32;pw_audflg:1,320,32;;s_passwd:T262=s20pw_name:90,0,32;pw_passwd:90,32,32;pw_age:90,64,32;pw_audid:29,96,32;pw_audflg:1,128,32;;utimbuf:T263=s8actime:83,0,32;modtime:83,32,32;;stat:T264=s104st_dev:56,0,32;st_ino:57,32,32;st_mode:58,64,16;st_nlink:59,80,16;st_reserved1:9,96,16;st_reserved2:9,112,16;st_rdev:56,128,32;st_size:68,160,32;st_atime:83,192,32;st_spare1:1,224,32;st_mtime:83,256,32;st_spare2:1,288,32;st_ctime:83,320,32;st_spare3:1,352,32;st_blksize:3,384,32;st_blocks:74,416,32;st_pad:4,448,30;st_acl:4,478,1;st_remote:4,479,1;st_netdev:56,480,32;st_netino:57,512,32;st_cnode:82,544,16;st_rcnode:82,560,16;st_netsite:81,576,16;st_fstype:8,592,16;st_realdev:56,608,32;st_basemode:9,640,16;st_spareshort:9,656,16;st_uid:78,672,32;st_gid:77,704,32;st_spare4:265=ar1;0;2;29,736,96;;flock:T266=s16l_type:8,0,16;l_whence:8,16,16;l_start:68,32,32;l_len:68,64,32;l_pid:75,96,32;;iovec:T267=s8iov_base:24,0,32;iov_len:84,32,32;;uio_rw:T268=eUIO_READ:1,UIO_WRITE:2,;linger:T269=s8l_onoff:1,0,32;l_linger:1,32,32;;sockaddr:T270=s16sa_family:9,0,16;sa_data:271=ar1;0;13;2,16,112;;sockproto:T272=s4sp_family:9,0,16;sp_protocol:9,16,16;;msghdr:T273=s24msg_name:92,0,32;msg_namelen:1,32,32;msg_iov:274=*267,64,32;msg_iovlen:1,96,32;msg_accrights:92,128,32;msg_accrightslen:1,160,32;;msghdr2:T275=s28msg_name:92,0,32;msg_namelen:101,32,32;msg_iov:274,64,32;msg_iovlen:101,96,32;msg_control:92,128,32;msg_controllen:101,160,32;msg_flags:1,192,32;;in_addr:T276=s4s_addr:102,0,32;;sockaddr_in:T277=s16sin_family:8,0,16;sin_port:100,16,16;sin_addr:276,32,32;sin_zero:278=ar1;0;7;2,64,64;;ip_mreq:T279=s8imr_multiaddr:276,0,32;imr_interface:276,32,32;;hostent:T280=s20h_name:90,0,32;h_aliases:281=*90,32,32;h_addrtype:1,64,32;h_length:1,96,32;h_addr_list:281,128,32;;netent:T282=s16n_name:90,0,32;n_aliases:281,32,32;n_addrtype:1,64,32;n_net:5,96,32;;servent:T283=s16s_name:90,0,32;s_aliases:281,32,32;s_port:1,64,32;s_proto:90,96,32;;protoent:T284=s12p_name:90,0,32;p_aliases:281,32,32;p_proto:1,64,32;;rpcent:T285=s12r_name:90,0,32;r_aliases:281,32,32;r_number:1,64,32;;group:T286=s16gr_name:90,0,32;gr_passwd:90,32,32;gr_gid:77,64,32;gr_mem:281,96,32;;my_tcp_connect:F1host_name:P90port:P1sd:P287=*1my_connect:F1host_name:P90port:P1sd:P287proto:P90servaddr:277hp:r288=*280ptrp:r289=*284my_inet_aton:F1cp:P290=*2addr:P291=*276val:r4base:r1n:r1c:r2parts:292=ar1;0;3;101pp:r293=*101strip:F19buffer:P90x:r1index:r1sendall:F1s:P1buf:P90len:P287total:r1bytesleft:r1n:r1recvall:F1s:P1buf:P90len:P287timeout:P1total:r1bytesleft:r1n:r1start_time:83current_time:83display_license:F19libgcc2.c/opt/tmp/gcc-2.95.2/gcc/./libgcc2.cint:t1=r1;0020000000000;0017777777777;char:t2=r2;0;127;long int:t3=r1;0020000000000;0017777777777;unsigned int:t4=r1;0000000000000;0037777777777;long unsigned int:t5=r1;0000000000000;0037777777777;long long int:t6=r1;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=r1;0000000000000;01777777777777777777777;short int:t8=r8;-32768;32767;short unsigned int:t9=r9;0;65535;signed char:t10=r10;-128;127;unsigned char:t11=r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;8;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=r16;4;0;complex double:t17=r17;8;0;complex long double:t18=r18;8;0;void:t19=19cmp_type:T20=eCMP_SI:0,CMP_SF:1,CMP_DF:2,CMP_MAX:3,;processor_type:T21=ePROCESSOR_700:0,PROCESSOR_7100:1,PROCESSOR_7100LC:2,PROCESSOR_7200:3,PROCESSOR_8000:4,;architecture_type:T22=eARCHITECTURE_10:0,ARCHITECTURE_11:1,ARCHITECTURE_20:2,;reg_class:T23=eNO_REGS:0,R1_REGS:1,GENERAL_REGS:2,FPUPPER_REGS:3,FP_REGS:4,GENERAL_OR_FP_REGS:5,SHIFT_REGS:6,ALL_REGS:7,LIM_REG_CLASSES:8,;hppa_args:T24=s12words:1,0,32;nargs_prototype:1,32,32;indirect:1,64,32;;div_t:t25=26=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t27=28=s8quot:3,0,32;rem:3,32,32;;size_t:t29=4wchar_t:t30=4int8_t:t31=2uint8_t:t32=11int16_t:t33=8uint16_t:t34=9int32_t:t35=1uint32_t:t36=4intfast_t:t37=1uintfast_t:t38=4int64_t:t39=6uint64_t:t40=7intmax_t:t41=39uintmax_t:t42=40intptr_t:t43=3uintptr_t:t44=5int_least8_t:t45=2uint_least8_t:t46=11int_fast8_t:t47=1uint_fast8_t:t48=4int_least16_t:t49=8uint_least16_t:t50=9int_fast16_t:t51=1uint_fast16_t:t52=4int_least32_t:t53=1uint_least32_t:t54=4int_fast32_t:t55=1uint_fast32_t:t56=4int_least64_t:t57=39int_fast64_t:t58=39uint_least64_t:t59=40uint_fast64_t:t60=40ptr32_t:t61=36dev_t:t62=35ino_t:t63=36mode_t:t64=34nlink_t:t65=34fpos32_t:t66=35fpos64_t:t67=39fpos_t:t68=35fsblkcnt32_t:t69=36fsblkcnt64_t:t70=40fsblkcnt_t:t71=36off32_t:t72=35off64_t:t73=39off_t:t74=35fsfilcnt32_t:t75=36fsfilcnt64_t:t76=40fsfilcnt_t:t77=36blkcnt32_t:t78=35blkcnt64_t:t79=39blkcnt_t:t80=35pid_t:t81=35lwpid_t:t82=35gid_t:t83=35uid_t:t84=35tid_t:t85=35ssize_t:t86=35__site_t:t87=34__cnode_t:t88=34time_t:t89=35clock_t:t90=36key_t:t91=35__ushort:t92=9__daddr_t:t93=35__caddr_t:t94=95=*2__swblk_t:t96=35caddr_t:t97=94id_t:t98=35useconds_t:t99=36rlim32_t:t100=36rlim64_t:t101=40rlim_t:t102=36site_t:t103=87u_char:t104=11u_short:t105=9u_int:t106=4u_long:t107=5uint:t108=4ushort:t109=9ubit8:t110=11ubit16:t111=9ubit32:t112=36sbit8:t113=2sbit16:t114=8sbit32:t115=35swblk_t:t116=96daddr_t:t117=93cnode_t:t118=88physaddr_t:t119=44paddr_t:t120=5page_t:t121=43ulong_t:t122=5cnt_t:t123=33space_t:t124=36prot_t:t125=36cdno_t:t126=36use_t:t127=34_physadr:T128=s4r:129=ar1;0;0;43,0,32;;physadr:t130=131=*128_quad:T132=s8val:133=ar1;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s112lbl_rp:35,0,32;lbl_sp:35,32,32;lbl_s:138=ar1;0;16;35,64,544;lbl_ss:139=ar1;0;0;35,608,32;lbl_sf:140=ar1;0;3;13,640,256;;label_t:t141=137dm_message:t142=95aid_t:t143=35sid_t:t144=81fd_mask:t145=35fd_set:T146=s256fds_bits:147=ar1;0;63;145,0,2048;;fd_set:t148=146k_off_t:t149=39k_rlim_t:t150=40k_blkcnt_t:t151=39k_fsfilcnt_t:t152=36k_fsblkcnt_t:t153=36dir_off_t:t154=35sigval:T155=u4__sival_int:1,0,32;__sival_ptr:156=*19,0,32;;sigval_t:t157=155sigevent:T158=s12__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:157,64,32;;sigevent_t:t159=158__sigev_types:T160=eSIGEV_NONE:1,SIGEV_SIGNAL:2,;tm:T161=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T162=s8tv_sec:89,0,32;tv_nsec:3,32,32;;timestruc_t:t163=162itimerspec:T164=s16it_interval:162,0,64;it_value:162,64,64;;__clockid_t:T165=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t166=165timer_t:t167=5timeval:T168=s8tv_sec:89,0,32;tv_usec:3,32,32;;itimerval:T169=s16it_interval:168,0,64;it_value:168,64,64;;timezone:T170=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T171=s8hi:5,0,32;lo:5,32,32;;cycles_t:t172=171__fd_mask:t173=3ki_timeval:T174=s8tv_sec:3,0,32;tv_nunit:3,32,32;;rlimit:T175=s8rlim_cur:102,0,32;rlim_max:102,32,32;;rusage:T176=s76ru_utime:168,0,64;ru_stime:168,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T177=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T178=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:157,96,32;__data:179=u8__proc:180=s8__pid:81,0,32;__pdata:181=u4__kill:182=s4__uid:84,0,32;;,0,32;__SIGCLD:183=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:184=s4__addr:156,0,32;;,0,32;__file:185=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,128,64;__pad:186=ar1;0;9;1,192,320;;siginfo_t:t187=178k_siginfo_t:t188=189=s16si_code:1,0,32;si_errno:1,32,32;__data:190=u8__proc:191=s8__pid:81,0,32;__pdata:192=u4__kill:193=s4__uid:84,0,32;;,0,32;__SIGCLD:194=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:195=s4__addr:196=*97,0,32;;,0,32;__file:197=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,64,64;;__sigset_t:T198=s32sigset:199=ar1;0;7;3,0,256;;sigset_t:t200=198__fp_dbl_block:T201=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t202=201__fp_int_block:T203=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t204=203__reg64:T205=s512ss_reserved:39,0,64;ss_gr1:39,64,64;ss_rp:39,128,64;ss_gr3:39,192,64;ss_gr4:39,256,64;ss_gr5:39,320,64;ss_gr6:39,384,64;ss_gr7:39,448,64;ss_gr8:39,512,64;ss_gr9:39,576,64;ss_gr10:39,640,64;ss_gr11:39,704,64;ss_gr12:39,768,64;ss_gr13:39,832,64;ss_gr14:39,896,64;ss_gr15:39,960,64;ss_gr16:39,1024,64;ss_gr17:39,1088,64;ss_gr18:39,1152,64;ss_gr19:39,1216,64;ss_gr20:39,1280,64;ss_gr21:39,1344,64;ss_gr22:39,1408,64;ss_arg3:39,1472,64;ss_arg2:39,1536,64;ss_arg1:39,1600,64;ss_arg0:39,1664,64;ss_dp:40,1728,64;ss_ret0:40,1792,64;ss_ret1:40,1856,64;ss_sp:40,1920,64;ss_gr31:40,1984,64;ss_cr11:40,2048,64;ss_pcoq_head:40,2112,64;ss_pcsq_head:40,2176,64;ss_pcoq_tail:40,2240,64;ss_pcsq_tail:40,2304,64;ss_cr15:40,2368,64;ss_cr19:40,2432,64;ss_cr20:40,2496,64;ss_cr21:40,2560,64;ss_cr22:40,2624,64;ss_cpustate:40,2688,64;ss_sr4:40,2752,64;ss_sr0:40,2816,64;ss_sr1:40,2880,64;ss_sr2:40,2944,64;ss_sr3:40,3008,64;ss_sr5:40,3072,64;ss_sr6:40,3136,64;ss_sr7:40,3200,64;ss_cr0:40,3264,64;ss_cr8:40,3328,64;ss_cr9:40,3392,64;ss_cr10:40,3456,64;ss_cr12:40,3520,64;ss_cr13:40,3584,64;ss_cr24:40,3648,64;ss_cr25:40,3712,64;ss_cr26:40,3776,64;ss_reserved2:206=ar1;0;2;40,3840,192;ss_oldcksum:36,4032,32;ss_newcksum:36,4064,32;;__reg64_t:t207=205__reg32:T208=s512ss_reserved:209=ar1;0;1;36,0,64;ss_gr1_hi:36,64,32;ss_gr1_lo:36,96,32;ss_rp_hi:36,128,32;ss_rp_lo:36,160,32;ss_gr3_hi:36,192,32;ss_gr3_lo:36,224,32;ss_gr4_hi:36,256,32;ss_gr4_lo:36,288,32;ss_gr5_hi:36,320,32;ss_gr5_lo:36,352,32;ss_gr6_hi:36,384,32;ss_gr6_lo:36,416,32;ss_gr7_hi:36,448,32;ss_gr7_lo:36,480,32;ss_gr8_hi:36,512,32;ss_gr8_lo:36,544,32;ss_gr9_hi:36,576,32;ss_gr9_lo:36,608,32;ss_gr10_hi:36,640,32;ss_gr10_lo:36,672,32;ss_gr11_hi:36,704,32;ss_gr11_lo:36,736,32;ss_gr12_hi:36,768,32;ss_gr12_lo:36,800,32;ss_gr13_hi:36,832,32;ss_gr13_lo:36,864,32;ss_gr14_hi:36,896,32;ss_gr14_lo:36,928,32;ss_gr15_hi:36,960,32;ss_gr15_lo:36,992,32;ss_gr16_hi:36,1024,32;ss_gr16_lo:36,1056,32;ss_gr17_hi:36,1088,32;ss_gr17_lo:36,1120,32;ss_gr18_hi:36,1152,32;ss_gr18_lo:36,1184,32;ss_gr19_hi:36,1216,32;ss_gr19_lo:36,1248,32;ss_gr20_hi:36,1280,32;ss_gr20_lo:36,1312,32;ss_gr21_hi:36,1344,32;ss_gr21_lo:36,1376,32;ss_gr22_hi:36,1408,32;ss_gr22_lo:36,1440,32;ss_arg3_hi:36,1472,32;ss_arg3_lo:36,1504,32;ss_arg2_hi:36,1536,32;ss_arg2_lo:36,1568,32;ss_arg1_hi:36,1600,32;ss_arg1_lo:36,1632,32;ss_arg0_hi:36,1664,32;ss_arg0_lo:36,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;\ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_reserved2:210=ar1;0;5;4,3840,192;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t211=208__ss_narrow:T212=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_mpsfu_high:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t213=212__save_state:T214=s1152ss_flags:1,0,32;ss_narrow:213,32,1984;ss_pad:1,2016,32;ss_fpblock:215=u256fpdbl:202,0,2048;fpint:204,0,2048;;,2048,2048;ss_xor:216=ar1;0;127;2,4096,1024;ss_wide:217=u512ss_64:207,0,4096;ss_32:211,0,4096;;,5120,4096;;save_state_t:t218=214stack_t:t219=220=s12ss_sp:156,0,32;ss_flags:1,32,32;ss_size:29,64,32;;mcontext_t:t221=218__sub_ctxt:T222=s48__uc_link:223=*224=xs__ucontext:,0,32;__uc_sigmask:200,32,256;__uc_stack:219,288,96;;__ucontext:T224=s1240uc_mcontext:221,0,9216;uc_spares:225=ar1;0;7;1,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:222,9504,384;;ucontext_t:t226=224sig_atomic_t:t227=4sigaction:T228=s40__handler:229=u4__sa_sigaction:230=*231=f19,0,32;__sa_handler:232=*233=f19,0,32;;,0,32;sa_mask:200,32,256;sa_flags:1,288,32;;sigstack:T234=s8ss_sp:156,0,32;ss_onstack:1,32,32;;sigvec:T235=s12sv_handler:232,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T236=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t237=236siglocal_misc:T238=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:1,128,32;sm_rval2:1,160,32;sm_arg:239=ar1;0;3;1,192,128;;siglocal:T240=s1192sl_misc:238,0,320;sl_ss:218,320,9216;;siglocalx:T241=s1344sl_misc:238,0,320;sl_uc:226,320,9920;sl_si:187,10240,512;;__xsi:T242=s116sc:222,0,384;__padding:1,384,32;si:187,416,512;;sigcontext:T243=s1392sc_ctxt:244=u1344sl:240,0,9536;sx:241,0,10752;;,0,10752;sc_args:239,10752,128;sc_sfm:236,10880,256;; :T245=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t246=245wait:T247=u4w_status:1,0,32;w_T:248=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:249=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T250=s40arena:1,0,32;ordblks:1,32,32;smblks:1,64,32;hblks:1,96,32;hblkhd:1,128,32;usmblks:1,160,32;fsmblks:1,192,32;uordblks:1,224,32;fordblks:1,256,32;keepcost:1,288,32;;long_double:t251=252=s16word1:4,0,32;word2:4,32,32;word3:4,64,32;word4:4,96,32;;passwd:T253=s44pw_name:95,0,32;pw_passwd:95,32,32;pw_uid:84,64,32;pw_gid:83,96,32;pw_age:95,128,32;pw_comment:95,160,32;pw_gecos:95,192,32;pw_dir:95,224,32;pw_shell:95,256,32;pw_audid:35,288,32;pw_audflg:1,320,32;;s_passwd:T254=s20pw_name:95,0,32;pw_passwd:95,32,32;pw_age:95,64,32;pw_audid:35,96,32;pw_audflg:1,128,32;;__gnuc_va_list:t255=156FILE:t256=257=s16__cnt:1,0,32;__ptr:258=*11,32,32;__base:258,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t259=260=s44__cnt:1,0,32;__ptr:258,32,32;__base:258,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:258,128,32;__newbase:258,160,32;__smbuf:261=ar1;0;15;11,192,128;__unused:156,320,32;;__va_list:t262=263=*13__va_list__:t264=263utimbuf:T265=s8actime:89,0,32;modtime:89,32,32;;machine_mode:T266=eVOIDmode:0,PQImode:1,QImode:2,PHImode:3,HImode:4,PSImode:5,SImode:6,PDImode:7,DImode:8,TImode:9,OImode:10,QFmode:11,HFmode:12,TQFmode:13,SFmode:14,DFmode:15,XFmode:16,TFmode:17,QCmode:18,HCmode:19,SCmode:20,DCmode:21,XCmode:22,TCmode:23,CQImode:24,CHImode:25,CSImode:26,CDImode:27,CTImode:28,COImode:29,BLKmode:30,CCmode:31,CCFPmode:32,MAX_MACHINE_MODE:33,;mode_class:T267=eMODE_RANDOM:0,MODE_INT:1,MODE_FLOAT:2,MODE_PARTIAL_INT:3,MODE_CC:4,MODE_COMPLEX_INT:5,MODE_COMPLEX_FLOAT:6,MAX_MODE_CLASS:7,;ptrdiff_t:t268=1wint_t:t269=4UQItype:t270=11SItype:t271=1USItype:t272=4DItype:t273=6UDItype:t274=7SFtype:t275=12DFtype:t276=13word_type:t277=1DIstruct:T278=s8high:271,0,32;low:271,32,32;;DIunion:t279=280=u8s:278,0,64;ll:273,0,64;;func_ptr:t281=282=*283=f19__do_global_dtors:F19_exit_dummy_ref:G284=*1__do_global_ctors:F19__main:F19libgcc2.c/opt/tmp/gcc-2.95.2/gcc/./libgcc2.cint:t1=r1;0020000000000;0017777777777;char:t2=r2;0;127;long int:t3=r1;0020000000000;0017777777777;unsigned int:t4=r1;0000000000000;0037777777777;long unsigned int:t5=r1;0000000000000;0037777777777;long long int:t6=r1;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=r1;0000000000000;01777777777777777777777;short int:t8=r8;-32768;32767;short unsigned int:t9=r9;0;65535;signed char:t10=r10;-128;127;unsigned char:t11=r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;8;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=r16;4;0;complex double:t17=r17;8;0;complex long double:t18=r18;8;0;void:t19=19cmp_type:T20=eCMP_SI:0,CMP_SF:1,CMP_DF:2,CMP_MAX:3,;processor_type:T21=ePROCESSOR_700:0,PROCESSOR_7100:1,PROCESSOR_7100LC:2,PROCESSOR_7200:3,PROCESSOR_8000:4,;architecture_type:T22=eARCHITECTURE_10:0,ARCHITECTURE_11:1,ARCHITECTURE_20:2,;reg_class:T23=eNO_REGS:0,R1_REGS:1,GENERAL_REGS:2,FPUPPER_REGS:3,FP_REGS:4,GENERAL_OR_FP_REGS:5,SHIFT_REGS:6,ALL_REGS:7,LIM_REG_CLASSES:8,;hppa_args:T24=s12words:1,0,32;nargs_prototype:1,32,32;indirect:1,64,32;;div_t:t25=26=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t27=28=s8quot:3,0,32;rem:3,32,32;;size_t:t29=4wchar_t:t30=4int8_t:t31=2uint8_t:t32=11int16_t:t33=8uint16_t:t34=9int32_t:t35=1uint32_t:t36=4intfast_t:t37=1uintfast_t:t38=4int64_t:t39=6uint64_t:t40=7intmax_t:t41=39uintmax_t:t42=40intptr_t:t43=3uintptr_t:t44=5int_least8_t:t45=2uint_least8_t:t46=11int_fast8_t:t47=1uint_fast8_t:t48=4int_least16_t:t49=8uint_least16_t:t50=9int_fast16_t:t51=1uint_fast16_t:t52=4int_least32_t:t53=1uint_least32_t:t54=4int_fast32_t:t55=1uint_fast32_t:t56=4int_least64_t:t57=39int_fast64_t:t58=39uint_least64_t:t59=40uint_fast64_t:t60=40ptr32_t:t61=36dev_t:t62=35ino_t:t63=36mode_t:t64=34nlink_t:t65=34fpos32_t:t66=35fpos64_t:t67=39fpos_t:t68=35fsblkcnt32_t:t69=36fsblkcnt64_t:t70=40fsblkcnt_t:t71=36off32_t:t72=35off64_t:t73=39off_t:t74=35fsfilcnt32_t:t75=36fsfilcnt64_t:t76=40fsfilcnt_t:t77=36blkcnt32_t:t78=35blkcnt64_t:t79=39blkcnt_t:t80=35pid_t:t81=35lwpid_t:t82=35gid_t:t83=35uid_t:t84=35tid_t:t85=35ssize_t:t86=35__site_t:t87=34__cnode_t:t88=34time_t:t89=35clock_t:t90=36key_t:t91=35__ushort:t92=9__daddr_t:t93=35__caddr_t:t94=95=*2__swblk_t:t96=35caddr_t:t97=94id_t:t98=35useconds_t:t99=36rlim32_t:t100=36rlim64_t:t101=40rlim_t:t102=36site_t:t103=87u_char:t104=11u_short:t105=9u_int:t106=4u_long:t107=5uint:t108=4ushort:t109=9ubit8:t110=11ubit16:t111=9ubit32:t112=36sbit8:t113=2sbit16:t114=8sbit32:t115=35swblk_t:t116=96daddr_t:t117=93cnode_t:t118=88physaddr_t:t119=44paddr_t:t120=5page_t:t121=43ulong_t:t122=5cnt_t:t123=33space_t:t124=36prot_t:t125=36cdno_t:t126=36use_t:t127=34_physadr:T128=s4r:129=ar1;0;0;43,0,32;;physadr:t130=131=*128_quad:T132=s8val:133=ar1;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s112lbl_rp:35,0,32;lbl_sp:35,32,32;lbl_s:138=ar1;0;16;35,64,544;lbl_ss:139=ar1;0;0;35,608,32;lbl_sf:140=ar1;0;3;13,640,256;;label_t:t141=137dm_message:t142=95aid_t:t143=35sid_t:t144=81fd_mask:t145=35fd_set:T146=s256fds_bits:147=ar1;0;63;145,0,2048;;fd_set:t148=146k_off_t:t149=39k_rlim_t:t150=40k_blkcnt_t:t151=39k_fsfilcnt_t:t152=36k_fsblkcnt_t:t153=36dir_off_t:t154=35sigval:T155=u4__sival_int:1,0,32;__sival_ptr:156=*19,0,32;;sigval_t:t157=155sigevent:T158=s12__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:157,64,32;;sigevent_t:t159=158__sigev_types:T160=eSIGEV_NONE:1,SIGEV_SIGNAL:2,;tm:T161=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T162=s8tv_sec:89,0,32;tv_nsec:3,32,32;;timestruc_t:t163=162itimerspec:T164=s16it_interval:162,0,64;it_value:162,64,64;;__clockid_t:T165=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t166=165timer_t:t167=5timeval:T168=s8tv_sec:89,0,32;tv_usec:3,32,32;;itimerval:T169=s16it_interval:168,0,64;it_value:168,64,64;;timezone:T170=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T171=s8hi:5,0,32;lo:5,32,32;;cycles_t:t172=171__fd_mask:t173=3ki_timeval:T174=s8tv_sec:3,0,32;tv_nunit:3,32,32;;rlimit:T175=s8rlim_cur:102,0,32;rlim_max:102,32,32;;rusage:T176=s76ru_utime:168,0,64;ru_stime:168,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T177=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T178=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:157,96,32;__data:179=u8__proc:180=s8__pid:81,0,32;__pdata:181=u4__kill:182=s4__uid:84,0,32;;,0,32;__SIGCLD:183=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:184=s4__addr:156,0,32;;,0,32;__file:185=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,128,64;__pad:186=ar1;0;9;1,192,320;;siginfo_t:t187=178k_siginfo_t:t188=189=s16si_code:1,0,32;si_errno:1,32,32;__data:190=u8__proc:191=s8__pid:81,0,32;__pdata:192=u4__kill:193=s4__uid:84,0,32;;,0,32;__SIGCLD:194=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:195=s4__addr:196=*97,0,32;;,0,32;__file:197=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,64,64;;__sigset_t:T198=s32sigset:199=ar1;0;7;3,0,256;;sigset_t:t200=198__fp_dbl_block:T201=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t202=201__fp_int_block:T203=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t204=203__reg64:T205=s512ss_reserved:39,0,64;ss_gr1:39,64,64;ss_rp:39,128,64;ss_gr3:39,192,64;ss_gr4:39,256,64;ss_gr5:39,320,64;ss_gr6:39,384,64;ss_gr7:39,448,64;ss_gr8:39,512,64;ss_gr9:39,576,64;ss_gr10:39,640,64;ss_gr11:39,704,64;ss_gr12:39,768,64;ss_gr13:39,832,64;ss_gr14:39,896,64;ss_gr15:39,960,64;ss_gr16:39,1024,64;ss_gr17:39,1088,64;ss_gr18:39,1152,64;ss_gr19:39,1216,64;ss_gr20:39,1280,64;ss_gr21:39,1344,64;ss_gr22:39,1408,64;ss_arg3:39,1472,64;ss_arg2:39,1536,64;ss_arg1:39,1600,64;ss_arg0:39,1664,64;ss_dp:40,1728,64;ss_ret0:40,1792,64;ss_ret1:40,1856,64;ss_sp:40,1920,64;ss_gr31:40,1984,64;ss_cr11:40,2048,64;ss_pcoq_head:40,2112,64;ss_pcsq_head:40,2176,64;ss_pcoq_tail:40,2240,64;ss_pcsq_tail:40,2304,64;ss_cr15:40,2368,64;ss_cr19:40,2432,64;ss_cr20:40,2496,64;ss_cr21:40,2560,64;ss_cr22:40,2624,64;ss_cpustate:40,2688,64;ss_sr4:40,2752,64;ss_sr0:40,2816,64;ss_sr1:40,2880,64;ss_sr2:40,2944,64;ss_sr3:40,3008,64;ss_sr5:40,3072,64;ss_sr6:40,3136,64;ss_sr7:40,3200,64;ss_cr0:40,3264,64;ss_cr8:40,3328,64;ss_cr9:40,3392,64;ss_cr10:40,3456,64;ss_cr12:40,3520,64;ss_cr13:40,3584,64;ss_cr24:40,3648,64;ss_cr25:40,3712,64;ss_cr26:40,3776,64;ss_reserved2:206=ar1;0;2;40,3840,192;ss_oldcksum:36,4032,32;ss_newcksum:36,4064,32;;__reg64_t:t207=205__reg32:T208=s512ss_reserved:209=ar1;0;1;36,0,64;ss_gr1_hi:36,64,32;ss_gr1_lo:36,96,32;ss_rp_hi:36,128,32;ss_rp_lo:36,160,32;ss_gr3_hi:36,192,32;ss_gr3_lo:36,224,32;ss_gr4_hi:36,256,32;ss_gr4_lo:36,288,32;ss_gr5_hi:36,320,32;ss_gr5_lo:36,352,32;ss_gr6_hi:36,384,32;ss_gr6_lo:36,416,32;ss_gr7_hi:36,448,32;ss_gr7_lo:36,480,32;ss_gr8_hi:36,512,32;ss_gr8_lo:36,544,32;ss_gr9_hi:36,576,32;ss_gr9_lo:36,608,32;ss_gr10_hi:36,640,32;ss_gr10_lo:36,672,32;ss_gr11_hi:36,704,32;ss_gr11_lo:36,736,32;ss_gr12_hi:36,768,32;ss_gr12_lo:36,800,32;ss_gr13_hi:36,832,32;ss_gr13_lo:36,864,32;ss_gr14_hi:36,896,32;ss_gr14_lo:36,928,32;ss_gr15_hi:36,960,32;ss_gr15_lo:36,992,32;ss_gr16_hi:36,1024,32;ss_gr16_lo:36,1056,32;ss_gr17_hi:36,1088,32;ss_gr17_lo:36,1120,32;ss_gr18_hi:36,1152,32;ss_gr18_lo:36,1184,32;ss_gr19_hi:36,1216,32;ss_gr19_lo:36,1248,32;ss_gr20_hi:36,1280,32;ss_gr20_lo:36,1312,32;ss_gr21_hi:36,1344,32;ss_gr21_lo:36,1376,32;ss_gr22_hi:36,1408,32;ss_gr22_lo:36,1440,32;ss_arg3_hi:36,1472,32;ss_arg3_lo:36,1504,32;ss_arg2_hi:36,1536,32;ss_arg2_lo:36,1568,32;ss_arg1_hi:36,1600,32;ss_arg1_lo:36,1632,32;ss_arg0_hi:36,1664,32;ss_arg0_lo:36,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,2240,32;ss_pcoq_tail_lo:4,2272,32;ss_pcsq_tail_hi:4,2304,32;ss_pcsq_tail_lo:4,2336,32;ss_cr15_hi:4,2368,32;ss_cr15_lo:4,2400,32;ss_cr19_hi:4,2432,32;ss_cr19_lo:4,2464,32;ss_cr20_hi:4,2496,32;\ss_cr20_lo:4,2528,32;ss_cr21_hi:4,2560,32;ss_cr21_lo:4,2592,32;ss_cr22_hi:4,2624,32;ss_cr22_lo:4,2656,32;ss_cpustate_hi:4,2688,32;ss_cpustate_lo:4,2720,32;ss_sr4_hi:4,2752,32;ss_sr4_lo:4,2784,32;ss_sr0_hi:4,2816,32;ss_sr0_lo:4,2848,32;ss_sr1_hi:4,2880,32;ss_sr1_lo:4,2912,32;ss_sr2_hi:4,2944,32;ss_sr2_lo:4,2976,32;ss_sr3_hi:4,3008,32;ss_sr3_lo:4,3040,32;ss_sr5_hi:4,3072,32;ss_sr5_lo:4,3104,32;ss_sr6_hi:4,3136,32;ss_sr6_lo:4,3168,32;ss_sr7_hi:4,3200,32;ss_sr7_lo:4,3232,32;ss_cr0_hi:4,3264,32;ss_cr0_lo:4,3296,32;ss_cr8_hi:4,3328,32;ss_cr8_lo:4,3360,32;ss_cr9_hi:4,3392,32;ss_cr9_lo:4,3424,32;ss_cr10_hi:4,3456,32;ss_cr10_lo:4,3488,32;ss_cr12_hi:4,3520,32;ss_cr12_lo:4,3552,32;ss_cr13_hi:4,3584,32;ss_cr13_lo:4,3616,32;ss_cr24_hi:4,3648,32;ss_cr24_lo:4,3680,32;ss_cr25_hi:4,3712,32;ss_cr25_lo:4,3744,32;ss_cr26_hi:4,3776,32;ss_cr26_lo:4,3808,32;ss_reserved2:210=ar1;0;5;4,3840,192;ss_oldcksum:4,4032,32;ss_newcksum:4,4064,32;;__reg32_t:t211=208__ss_narrow:T212=s248ss_gr1:1,0,32;ss_rp:1,32,32;ss_gr3:1,64,32;ss_gr4:1,96,32;ss_gr5:1,128,32;ss_gr6:1,160,32;ss_gr7:1,192,32;ss_gr8:1,224,32;ss_gr9:1,256,32;ss_gr10:1,288,32;ss_gr11:1,320,32;ss_gr12:1,352,32;ss_gr13:1,384,32;ss_gr14:1,416,32;ss_gr15:1,448,32;ss_gr16:1,480,32;ss_gr17:1,512,32;ss_gr18:1,544,32;ss_gr19:1,576,32;ss_gr20:1,608,32;ss_gr21:1,640,32;ss_gr22:1,672,32;ss_arg3:1,704,32;ss_arg2:1,736,32;ss_arg1:1,768,32;ss_arg0:1,800,32;ss_dp:4,832,32;ss_ret0:4,864,32;ss_ret1:4,896,32;ss_sp:4,928,32;ss_gr31:4,960,32;ss_cr11:4,992,32;ss_pcoq_head:4,1024,32;ss_pcsq_head:4,1056,32;ss_pcoq_tail:4,1088,32;ss_pcsq_tail:4,1120,32;ss_cr15:4,1152,32;ss_cr19:4,1184,32;ss_cr20:4,1216,32;ss_cr21:4,1248,32;ss_cr22:4,1280,32;ss_cpustate:4,1312,32;ss_sr4:4,1344,32;ss_sr0:4,1376,32;ss_sr1:4,1408,32;ss_sr2:4,1440,32;ss_sr3:4,1472,32;ss_sr5:4,1504,32;ss_sr6:4,1536,32;ss_sr7:4,1568,32;ss_cr0:4,1600,32;ss_cr8:4,1632,32;ss_cr9:4,1664,32;ss_cr10:4,1696,32;ss_cr12:4,1728,32;ss_cr13:4,1760,32;ss_cr24:4,1792,32;ss_cr25:4,1824,32;ss_cr26:4,1856,32;ss_mpsfu_high:4,1888,32;ss_mpsfu_low:4,1920,32;ss_mpsfu_ovflo:4,1952,32;;__ss_narrow_t:t213=212__save_state:T214=s1152ss_flags:1,0,32;ss_narrow:213,32,1984;ss_pad:1,2016,32;ss_fpblock:215=u256fpdbl:202,0,2048;fpint:204,0,2048;;,2048,2048;ss_xor:216=ar1;0;127;2,4096,1024;ss_wide:217=u512ss_64:207,0,4096;ss_32:211,0,4096;;,5120,4096;;save_state_t:t218=214stack_t:t219=220=s12ss_sp:156,0,32;ss_flags:1,32,32;ss_size:29,64,32;;mcontext_t:t221=218__sub_ctxt:T222=s48__uc_link:223=*224=xs__ucontext:,0,32;__uc_sigmask:200,32,256;__uc_stack:219,288,96;;__ucontext:T224=s1240uc_mcontext:221,0,9216;uc_spares:225=ar1;0;7;1,9216,256;uc_created_by_getcontext:4,9472,1;uc_reserved_flags:4,9473,31;uc_subcontext:222,9504,384;;ucontext_t:t226=224sig_atomic_t:t227=4sigaction:T228=s40__handler:229=u4__sa_sigaction:230=*231=f19,0,32;__sa_handler:232=*233=f19,0,32;;,0,32;sa_mask:200,32,256;sa_flags:1,288,32;;sigstack:T234=s8ss_sp:156,0,32;ss_onstack:1,32,32;;sigvec:T235=s12sv_handler:232,0,32;sv_mask:1,32,32;sv_flags:1,64,32;;frame_marker:T236=s32fm_edp:1,0,32;fm_esr4:1,32,32;fm_erp:1,64,32;fm_crp:1,96,32;fm_sl:1,128,32;fm_clup:1,160,32;fm_ep:1,192,32;fm_psp:1,224,32;;frame_marker_t:t237=236siglocal_misc:T238=s40sm_syscall:1,0,32;sm_onstack:1,32,32;sm_omask:1,64,32;sm_syscall_action:2,96,8;sm_eosys:2,104,8;sm_error:9,112,16;sm_rval1:1,128,32;sm_rval2:1,160,32;sm_arg:239=ar1;0;3;1,192,128;;siglocal:T240=s1192sl_misc:238,0,320;sl_ss:218,320,9216;;siglocalx:T241=s1344sl_misc:238,0,320;sl_uc:226,320,9920;sl_si:187,10240,512;;__xsi:T242=s116sc:222,0,384;__padding:1,384,32;si:187,416,512;;sigcontext:T243=s1392sc_ctxt:244=u1344sl:240,0,9536;sx:241,0,10752;;,0,10752;sc_args:239,10752,128;sc_sfm:236,10880,256;; :T245=eP_PID:0,P_PGID:1,P_SID:2,P_UID:3,P_GID:4,P_CID:5,P_ALL:6,;idtype_t:t246=245wait:T247=u4w_status:1,0,32;w_T:248=s4w_pad:9,0,16;w_Retcode:4,16,8;w_Coredump:4,24,1;w_Termsig:4,25,7;;,0,32;w_S:249=s4w_pad:9,0,16;w_Stopsig:4,16,8;w_Stopval:4,24,8;;,0,32;;mallinfo:T250=s40arena:1,0,32;ordblks:1,32,32;smblks:1,64,32;hblks:1,96,32;hblkhd:1,128,32;usmblks:1,160,32;fsmblks:1,192,32;uordblks:1,224,32;fordblks:1,256,32;keepcost:1,288,32;;long_double:t251=252=s16word1:4,0,32;word2:4,32,32;word3:4,64,32;word4:4,96,32;;passwd:T253=s44pw_name:95,0,32;pw_passwd:95,32,32;pw_uid:84,64,32;pw_gid:83,96,32;pw_age:95,128,32;pw_comment:95,160,32;pw_gecos:95,192,32;pw_dir:95,224,32;pw_shell:95,256,32;pw_audid:35,288,32;pw_audflg:1,320,32;;s_passwd:T254=s20pw_name:95,0,32;pw_passwd:95,32,32;pw_age:95,64,32;pw_audid:35,96,32;pw_audflg:1,128,32;;__gnuc_va_list:t255=156FILE:t256=257=s16__cnt:1,0,32;__ptr:258=*11,32,32;__base:258,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;;_FILEX:t259=260=s44__cnt:1,0,32;__ptr:258,32,32;__base:258,64,32;__flag:9,96,16;__fileL:11,112,8;__fileH:11,120,8;__bufendp:258,128,32;__newbase:258,160,32;__smbuf:261=ar1;0;15;11,192,128;__unused:156,320,32;;__va_list:t262=263=*13__va_list__:t264=263utimbuf:T265=s8actime:89,0,32;modtime:89,32,32;;machine_mode:T266=eVOIDmode:0,PQImode:1,QImode:2,PHImode:3,HImode:4,PSImode:5,SImode:6,PDImode:7,DImode:8,TImode:9,OImode:10,QFmode:11,HFmode:12,TQFmode:13,SFmode:14,DFmode:15,XFmode:16,TFmode:17,QCmode:18,HCmode:19,SCmode:20,DCmode:21,XCmode:22,TCmode:23,CQImode:24,CHImode:25,CSImode:26,CDImode:27,CTImode:28,COImode:29,BLKmode:30,CCmode:31,CCFPmode:32,MAX_MACHINE_MODE:33,;mode_class:T267=eMODE_RANDOM:0,MODE_INT:1,MODE_FLOAT:2,MODE_PARTIAL_INT:3,MODE_CC:4,MODE_COMPLEX_INT:5,MODE_COMPLEX_FLOAT:6,MAX_MODE_CLASS:7,;ptrdiff_t:t268=1wint_t:t269=4UQItype:t270=11SItype:t271=1USItype:t272=4DItype:t273=6UDItype:t274=7SFtype:t275=12DFtype:t276=13word_type:t277=1DIstruct:T278=s8high:271,0,32;low:271,32,32;;DIunion:t279=280=u8s:278,0,64;ll:273,0,64;;func_ptr:t281=282=*283=f19__CTOR_LIST__:G284=ar1;0;1;281__DTOR_LIST__:G284libgcc2.c/opt/tmp/gcc-2.95.2/gcc/./libgcc2.cint:t1=r1;0020000000000;0017777777777;char:t2=r2;0;127;long int:t3=r1;0020000000000;0017777777777;unsigned int:t4=r1;0000000000000;0037777777777;long unsigned int:t5=r1;0000000000000;0037777777777;long long int:t6=r1;01000000000000000000000;0777777777777777777777;long long unsigned int:t7=r1;0000000000000;01777777777777777777777;short int:t8=r8;-32768;32767;short unsigned int:t9=r9;0;65535;signed char:t10=r10;-128;127;unsigned char:t11=r11;0;255;float:t12=r1;4;0;double:t13=r1;8;0;long double:t14=r1;8;0;complex int:t15=s8real:1,0,32;imag:1,32,32;;complex float:t16=r16;4;0;complex double:t17=r17;8;0;complex long double:t18=r18;8;0;void:t19=19cmp_type:T20=eCMP_SI:0,CMP_SF:1,CMP_DF:2,CMP_MAX:3,;processor_type:T21=ePROCESSOR_700:0,PROCESSOR_7100:1,PROCESSOR_7100LC:2,PROCESSOR_7200:3,PROCESSOR_8000:4,;architecture_type:T22=eARCHITECTURE_10:0,ARCHITECTURE_11:1,ARCHITECTURE_20:2,;reg_class:T23=eNO_REGS:0,R1_REGS:1,GENERAL_REGS:2,FPUPPER_REGS:3,FP_REGS:4,GENERAL_OR_FP_REGS:5,SHIFT_REGS:6,ALL_REGS:7,LIM_REG_CLASSES:8,;hppa_args:T24=s12words:1,0,32;nargs_prototype:1,32,32;indirect:1,64,32;;div_t:t25=26=s8quot:1,0,32;rem:1,32,32;;ldiv_t:t27=28=s8quot:3,0,32;rem:3,32,32;;size_t:t29=4wchar_t:t30=4int8_t:t31=2uint8_t:t32=11int16_t:t33=8uint16_t:t34=9int32_t:t35=1uint32_t:t36=4intfast_t:t37=1uintfast_t:t38=4int64_t:t39=6uint64_t:t40=7intmax_t:t41=39uintmax_t:t42=40intptr_t:t43=3uintptr_t:t44=5int_least8_t:t45=2uint_least8_t:t46=11int_fast8_t:t47=1uint_fast8_t:t48=4int_least16_t:t49=8uint_least16_t:t50=9int_fast16_t:t51=1uint_fast16_t:t52=4int_least32_t:t53=1uint_least32_t:t54=4int_fast32_t:t55=1uint_fast32_t:t56=4int_least64_t:t57=39int_fast64_t:t58=39uint_least64_t:t59=40uint_fast64_t:t60=40ptr32_t:t61=36dev_t:t62=35ino_t:t63=36mode_t:t64=34nlink_t:t65=34fpos32_t:t66=35fpos64_t:t67=39fpos_t:t68=35fsblkcnt32_t:t69=36fsblkcnt64_t:t70=40fsblkcnt_t:t71=36off32_t:t72=35off64_t:t73=39off_t:t74=35fsfilcnt32_t:t75=36fsfilcnt64_t:t76=40fsfilcnt_t:t77=36blkcnt32_t:t78=35blkcnt64_t:t79=39blkcnt_t:t80=35pid_t:t81=35lwpid_t:t82=35gid_t:t83=35uid_t:t84=35tid_t:t85=35ssize_t:t86=35__site_t:t87=34__cnode_t:t88=34time_t:t89=35clock_t:t90=36key_t:t91=35__ushort:t92=9__daddr_t:t93=35__caddr_t:t94=95=*2__swblk_t:t96=35caddr_t:t97=94id_t:t98=35useconds_t:t99=36rlim32_t:t100=36rlim64_t:t101=40rlim_t:t102=36site_t:t103=87u_char:t104=11u_short:t105=9u_int:t106=4u_long:t107=5uint:t108=4ushort:t109=9ubit8:t110=11ubit16:t111=9ubit32:t112=36sbit8:t113=2sbit16:t114=8sbit32:t115=35swblk_t:t116=96daddr_t:t117=93cnode_t:t118=88physaddr_t:t119=44paddr_t:t120=5page_t:t121=43ulong_t:t122=5cnt_t:t123=33space_t:t124=36prot_t:t125=36cdno_t:t126=36use_t:t127=34_physadr:T128=s4r:129=ar1;0;0;43,0,32;;physadr:t130=131=*128_quad:T132=s8val:133=ar1;0;1;3,0,64;;quad:t134=132spu_t:t135=1cpu_t:t136=8label_t:T137=s112lbl_rp:35,0,32;lbl_sp:35,32,32;lbl_s:138=ar1;0;16;35,64,544;lbl_ss:139=ar1;0;0;35,608,32;lbl_sf:140=ar1;0;3;13,640,256;;label_t:t141=137dm_message:t142=95aid_t:t143=35sid_t:t144=81fd_mask:t145=35fd_set:T146=s256fds_bits:147=ar1;0;63;145,0,2048;;fd_set:t148=146k_off_t:t149=39k_rlim_t:t150=40k_blkcnt_t:t151=39k_fsfilcnt_t:t152=36k_fsblkcnt_t:t153=36dir_off_t:t154=35sigval:T155=u4__sival_int:1,0,32;__sival_ptr:156=*19,0,32;;sigval_t:t157=155sigevent:T158=s12__sigev_notify:1,0,32;__sigev_signo:1,32,32;__sigev_value:157,64,32;;sigevent_t:t159=158__sigev_types:T160=eSIGEV_NONE:1,SIGEV_SIGNAL:2,;tm:T161=s36tm_sec:1,0,32;tm_min:1,32,32;tm_hour:1,64,32;tm_mday:1,96,32;tm_mon:1,128,32;tm_year:1,160,32;tm_wday:1,192,32;tm_yday:1,224,32;tm_isdst:1,256,32;;timespec:T162=s8tv_sec:89,0,32;tv_nsec:3,32,32;;timestruc_t:t163=162itimerspec:T164=s16it_interval:162,0,64;it_value:162,64,64;;__clockid_t:T165=eCLOCK_INVALID:0,CLOCK_REALTIME:1,CLOCK_VIRTUAL:2,CLOCK_PROFILE:4,RTTIMER0:8,RTTIMER1:16,;clockid_t:t166=165timer_t:t167=5timeval:T168=s8tv_sec:89,0,32;tv_usec:3,32,32;;itimerval:T169=s16it_interval:168,0,64;it_value:168,64,64;;timezone:T170=s8tz_minuteswest:1,0,32;tz_dsttime:1,32,32;;__cycles:T171=s8hi:5,0,32;lo:5,32,32;;cycles_t:t172=171__fd_mask:t173=3ki_timeval:T174=s8tv_sec:3,0,32;tv_nunit:3,32,32;;rlimit:T175=s8rlim_cur:102,0,32;rlim_max:102,32,32;;rusage:T176=s76ru_utime:168,0,64;ru_stime:168,64,64;ru_maxrss:3,128,32;ru_ixrss:3,160,32;ru_idrss:3,192,32;ru_isrss:3,224,32;ru_minflt:3,256,32;ru_majflt:3,288,32;ru_nswap:3,320,32;ru_inblock:3,352,32;ru_oublock:3,384,32;ru_ioch:3,416,32;ru_msgsnd:3,448,32;ru_msgrcv:3,480,32;ru_nsignals:3,512,32;ru_nvcsw:3,544,32;ru_nivcsw:3,576,32;;__si_codes:T177=eSI_QUEUE:-2,SI_USER:-1,SI_TIMER:1,SI_ASYNCIO:2,SI_MESGQ:3,;__siginfo:T178=s64si_signo:1,0,32;si_code:1,32,32;si_errno:1,64,32;si_value:157,96,32;__data:179=u8__proc:180=s8__pid:81,0,32;__pdata:181=u4__kill:182=s4__uid:84,0,32;;,0,32;__SIGCLD:183=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:184=s4__addr:156,0,32;;,0,32;__file:185=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,128,64;__pad:186=ar1;0;9;1,192,320;;siginfo_t:t187=178k_siginfo_t:t188=189=s16si_code:1,0,32;si_errno:1,32,32;__data:190=u8__proc:191=s8__pid:81,0,32;__pdata:192=u4__kill:193=s4__uid:84,0,32;;,0,32;__SIGCLD:194=s4__status:1,0,32;;,0,32;;,32,32;;,0,64;__fault:195=s4__addr:196=*97,0,32;;,0,32;__file:197=s8__fd:1,0,32;__band:3,32,32;;,0,64;;,64,64;;__sigset_t:T198=s32sigset:199=ar1;0;7;3,0,256;;sigset_t:t200=198__fp_dbl_block:T201=s256ss_fp0:13,0,64;ss_fp1:13,64,64;ss_fp2:13,128,64;ss_fp3:13,192,64;ss_fp4:13,256,64;ss_fp5:13,320,64;ss_fp6:13,384,64;ss_fp7:13,448,64;ss_fp8:13,512,64;ss_fp9:13,576,64;ss_fp10:13,640,64;ss_fp11:13,704,64;ss_fp12:13,768,64;ss_fp13:13,832,64;ss_fp14:13,896,64;ss_fp15:13,960,64;ss_fp16:13,1024,64;ss_fp17:13,1088,64;ss_fp18:13,1152,64;ss_fp19:13,1216,64;ss_fp20:13,1280,64;ss_fp21:13,1344,64;ss_fp22:13,1408,64;ss_fp23:13,1472,64;ss_fp24:13,1536,64;ss_fp25:13,1600,64;ss_fp26:13,1664,64;ss_fp27:13,1728,64;ss_fp28:13,1792,64;ss_fp29:13,1856,64;ss_fp30:13,1920,64;ss_fp31:13,1984,64;;fp_dbl_block_t:t202=201__fp_int_block:T203=s256ss_fpstat:1,0,32;ss_fpexcept1:1,32,32;ss_fpexcept2:1,64,32;ss_fpexcept3:1,96,32;ss_fpexcept4:1,128,32;ss_fpexcept5:1,160,32;ss_fpexcept6:1,192,32;ss_fpexcept7:1,224,32;ss_fp4_hi:1,256,32;ss_fp4_lo:1,288,32;ss_fp5_hi:1,320,32;ss_fp5_lo:1,352,32;ss_fp6_hi:1,384,32;ss_fp6_lo:1,416,32;ss_fp7_hi:1,448,32;ss_fp7_lo:1,480,32;ss_fp8_hi:1,512,32;ss_fp8_lo:1,544,32;ss_fp9_hi:1,576,32;ss_fp9_lo:1,608,32;ss_fp10_hi:1,640,32;ss_fp10_lo:1,672,32;ss_fp11_hi:1,704,32;ss_fp11_lo:1,736,32;ss_fp12_hi:1,768,32;ss_fp12_lo:1,800,32;ss_fp13_hi:1,832,32;ss_fp13_lo:1,864,32;ss_fp14_hi:1,896,32;ss_fp14_lo:1,928,32;ss_fp15_hi:1,960,32;ss_fp15_lo:1,992,32;ss_fp16_hi:1,1024,32;ss_fp16_lo:1,1056,32;ss_fp17_hi:1,1088,32;ss_fp17_lo:1,1120,32;ss_fp18_hi:1,1152,32;ss_fp18_lo:1,1184,32;ss_fp19_hi:1,1216,32;ss_fp19_lo:1,1248,32;ss_fp20_hi:1,1280,32;ss_fp20_lo:1,1312,32;ss_fp21_hi:1,1344,32;ss_fp21_lo:1,1376,32;ss_fp22_hi:1,1408,32;ss_fp22_lo:1,1440,32;ss_fp23_hi:1,1472,32;ss_fp23_lo:1,1504,32;ss_fp24_hi:1,1536,32;ss_fp24_lo:1,1568,32;ss_fp25_hi:1,1600,32;ss_fp25_lo:1,1632,32;ss_fp26_hi:1,1664,32;ss_fp26_lo:1,1696,32;ss_fp27_hi:1,1728,32;ss_fp27_lo:1,1760,32;ss_fp28_hi:1,1792,32;ss_fp28_lo:1,1824,32;ss_fp29_hi:1,1856,32;ss_fp29_lo:1,1888,32;ss_fp30_hi:1,1920,32;ss_fp30_lo:1,1952,32;ss_fp31_hi:1,1984,32;ss_fp31_lo:1,2016,32;;fp_int_block_t:t204=203__reg64:T205=s512ss_reserved:39,0,64;ss_gr1:39,64,64;ss_rp:39,128,64;ss_gr3:39,192,64;ss_gr4:39,256,64;ss_gr5:39,320,64;ss_gr6:39,384,64;ss_gr7:39,448,64;ss_gr8:39,512,64;ss_gr9:39,576,64;ss_gr10:39,640,64;ss_gr11:39,704,64;ss_gr12:39,768,64;ss_gr13:39,832,64;ss_gr14:39,896,64;ss_gr15:39,960,64;ss_gr16:39,1024,64;ss_gr17:39,1088,64;ss_gr18:39,1152,64;ss_gr19:39,1216,64;ss_gr20:39,1280,64;ss_gr21:39,1344,64;ss_gr22:39,1408,64;ss_arg3:39,1472,64;ss_arg2:39,1536,64;ss_arg1:39,1600,64;ss_arg0:39,1664,64;ss_dp:40,1728,64;ss_ret0:40,1792,64;ss_ret1:40,1856,64;ss_sp:40,1920,64;ss_gr31:40,1984,64;ss_cr11:40,2048,64;ss_pcoq_head:40,2112,64;ss_pcsq_head:40,2176,64;ss_pcoq_tail:40,2240,64;ss_pcsq_tail:40,2304,64;ss_cr15:40,2368,64;ss_cr19:40,2432,64;ss_cr20:40,2496,64;ss_cr21:40,2560,64;ss_cr22:40,2624,64;ss_cpustate:40,2688,64;ss_sr4:40,2752,64;ss_sr0:40,2816,64;ss_sr1:40,2880,64;ss_sr2:40,2944,64;ss_sr3:40,3008,64;ss_sr5:40,3072,64;ss_sr6:40,3136,64;ss_sr7:40,3200,64;ss_cr0:40,3264,64;ss_cr8:40,3328,64;ss_cr9:40,3392,64;ss_cr10:40,3456,64;ss_cr12:40,3520,64;ss_cr13:40,3584,64;ss_cr24:40,3648,64;ss_cr25:40,3712,64;ss_cr26:40,3776,64;ss_reserved2:206=ar1;0;2;40,3840,192;ss_oldcksum:36,4032,32;ss_newcksum:36,4064,32;;__reg64_t:t207=205__reg32:T208=s512ss_reserved:209=ar1;0;1;36,0,64;ss_gr1_hi:36,64,32;ss_gr1_lo:36,96,32;ss_rp_hi:36,128,32;ss_rp_lo:36,160,32;ss_gr3_hi:36,192,32;ss_gr3_lo:36,224,32;ss_gr4_hi:36,256,32;ss_gr4_lo:36,288,32;ss_gr5_hi:36,320,32;ss_gr5_lo:36,352,32;ss_gr6_hi:36,384,32;ss_gr6_lo:36,416,32;ss_gr7_hi:36,448,32;ss_gr7_lo:36,480,32;ss_gr8_hi:36,512,32;ss_gr8_lo:36,544,32;ss_gr9_hi:36,576,32;ss_gr9_lo:36,608,32;ss_gr10_hi:36,640,32;ss_gr10_lo:36,672,32;ss_gr11_hi:36,704,32;ss_gr11_lo:36,736,32;ss_gr12_hi:36,768,32;ss_gr12_lo:36,800,32;ss_gr13_hi:36,832,32;ss_gr13_lo:36,864,32;ss_gr14_hi:36,896,32;ss_gr14_lo:36,928,32;ss_gr15_hi:36,960,32;ss_gr15_lo:36,992,32;ss_gr16_hi:36,1024,32;ss_gr16_lo:36,1056,32;ss_gr17_hi:36,1088,32;ss_gr17_lo:36,1120,32;ss_gr18_hi:36,1152,32;ss_gr18_lo:36,1184,32;ss_gr19_hi:36,1216,32;ss_gr19_lo:36,1248,32;ss_gr20_hi:36,1280,32;ss_gr20_lo:36,1312,32;ss_gr21_hi:36,1344,32;ss_gr21_lo:36,1376,32;ss_gr22_hi:36,1408,32;ss_gr22_lo:36,1440,32;ss_arg3_hi:36,1472,32;ss_arg3_lo:36,1504,32;ss_arg2_hi:36,1536,32;ss_arg2_lo:36,1568,32;ss_arg1_hi:36,1600,32;ss_arg1_lo:36,1632,32;ss_arg0_hi:36,1664,32;ss_arg0_lo:36,1696,32;ss_dp_hi:4,1728,32;ss_dp_lo:4,1760,32;ss_ret0_hi:4,1792,32;ss_ret0_lo:4,1824,32;ss_ret1_hi:4,1856,32;ss_ret1_lo:4,1888,32;ss_sp_hi:4,1920,32;ss_sp_lo:4,1952,32;ss_gr31_hi:4,1984,32;ss_gr31_lo:4,2016,32;ss_cr11_hi:4,2048,32;ss_cr11_lo:4,2080,32;ss_pcoq_head_hi:4,2112,32;ss_pcoq_head_lo:4,2144,32;ss_pcsq_head_hi:4,2176,32;ss_pcsq_head_lo:4,2208,32;ss_pcoq_tail_hi:4,224