pax_global_header 0000666 0000000 0000000 00000000064 13763772562 0014534 g ustar 00root root 0000000 0000000 52 comment=a5932084e59cca6b49b8bb56592667a91c080af6 tty-reader-0.9.0/ 0000775 0000000 0000000 00000000000 13763772562 0013622 5 ustar 00root root 0000000 0000000 tty-reader-0.9.0/.github/ 0000775 0000000 0000000 00000000000 13763772562 0015162 5 ustar 00root root 0000000 0000000 tty-reader-0.9.0/.github/FUNDING.yml 0000664 0000000 0000000 00000000024 13763772562 0016773 0 ustar 00root root 0000000 0000000 github: piotrmurach tty-reader-0.9.0/.github/ISSUE_TEMPLATE.md 0000664 0000000 0000000 00000001076 13763772562 0017673 0 ustar 00root root 0000000 0000000 ### Are you in the right place? * For issues or feature requests file a GitHub issue in this repository * For general questions or discussion post in [Gitter](https://gitter.im/piotrmurach/tty) ### Describe the problem A brief description of the issue/feature. ### Steps to reproduce the problem ``` Your code here to reproduce the issue ``` ### Actual behaviour What happened? This could be a description, log output, error raised etc... ### Expected behaviour What did you expect to happen? ### Describe your environment * OS version: * Ruby version: * TTY version: tty-reader-0.9.0/.github/PULL_REQUEST_TEMPLATE.md 0000664 0000000 0000000 00000000676 13763772562 0020774 0 ustar 00root root 0000000 0000000 ### Describe the change What does this Pull Request do? ### Why are we doing this? Any related context as to why is this is a desirable change. ### Benefits How will the library improve? ### Drawbacks Possible drawbacks applying this change. ### Requirements Put an X between brackets on each line if you have done the item: [] Tests written & passing locally? [] Code style checked? [] Rebased with `master` branch? [] Documentaion updated? tty-reader-0.9.0/.github/workflows/ 0000775 0000000 0000000 00000000000 13763772562 0017217 5 ustar 00root root 0000000 0000000 tty-reader-0.9.0/.github/workflows/ci.yml 0000664 0000000 0000000 00000002360 13763772562 0020336 0 ustar 00root root 0000000 0000000 --- name: CI on: push: branches: - master paths-ignore: - "bin/**" - "examples/**" - "*.md" pull_request: branches: - master paths-ignore: - "bin/**" - "examples/**" - "*.md" jobs: tests: name: Ruby ${{ matrix.ruby }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: - ubuntu-latest ruby: - 2.1 - 2.2 - 2.3 - 2.4 - 2.5 - 2.6 - ruby-head - jruby-9.2.13.0 - jruby-head - truffleruby-head include: - ruby: 2.7 os: ubuntu-latest coverage: true env: COVERAGE: ${{ matrix.coverage }} COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} continue-on-error: ${{ endsWith(matrix.ruby, 'head') }} steps: - uses: actions/checkout@v2 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - name: Install bundler run: gem install bundler -v '< 2.0' - name: Install dependencies run: bundle install --jobs 4 --retry 3 - name: Run tests run: bundle exec rake ci tty-reader-0.9.0/.gitignore 0000664 0000000 0000000 00000000177 13763772562 0015617 0 ustar 00root root 0000000 0000000 /.bundle/ /.yardoc /Gemfile.lock /_yardoc/ /coverage/ /doc/ /pkg/ /spec/reports/ /tmp/ # rspec failure tracking .rspec_status tty-reader-0.9.0/.rspec 0000664 0000000 0000000 00000000051 13763772562 0014733 0 ustar 00root root 0000000 0000000 --color --require spec_helper --warnings tty-reader-0.9.0/.rubocop.yml 0000664 0000000 0000000 00000001342 13763772562 0016074 0 ustar 00root root 0000000 0000000 AllCops: NewCops: enable Layout/LineLength: Max: 80 Lint/Debugger: Enabled: false Lint/AssignmentInCondition: Enabled: false Metrics/AbcSize: Max: 30 Metrics/BlockLength: CountComments: true Max: 25 IgnoredMethods: [] Exclude: - "spec/**/*" Metrics/ClassLength: Max: 1500 Metrics/CyclomaticComplexity: Enabled: false Metrics/MethodLength: Max: 20 Naming/BinaryOperatorParameterName: Enabled: false Style/AsciiComments: Enabled: false Style/LambdaCall: EnforcedStyle: braces Style/StringLiterals: EnforcedStyle: double_quotes Style/TrivialAccessors: Enabled: false # { ... } for multi-line blocks is okay Style/BlockDelimiters: Enabled: false Style/CommentedKeyword: Enabled: false tty-reader-0.9.0/CHANGELOG.md 0000664 0000000 0000000 00000007115 13763772562 0015437 0 ustar 00root root 0000000 0000000 # Change log ## [v0.9.0] - 2020-12-08 ### Added * Add buffer to save input when traversing history and restore it back similar to shell ### Changed * Pressing :down no longer erases the #read_line input if history is disabled by Charles Pence (@pencechp) * Change Reader initializer to use keyword arguments in place of options hash * Change history to only exclude empty lines without any space or invisible characters * Change all input reading methods to use explicit keyword arguments ### Fix * Fix #read_multiline :value parameter to insert content only once in the first line ## [v0.8.0] - 2020-06-28 ### Changed * Change gemspec to load version directly and remove test artefacts * Change to update tty-screen dependency * Change to remove bundler dev dependency and relax wisper version ## [v0.7.0] - 2019-11-24 ### Added * Add support for a multi-line prompt by Katelyn Schiesser(@slowbro) * Add metadata to gemspec ## [v0.6.0] - 2019-05-27 ### Added * Add :value option to #read_line to allow pre-populating of line content ### Changed * Change to make InputInterrupt to derive from Interrupt by Samuel Williams(@ioquatix) * Change #read_line to trigger before line is printed to allow for line changes in key callbacks * Change Console#get_char :nonblock option to wait for readable input without blocking * Change to remove bundler version constraints * Change to update tty-screen dependency * Change to update tty-cursor dependency ## [v0.5.0] - 2018-11-24 ### Added * Add KeyEvent#line to expose current line in key event callbacks ### Fixed * Fix Esc key by differentiating between escaped keys and actual escape input * Fix line editing to correctly insert next to last character ## [v0.4.0] - 2018-08-05 ### Changed * Change to update tty-screen & tty-cursor dependencies ## [v0.3.0] - 2018-04-29 ### Added * Add Reader#unsubscribe to allow stop listening to local key events ### Changed * Change Reader#subscribe to allow to listening for key events only inside a block * Change to group xterm keys for navigation ## [v0.2.0] - 2018-01-01 ### Added * Add home & end keys support in #read_line * Add tty-screen & tty-cursor dependencies ### Changed * Change Codes to Keys and inverse keys lookup to allow for different system keys matching same name. * Change Reader#initialize to only accept options and make input and output options as well. * Change #read_line to print newline character in noecho mode * Change Reader::Line to include prompt prefix * Change Reader#initialize to only accept options in place of positional arguments * Change Reader to expose history options ### Fixed * Fix issues with recognising :home & :end keys on different terminals * Fix #read_line to work with strings spanning multiple screen widths and allow copy-pasting a long string without repeating prompt * Fix backspace keystroke in cooked mode * Fix history to only save lines in echo mode ## [v0.1.0] - 2017-08-30 * Initial implementation and release [v0.9.0]: https://github.com/piotrmurach/tty-reader/compare/v0.8.0...v0.9.0 [v0.8.0]: https://github.com/piotrmurach/tty-reader/compare/v0.7.0...v0.8.0 [v0.7.0]: https://github.com/piotrmurach/tty-reader/compare/v0.6.0...v0.7.0 [v0.6.0]: https://github.com/piotrmurach/tty-reader/compare/v0.5.0...v0.6.0 [v0.5.0]: https://github.com/piotrmurach/tty-reader/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/piotrmurach/tty-reader/compare/v0.3.0...v0.4.0 [v0.3.0]: https://github.com/piotrmurach/tty-reader/compare/v0.2.0...v0.3.0 [v0.2.0]: https://github.com/piotrmurach/tty-reader/compare/v0.1.0...v0.2.0 [v0.1.0]: https://github.com/piotrmurach/tty-reader/compare/v0.1.0 tty-reader-0.9.0/CODE_OF_CONDUCT.md 0000664 0000000 0000000 00000006235 13763772562 0016427 0 ustar 00root root 0000000 0000000 # Contributor Covenant Code of Conduct ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: * Using welcoming and inclusive language * Being respectful of differing viewpoints and experiences * Gracefully accepting constructive criticism * Focusing on what is best for the community * Showing empathy towards other community members Examples of unacceptable behavior by participants include: * The use of sexualized language or imagery and unwelcome sexual attention or advances * Trolling, insulting/derogatory comments, and personal or political attacks * Public or private harassment * Publishing others' private information, such as a physical or electronic address, without explicit permission * Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at piotr@piotrmurach.com. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at [http://contributor-covenant.org/version/1/4][version] [homepage]: http://contributor-covenant.org [version]: http://contributor-covenant.org/version/1/4/ tty-reader-0.9.0/Gemfile 0000664 0000000 0000000 00000000354 13763772562 0015117 0 ustar 00root root 0000000 0000000 source "https://rubygems.org" gemspec group :test do gem "benchmark-ips", "~> 2.7.2" gem "simplecov", "~> 0.16.1" gem "coveralls", "~> 0.8.22" end group :metrics do gem "yard", "~> 0.9" gem "yardstick", "~> 0.9.9" end tty-reader-0.9.0/LICENSE.txt 0000664 0000000 0000000 00000002121 13763772562 0015441 0 ustar 00root root 0000000 0000000 The MIT License (MIT) Copyright (c) 2017 Piotr Murach (https://piotrmurach.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. tty-reader-0.9.0/README.md 0000664 0000000 0000000 00000027316 13763772562 0015112 0 ustar 00root root 0000000 0000000
# TTY::Reader [][gitter] [][gem] [][gh_actions_ci] [][appveyor] [][codeclimate] [][coverage] [][inchpages] [gitter]: https://gitter.im/piotrmurach/tty [gem]: http://badge.fury.io/rb/tty-reader [gh_actions_ci]: https://github.com/piotrmurach/tty-reader/actions?query=workflow%3ACI [travis]: http://travis-ci.org/piotrmurach/tty-reader [appveyor]: https://ci.appveyor.com/project/piotrmurach/tty-reader [codeclimate]: https://codeclimate.com/github/piotrmurach/tty-reader/maintainability [coverage]: https://coveralls.io/github/piotrmurach/tty-reader [inchpages]: http://inch-ci.org/github/piotrmurach/tty-reader > A pure Ruby library that provides a set of methods for processing keyboard input in character, line and multiline modes. It maintains history of entered input with an ability to recall and re-edit those inputs. It lets you register to listen for keystroke events and trigger custom key events yourself. **TTY::Reader** provides independent reader component for [TTY](https://github.com/piotrmurach/tty) toolkit.  ## Compatibility The `tty-reader` is not compatible with the GNU Readline and doesn't aim to be. It originated from [tty-prompt](https://github.com/piotrmurach/tty-prompt) project to provide flexibility, independence from underlying operating system and Ruby like API interface for creating different prompts. `TTY::Reader` forges its own path to provide features necessary for building line editing in terminal applications! ## Features * Pure Ruby * Reading [single keypress](#21-read_keypress) * [Line editing](#22-read_line) * Reading [multiline input](#23-read_multiline) * Ability to [register](#24-on) for keystroke events * Track input [history](#32-track_history) * No global state * Works on Linux, OS X, FreeBSD and Windows * Supports Ruby versions `>= 2.0.0` & JRuby ## Installation Add this line to your application's Gemfile: ```ruby gem "tty-reader" ``` And then execute: $ bundle Or install it yourself as: $ gem install tty-reader * [1. Usage](#1-usage) * [2. API](#2-api) * [2.1 read_keypress](#21-read_keypress) * [2.2 read_line](#22-read_line) * [2.3 read_multiline](#23-read_multiline) * [2.4 on](#24-on) * [2.5 subscribe](#25-subscribe) * [2.6 unsubscribe](#26-unsubscribe) * [2.7 trigger](#27-trigger) * [2.8 supported events](#28-supported-events) * [3. Configuration](#3-configuration) * [3.1 :interrupt](#31-interrupt) * [3.2 :track_history](#32-track_history) * [3.3 :history_cycle](#33-history_cycle) * [3.4 :history_duplicates](#34-history_duplicates) * [3.5 :history_exclude](#35-history_exclude) ## Usage In just a few lines you can recreate IRB prompt. Initialize the reader: ```ruby reader = TTY::Reader.new ``` Then register to listen for key events, in this case listen for `Ctrl-X` or `Esc` keys to exit: ```ruby reader.on(:keyctrl_x, :keyescape) do puts "Exiting..." exit end ``` Finally, keep asking user for line input with a `=>` as a prompt: ```ruby loop do reader.read_line("=> ") end ``` ## API ### 2.1 read_keypress To read a single key stroke from the user use `read_char` or `read_keypress`: ```ruby reader.read_char reader.read_keypress reader.read_keypress(nonblock: true) ``` ### 2.2 read_line By default `read_line` works in `raw mode` which means it behaves like a line editor that allows you to edit each character, respond to `control characters` such as `Control-A` to `Control-B` or navigate through history. For example, to read a single line terminated by a new line character use `read_line` like so: ```ruby reader.read_line ``` If you wish for the keystrokes to be interpreted by the terminal instead, use so called `cooked` mode by providing the `:raw` option set to `false`: ```ruby reader.read_line(raw: false) ``` Any non-interpreted characters received are written back to terminal, however you can stop this by using `:echo` option set to `false`: ```ruby reader.read_line(echo: false) ``` You can also provide a line prefix displayed before input by passing it as a first argument: ```ruby reader.read_line(">> ") # >> ``` To pre-populate the line content for editing use `:value` option: ```ruby reader.read_line("> ", value: "edit me") # > edit me ``` ### 2.3 read_multiline By default `read_multiline` works in `raw mode` which means it behaves like a multiline editor that allows you to edit each character, respond to `control characters` such as `Control-A` to `Control-B` or navigate through history. For example, to read more than one line terminated by `Ctrl+d` or `Ctrl+z` use `read_multiline`: ```ruby reader.read_multiline # => [ "line1", "line2", ... ] ``` If you wish for the keystrokes to be interpreted by the terminal instead, use so called `cooked` mode by providing the `:raw` option set to `false`: ```ruby reader.read_line(raw: false) ``` You can also provide a line prefix displayed before input by passing a string as a first argument: ```ruby reader.read_multiline(">> ") ``` ### 2.4 on You can register to listen on a key pressed events. This can be done by calling `on` with a event name(s): ```ruby reader.on(:keypress) { |event| .... } ``` or listen for multiple events: ```ruby reader.on(:keyctrl_x, :keyescape) { |event| ... } ``` The `KeyEvent` object is yielded to a block whenever a particular key event fires. The event responds to: * `key` - key pressed * `value` - value of the key pressed * `line` - the content of the currently edited line, empty otherwise The `value` returns the actual key pressed and the `line` the content for the currently edited line or is empty. The `key` is an object that responds to following messages: * `name` - the name of the event such as :up, :down, letter or digit * `meta` - true if event is non-standard key associated * `shift` - true if shift has been pressed with the key * `ctrl` - true if ctrl has been pressed with the key For example, to add listen to vim like navigation keys, one would do the following: ```ruby reader.on(:keypress) do |event| if event.value == "j" ... end if event.value == "k" ... end end ``` You can subscribe to more than one event: ```ruby reader.on(:keypress) { |event| ... } .on(:keydown) { |event| ... } ``` ### 2.5 subscribe You can subscribe any object to listen for the emitted [key events](#27-supported-events) using the `subscribe` message. The listener would need to implement a method for every event it wishes to receive. For example, if a `MyListener` class wishes to only listen for `keypress` event: ```ruby class MyListener def keypress(event) ... end end ``` Then subscribing is done: ```ruby reader.subscribe(MyListener.new) ``` Alternatively, `subscribe` allows you to listen to events only for the duration of block execution like so: ```ruby reader.subscribe(MyListener) do ... end ``` ### 2.6 unsubscribe You can unsubscribe any object from listening to the key events using the `unsubscribe` message: ```ruby reader.unsubscribe(my_listener) ``` ### 2.7 trigger The signature for triggering key events is `trigger(event, args...)`. The first argument is a [key event name](#27-supported-events) followed by any number of actual values related to the event being triggered. For example, to trigger `:keydown` event do: ```ruby reader.trigger(:keydown) ``` To add vim bindings for line editing you could discern between alphanumeric inputs like so: ```ruby reader.on(:keypress) do |event| if event.value == "j" reader.trigger(:keydown) end if evevnt.value == "k" reader.trigger(:keyup) end end ``` ### 2.8 supported events The available key events for character input are: * `:keypress` * `:keyenter` * `:keyreturn` * `:keytab` * `:keybackspace` * `:keyspace` * `:keyescape` * `:keydelete` * `:keyalpha` * `:keynum` The navigation related key events are: * `:keydown` * `:keyup` * `:keyleft` * `:keyright` * `:keyhome` * `:keyend` * `:keyclear` The specific `ctrl` key events: * `:keyctrl_a` * `:keyctrl_b` * ... * `:keyctrl_z` The key events for functional keys `f*` are: * `:keyf1` * `:keyf2` * ... * `:keyf24` ## 3. Configuration ### 3.1. `:interrupt` By default `InputInterrupt` error will be raised when the user hits the interrupt key(Control-C). However, you can customise this behaviour by passing the `:interrupt` option. The available options are: * `:signal` - sends interrupt signal * `:exit` - exists with status code * `:noop` - skips handler * custom proc For example, to send interrupt signal do: ```ruby reader = TTY::Reader.new(interrupt: :signal) ``` ### 3.2. `:track_history` The `read_line` and `read_multiline` provide history buffer that tracks all the lines entered during `TTY::Reader.new` interactions. The history buffer provides previous or next lines when user presses up/down arrows respectively. However, if you wish to disable this behaviour use `:track_history` option like so: ```ruby reader = TTY::Reader.new(track_history: false) ``` ### 3.3. `:history_cycle` This option determines whether the history buffer allows for infinite navigation. By default it is set to `false`. You can change this: ```ruby reader = TTY::Reader.new(history_cycle: true) ``` ### 3.4. `:history_duplicates` This option controls whether duplicate lines are stored in history. By default set to `true`. You can change this: ```ruby reader = TTY::Reader.new(history_duplicates: false) ``` ### 3.5. `:history_exclude` This option allows you to exclude lines from being stored in history. It accepts a `Proc` with a line as a first argument. By default it is set to exclude empty lines. To change this: ```ruby reader = TTY::Reader.new(history_exclude: ->(line) { ... }) ``` ## Development After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment. ## Contributing Bug reports and pull requests are welcome on GitHub at https://github.com/piotrmurach/tty-reader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. 1. Clone the project on GitHub 2. Create a feature branch 3. Submit a Pull Request Important notes: - **All new features must include test coverage.** At a bare minimum, unit tests are required. It is preferred if you include acceptance tests as well. - **The tests must be be idempotent.** Any test run should produce the same result when run over and over. - **All new features must include source code & readme documentation** Any new method you add should include yarddoc style documentation with clearly specified parameter and return types. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT). ## Code of Conduct Everyone interacting in the TTY::Reader project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/piotrmurach/tty-reader/blob/master/CODE_OF_CONDUCT.md). ## Copyright Copyright (c) 2017 Piotr Murach. See LICENSE for further details. tty-reader-0.9.0/Rakefile 0000664 0000000 0000000 00000000242 13763772562 0015265 0 ustar 00root root 0000000 0000000 # encoding: utf-8 require "bundler/gem_tasks" FileList['tasks/**/*.rake'].each(&method(:import)) desc 'Run all specs' task ci: %w[ spec ] task default: :spec tty-reader-0.9.0/appveyor.yml 0000664 0000000 0000000 00000001650 13763772562 0016214 0 ustar 00root root 0000000 0000000 --- skip_commits: files: - "bin/**" - "benchmarks/**" - "examples/**" - "*.md" install: - set BUNDLE_SSL_VERIFY_MODE=0 - set PATH=C:\Ruby%ruby_version%\bin;%PATH% - ruby --version - gem --version - bundle install build: off test_script: - bundle exec rake ci environment: matrix: - ruby_version: "200" - ruby_version: "200-x64" - ruby_version: "21" - ruby_version: "21-x64" - ruby_version: "22" - ruby_version: "22-x64" - ruby_version: "23" - ruby_version: "23-x64" - ruby_version: "24" - ruby_version: "24-x64" - ruby_version: "25" - ruby_version: "25-x64" - ruby_version: "26" - ruby_version: "26-x64" matrix: allow_failures: - ruby_version: "200" - ruby_version: "200-x64" - ruby_version: "21" - ruby_version: "21-x64" - ruby_version: "22" - ruby_version: "22-x64" - ruby_version: "23" - ruby_version: "23-x64" tty-reader-0.9.0/assets/ 0000775 0000000 0000000 00000000000 13763772562 0015124 5 ustar 00root root 0000000 0000000 tty-reader-0.9.0/assets/shell.gif 0000664 0000000 0000000 00001575310 13763772562 0016736 0 ustar 00root root 0000000 0000000 GIF89a 1 " $ "",<"4H$$#,$*0%?W**)(*>V+,6+9J,,?M.BU0