ELF>@H@8@.. 00 0 h 0000 00 $$Ptd+++QtdGNUHPm+L3i'sXw8 @8;>|sCE. [A\fH= UHtHK HtH= @ÐH=H\$Hl$H(HH1Ht(HH5HH8HHHHtH\$Hl$ H(fHSHHD$R0HD$H\$Hl$ H(ffff.H,HH*\f.zvf.sHHY H5H8HِSI1HLNH@LF HHHF HNHT$ t$D$DHt'1H [3H [@D$fHf. t H@zH H8w1HUHSH HHD$SH|$HHHH=[( HHHc}HlHCHc}HHC Hc} HC(Hc}HC0Hc}HC8Hc}}HC@M$I)<))HcKHCHHc}H:HCPHc} -HCXHu?HH[]DD‰HS H83HHH[]fDHHHHt1HCH1P0S1Huffffff.HHH5LHT$1tH= D$>HfHHH5HT$X1tH= D$HfSHH51HPHT$H1u HP[D$Hu\$(L$(f.zt#T$ / \$D$xf(D$\$L$D$[H,L$Y  HD$0H,HD$8tLD$01111H_t 8uHH H4HH H8R1HH*^HiAU1ATUSHH5HhLd$HT$PHD$XLHHL$XH7WH|$XH9H|$HHD$HHHT$HPHT$HPHT$ HPHT$(HP HT$0HP(HT$8H@0HD$@D$ " D$D$|$G|$;Y|$=kD$(D$, =mD$0TH|$PqII0HT$PLHHHL9HH(HHHuHh[]A\A]Lh 1Hh[]A\A]H H5H8)1DD$ HHEHHD$HD$Hh[]A\A]1@D$,H H5H81`H H5H81CH H5H81&H H5H8f1 H H56H8I1H H5H8,1Hf H5JH81H\$Hl$Ld$Ll$ILt$1HhdH%(HD$81H-P DHH\$HH?L5HLl$ HH)HiHT$Hp0Hh( LHHIDbHHD$D$)lHp0HX( HHIDLt$L(H9D$H5HLxH5HLf1H5wH9LOLLH=e1KH5\HL)HD$8dH3%(udH\$@Hl$HLd$PLl$XLt$`HhH5HLH5HLH5LLLlSHh H5! H=1AHHtqH thH5XHYHH2 HH( tLH5 H5wHH#  [fH=0Ht1Ҁ8DH5 H= ff.SH=KH1Ht'H= 1900 requiredmktime argument out of rangeunconvertible timeasctime|O:localtime|O:gmtimed:sleeps|O:strftimeday of month out of rangehour out of rangeminute out of rangeseconds out of rangeday of week out of rangeday of year out of range timezonealtzonedaylight(zz)tznamePYTHONY2Kclockmktimetzsettime.struct_timetm_yeartm_montm_mdaytm_hourtm_mintm_sectm_wdaytm_ydaytm_isdsttimestamp out of range for platform time_tdaylight savings flag out of range?ư>MbP?.A;(x08`(x80hHXxh@(hzRx $U0H C bD@OIc D ,dp\AUP AH A AF ,ZAGPT AC \ AC $D0j B [ E ,AW` AG V AI $HaAF e AK cA,D~AI0E AH R AE t8DS I W4ADD0 AAF d DAG X7D r7D r$ AP`V AH $DVd<BIA A(Nn (A ABBA V (A ABBD Y (A ABBA $ WKpJ D A C xLA~ A (0 (8  (o p 2 hH ( o ooP o-00 .>N^n~.>N^n~.>N^n~This module provides various functions to manipulate time values. There are two standard representations of time. One is the number of seconds since the Epoch, in UTC (a.k.a. GMT). It may be an integer or a floating point number (to represent fractions of seconds). The Epoch is system-defined; on Unix, it is generally January 1st, 1970. The actual value can be retrieved by calling gmtime(0). The other representation is a tuple of 9 integers giving local time. The tuple items are: year (four digits, e.g. 1998) month (1-12) day (1-31) hours (0-23) minutes (0-59) seconds (0-59) weekday (0-6, Monday is 0) Julian day (day in the year, 1-366) DST (Daylight Savings Time) flag (-1, 0 or 1) If the DST flag is 0, the time is given in the regular time zone; if it is 1, the time is given in the DST time zone; if it is -1, mktime() should guess based on the date and time. Variables: timezone -- difference in seconds between UTC and local standard time altzone -- difference in seconds between UTC and local DST time daylight -- whether local time should reflect DST tzname -- tuple of (standard time zone name, DST time zone name) Functions: time() -- return current time in seconds since the Epoch as a float clock() -- return CPU time since process start as a float sleep() -- delay for a number of seconds given as a float gmtime() -- convert seconds since Epoch to UTC tuple localtime() -- convert seconds since Epoch to local time tuple asctime() -- convert time tuple to string ctime() -- convert time in seconds to string mktime() -- convert local time tuple to seconds since Epoch strftime() -- convert time tuple to string according to format specification strptime() -- parse string to time tuple according to format specification tzset() -- change the local timezonetime() -> floating point number Return the current time in seconds since the Epoch. Fractions of a second may be present if the system clock provides them.clock() -> floating point number Return the CPU time or real time since the start of the process or since the first call to clock(). This has as much precision as the system records.sleep(seconds) Delay execution for a given number of seconds. The argument may be a floating point number for subsecond precision.gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min, tm_sec, tm_wday, tm_yday, tm_isdst) Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a. GMT). When 'seconds' is not passed in, convert the current time instead.localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min, tm_sec,tm_wday,tm_yday,tm_isdst) Convert seconds since the Epoch to a time tuple expressing local time. When 'seconds' is not passed in, convert the current time instead.asctime([tuple]) -> string Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'. When the time tuple is not present, current time as returned by localtime() is used.ctime(seconds) -> string Convert a time in seconds since the Epoch to a string in local time. This is equivalent to asctime(localtime(seconds)). When the time tuple is not present, current time as returned by localtime() is used.mktime(tuple) -> floating point number Convert a time tuple in local time to seconds since the Epoch.strftime(format[, tuple]) -> string Convert a time tuple to a string according to a format specification. See the library reference manual for formatting codes. When the time tuple is not present, current time as returned by localtime() is used.strptime(string, format) -> struct_time Parse a string to a time tuple according to a format specification. See the library reference manual for formatting codes (same as strftime()).tzset(zone) Initialize, or reinitialize, the local timezone to the value stored in os.environ['TZ']. The TZ environment variable should be specified in standard Unix timezone format as documented in the tzset man page (eg. 'US/Eastern', 'Europe/Amsterdam'). Unknown timezones will silently fall back to UTC. If the TZ environment variable is not set, the local timezone is set to the systems best guess of wallclock time. Changing the TZ environment variable without calling tzset *may* change the local timezone used by methods such as localtime, but this behaviour should not be relied on.): *`"`; C)P! < :)!< -) = ")0? $)@? *@ M)"@A (@B *(C $*G 5*=*D*L*T*[*b*j*r*timemodule.so.debug%+.data.rodata.shstrtab.dynamic.note.gnu.build-id.eh_frame.gnu.hash.fini.gnu_debuglink.dynsym.gnu.version.rela.dyn.data.rel.ro.gnu.version_r.jcr.eh_frame_hdr.dynstr.ctors.dtors.bss.init.rela.plt.got.plt.got.text"$?o@^ pfoP P ~o Ps (HHh I((((`++5++ 0 00 0 0 0}(0 (000 001 1P2 23 3 G G OGG