Current File : /home/mmdealscpanel/yummmdeals.com/awk.zip
PK���Z���;ccprocessarray.awknu�[���function process_array(arr, name, process, do_arrays,   i, new_name)
{
    for (i in arr) {
        new_name = (name "[" i "]")
        if (isarray(arr[i])) {
            if (do_arrays)
                @process(new_name, arr[i])
            process_array(arr[i], new_name, process, do_arrays)
        } else
            @process(new_name, arr[i])
    }
}
PK���Z�D����	group.awknu�[���# group.awk --- functions for dealing with the group file
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May 1993
# Revised October 2000
# Revised December 2010

BEGIN {
    # Change to suit your system
    _gr_awklib = "/usr/libexec/awk/"
}

function _gr_init(    oldfs, oldrs, olddol0, grcat,
                             using_fw, using_fpat, n, a, i)
{
    if (_gr_inited)
        return

    oldfs = FS
    oldrs = RS
    olddol0 = $0
    using_fw = (PROCINFO["FS"] == "FIELDWIDTHS")
    using_fpat = (PROCINFO["FS"] == "FPAT")
    FS = ":"
    RS = "\n"

    grcat = _gr_awklib "grcat"
    while ((grcat | getline) > 0) {
        if ($1 in _gr_byname)
            _gr_byname[$1] = _gr_byname[$1] "," $4
        else
            _gr_byname[$1] = $0
        if ($3 in _gr_bygid)
            _gr_bygid[$3] = _gr_bygid[$3] "," $4
        else
            _gr_bygid[$3] = $0

        n = split($4, a, "[ \t]*,[ \t]*")
        for (i = 1; i <= n; i++)
            if (a[i] in _gr_groupsbyuser)
                _gr_groupsbyuser[a[i]] = _gr_groupsbyuser[a[i]] " " $1
            else
                _gr_groupsbyuser[a[i]] = $1

        _gr_bycount[++_gr_count] = $0
    }
    close(grcat)
    _gr_count = 0
    _gr_inited++
    FS = oldfs
    if (using_fw)
        FIELDWIDTHS = FIELDWIDTHS
    else if (using_fpat)
        FPAT = FPAT
    RS = oldrs
    $0 = olddol0
}
function getgrnam(group)
{
    _gr_init()
    return _gr_byname[group]
}
function getgrgid(gid)
{
    _gr_init()
    return _gr_bygid[gid]
}
function getgruser(user)
{
    _gr_init()
    return _gr_groupsbyuser[user]
}
function getgrent()
{
    _gr_init()
    if (++_gr_count in _gr_bycount)
        return _gr_bycount[_gr_count]
    return ""
}
function endgrent()
{
    _gr_count = 0
}
PK���Z��M��
walkarray.awknu�[���function walk_array(arr, name,      i)
{
    for (i in arr) {
        if (isarray(arr[i]))
            walk_array(arr[i], (name "[" i "]"))
        else
            printf("%s[%s] = %s\n", name, i, arr[i])
    }
}
PK���Z#f�readfile.awknu�[���# readfile.awk --- read an entire file at once
#
# Original idea by Denis Shirokov, cosmogen@gmail.com, April 2013
#

function readfile(file,     tmp, save_rs)
{
    save_rs = RS
    RS = "^$"
    getline tmp < file
    close(file)
    RS = save_rs

    return tmp
}
PK���Z�(�^��intdiv0.awknu�[���# intdiv0 --- do integer division

#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# July, 2014
#
# Name changed from div() to intdiv()
# April, 2015
#
# Changed to intdiv0()
# April, 2016

function intdiv0(numerator, denominator, result)
{
    split("", result)

    numerator = int(numerator)
    denominator = int(denominator)
    result["quotient"] = int(numerator / denominator)
    result["remainder"] = int(numerator % denominator)

    return 0.0
}
PK���ZNҦ�
assert.awknu�[���# assert --- assert that a condition is true. Otherwise, exit.

#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May, 1993

function assert(condition, string)
{
    if (! condition) {
        printf("%s:%d: assertion failed: %s\n",
            FILENAME, FNR, string) > "/dev/stderr"
        _assert_exit = 1
        exit 1
    }
}

END {
    if (_assert_exit)
        exit 1
}
PK���Z�;7q��shellquote.awknu�[���# shell_quote --- quote an argument for passing to the shell
#
# Michael Brennan
# brennan@madronabluff.com
# September 2014

function shell_quote(s,             # parameter
    SINGLE, QSINGLE, i, X, n, ret)  # locals
{
    if (s == "")
        return "\"\""

    SINGLE = "\x27"  # single quote
    QSINGLE = "\"\x27\""
    n = split(s, X, SINGLE)

    ret = SINGLE X[1] SINGLE
    for (i = 2; i <= n; i++)
        ret = ret QSINGLE SINGLE X[i] SINGLE

    return ret
}
PK���Z�~�b��	round.awknu�[���# round.awk --- do normal rounding
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# August, 1996

function round(x,   ival, aval, fraction)
{
   ival = int(x)    # integer part, int() truncates

   # see if fractional part
   if (ival == x)   # no fraction
      return ival   # ensure no decimals

   if (x < 0) {
      aval = -x     # absolute value
      ival = int(aval)
      fraction = aval - ival
      if (fraction >= .5)
         return int(x) - 1   # -2.5 --> -3
      else
         return int(x)       # -2.3 --> -2
   } else {
      fraction = x - ival
      if (fraction >= .5)
         return ival + 1
      else
         return ival
   }
}
PK���Z0����	ctime.awknu�[���# ctime.awk
#
# awk version of C ctime(3) function

function ctime(ts,    format)
{
    format = "%a %b %e %H:%M:%S %Z %Y"

    if (ts == 0)
        ts = systime()       # use current time as default
    return strftime(format, ts)
}
PK���Z�o(\��noassign.awknu�[���# noassign.awk --- library file to avoid the need for a
# special option that disables command-line assignments
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# October 1999

function disable_assigns(argc, argv,    i)
{
    for (i = 1; i < argc; i++)
        if (argv[i] ~ /^[a-zA-Z_][a-zA-Z0-9_]*=.*/)
            argv[i] = ("./" argv[i])
}

BEGIN {
    if (No_command_assign)
        disable_assigns(ARGC, ARGV)
}
PK���Z����zzjoin.awknu�[���# join.awk --- join an array into a string
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May 1993

function join(array, start, end, sep,    result, i)
{
    if (sep == "")
       sep = " "
    else if (sep == SUBSEP) # magic value
       sep = ""
    result = array[start]
    for (i = start + 1; i <= end; i++)
        result = result sep array[i]
    return result
}
PK���Z�*��	�	gettime.awknu�[���# getlocaltime.awk --- get the time of day in a usable format
#
# Arnold Robbins, arnold@skeeve.com, Public Domain, May 1993
#

# Returns a string in the format of output of date(1)
# Populates the array argument time with individual values:
#    time["second"]       -- seconds (0 - 59)
#    time["minute"]       -- minutes (0 - 59)
#    time["hour"]         -- hours (0 - 23)
#    time["althour"]      -- hours (0 - 12)
#    time["monthday"]     -- day of month (1 - 31)
#    time["month"]        -- month of year (1 - 12)
#    time["monthname"]    -- name of the month
#    time["shortmonth"]   -- short name of the month
#    time["year"]         -- year modulo 100 (0 - 99)
#    time["fullyear"]     -- full year
#    time["weekday"]      -- day of week (Sunday = 0)
#    time["altweekday"]   -- day of week (Monday = 0)
#    time["dayname"]      -- name of weekday
#    time["shortdayname"] -- short name of weekday
#    time["yearday"]      -- day of year (0 - 365)
#    time["timezone"]     -- abbreviation of timezone name
#    time["ampm"]         -- AM or PM designation
#    time["weeknum"]      -- week number, Sunday first day
#    time["altweeknum"]   -- week number, Monday first day

function getlocaltime(time,    ret, now, i)
{
    # get time once, avoids unnecessary system calls
    now = systime()

    # return date(1)-style output
    ret = strftime("%a %b %e %H:%M:%S %Z %Y", now)

    # clear out target array
    delete time

    # fill in values, force numeric values to be
    # numeric by adding 0
    time["second"]       = strftime("%S", now) + 0
    time["minute"]       = strftime("%M", now) + 0
    time["hour"]         = strftime("%H", now) + 0
    time["althour"]      = strftime("%I", now) + 0
    time["monthday"]     = strftime("%d", now) + 0
    time["month"]        = strftime("%m", now) + 0
    time["monthname"]    = strftime("%B", now)
    time["shortmonth"]   = strftime("%b", now)
    time["year"]         = strftime("%y", now) + 0
    time["fullyear"]     = strftime("%Y", now) + 0
    time["weekday"]      = strftime("%w", now) + 0
    time["altweekday"]   = strftime("%u", now) + 0
    time["dayname"]      = strftime("%A", now)
    time["shortdayname"] = strftime("%a", now)
    time["yearday"]      = strftime("%j", now) + 0
    time["timezone"]     = strftime("%Z", now)
    time["ampm"]         = strftime("%p", now)
    time["weeknum"]      = strftime("%U", now) + 0
    time["altweeknum"]   = strftime("%W", now) + 0

    return ret
}
PK���Z׮~2��zerofile.awknu�[���# zerofile.awk --- library file to process empty input files
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# June 2003

BEGIN { Argind = 0 }

ARGIND > Argind + 1 {
    for (Argind++; Argind < ARGIND; Argind++)
        zerofile(ARGV[Argind], Argind)
}

ARGIND != Argind { Argind = ARGIND }

END {
    if (ARGIND > Argind)
        for (Argind++; Argind <= ARGIND; Argind++)
            zerofile(ARGV[Argind], Argind)
}
PK���ZW��
quicksort.awknu�[���# quicksort.awk --- Quicksort algorithm, with user-supplied
#                   comparison function
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# January 2009


# quicksort --- C.A.R. Hoare's quicksort algorithm. See Wikipedia
#               or almost any algorithms or computer science text.
#
# Adapted from K&R-II, page 110

function quicksort(data, left, right, less_than,    i, last)
{
    if (left >= right)  # do nothing if array contains fewer
        return          # than two elements

    quicksort_swap(data, left, int((left + right) / 2))
    last = left
    for (i = left + 1; i <= right; i++)
        if (@less_than(data[i], data[left]))
            quicksort_swap(data, ++last, i)
    quicksort_swap(data, left, last)
    quicksort(data, left, last - 1, less_than)
    quicksort(data, last + 1, right, less_than)
}

# quicksort_swap --- helper function for quicksort, should really be inline

function quicksort_swap(data, i, j,      temp)
{
    temp = data[i]
    data[i] = data[j]
    data[j] = temp
}
PK���Z�l���
getopt.awknu�[���# getopt.awk --- Do C library getopt(3) function in awk
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
#
# Initial version: March, 1991
# Revised: May, 1993

# External variables:
#    Optind -- index in ARGV of first nonoption argument
#    Optarg -- string value of argument to current option
#    Opterr -- if nonzero, print our own diagnostic
#    Optopt -- current option letter

# Returns:
#    -1     at end of options
#    "?"    for unrecognized option
#    <c>    a character representing the current option

# Private Data:
#    _opti  -- index in multiflag option, e.g., -abc
function getopt(argc, argv, options,    thisopt, i)
{
    if (length(options) == 0)    # no options given
        return -1

    if (argv[Optind] == "--") {  # all done
        Optind++
        _opti = 0
        return -1
    } else if (argv[Optind] !~ /^-[^:[:space:]]/) {
        _opti = 0
        return -1
    }
    if (_opti == 0)
        _opti = 2
    thisopt = substr(argv[Optind], _opti, 1)
    Optopt = thisopt
    i = index(options, thisopt)
    if (i == 0) {
        if (Opterr)
            printf("%c -- invalid option\n", thisopt) > "/dev/stderr"
        if (_opti >= length(argv[Optind])) {
            Optind++
            _opti = 0
        } else
            _opti++
        return "?"
    }
    if (substr(options, i + 1, 1) == ":") {
        # get option argument
        if (length(substr(argv[Optind], _opti + 1)) > 0)
            Optarg = substr(argv[Optind], _opti + 1)
        else
            Optarg = argv[++Optind]
        _opti = 0
    } else
        Optarg = ""
    if (_opti == 0 || _opti >= length(argv[Optind])) {
        Optind++
        _opti = 0
    } else
        _opti++
    return thisopt
}
BEGIN {
    Opterr = 1    # default is to diagnose
    Optind = 1    # skip ARGV[0]

    # test program
    if (_getopt_test) {
        while ((_go_c = getopt(ARGC, ARGV, "ab:cd")) != -1)
            printf("c = <%c>, Optarg = <%s>\n",
                                       _go_c, Optarg)
        printf("non-option arguments:\n")
        for (; Optind < ARGC; Optind++)
            printf("\tARGV[%d] = <%s>\n",
                                    Optind, ARGV[Optind])
    }
}
PK���ZV�����libintl.awknu�[���function bindtextdomain(dir, domain)
{
    return dir
}

function dcgettext(string, domain, category)
{
    return string
}

function dcngettext(string1, string2, number, domain, category)
{
    return (number == 1 ? string1 : string2)
}
PK���Zp��o33cliff_rand.awknu�[���# cliff_rand.awk --- generate Cliff random numbers
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# December 2000

BEGIN { _cliff_seed = 0.1 }

function cliff_rand()
{
    _cliff_seed = (100 * log(_cliff_seed)) % 1
    if (_cliff_seed < 0)
        _cliff_seed = - _cliff_seed
    return _cliff_seed
}
PK���Z�f����
passwd.awknu�[���# passwd.awk --- access password file information
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# May 1993
# Revised October 2000
# Revised December 2010

BEGIN {
    # tailor this to suit your system
    _pw_awklib = "/usr/libexec/awk/"
}

function _pw_init(    oldfs, oldrs, olddol0, pwcat, using_fw, using_fpat)
{
    if (_pw_inited)
        return

    oldfs = FS
    oldrs = RS
    olddol0 = $0
    using_fw = (PROCINFO["FS"] == "FIELDWIDTHS")
    using_fpat = (PROCINFO["FS"] == "FPAT")
    FS = ":"
    RS = "\n"

    pwcat = _pw_awklib "pwcat"
    while ((pwcat | getline) > 0) {
        _pw_byname[$1] = $0
        _pw_byuid[$3] = $0
        _pw_bycount[++_pw_total] = $0
    }
    close(pwcat)
    _pw_count = 0
    _pw_inited = 1
    FS = oldfs
    if (using_fw)
        FIELDWIDTHS = FIELDWIDTHS
    else if (using_fpat)
        FPAT = FPAT
    RS = oldrs
    $0 = olddol0
}
function getpwnam(name)
{
    _pw_init()
    return _pw_byname[name]
}
function getpwuid(uid)
{
    _pw_init()
    return _pw_byuid[uid]
}
function getpwent()
{
    _pw_init()
    if (_pw_count < _pw_total)
        return _pw_bycount[++_pw_count]
    return ""
}
function endpwent()
{
    _pw_count = 0
}
PK���Z��;;
ftrans.awknu�[���# ftrans.awk --- handle datafile transitions
#
# user supplies beginfile() and endfile() functions
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# November 1992

FNR == 1 {
    if (_filename_ != "")
        endfile(_filename_)
    _filename_ = FILENAME
    beginfile(FILENAME)
}

END { endfile(_filename_) }
PK���Z���6��readable.awknu�[���# readable.awk --- library file to skip over unreadable files
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# October 2000
# December 2010

BEGIN {
    for (i = 1; i < ARGC; i++) {
        if (ARGV[i] ~ /^[a-zA-Z_][a-zA-Z0-9_]*=.*/ \
            || ARGV[i] == "-" || ARGV[i] == "/dev/stdin")
            continue    # assignment or standard input
        else if ((getline junk < ARGV[i]) < 0) # unreadable
            delete ARGV[i]
        else
            close(ARGV[i])
    }
}
PK���Z8�m��strtonum.awknu�[���# mystrtonum --- convert string to number

#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# February, 2004
# Revised June, 2014

function mystrtonum(str,        ret, n, i, k, c)
{
    if (str ~ /^0[0-7]*$/) {
        # octal
        n = length(str)
        ret = 0
        for (i = 1; i <= n; i++) {
            c = substr(str, i, 1)
            # index() returns 0 if c not in string,
            # includes c == "0"
            k = index("1234567", c)

            ret = ret * 8 + k
        }
    } else if (str ~ /^0[xX][[:xdigit:]]+$/) {
        # hexadecimal
        str = substr(str, 3)    # lop off leading 0x
        n = length(str)
        ret = 0
        for (i = 1; i <= n; i++) {
            c = substr(str, i, 1)
            c = tolower(c)
            # index() returns 0 if c not in string,
            # includes c == "0"
            k = index("123456789abcdef", c)

            ret = ret * 16 + k
        }
    } else if (str ~ \
  /^[-+]?([0-9]+([.][0-9]*([Ee][0-9]+)?)?|([.][0-9]+([Ee][-+]?[0-9]+)?))$/) {
        # decimal number, possibly floating point
        ret = str + 0
    } else
        ret = "NOT-A-NUMBER"

    return ret
}

# BEGIN {     # gawk test harness
#     a[1] = "25"
#     a[2] = ".31"
#     a[3] = "0123"
#     a[4] = "0xdeadBEEF"
#     a[5] = "123.45"
#     a[6] = "1.e3"
#     a[7] = "1.32"
#     a[8] = "1.32E2"
#
#     for (i = 1; i in a; i++)
#         print a[i], strtonum(a[i]), mystrtonum(a[i])
# }
PK���Z]R�m��
rewind.awknu�[���# rewind.awk --- rewind the current file and start over
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# September 2000

function rewind(    i)
{
    # shift remaining arguments up
    for (i = ARGC; i > ARGIND; i--)
        ARGV[i] = ARGV[i-1]

    # make sure gawk knows to keep going
    ARGC++

    # make current file next to get done
    ARGV[ARGIND+1] = FILENAME

    # do it
    nextfile
}
PK���Z����inplace.awknu�[���# inplace --- load and invoke the inplace extension.
# 
# Copyright (C) 2013, 2017 the Free Software Foundation, Inc.
# 
# This file is part of GAWK, the GNU implementation of the
# AWK Programming Language.
# 
# GAWK is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
# 
# GAWK is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
#
# Andrew J. Schorr, aschorr@telemetry-investments.com
# January 2013

@load "inplace"

# Please set INPLACE_SUFFIX to make a backup copy.  For example, you may
# want to set INPLACE_SUFFIX to .bak on the command line or in a BEGIN rule.

# By default, each filename on the command line will be edited inplace.
# But you can selectively disable this by adding an inplace=0 argument
# prior to files that you do not want to process this way.  You can then
# reenable it later on the commandline by putting inplace=1 before files
# that you wish to be subject to inplace editing.

# N.B. We call inplace_end() in the BEGINFILE and END rules so that any
# actions in an ENDFILE rule will be redirected as expected.

BEGIN {
    inplace = 1         # enabled by default
}

BEGINFILE {
    if (_inplace_filename != "")
        inplace_end(_inplace_filename, INPLACE_SUFFIX)
    if (inplace)
        inplace_begin(_inplace_filename = FILENAME, INPLACE_SUFFIX)
    else
        _inplace_filename = ""
}

END {
    if (_inplace_filename != "")
        inplace_end(_inplace_filename, INPLACE_SUFFIX)
}
PK���Z-=�s��
have_mpfr.awknu�[���# adequate_math_precision --- return true if we have enough bits
#
# Andrew Schorr, aschorr@telemetry-investments.com, Public Domain
# May 2017

function adequate_math_precision(n)
{
    return (1 != (1+(1/(2^(n-1)))))
}
PK���Z��bNNbits2str.awknu�[���# bits2str --- turn an integer into readable ones and zeros

function bits2str(bits,        data, mask)
{
    if (bits == 0)
        return "0"

    mask = 1
    for (; bits != 0; bits = rshift(bits, 1))
        data = (and(bits, mask) ? "1" : "0") data

    while ((length(data) % 8) != 0)
        data = "0" data

    return data
}
PK���ZU3��ord.awknu�[���# ord.awk --- do ord and chr

# Global identifiers:
#    _ord_:        numerical values indexed by characters
#    _ord_init:    function to initialize _ord_
#
# Arnold Robbins, arnold@skeeve.com, Public Domain
# 16 January, 1992
# 20 July, 1992, revised

BEGIN    { _ord_init() }

function _ord_init(    low, high, i, t)
{
    low = sprintf("%c", 7) # BEL is ascii 7
    if (low == "\a") {    # regular ascii
        low = 0
        high = 127
    } else if (sprintf("%c", 128 + 7) == "\a") {
        # ascii, mark parity
        low = 128
        high = 255
    } else {        # ebcdic(!)
        low = 0
        high = 255
    }

    for (i = low; i <= high; i++) {
        t = sprintf("%c", i)
        _ord_[t] = i
    }
}
function ord(str,    c)
{
    # only first character is of interest
    c = substr(str, 1, 1)
    return _ord_[c]
}

function chr(c)
{
    # force c to be numeric by adding 0
    return sprintf("%c", c + 0)
}
PK6�ZA��"��grcatnuȯ��ELF>`@@8@@@@hh���(( p
p
 p
 �� �
�
 �
 ���  ���DDS�td���  P�td�	�	�	<<Q�tdR�tdp
p
 p
 ��/lib64/ld-linux-x86-64.so.2GNU�GNUGNU�Ӏ���iɷ>�%�m�)�

)�� w�r( e7 �"� libdl.so.2_ITM_deregisterTMCloneTable__gmon_start___ITM_registerTMCloneTablelibm.so.6libc.so.6__printf_chkputcgetgrentendgrentstdout__cxa_finalize__libc_start_mainGLIBC_2.3.4GLIBC_2.2.5[ti	�ui	�p
 @	x
 	�
 �
 � � � � � 	 
� � � � � 	��H��H�	 H��t��H����5� �%� ��h�������h��������h�������h�������h��������%e D���%] D���%U D���%M D���%E D��ATL�%JUS���H��H����H�UH�M�1�D�EH�5����H�EH�H��u*�BfDH�5 �,�g���H�EH�H��H��t1�L���W���H�EH�<u�H�5� �
�+�������H��H���j������[1�]A\�f.�@��1�I��^H��H���PTL�FH�
�H�=����R �H�=q H�j H9�tH�. H��t	�����H�=A H�5: H)�H��H��H��?H�H�tH� H��t��fD�����= u+UH�=� H��tH�=^ �Y����d����� ]������w������AWI��AVI��AUA��ATL�% UH�- SL)�H���?���H��t1��L��L��D��A��H��H9�u�H��[]A\A]A^A_�ff.������H��H���%s:%s:%ld:%s;8�lT���������t���Td�������$zRx����/D$4����`FJw�?:*3$"\����P,t��F�H�A ��CBD�����eF�E�E �E(�H0�H8�G@n8A0A(B BBB�����@		�
 Q[�
�	p
 x
 ���o0`X
�� xHp�	���o���o@���o�o*���o�
 � 0GA$3a1��GA*��	GA$annobin gcc 8.5.0 20210514GA$running gcc 8.5.0 20210514GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA+omit_frame_pointerGA!stack_realignGA$3p1029�RGA$plugin name: annobinGA*GA*GOW*�GA*cf_protectionGA+stack_clashGA$3a1��	
GA$3p972P	�	GA*GA*GOW��GA*cf_protectionGA!stack_clash
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionP	�	grcat-4.2.1-4.el8.x86_64.debug�HC�7zXZ�ִF!t/���B]?�E�h=��ڊ�2N����Ji~�\�2����ט�@<6��c�U��L�j�úz[�4�S����4����[��X�n�L��
xܖ�ɨ�M�T �:ө�C�zaW�?4f���"�IPĹ������v��o�	(R�����i��!��m��ߥ���3A.0��l\�i{_�+cva`�8�)�U�XTQ`��V`��-�	z��M#Jp1�����i��Ѭ����,M�L���M���K��ʯ$�E�g�NS��n���'G��ȹ�^�V�ZL�ņBP�֝�J�n����A׆���i���Z�P�B����Bl]�����fl+�.���^�a��3����R�y��.���HEe�؃&|I��c�4ƈ�5��ə����.��,�]�ѡ�o��m}S��?�B�^_�8�IS�6'aҮq��Ǔ,�EJ�h����"���Q�G4p�Zs��ޡ����J��O!;���|<6��-�?ʌ*�8˂?j�c�+������h�������������
9M��
W�	��|�g��N_�m�����0��+h9�@�^)A���b�#p�6�#P�k�P��]��x�2s�T�DMg(B��y����zD���f�e:viG5{������눃	$��P�q�I��޻&��D��im|�n&t��]LZ�{�gqŲ#i* �C	��T����o���n��y�]N4�ﯣsws�9!���Z�dU�|I��������^cW3x�����͊]�7H�r�R�J��^�������X6Pζ ��{Q�������?�ߥ^��ˢ��j�0>��g�YZ.shstrtab.interp.note.gnu.property.note.ABI-tag.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata���� &�� 4$G���o00$QXXY``�a���o**n���o@@0}pp��BHHx������`�@@P���5��	�	
��	�	��	�	<�(
(
�p
 p
�x
 x
��
 �
��
 �
�� �h�  
`( ,$/P��>PK6�ZY�L��pwcatnuȯ��ELF>`@@8@@@@hh���(
(
 x
x
 x
 �� �
�
 �
 ���  ���DDS�td���  P�td���<<Q�tdR�tdx
x
 x
 ��/lib64/ld-linux-x86-64.so.2GNU�GNUGNU#˜�I�8S�x����o:& �( r{e7 �"libdl.so.2_ITM_deregisterTMCloneTable__gmon_start___ITM_registerTMCloneTablelibm.so.6libc.so.6__printf_chkgetpwentendpwent__cxa_finalize__libc_start_mainGLIBC_2.3.4GLIBC_2.2.5[ti	�ui	�x
 @�
 �
 �
 � � � � � � � � � ��H��H��	 H��t��H����52	 �%3	 ��h�������h��������h�������h��������%� D���%� D���%� D���%� D��SH���1f�D�HD�@H��H��H�H�p(��p �pH�1����H�� �|���H��u����1�[�f.�@��1�I��^H��H���PTL�FH�
�H�=x����R �H�=q H�j H9�tH�. H��t	�����H�=A H�5: H)�H��H��H��?H�H�tH� H��t��fD�����=� u+UH�=� H��tH�=f �����d����� ]������w������AWI��AVI��AUA��ATL�% UH�- SL)�H������H��t1��L��L��D��A��H��H9�u�H��[]A\A]A^A_�ff.������H��H���%s:%s:%ld:%ld:%s:%s:%s
;8|���l��������l���T\�������zRx����/D$4���PFJw�?:*3$"\0���@$tX���RE�WJ H(C0NRD�����eF�E�E �E(�H0�H8�G@n8A0A(B BBB�����@�
 Q[H
�x
 �
 ���o0(P
�� `�(�	���o���o����o�o����o�
 ����GA$3a1H�GA*�GA$annobin gcc 8.5.0 20210514GA$running gcc 8.5.0 20210514GA*GA!
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA+omit_frame_pointerGA!stack_realignGA$3p1029RGA$plugin name: annobinGA*GA*GOW*�GA*cf_protectionGA+stack_clashGA$3a1��
GA$3p972P�GA*GA*GOW��GA*cf_protectionGA!stack_clash
GA*FORTIFYGA+GLIBCXX_ASSERTIONSGA*cf_protectionP�pwcat-4.2.1-4.el8.x86_64.debug�5\��7zXZ�ִF!t/���;]?�E�h=��ڊ�2N��|�J["�%�_!1�V�M�eҩ��,��Gr�%�y�/6���
����2�f��W|9��Hk*�^.�;��@5�6^�%h��t*č%l�P����(A�w�$��/+KGؚ85ߴ�l1��T}��uZT��k�����O��,�
}�]�"��z�
�]�ѯ<�?	�_G�^�vW�`a1�R=f�M�^��(�P��Ko]	��S���b]@ػ�q�/y��NhL��x���'��%>O'�ꢜAR/����xv~*i}�T��9���屾8�c���D���=�vD)t}֥��� �P�}%�$o��x�S������{�n�����F*��F3x�KLU���Jc�КзF>S'F��nú'I����}j'(����|��(43I��=c��x�ᄣ��_�-p��	Ŀ���ޭ��;�t�^��Ħ_Z�ǑL-ن�v�$w�,-R��1��S�}-����
@�g�V�N٫������@ݍ[dl�S�uٳ�@m8��`���E�Bh��N�Sm�p�,dUS\��qZrS��VH�]�_�3�;
�����߼�DF�WY���k��n�W6��X@J��ě������%��P)h<d�	W���n�����VwՆ��b�Q��EۧU:��-e��2���$��d��_o��į��{��ݫ�H��OMY!Nc���*E\���t�^��av������p�޸��,xѻDF�����7�z� �������i�׏'g$A�n�v�ΰ`�F�uO������ӕ!�Z�e-O���I�������%�WBg�y����?��g�YZ.shstrtab.interp.note.gnu.property.note.ABI-tag.note.gnu.build-id.gnu.hash.dynsym.dynstr.gnu.version.gnu.version_r.rela.dyn.rela.plt.init.plt.sec.text.fini.rodata.eh_frame_hdr.eh_frame.init_array.fini_array.data.rel.ro.dynamic.got.data.bss.gnu.build.attributes.gnu_debuglink.gnu_debugdata���� &�� 4$G���o00QPP�Y((�a���o��n���o��0}((��B��`�HH�ppP���@�����
������<�0	0	��x
 x
��
 �
��
 �
��
 �
�� �`�  
`( ,$/P|�>PK���Z���;ccprocessarray.awknu�[���PK���Z�D����	�group.awknu�[���PK���Z��M��
�walkarray.awknu�[���PK���Z#f��	readfile.awknu�[���PK���Z�(�^��intdiv0.awknu�[���PK���ZNҦ�
$
assert.awknu�[���PK���Z�;7q���shellquote.awknu�[���PK���Z�~�b��	�round.awknu�[���PK���Z0����	�ctime.awknu�[���PK���Z�o(\���noassign.awknu�[���PK���Z����zz�join.awknu�[���PK���Z�*��	�	xgettime.awknu�[���PK���Z׮~2��n"zerofile.awknu�[���PK���ZW��
R$quicksort.awknu�[���PK���Z�l���
�(getopt.awknu�[���PK���ZV�����j1libintl.awknu�[���PK���Zp��o33�2cliff_rand.awknu�[���PK���Z�f����
4passwd.awknu�[���PK���Z��;;
�8ftrans.awknu�[���PK���Z���6��b:readable.awknu�[���PK���Z8�m���<strtonum.awknu�[���PK���Z]R�m��
qBrewind.awknu�[���PK���Z����?Dinplace.awknu�[���PK���Z-=�s��
FLhave_mpfr.awknu�[���PK���Z��bNN`Mbits2str.awknu�[���PK���ZU3���Nord.awknu�[���PK6�ZA��"���Rgrcatnuȯ��PK6�ZY�L���rpwcatnuȯ��PK-ܒ